(Fsetq): Doc fix.
[bpt/emacs.git] / lispref / loading.texi
CommitLineData
83ac6b45
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions.
5@setfilename ../info/loading
6@node Loading, Byte Compilation, Macros, Top
7@chapter Loading
8@cindex loading
9@cindex library
10@cindex Lisp library
11
12 Loading a file of Lisp code means bringing its contents into the Lisp
13environment in the form of Lisp objects. Emacs finds and opens the
14file, reads the text, evaluates each form, and then closes the file.
15
16 The load functions evaluate all the expressions in a file just
17as the @code{eval-current-buffer} function evaluates all the
18expressions in a buffer. The difference is that the load functions
19read and evaluate the text in the file as found on disk, not the text
20in an Emacs buffer.
21
22@cindex top-level form
23 The loaded file must contain Lisp expressions, either as source code
24or, optionally, as byte-compiled code. Each form in the file is called
25a @dfn{top-level form}. There is no special format for the forms in a
26loadable file; any form in a file may equally well be typed directly
27into a buffer and evaluated there. (Indeed, most code is tested this
28way.) Most often, the forms are function definitions and variable
29definitions.
30
31 A file containing Lisp code is often called a @dfn{library}. Thus,
32the ``Rmail library'' is a file containing code for Rmail mode.
33Similarly, a ``Lisp library directory'' is a directory of files
34containing Lisp code.
35
36@menu
37* How Programs Do Loading:: The @code{load} function and others.
38* Autoload:: Setting up a function to autoload.
39* Repeated Loading:: Precautions about loading a file twice.
40* Features:: Loading a library if it isn't already loaded.
41* Unloading:: How to ``unload'' a library that was loaded.
42* Hooks for Loading:: Providing code to be run when
43 particular libraries are loaded.
44@end menu
45
46@node How Programs Do Loading
47@section How Programs Do Loading
48
49 Emacs Lisp has several interfaces for loading. For example,
50@code{autoload} creates a placeholder object for a function in a file;
51trying to call the autoloading function loads the file to get the
52function's real definition (@pxref{Autoload}). @code{require} loads a
53file if it isn't already loaded (@pxref{Features}). Ultimately, all
54these facilities call the @code{load} function to do the work.
55
56@defun load filename &optional missing-ok nomessage nosuffix
57This function finds and opens a file of Lisp code, evaluates all the
58forms in it, and closes the file.
59
60To find the file, @code{load} first looks for a file named
61@file{@var{filename}.elc}, that is, for a file whose name is
62@var{filename} with @samp{.elc} appended. If such a file exists, it is
63loaded. If there is no file by that name, then @code{load} looks for a
64file names @file{@var{filename}.el}. If that file exists, it is loaded.
65Finally, if neither of those names is found, @code{load} looks for a
66file named @var{filename} with nothing appended, and loads it if it
67exists. (The @code{load} function is not clever about looking at
68@var{filename}. In the perverse case of a file named @file{foo.el.el},
69evaluation of @code{(load "foo.el")} will indeed find it.)
70
71If the optional argument @var{nosuffix} is non-@code{nil}, then the
72suffixes @samp{.elc} and @samp{.el} are not tried. In this case, you
73must specify the precise file name you want.
74
75If @var{filename} is a relative file name, such as @file{foo} or
76@file{baz/foo.bar}, @code{load} searches for the file using the variable
77@code{load-path}. It appends @var{filename} to each of the directories
78listed in @code{load-path}, and loads the first file it finds whose name
79matches. The current default directory is tried only if it is specified
80in @code{load-path}, where @code{nil} stands for the default directory.
81@code{load} tries all three possible suffixes in the first directory in
82@code{load-path}, then all three suffixes in the second directory, and
83so on.
84
85If you get a warning that @file{foo.elc} is older than @file{foo.el}, it
86means you should consider recompiling @file{foo.el}. @xref{Byte
87Compilation}.
88
89Messages like @samp{Loading foo...} and @samp{Loading foo...done} appear
90in the echo area during loading unless @var{nomessage} is
91non-@code{nil}.
92
93@cindex load errors
94Any unhandled errors while loading a file terminate loading. If the
95load was done for the sake of @code{autoload}, certain kinds of
96top-level forms, those which define functions, are undone.
97
98@kindex file-error
99If @code{load} can't find the file to load, then normally it signals the
100error @code{file-error} (with @samp{Cannot open load file
101@var{filename}}). But if @var{missing-ok} is non-@code{nil}, then
102@code{load} just returns @code{nil}.
103
104@code{load} returns @code{t} if the file loads successfully.
105@end defun
106
107@ignore
108@deffn Command load-file filename
109This function loads the file @var{filename}. If @var{filename} is an
110absolute file name, then it is loaded. If it is relative, then the
111current default directory is assumed. @code{load-path} is not used, and
112suffixes are not appended. Use this function if you wish to specify
113the file to be loaded exactly.
114@end deffn
115
116@deffn Command load-library library
117This function loads the library named @var{library}. A library is
118nothing more than a file that may be loaded as described earlier. This
119function is identical to @code{load}, save that it reads a file name
120interactively with completion.
121@end deffn
122@end ignore
123
124@defopt load-path
125@cindex @code{EMACSLOADPATH} environment variable
126The value of this variable is a list of directories to search when
127loading files with @code{load}. Each element is a string (which must be
128a directory name) or @code{nil} (which stands for the current working
129directory). The value of @code{load-path} is initialized from the
130environment variable @code{EMACSLOADPATH}, if that exists; otherwise its
131default value is specified in @file{emacs/src/paths.h} when Emacs is
132built.
133
134The syntax of @code{EMACSLOADPATH} is the same as used for @code{PATH};
135@samp{:} separates directory names, and @samp{.} is used for the current
136default directory. Here is an example of how to set your
137@code{EMACSLOADPATH} variable from a @code{csh} @file{.login} file:
138
139@c This overfull hbox is OK. --rjc 16mar92
140@smallexample
141setenv EMACSLOADPATH .:/user/bil/emacs:/usr/lib/emacs/lisp
142@end smallexample
143
144Here is how to set it using @code{sh}:
145
146@smallexample
147export EMACSLOADPATH
148EMACSLOADPATH=.:/user/bil/emacs:/usr/local/lib/emacs/lisp
149@end smallexample
150
151Here is an example of code you can place in a @file{.emacs} file to add
152several directories to the front of your default @code{load-path}:
153
154@smallexample
155(setq load-path
156 (append (list nil "/user/bil/emacs"
157 "/usr/local/lisplib"
158 (expand-file-name "~/emacs"))
159 load-path))
160@end smallexample
161
162@c Wordy to rid us of an overfull hbox. --rjc 15mar92
163@noindent
164In this example, the path searches the current working directory first,
165followed then by the @file{/user/bil/emacs} directory and then by
166the @file{/usr/local/lisplib} directory,
167which are then followed by the standard directories for Lisp code.
168
169The command line options @samp{-l} or @samp{-load} specify Lispa library
170to load. Since this file might be in the current directory, Emacs 18
171temporarily adds the current directory to the front of @code{load-path}
172so the file can be found there. Newer Emacs versions also find such
173files in the current directory, but without altering @code{load-path}.
174@end defopt
175
176@defvar load-in-progress
177This variable is non-@code{nil} if Emacs is in the process of loading a
178file, and it is @code{nil} otherwise. This is how @code{defun} and
179@code{provide} determine whether a load is in progress, so that their
180effect can be undone if the load fails.
181@end defvar
182
183 To learn how @code{load} is used to build Emacs, see @ref{Building Emacs}.
184
185@node Autoload
186@section Autoload
187@cindex autoload
188
189 The @dfn{autoload} facility allows you to make a function or macro
190available but put off loading its actual definition. The first call to
191the function automatically reads the proper file to install the real
192definition and other associated code, then runs the real definition
193as if it had been loaded all along.
194
195 There are two ways to set up an autoloaded function: by calling
196@code{autoload}, and by writing a special ``magic'' comment in the
197source before the real definition. @code{autoload} is the low-level
198primitive for autoloading; any Lisp program can call @code{autoload} at
199any time. Magic comments do nothing on their own; they serve as a guide
200for the command @code{update-file-autoloads}, which constructs calls to
201@code{autoload} and arranges to execute them when Emacs is built. Magic
202comments are the most convenient way to make a function autoload, but
203only for packages installed along with Emacs.
204
205@defun autoload symbol filename &optional docstring interactive type
206This function defines the function (or macro) named @var{symbol} so as
207to load automatically from @var{filename}. The string @var{filename}
208specifies the file to load to get the real definition of @var{function}.
209
210The argument @var{docstring} is the documentation string for the
211function. Normally, this is the identical to the documentation string
212in the function definition itself. Specifying the documentation string
213in the call to @code{autoload} makes it possible to look at the
214documentation without loading the function's real definition.
215
216If @var{interactive} is non-@code{nil}, then the function can be called
217interactively. This lets completion in @kbd{M-x} work without loading
218the function's real definition. The complete interactive specification
219need not be given here; it's not needed unless the user actually calls
220@var{function}, and when that happens, it's time to load the real
221definition.
222
223You can autoload macros and keymaps as well as ordinary functions.
224Specify @var{type} as @code{macro} if @var{function} is really a macro.
225Specify @var{type} as @code{keymap} if @var{function} is really a
226keymap. Various parts of Emacs need to know this information without
227loading the real definition.
228
229@cindex function cell in autoload
230If @var{symbol} already has a non-void function definition that is not
231an autoload object, @code{autoload} does nothing and returns @code{nil}.
232If the function cell of @var{symbol} is void, or is already an autoload
233object, then it is defined as an autoload object like this:
234
235@example
236(autoload @var{filename} @var{docstring} @var{interactive} @var{type})
237@end example
238
239For example,
240
241@example
242(symbol-function 'run-prolog)
243 @result{} (autoload "prolog" 169681 t nil)
244@end example
245
246@noindent
247In this case, @code{"prolog"} is the name of the file to load, 169681
248refers to the documentation string in the @file{emacs/etc/DOC} file
249(@pxref{Documentation Basics}), @code{t} means the function is
250interactive, and @code{nil} that it is not a macro or a keymap.
251@end defun
252
253@cindex autoload errors
254 The autoloaded file usually contains other definitions and may require
255or provide one or more features. If the file is not completely loaded
256(due to an error in the evaluation of its contents), any function
257definitions or @code{provide} calls that occurred during the load are
258undone. This is to ensure that the next attempt to call any function
259autoloading from this file will try again to load the file. If not for
260this, then some of the functions in the file might appear defined, but
261they might fail to work properly for the lack of certain subroutines
262defined later in the file and not loaded successfully.
263
264 If the autoloaded file fails to define the desired Lisp function or
265macro, then an error is signaled with data @code{"Autoloading failed to
266define function @var{function-name}"}.
267
268@findex update-file-autoloads
269@findex update-directory-autoloads
270 A magic autoload comment looks like @samp{;;;###autoload}, on a line
271by itself, just before the real definition of the function in its
272autoloadable source file. The command @kbd{M-x update-file-autoloads}
273writes a corresponding @code{autoload} call into @file{loaddefs.el}.
274Building Emacs loads @file{loaddefs.el} and thus calls @code{autoload}.
275@kbd{M-x update-directory-autoloads} is even more powerful; it updates
276autoloads for all files in the current directory.
277
278 The same magic comment can copy any kind of form into
279@file{loaddefs.el}. If the form following the magic comment is not a
280function definition, it is copied verbatim. You can also use a magic
281comment to execute a form at build time executing it when the file
282itself is loaded. To do this, write the form @dfn{on the same line} as
283the magic comment. Since it is in a comment, it does nothing when you
284load the source file; but @code{update-file-autoloads} copies it to
285@file{loaddefs.el}, where it is executed while building Emacs.
286
287 The following example shows how @code{doctor} is prepared for
288autoloading with a magic comment:
289
290@smallexample
291;;;###autoload
292(defun doctor ()
293 "Switch to *doctor* buffer and start giving psychotherapy."
294 (interactive)
295 (switch-to-buffer "*doctor*")
296 (doctor-mode))
297@end smallexample
298
299@noindent
300Here's what that produces in @file{loaddefs.el}:
301
302@smallexample
303(autoload 'doctor "doctor"
304 "\
305Switch to *doctor* buffer and start giving psychotherapy."
306 t)
307@end smallexample
308
309@noindent
310The backslash and newline immediately following the double-quote are a
311convention used only in the preloaded Lisp files such as
312@file{loaddefs.el}; they tell @code{make-docfile} to put the
313documentation string in the @file{etc/DOC} file. @xref{Building Emacs}.
314
315@node Repeated Loading
316@comment node-name, next, previous, up
317@section Repeated Loading
318@cindex repeated loading
319
320 You may load one file more than once in an Emacs session. For
321example, after you have rewritten and reinstalled a function definition
322by editing it in a buffer, you may wish to return to the original
323version; you can do this by reloading the file it came from.
324
325 When you load or reload files, bear in mind that the @code{load} and
326@code{load-library} functions automatically load a byte-compiled file
327rather than a non-compiled file of similar name. If you rewrite a file
328that you intend to save and reinstall, remember to byte-compile it if
329necessary; otherwise you may find yourself inadvertently reloading the
330older, byte-compiled file instead of your newer, non-compiled file!
331
332 When writing the forms in a Lisp library file, keep in mind that the
333file might be loaded more than once. For example, the choice of
334@code{defvar} vs.@: @code{defconst} for defining a variable depends on
335whether it is desirable to reinitialize the variable if the library is
336reloaded: @code{defconst} does so, and @code{defvar} does not.
337(@xref{Defining Variables}.)
338
339 The simplest way to add an element to an alist is like this:
340
341@example
342(setq minor-mode-alist
343 (cons '(leif-mode " Leif") minor-mode-alist))
344@end example
345
346@noindent
347But this would add multiple elements if the library is reloaded.
348To avoid the problem, write this:
349
350@example
351(or (assq 'leif-mode minor-mode-alist)
352 (setq minor-mode-alist
353 (cons '(leif-mode " Leif") minor-mode-alist)))
354@end example
355
356 Occasionally you will want to test explicitly whether a library has
357already been loaded. Here's one way to test, in a library, whether it
358has been loaded before:
359
360@example
361(if (not (boundp 'foo-was-loaded))
362 @var{execute-first-time-only})
363
364(setq foo-was-loaded t)
365@end example
366
367@noindent
368If the library uses @code{provide} to provide a named feature, you can
369use @code{featurep} to test whether the library has been loaded.
370@xref{Features}.
371
372@node Features
373@section Features
374@cindex features
375@cindex requiring features
376@cindex providing features
377
378 @code{provide} and @code{require} are an alternative to
379@code{autoload} for loading files automatically. They work in terms of
380named @dfn{features}. Autoloading is triggered by calling a specific
381function, but a feature is loaded the first time another program asks
382for it by name.
383
384 A feature name is a symbol that stands for a collection of functions,
385variables, etc. The file that defines them should @dfn{provide} the
386feature. Another program that uses them may ensure they are defined by
387@dfn{requiring} the feature. This loads the file of definitions if it
388hasn't been loaded already.
389
390 To require the presence of a feature, call @code{require} with the
391feature name as argument. @code{require} looks in the global variable
392@code{features} to see whether the desired feature has been provided
393already. If not, it loads the feature from the appropriate file. This
394file should call @code{provide} at the top-level to add the feature to
395@code{features}; if it fails to do so, @code{require} signals an error.
396@cindex load error with require
397
398 Features are normally named after the files that provide them, so that
399@code{require} need not be given the file name.
400
401 For example, in @file{emacs/lisp/prolog.el},
402the definition for @code{run-prolog} includes the following code:
403
404@smallexample
405(defun run-prolog ()
406 "Run an inferior Prolog process, input and output via buffer *prolog*."
407 (interactive)
408 (require 'comint)
409 (switch-to-buffer (make-comint "prolog" prolog-program-name))
410 (inferior-prolog-mode))
411@end smallexample
412
413@noindent
414The expression @code{(require 'comint)} loads the file @file{comint.el}
415if it has not yet been loaded. This ensures that @code{make-comint} is
416defined.
417
418The @file{comint.el} file contains the following top-level expression:
419
420@smallexample
421(provide 'comint)
422@end smallexample
423
424@noindent
425This adds @code{comint} to the global @code{features} list, so that
426@code{(require 'comint)} will henceforth know that nothing needs to be
427done.
428
429@cindex byte-compiling @code{require}
430 When @code{require} is used at top-level in a file, it takes effect
431when you byte-compile that file (@pxref{Byte Compilation}) as well as
432when you load it. This is in case the required package contains macros
433that the byte compiler must know about.
434
435 Although top-level calls to @code{require} are evaluated during
436byte compilation, @code{provide} calls are not. Therefore, you can
437ensure that a file of definitions is loaded before it is byte-compiled
438by including a @code{provide} followed by a @code{require} for the same
439feature, as in the following example.
440
441@smallexample
442@group
443(provide 'my-feature) ; @r{Ignored by byte compiler,}
444 ; @r{evaluated by @code{load}.}
445(require 'my-feature) ; @r{Evaluated by byte compiler.}
446@end group
447@end smallexample
448
449@defun provide feature
450This function announces that @var{feature} is now loaded, or being
451loaded, into the current Emacs session. This means that the facilities
452associated with @var{feature} are or will be available for other Lisp
453programs.
454
455The direct effect of calling @code{provide} is to add @var{feature} to
456the front of the list @code{features} if it is not already in the list.
457The argument @var{feature} must be a symbol. @code{provide} returns
458@var{feature}.
459
460@smallexample
461features
462 @result{} (bar bish)
463
464(provide 'foo)
465 @result{} foo
466features
467 @result{} (foo bar bish)
468@end smallexample
469
470If the file isn't completely loaded, due to an error in the evaluating
471its contents, any function definitions or @code{provide} calls that
472occurred during the load are undone. @xref{Autoload}.
473@end defun
474
475@defun require feature &optional filename
476This function checks whether @var{feature} is present in the current
477Emacs session (using @code{(featurep @var{feature})}; see below). If it
478is not, then @code{require} loads @var{filename} with @code{load}. If
479@var{filename} is not supplied, then the name of the symbol
480@var{feature} is used as the file name to load.
481
482If loading the file fails to provide @var{feature}, @code{require}
483signals an error, @samp{Required feature @var{feature} was not
484provided}.
485@end defun
486
487@defun featurep feature
488This function returns @code{t} if @var{feature} has been provided in the
489current Emacs session (i.e., @var{feature} is a member of
490@code{features}.)
491@end defun
492
493@defvar features
494The value of this variable is a list of symbols that are the features
495loaded in the current Emacs session. Each symbol was put in this list
496with a call to @code{provide}. The order of the elements in the
497@code{features} list is not significant.
498@end defvar
499
500@node Unloading
501@section Unloading
502@cindex unloading
503
504@c Emacs 19 feature
505 You can discard the functions and variables loaded by a library to
506reclaim memory for other Lisp objects. To do this, use the function
507@code{unload-feature}:
508
509@deffn Command unload-feature feature
510This command unloads the library that provided feature @var{feature}.
511It undefines all functions and variables defined with @code{defvar},
512@code{defmacro}, @code{defconst}, @code{defsubst} and @code{defalias} by
513that library. It then restores any autoloads associated with those
514symbols.
515@end deffn
516
517 The @code{unload-feature} function is written in Lisp; its actions are
518based on the variable @code{load-history}.
519
520@defvar load-history
521This variable's value is an alist connecting library names with the
522names of functions and variables they define, the features they provide,
523and the features they require.
524
525Each element is a list and describes one library. The @sc{car} of the
526list is the name of the library, as a string. The rest of the list is
527composed of these kinds of objects:
528
529@itemize @bullet
530@item
531Symbols, which were defined as functions or variables.
532@item
533Lists of the form @code{(require . @var{feature})} indicating
534features that were required.
535@item
536Lists of the form @code{(provide . @var{feature})} indicating
537features that were provided.
538@end itemize
539
540The value of @code{load-history} may have one element whose @sc{car} is
541@code{nil}. This element describes definitions made with
542@code{eval-buffer} on a buffer that is not visiting a file.
543@end defvar
544
545 The command @code{eval-region} updates @code{load-history}, but does so
546by adding the symbols defined to the element for the file being visited,
547rather than replacing that element.
548
549@node Hooks for Loading
550@section Hooks for Loading
551@cindex loading hooks
552@cindex hooks for loading
553
554You can ask for code to be executed if and when a particular library is
555loaded, by calling @code{eval-after-load}.
556
557@defun eval-after-load library form
558This function arranges to evaluate @var{form} at the end of loading the
559library @var{library}, if and when @var{library} is loaded.
560
561The library name @var{library} must exactly match the argument of
562@code{load}. To get the proper results when an installed library is
563found by searching @code{load-path}, you should not include any
564directory names in @var{library}.
565
566An error in @var{form} does not undo the load, but does prevent
567execution of the rest of @var{form}.
568@end defun
569
570@defvar after-load-alist
571An alist of expressions to evaluate if and when particular libraries are
572loaded. Each element looks like this:
573
574@example
575(@var{filename} @var{forms}@dots{})
576@end example
577
578The function @code{load} checks @code{after-load-alist} in order to
579implement @code{eval-after-load}.
580@end defvar
581
582@c Emacs 19 feature