*** empty log message ***
[bpt/emacs.git] / lispref / loading.texi
CommitLineData
83ac6b45
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
651f374c 3@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2003,
ceb4c4d3 4@c 2004, 2005, 2006 Free Software Foundation, Inc.
83ac6b45
RS
5@c See the file elisp.texi for copying conditions.
6@setfilename ../info/loading
f9f59935 7@node Loading, Byte Compilation, Customization, Top
83ac6b45
RS
8@chapter Loading
9@cindex loading
10@cindex library
11@cindex Lisp library
12
13 Loading a file of Lisp code means bringing its contents into the Lisp
14environment in the form of Lisp objects. Emacs finds and opens the
15file, reads the text, evaluates each form, and then closes the file.
16
17 The load functions evaluate all the expressions in a file just
18as the @code{eval-current-buffer} function evaluates all the
19expressions in a buffer. The difference is that the load functions
20read and evaluate the text in the file as found on disk, not the text
21in an Emacs buffer.
22
23@cindex top-level form
24 The loaded file must contain Lisp expressions, either as source code
78c71a98
RS
25or as byte-compiled code. Each form in the file is called a
26@dfn{top-level form}. There is no special format for the forms in a
83ac6b45
RS
27loadable file; any form in a file may equally well be typed directly
28into a buffer and evaluated there. (Indeed, most code is tested this
29way.) Most often, the forms are function definitions and variable
30definitions.
31
32 A file containing Lisp code is often called a @dfn{library}. Thus,
33the ``Rmail library'' is a file containing code for Rmail mode.
34Similarly, a ``Lisp library directory'' is a directory of files
35containing Lisp code.
36
37@menu
ccd35a78
RS
38* How Programs Do Loading:: The @code{load} function and others.
39* Library Search:: Finding a library to load.
40* Loading Non-ASCII:: Non-@acronym{ASCII} characters in Emacs Lisp files.
41* Autoload:: Setting up a function to autoload.
42* Repeated Loading:: Precautions about loading a file twice.
43* Named Features:: Loading a library if it isn't already loaded.
44* Where Defined:: Finding which file defined a certain symbol.
e20da7ee 45* Unloading:: How to ``unload'' a library that was loaded.
ccd35a78
RS
46* Hooks for Loading:: Providing code to be run when
47 particular libraries are loaded.
83ac6b45
RS
48@end menu
49
50@node How Programs Do Loading
51@section How Programs Do Loading
52
53 Emacs Lisp has several interfaces for loading. For example,
f9f59935
RS
54@code{autoload} creates a placeholder object for a function defined in a
55file; trying to call the autoloading function loads the file to get the
83ac6b45 56function's real definition (@pxref{Autoload}). @code{require} loads a
f9f59935
RS
57file if it isn't already loaded (@pxref{Named Features}). Ultimately,
58all these facilities call the @code{load} function to do the work.
83ac6b45 59
a9f0a989 60@defun load filename &optional missing-ok nomessage nosuffix must-suffix
83ac6b45
RS
61This function finds and opens a file of Lisp code, evaluates all the
62forms in it, and closes the file.
63
64To find the file, @code{load} first looks for a file named
65@file{@var{filename}.elc}, that is, for a file whose name is
66@var{filename} with @samp{.elc} appended. If such a file exists, it is
67loaded. If there is no file by that name, then @code{load} looks for a
78c71a98 68file named @file{@var{filename}.el}. If that file exists, it is loaded.
83ac6b45
RS
69Finally, if neither of those names is found, @code{load} looks for a
70file named @var{filename} with nothing appended, and loads it if it
71exists. (The @code{load} function is not clever about looking at
72@var{filename}. In the perverse case of a file named @file{foo.el.el},
73evaluation of @code{(load "foo.el")} will indeed find it.)
74
75If the optional argument @var{nosuffix} is non-@code{nil}, then the
76suffixes @samp{.elc} and @samp{.el} are not tried. In this case, you
f9f59935
RS
77must specify the precise file name you want. By specifying the precise
78file name and using @code{t} for @var{nosuffix}, you can prevent
79perverse file names such as @file{foo.el.el} from being tried.
83ac6b45 80
a9f0a989
RS
81If the optional argument @var{must-suffix} is non-@code{nil}, then
82@code{load} insists that the file name used must end in either
83@samp{.el} or @samp{.elc}, unless it contains an explicit directory
84name. If @var{filename} does not contain an explicit directory name,
85and does not end in a suffix, then @code{load} insists on adding one.
86
83ac6b45
RS
87If @var{filename} is a relative file name, such as @file{foo} or
88@file{baz/foo.bar}, @code{load} searches for the file using the variable
89@code{load-path}. It appends @var{filename} to each of the directories
90listed in @code{load-path}, and loads the first file it finds whose name
91matches. The current default directory is tried only if it is specified
92in @code{load-path}, where @code{nil} stands for the default directory.
93@code{load} tries all three possible suffixes in the first directory in
94@code{load-path}, then all three suffixes in the second directory, and
a9f0a989 95so on. @xref{Library Search}.
83ac6b45
RS
96
97If you get a warning that @file{foo.elc} is older than @file{foo.el}, it
98means you should consider recompiling @file{foo.el}. @xref{Byte
99Compilation}.
100
969fe9b5
RS
101When loading a source file (not compiled), @code{load} performs
102character set translation just as Emacs would do when visiting the file.
103@xref{Coding Systems}.
104
83ac6b45
RS
105Messages like @samp{Loading foo...} and @samp{Loading foo...done} appear
106in the echo area during loading unless @var{nomessage} is
107non-@code{nil}.
108
109@cindex load errors
110Any unhandled errors while loading a file terminate loading. If the
78c71a98
RS
111load was done for the sake of @code{autoload}, any function definitions
112made during the loading are undone.
83ac6b45
RS
113
114@kindex file-error
115If @code{load} can't find the file to load, then normally it signals the
116error @code{file-error} (with @samp{Cannot open load file
117@var{filename}}). But if @var{missing-ok} is non-@code{nil}, then
118@code{load} just returns @code{nil}.
119
22697dac
KH
120You can use the variable @code{load-read-function} to specify a function
121for @code{load} to use instead of @code{read} for reading expressions.
122See below.
123
83ac6b45
RS
124@code{load} returns @code{t} if the file loads successfully.
125@end defun
126
83ac6b45 127@deffn Command load-file filename
f9f59935
RS
128This command loads the file @var{filename}. If @var{filename} is a
129relative file name, then the current default directory is assumed.
130@code{load-path} is not used, and suffixes are not appended. Use this
a9f0a989 131command if you wish to specify precisely the file name to load.
83ac6b45
RS
132@end deffn
133
134@deffn Command load-library library
f9f59935
RS
135This command loads the library named @var{library}. It is equivalent to
136@code{load}, except in how it reads its argument interactively.
83ac6b45 137@end deffn
83ac6b45 138
a9f0a989
RS
139@defvar load-in-progress
140This variable is non-@code{nil} if Emacs is in the process of loading a
141file, and it is @code{nil} otherwise.
142@end defvar
143
144@defvar load-read-function
7baeca0c 145@anchor{Definition of load-read-function}
a9f0a989
RS
146This variable specifies an alternate expression-reading function for
147@code{load} and @code{eval-region} to use instead of @code{read}.
148The function should accept one argument, just as @code{read} does.
149
150Normally, the variable's value is @code{nil}, which means those
151functions should use @code{read}.
55607887 152
6142d1d0
RS
153Instead of using this variable, it is cleaner to use another, newer
154feature: to pass the function as the @var{read-function} argument to
da9f5ab2 155@code{eval-region}. @xref{Definition of eval-region,, Eval}.
a9f0a989
RS
156@end defvar
157
1911e6e5
RS
158 For information about how @code{load} is used in building Emacs, see
159@ref{Building Emacs}.
a9f0a989
RS
160
161@node Library Search
162@section Library Search
163
164 When Emacs loads a Lisp library, it searches for the library
165in a list of directories specified by the variable @code{load-path}.
166
83ac6b45
RS
167@defopt load-path
168@cindex @code{EMACSLOADPATH} environment variable
169The value of this variable is a list of directories to search when
170loading files with @code{load}. Each element is a string (which must be
171a directory name) or @code{nil} (which stands for the current working
a9f0a989
RS
172directory).
173@end defopt
174
175 The value of @code{load-path} is initialized from the environment
176variable @code{EMACSLOADPATH}, if that exists; otherwise its default
cf11ad96 177value is specified in @file{emacs/src/epaths.h} when Emacs is built.
a9f0a989
RS
178Then the list is expanded by adding subdirectories of the directories
179in the list.
83ac6b45 180
a9f0a989 181 The syntax of @code{EMACSLOADPATH} is the same as used for @code{PATH};
bfe721d1
KH
182@samp{:} (or @samp{;}, according to the operating system) separates
183directory names, and @samp{.} is used for the current default directory.
184Here is an example of how to set your @code{EMACSLOADPATH} variable from
185a @code{csh} @file{.login} file:
83ac6b45 186
83ac6b45 187@smallexample
f1e2c45e 188setenv EMACSLOADPATH .:/user/bil/emacs:/usr/local/share/emacs/20.3/lisp
83ac6b45
RS
189@end smallexample
190
a9f0a989 191 Here is how to set it using @code{sh}:
83ac6b45
RS
192
193@smallexample
194export EMACSLOADPATH
f1e2c45e 195EMACSLOADPATH=.:/user/bil/emacs:/usr/local/share/emacs/20.3/lisp
83ac6b45
RS
196@end smallexample
197
a40d4712
PR
198 Here is an example of code you can place in your init file (@pxref{Init
199File}) to add several directories to the front of your default
200@code{load-path}:
83ac6b45
RS
201
202@smallexample
bda144f4 203@group
83ac6b45
RS
204(setq load-path
205 (append (list nil "/user/bil/emacs"
206 "/usr/local/lisplib"
5e41cf03 207 "~/emacs")
83ac6b45 208 load-path))
bda144f4 209@end group
83ac6b45
RS
210@end smallexample
211
212@c Wordy to rid us of an overfull hbox. --rjc 15mar92
213@noindent
214In this example, the path searches the current working directory first,
5e41cf03
RS
215followed then by the @file{/user/bil/emacs} directory, the
216@file{/usr/local/lisplib} directory, and the @file{~/emacs} directory,
83ac6b45
RS
217which are then followed by the standard directories for Lisp code.
218
a9f0a989 219 Dumping Emacs uses a special value of @code{load-path}. If the value of
c642171c
RS
220@code{load-path} at the end of dumping is unchanged (that is, still the
221same special value), the dumped Emacs switches to the ordinary
cc8c51f1 222@code{load-path} value when it starts up, as described above. But if
c642171c
RS
223@code{load-path} has any other value at the end of dumping, that value
224is used for execution of the dumped Emacs also.
225
a9f0a989 226 Therefore, if you want to change @code{load-path} temporarily for
c642171c
RS
227loading a few libraries in @file{site-init.el} or @file{site-load.el},
228you should bind @code{load-path} locally with @code{let} around the
229calls to @code{load}.
83ac6b45 230
089e089d 231 The default value of @code{load-path}, when running an Emacs which has
a9f0a989
RS
232been installed on the system, includes two special directories (and
233their subdirectories as well):
089e089d
RS
234
235@smallexample
a9f0a989 236"/usr/local/share/emacs/@var{version}/site-lisp"
089e089d
RS
237@end smallexample
238
a9f0a989
RS
239@noindent
240and
241
242@smallexample
243"/usr/local/share/emacs/site-lisp"
244@end smallexample
245
246@noindent
247The first one is for locally installed packages for a particular Emacs
248version; the second is for locally installed packages meant for use with
249all installed Emacs versions.
089e089d
RS
250
251 There are several reasons why a Lisp package that works well in one
252Emacs version can cause trouble in another. Sometimes packages need
253updating for incompatible changes in Emacs; sometimes they depend on
254undocumented internal Emacs data that can change without notice;
255sometimes a newer Emacs version incorporates a version of the package,
256and should be used only with that version.
257
a9f0a989
RS
258 Emacs finds these directories' subdirectories and adds them to
259@code{load-path} when it starts up. Both immediate subdirectories and
260subdirectories multiple levels down are added to @code{load-path}.
261
262 Not all subdirectories are included, though. Subdirectories whose
263names do not start with a letter or digit are excluded. Subdirectories
8241495d
RS
264named @file{RCS} or @file{CVS} are excluded. Also, a subdirectory which
265contains a file named @file{.nosearch} is excluded. You can use these
266methods to prevent certain subdirectories of the @file{site-lisp}
267directories from being searched.
a9f0a989 268
089e089d
RS
269 If you run Emacs from the directory where it was built---that is, an
270executable that has not been formally installed---then @code{load-path}
271normally contains two additional directories. These are the @code{lisp}
272and @code{site-lisp} subdirectories of the main build directory. (Both
273are represented as absolute file names.)
274
f9f59935
RS
275@deffn Command locate-library library &optional nosuffix path interactive-call
276This command finds the precise file name for library @var{library}. It
277searches for the library in the same way @code{load} does, and the
278argument @var{nosuffix} has the same meaning as in @code{load}: don't
279add suffixes @samp{.elc} or @samp{.el} to the specified name
280@var{library}.
281
282If the @var{path} is non-@code{nil}, that list of directories is used
283instead of @code{load-path}.
284
285When @code{locate-library} is called from a program, it returns the file
286name as a string. When the user runs @code{locate-library}
287interactively, the argument @var{interactive-call} is @code{t}, and this
288tells @code{locate-library} to display the file name in the echo area.
289@end deffn
290
cee6bbce
RS
291@defvar load-suffixes
292This variable is a list of suffixes (strings) that @code{load} should
293try adding to the specified file name. The default value is
f7049459
LT
294@code{(".elc" ".elc.gz" ".el" ".el.gz" ".gz")}. There is no need to
295include the null suffix.
cee6bbce
RS
296@end defvar
297
a9f0a989 298@node Loading Non-ASCII
ad800164 299@section Loading Non-@acronym{ASCII} Characters
a9f0a989 300
ad800164 301 When Emacs Lisp programs contain string constants with non-@acronym{ASCII}
a9f0a989
RS
302characters, these can be represented within Emacs either as unibyte
303strings or as multibyte strings (@pxref{Text Representations}). Which
304representation is used depends on how the file is read into Emacs. If
305it is read with decoding into multibyte representation, the text of the
306Lisp program will be multibyte text, and its string constants will be
307multibyte strings. If a file containing Latin-1 characters (for
308example) is read without decoding, the text of the program will be
309unibyte text, and its string constants will be unibyte strings.
310@xref{Coding Systems}.
311
312 To make the results more predictable, Emacs always performs decoding
313into the multibyte representation when loading Lisp files, even if it
314was started with the @samp{--unibyte} option. This means that string
ad800164 315constants with non-@acronym{ASCII} characters translate into multibyte
a9f0a989
RS
316strings. The only exception is when a particular file specifies no
317decoding.
318
319 The reason Emacs is designed this way is so that Lisp programs give
320predictable results, regardless of how Emacs was started. In addition,
321this enables programs that depend on using multibyte text to work even
322in a unibyte Emacs. Of course, such programs should be designed to
323notice whether the user prefers unibyte or multibyte text, by checking
324@code{default-enable-multibyte-characters}, and convert representations
325appropriately.
326
ad800164 327 In most Emacs Lisp programs, the fact that non-@acronym{ASCII} strings are
a9f0a989
RS
328multibyte strings should not be noticeable, since inserting them in
329unibyte buffers converts them to unibyte automatically. However, if
330this does make a difference, you can force a particular Lisp file to be
430f8c73 331interpreted as unibyte by writing @samp{-*-unibyte: t;-*-} in a
a9f0a989 332comment on the file's first line. With that designator, the file will
8241495d 333unconditionally be interpreted as unibyte, even in an ordinary
6824708b 334multibyte Emacs session. This can matter when making keybindings to
ad800164 335non-@acronym{ASCII} characters written as @code{?v@var{literal}}.
a9f0a989 336
83ac6b45
RS
337@node Autoload
338@section Autoload
339@cindex autoload
340
341 The @dfn{autoload} facility allows you to make a function or macro
bfe721d1
KH
342known in Lisp, but put off loading the file that defines it. The first
343call to the function automatically reads the proper file to install the
344real definition and other associated code, then runs the real definition
83ac6b45
RS
345as if it had been loaded all along.
346
347 There are two ways to set up an autoloaded function: by calling
348@code{autoload}, and by writing a special ``magic'' comment in the
349source before the real definition. @code{autoload} is the low-level
350primitive for autoloading; any Lisp program can call @code{autoload} at
969fe9b5 351any time. Magic comments are the most convenient way to make a function
a9f0a989
RS
352autoload, for packages installed along with Emacs. These comments do
353nothing on their own, but they serve as a guide for the command
969fe9b5
RS
354@code{update-file-autoloads}, which constructs calls to @code{autoload}
355and arranges to execute them when Emacs is built.
83ac6b45 356
78c71a98
RS
357@defun autoload function filename &optional docstring interactive type
358This function defines the function (or macro) named @var{function} so as
83ac6b45
RS
359to load automatically from @var{filename}. The string @var{filename}
360specifies the file to load to get the real definition of @var{function}.
361
f9f59935
RS
362If @var{filename} does not contain either a directory name, or the
363suffix @code{.el} or @code{.elc}, then @code{autoload} insists on adding
364one of these suffixes, and it will not load from a file whose name is
365just @var{filename} with no added suffix.
366
83ac6b45 367The argument @var{docstring} is the documentation string for the
9e328e23
RS
368function. Specifying the documentation string in the call to
369@code{autoload} makes it possible to look at the documentation without
370loading the function's real definition. Normally, this should be
371identical to the documentation string in the function definition
372itself. If it isn't, the function definition's documentation string
373takes effect when it is loaded.
83ac6b45 374
969fe9b5
RS
375If @var{interactive} is non-@code{nil}, that says @var{function} can be
376called interactively. This lets completion in @kbd{M-x} work without
a9f0a989
RS
377loading @var{function}'s real definition. The complete interactive
378specification is not given here; it's not needed unless the user
379actually calls @var{function}, and when that happens, it's time to load
380the real definition.
83ac6b45
RS
381
382You can autoload macros and keymaps as well as ordinary functions.
383Specify @var{type} as @code{macro} if @var{function} is really a macro.
384Specify @var{type} as @code{keymap} if @var{function} is really a
385keymap. Various parts of Emacs need to know this information without
386loading the real definition.
387
bda144f4
MW
388An autoloaded keymap loads automatically during key lookup when a prefix
389key's binding is the symbol @var{function}. Autoloading does not occur
390for other kinds of access to the keymap. In particular, it does not
391happen when a Lisp program gets the keymap from the value of a variable
392and calls @code{define-key}; not even if the variable name is the same
393symbol @var{function}.
394
83ac6b45 395@cindex function cell in autoload
78c71a98 396If @var{function} already has a non-void function definition that is not
83ac6b45 397an autoload object, @code{autoload} does nothing and returns @code{nil}.
78c71a98 398If the function cell of @var{function} is void, or is already an autoload
83ac6b45
RS
399object, then it is defined as an autoload object like this:
400
401@example
402(autoload @var{filename} @var{docstring} @var{interactive} @var{type})
403@end example
404
177c0ea7 405For example,
83ac6b45
RS
406
407@example
bda144f4 408@group
83ac6b45
RS
409(symbol-function 'run-prolog)
410 @result{} (autoload "prolog" 169681 t nil)
bda144f4 411@end group
83ac6b45
RS
412@end example
413
414@noindent
415In this case, @code{"prolog"} is the name of the file to load, 169681
f9f59935
RS
416refers to the documentation string in the
417@file{emacs/etc/DOC-@var{version}} file (@pxref{Documentation Basics}),
418@code{t} means the function is interactive, and @code{nil} that it is
419not a macro or a keymap.
83ac6b45
RS
420@end defun
421
422@cindex autoload errors
423 The autoloaded file usually contains other definitions and may require
424or provide one or more features. If the file is not completely loaded
425(due to an error in the evaluation of its contents), any function
426definitions or @code{provide} calls that occurred during the load are
427undone. This is to ensure that the next attempt to call any function
428autoloading from this file will try again to load the file. If not for
a9f0a989
RS
429this, then some of the functions in the file might be defined by the
430aborted load, but fail to work properly for the lack of certain
431subroutines not loaded successfully because they come later in the file.
83ac6b45
RS
432
433 If the autoloaded file fails to define the desired Lisp function or
434macro, then an error is signaled with data @code{"Autoloading failed to
435define function @var{function-name}"}.
436
437@findex update-file-autoloads
438@findex update-directory-autoloads
ce58b669
LT
439@cindex magic autoload comment
440@cindex autoload cookie
441@anchor{autoload cookie}
442 A magic autoload comment (often called an @dfn{autoload cookie})
443consists of @samp{;;;###autoload}, on a line by itself,
444just before the real definition of the function in its
83ac6b45
RS
445autoloadable source file. The command @kbd{M-x update-file-autoloads}
446writes a corresponding @code{autoload} call into @file{loaddefs.el}.
447Building Emacs loads @file{loaddefs.el} and thus calls @code{autoload}.
448@kbd{M-x update-directory-autoloads} is even more powerful; it updates
449autoloads for all files in the current directory.
450
451 The same magic comment can copy any kind of form into
452@file{loaddefs.el}. If the form following the magic comment is not a
8241495d
RS
453function-defining form or a @code{defcustom} form, it is copied
454verbatim. ``Function-defining forms'' include @code{define-skeleton},
455@code{define-derived-mode}, @code{define-generic-mode} and
5858d11f 456@code{define-minor-mode} as well as @code{defun} and
8241495d
RS
457@code{defmacro}. To save space, a @code{defcustom} form is converted to
458a @code{defvar} in @file{loaddefs.el}, with some additional information
459if it uses @code{:require}.
460
461 You can also use a magic comment to execute a form at build time
462@emph{without} executing it when the file itself is loaded. To do this,
463write the form @emph{on the same line} as the magic comment. Since it
464is in a comment, it does nothing when you load the source file; but
465@kbd{M-x update-file-autoloads} copies it to @file{loaddefs.el}, where
466it is executed while building Emacs.
83ac6b45
RS
467
468 The following example shows how @code{doctor} is prepared for
469autoloading with a magic comment:
470
471@smallexample
472;;;###autoload
473(defun doctor ()
474 "Switch to *doctor* buffer and start giving psychotherapy."
475 (interactive)
476 (switch-to-buffer "*doctor*")
477 (doctor-mode))
478@end smallexample
479
480@noindent
481Here's what that produces in @file{loaddefs.el}:
482
483@smallexample
ba6ebbd5
EZ
484(autoload (quote doctor) "doctor" "\
485Switch to *doctor* buffer and start giving psychotherapy.
486
487\(fn)" t nil)
83ac6b45
RS
488@end smallexample
489
490@noindent
ba6ebbd5 491@cindex @code{fn} in function's documentation string
83ac6b45 492The backslash and newline immediately following the double-quote are a
8241495d 493convention used only in the preloaded uncompiled Lisp files such as
83ac6b45
RS
494@file{loaddefs.el}; they tell @code{make-docfile} to put the
495documentation string in the @file{etc/DOC} file. @xref{Building Emacs}.
ba6ebbd5
EZ
496See also the commentary in @file{lib-src/make-docfile.c}. @samp{(fn)}
497in the usage part of the documentation string is replaced with the
498function's name when the various help functions (@pxref{Help
499Functions}) display it.
83ac6b45 500
7f551e47
RS
501 If you write a function definition with an unusual macro that is not
502one of the known and recognized function definition methods, use of an
503ordinary magic autoload comment would copy the whole definition into
504@code{loaddefs.el}. That is not desirable. You can put the desired
505@code{autoload} call into @code{loaddefs.el} instead by writing this:
506
507@smallexample
508;;;###autoload (autoload 'foo "myfile")
509(mydefunmacro foo
510 ...)
511@end smallexample
512
83ac6b45 513@node Repeated Loading
83ac6b45
RS
514@section Repeated Loading
515@cindex repeated loading
516
a9f0a989 517 You can load a given file more than once in an Emacs session. For
83ac6b45
RS
518example, after you have rewritten and reinstalled a function definition
519by editing it in a buffer, you may wish to return to the original
520version; you can do this by reloading the file it came from.
521
522 When you load or reload files, bear in mind that the @code{load} and
523@code{load-library} functions automatically load a byte-compiled file
524rather than a non-compiled file of similar name. If you rewrite a file
f9f59935
RS
525that you intend to save and reinstall, you need to byte-compile the new
526version; otherwise Emacs will load the older, byte-compiled file instead
527of your newer, non-compiled file! If that happens, the message
a9f0a989 528displayed when loading the file includes, @samp{(compiled; note, source is
969fe9b5 529newer)}, to remind you to recompile it.
83ac6b45
RS
530
531 When writing the forms in a Lisp library file, keep in mind that the
f9f59935
RS
532file might be loaded more than once. For example, think about whether
533each variable should be reinitialized when you reload the library;
534@code{defvar} does not change the value if the variable is already
535initialized. (@xref{Defining Variables}.)
83ac6b45
RS
536
537 The simplest way to add an element to an alist is like this:
538
539@example
9e328e23 540(push '(leif-mode " Leif") minor-mode-alist)
83ac6b45
RS
541@end example
542
543@noindent
544But this would add multiple elements if the library is reloaded.
545To avoid the problem, write this:
546
547@example
548(or (assq 'leif-mode minor-mode-alist)
9e328e23 549 (push '(leif-mode " Leif") minor-mode-alist))
83ac6b45
RS
550@end example
551
9e328e23
RS
552@noindent
553or this:
554
555@example
556(add-to-list '(leif-mode " Leif") minor-mode-alist)
557@end example
bfe721d1 558
83ac6b45
RS
559 Occasionally you will want to test explicitly whether a library has
560already been loaded. Here's one way to test, in a library, whether it
561has been loaded before:
562
563@example
969fe9b5 564(defvar foo-was-loaded nil)
bfe721d1 565
969fe9b5
RS
566(unless foo-was-loaded
567 @var{execute-first-time-only}
568 (setq foo-was-loaded t))
83ac6b45
RS
569@end example
570
571@noindent
572If the library uses @code{provide} to provide a named feature, you can
969fe9b5
RS
573use @code{featurep} earlier in the file to test whether the
574@code{provide} call has been executed before.
37680279 575@ifnottex
bfe721d1 576@xref{Named Features}.
37680279 577@end ifnottex
83ac6b45 578
bfe721d1 579@node Named Features
83ac6b45
RS
580@section Features
581@cindex features
582@cindex requiring features
583@cindex providing features
584
585 @code{provide} and @code{require} are an alternative to
586@code{autoload} for loading files automatically. They work in terms of
587named @dfn{features}. Autoloading is triggered by calling a specific
588function, but a feature is loaded the first time another program asks
589for it by name.
590
591 A feature name is a symbol that stands for a collection of functions,
592variables, etc. The file that defines them should @dfn{provide} the
593feature. Another program that uses them may ensure they are defined by
594@dfn{requiring} the feature. This loads the file of definitions if it
595hasn't been loaded already.
596
597 To require the presence of a feature, call @code{require} with the
598feature name as argument. @code{require} looks in the global variable
599@code{features} to see whether the desired feature has been provided
600already. If not, it loads the feature from the appropriate file. This
78c71a98 601file should call @code{provide} at the top level to add the feature to
83ac6b45
RS
602@code{features}; if it fails to do so, @code{require} signals an error.
603@cindex load error with require
604
177c0ea7 605 For example, in @file{emacs/lisp/prolog.el},
83ac6b45
RS
606the definition for @code{run-prolog} includes the following code:
607
608@smallexample
609(defun run-prolog ()
9e2b495b 610 "Run an inferior Prolog process, with I/O via buffer *prolog*."
83ac6b45
RS
611 (interactive)
612 (require 'comint)
613 (switch-to-buffer (make-comint "prolog" prolog-program-name))
614 (inferior-prolog-mode))
615@end smallexample
616
617@noindent
618The expression @code{(require 'comint)} loads the file @file{comint.el}
619if it has not yet been loaded. This ensures that @code{make-comint} is
969fe9b5
RS
620defined. Features are normally named after the files that provide them,
621so that @code{require} need not be given the file name.
83ac6b45
RS
622
623The @file{comint.el} file contains the following top-level expression:
624
625@smallexample
626(provide 'comint)
627@end smallexample
628
629@noindent
630This adds @code{comint} to the global @code{features} list, so that
631@code{(require 'comint)} will henceforth know that nothing needs to be
632done.
633
634@cindex byte-compiling @code{require}
78c71a98 635 When @code{require} is used at top level in a file, it takes effect
83ac6b45
RS
636when you byte-compile that file (@pxref{Byte Compilation}) as well as
637when you load it. This is in case the required package contains macros
8241495d
RS
638that the byte compiler must know about. It also avoids byte-compiler
639warnings for functions and variables defined in the file loaded with
640@code{require}.
83ac6b45
RS
641
642 Although top-level calls to @code{require} are evaluated during
643byte compilation, @code{provide} calls are not. Therefore, you can
644ensure that a file of definitions is loaded before it is byte-compiled
645by including a @code{provide} followed by a @code{require} for the same
646feature, as in the following example.
647
648@smallexample
649@group
650(provide 'my-feature) ; @r{Ignored by byte compiler,}
651 ; @r{evaluated by @code{load}.}
652(require 'my-feature) ; @r{Evaluated by byte compiler.}
653@end group
654@end smallexample
655
78c71a98
RS
656@noindent
657The compiler ignores the @code{provide}, then processes the
658@code{require} by loading the file in question. Loading the file does
659execute the @code{provide} call, so the subsequent @code{require} call
969fe9b5 660does nothing when the file is loaded.
78c71a98 661
f2aa473a 662@defun provide feature &optional subfeatures
83ac6b45
RS
663This function announces that @var{feature} is now loaded, or being
664loaded, into the current Emacs session. This means that the facilities
665associated with @var{feature} are or will be available for other Lisp
666programs.
667
668The direct effect of calling @code{provide} is to add @var{feature} to
669the front of the list @code{features} if it is not already in the list.
670The argument @var{feature} must be a symbol. @code{provide} returns
671@var{feature}.
672
f2aa473a
SM
673If provided, @var{subfeatures} should be a list of symbols indicating
674a set of specific subfeatures provided by this version of @var{feature}.
0373c25e 675You can test the presence of a subfeature using @code{featurep}.
f2aa473a 676
83ac6b45
RS
677@smallexample
678features
679 @result{} (bar bish)
680
681(provide 'foo)
682 @result{} foo
683features
684 @result{} (foo bar bish)
685@end smallexample
686
bfe721d1 687When a file is loaded to satisfy an autoload, and it stops due to an
b7ebcab7 688error in the evaluation of its contents, any function definitions or
bfe721d1
KH
689@code{provide} calls that occurred during the load are undone.
690@xref{Autoload}.
83ac6b45
RS
691@end defun
692
b6954afd 693@defun require feature &optional filename noerror
83ac6b45 694This function checks whether @var{feature} is present in the current
f9f59935
RS
695Emacs session (using @code{(featurep @var{feature})}; see below). The
696argument @var{feature} must be a symbol.
697
698If the feature is not present, then @code{require} loads @var{filename}
699with @code{load}. If @var{filename} is not supplied, then the name of
700the symbol @var{feature} is used as the base file name to load.
701However, in this case, @code{require} insists on finding @var{feature}
702with an added suffix; a file whose name is just @var{feature} won't be
703used.
83ac6b45 704
d112d11f
RS
705If @var{noerror} is non-@code{nil}, that suppresses errors from actual
706loading of the file. In that case, @code{require} returns @code{nil}
707if loading the file fails. Normally, @code{require} returns
708@var{feature}.
709
710If loading the file succeeds but does not provide @var{feature},
711@code{require} signals an error, @samp{Required feature @var{feature}
712was not provided}.
83ac6b45
RS
713@end defun
714
f2aa473a 715@defun featurep feature &optional subfeature
15bc2f77
RS
716This function returns @code{t} if @var{feature} has been provided in
717the current Emacs session (i.e.@:, if @var{feature} is a member of
718@code{features}.) If @var{subfeature} is non-@code{nil}, then the
719function returns @code{t} only if that subfeature is provided as well
720(i.e.@: if @var{subfeature} is a member of the @code{subfeature}
721property of the @var{feature} symbol.)
83ac6b45
RS
722@end defun
723
724@defvar features
725The value of this variable is a list of symbols that are the features
726loaded in the current Emacs session. Each symbol was put in this list
727with a call to @code{provide}. The order of the elements in the
728@code{features} list is not significant.
729@end defvar
730
82c59a6b
RS
731@node Where Defined
732@section Which File Defined a Certain Symbol
733
734@defun symbol-file symbol &optional type
735This function returns the name of the file that defined @var{symbol}.
736If @var{type} is @code{nil}, then any kind of definition is
737acceptable. If @var{type} is @code{defun} or @code{defvar}, that
738specifies function definition only or variable definition only.
739
e1f4af40
RS
740The value is normally an absolute file name. It can also be
741@code{nil}, if the definition is not associated with any file.
82c59a6b
RS
742@end defun
743
744 The basis for @code{symbol-file} is the data in the variable
745@code{load-history}.
746
747@defvar load-history
e1f4af40 748This variable's value is an alist connecting library file names with the
82c59a6b
RS
749names of functions and variables they define, the features they provide,
750and the features they require.
751
752Each element is a list and describes one library. The @sc{car} of the
e1f4af40
RS
753list is the absolute file name of the library, as a string. The rest
754of the list elements have these forms:
82c59a6b
RS
755
756@table @code
757@item @var{var}
758The symbol @var{var} was defined as a variable.
759@item (defun . @var{fun})
9e328e23 760The function @var{fun} was defined.
82c59a6b
RS
761@item (t . @var{fun})
762The function @var{fun} was previously an autoload before this library
9e328e23 763redefined it as a function. The following element is always
2ca28c05 764@code{(defun . @var{fun})}, which represents defining @var{fun} as a
9e328e23 765function.
82c59a6b
RS
766@item (autoload . @var{fun})
767The function @var{fun} was defined as an autoload.
768@item (require . @var{feature})
769The feature @var{feature} was required.
770@item (provide . @var{feature})
771The feature @var{feature} was provided.
772@end table
773
774The value of @code{load-history} may have one element whose @sc{car} is
775@code{nil}. This element describes definitions made with
776@code{eval-buffer} on a buffer that is not visiting a file.
777@end defvar
778
779 The command @code{eval-region} updates @code{load-history}, but does so
780by adding the symbols defined to the element for the file being visited,
781rather than replacing that element. @xref{Eval}.
782
83ac6b45
RS
783@node Unloading
784@section Unloading
785@cindex unloading
786
787@c Emacs 19 feature
788 You can discard the functions and variables loaded by a library to
789reclaim memory for other Lisp objects. To do this, use the function
790@code{unload-feature}:
791
ee6bcc94 792@deffn Command unload-feature feature &optional force
83ac6b45 793This command unloads the library that provided feature @var{feature}.
78c71a98 794It undefines all functions, macros, and variables defined in that
969fe9b5
RS
795library with @code{defun}, @code{defalias}, @code{defsubst},
796@code{defmacro}, @code{defconst}, @code{defvar}, and @code{defcustom}.
797It then restores any autoloads formerly associated with those symbols.
798(Loading saves these in the @code{autoload} property of the symbol.)
ee6bcc94 799
0373c25e 800@vindex unload-feature-special-hooks
6582d61e
RS
801Before restoring the previous definitions, @code{unload-feature} runs
802@code{remove-hook} to remove functions in the library from certain
0373c25e
RS
803hooks. These hooks include variables whose names end in @samp{hook}
804or @samp{-hooks}, plus those listed in
805@code{unload-feature-special-hooks}. This is to prevent Emacs from
806ceasing to function because important hooks refer to functions that
807are no longer defined.
6582d61e
RS
808
809@vindex @var{feature}-unload-hook
810If these measures are not sufficient to prevent malfunction, a library
811can define an explicit unload hook. If @code{@var{feature}-unload-hook}
812is defined, it is run as a normal hook before restoring the previous
813definitions, @emph{instead of} the usual hook-removing actions. The
814unload hook ought to undo all the global state changes made by the
815library that might cease to work once the library is unloaded.
8241495d
RS
816@code{unload-feature} can cause problems with libraries that fail to do
817this, so it should be used with caution.
6582d61e 818
ee6bcc94
RS
819Ordinarily, @code{unload-feature} refuses to unload a library on which
820other loaded libraries depend. (A library @var{a} depends on library
821@var{b} if @var{a} contains a @code{require} for @var{b}.) If the
822optional argument @var{force} is non-@code{nil}, dependencies are
823ignored and you can unload any library.
83ac6b45
RS
824@end deffn
825
826 The @code{unload-feature} function is written in Lisp; its actions are
827based on the variable @code{load-history}.
828
cf11ad96 829@defvar unload-feature-special-hooks
6582d61e
RS
830This variable holds a list of hooks to be scanned before unloading a
831library, to remove functions defined in the library.
832@end defvar
833
83ac6b45
RS
834@node Hooks for Loading
835@section Hooks for Loading
836@cindex loading hooks
837@cindex hooks for loading
838
839You can ask for code to be executed if and when a particular library is
840loaded, by calling @code{eval-after-load}.
841
842@defun eval-after-load library form
843This function arranges to evaluate @var{form} at the end of loading the
d2e9ee06
RS
844library @var{library}, if and when @var{library} is loaded. If
845@var{library} is already loaded, it evaluates @var{form} right away.
83ac6b45 846
f2aa473a
SM
847If @var{library} is a string, it must exactly match the argument of
848@code{load} used to load the library. To get the proper results when an
849installed library is found by searching @code{load-path}, you should not
850include any directory names in @var{library}.
851
a28b5ba3 852@var{library} can also be a feature (i.e.@: a symbol), in which case
f2aa473a 853@var{form} is evaluated when @code{(provide @var{library})} is called.
83ac6b45
RS
854
855An error in @var{form} does not undo the load, but does prevent
856execution of the rest of @var{form}.
857@end defun
858
d2e9ee06
RS
859In general, well-designed Lisp programs should not use this feature.
860The clean and modular ways to interact with a Lisp library are (1)
861examine and set the library's variables (those which are meant for
cc8c51f1 862outside use), and (2) call the library's functions. If you wish to
d2e9ee06
RS
863do (1), you can do it immediately---there is no need to wait for when
864the library is loaded. To do (2), you must load the library (preferably
865with @code{require}).
866
969fe9b5
RS
867But it is OK to use @code{eval-after-load} in your personal
868customizations if you don't feel they must meet the design standards for
869programs meant for wider use.
d2e9ee06 870
83ac6b45 871@defvar after-load-alist
8241495d
RS
872This variable holds an alist of expressions to evaluate if and when
873particular libraries are loaded. Each element looks like this:
83ac6b45
RS
874
875@example
876(@var{filename} @var{forms}@dots{})
877@end example
878
879The function @code{load} checks @code{after-load-alist} in order to
880implement @code{eval-after-load}.
881@end defvar
882
883@c Emacs 19 feature
ab5796a9
MB
884
885@ignore
886 arch-tag: df731f89-0900-4389-a436-9105241b6f7a
887@end ignore