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