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