]> code.delx.au - gnu-emacs/blob - doc/lispref/loading.texi
Merge from origin/emacs-25
[gnu-emacs] / doc / lispref / loading.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-1999, 2001-2016 Free Software
4 @c Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @node Loading
7 @chapter Loading
8 @cindex loading
9 @cindex library
10 @cindex Lisp library
11
12 Loading a file of Lisp code means bringing its contents into the
13 Lisp environment in the form of Lisp objects. Emacs finds and opens
14 the file, reads the text, evaluates each form, and then closes the
15 file. Such a file is also called a @dfn{Lisp library}.
16
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.
22
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.
31
32 Emacs can also load compiled dynamic modules: shared libraries that
33 provide additional functionality for use in Emacs Lisp programs, just
34 like a package written in Emacs Lisp would. When a dynamic module is
35 loaded, Emacs calls a specially-named initialization function which
36 the module needs to implement, and which exposes the additional
37 functions and variables to Emacs Lisp programs.
38
39 For on-demand loading of external libraries which are known in advance
40 to be required by certain Emacs primitives, @pxref{Dynamic Libraries}.
41
42 @menu
43 * How Programs Do Loading:: The @code{load} function and others.
44 * Load Suffixes:: Details about the suffixes that @code{load} tries.
45 * Library Search:: Finding a library to load.
46 * Loading Non-ASCII:: Non-@acronym{ASCII} characters in Emacs Lisp files.
47 * Autoload:: Setting up a function to autoload.
48 * Repeated Loading:: Precautions about loading a file twice.
49 * Named Features:: Loading a library if it isn't already loaded.
50 * Where Defined:: Finding which file defined a certain symbol.
51 * Unloading:: How to unload a library that was loaded.
52 * Hooks for Loading:: Providing code to be run when
53 particular libraries are loaded.
54 * Dynamic Modules:: Modules provide additional Lisp primitives.
55 @end menu
56
57 @node How Programs Do Loading
58 @section How Programs Do Loading
59
60 Emacs Lisp has several interfaces for loading. For example,
61 @code{autoload} creates a placeholder object for a function defined in a
62 file; trying to call the autoloading function loads the file to get the
63 function's real definition (@pxref{Autoload}). @code{require} loads a
64 file if it isn't already loaded (@pxref{Named Features}). Ultimately,
65 all these facilities call the @code{load} function to do the work.
66
67 @defun load filename &optional missing-ok nomessage nosuffix must-suffix
68 This function finds and opens a file of Lisp code, evaluates all the
69 forms in it, and closes the file.
70
71 To find the file, @code{load} first looks for a file named
72 @file{@var{filename}.elc}, that is, for a file whose name is
73 @var{filename} with the extension @samp{.elc} appended. If such a
74 file exists, it is loaded. If there is no file by that name, then
75 @code{load} looks for a file named @file{@var{filename}.el}. If that
76 file exists, it is loaded. Finally, if neither of those names is
77 found, @code{load} looks for a file named @var{filename} with nothing
78 appended, and loads it if it exists. (The @code{load} function is not
79 clever about looking at @var{filename}. In the perverse case of a
80 file named @file{foo.el.el}, evaluation of @code{(load "foo.el")} will
81 indeed find it.)
82
83 If Auto Compression mode is enabled, as it is by default, then if
84 @code{load} can not find a file, it searches for a compressed version
85 of the file before trying other file names. It decompresses and loads
86 it if it exists. It looks for compressed versions by appending each
87 of the suffixes in @code{jka-compr-load-suffixes} to the file name.
88 The value of this variable must be a list of strings. Its standard
89 value is @code{(".gz")}.
90
91 If the optional argument @var{nosuffix} is non-@code{nil}, then
92 @code{load} does not try the suffixes @samp{.elc} and @samp{.el}. In
93 this case, you must specify the precise file name you want, except
94 that, if Auto Compression mode is enabled, @code{load} will still use
95 @code{jka-compr-load-suffixes} to find compressed versions. By
96 specifying the precise file name and using @code{t} for
97 @var{nosuffix}, you can prevent file names like @file{foo.el.el} from
98 being tried.
99
100 If the optional argument @var{must-suffix} is non-@code{nil}, then
101 @code{load} insists that the file name used must end in either
102 @samp{.el} or @samp{.elc} (possibly extended with a compression
103 suffix), unless it contains an explicit directory name.
104
105 If the option @code{load-prefer-newer} is non-@code{nil}, then when
106 searching suffixes, @code{load} selects whichever version of a file
107 (@samp{.elc}, @samp{.el}, etc.)@: has been modified most recently.
108
109 If @var{filename} is a relative file name, such as @file{foo} or
110 @file{baz/foo.bar}, @code{load} searches for the file using the variable
111 @code{load-path}. It appends @var{filename} to each of the directories
112 listed in @code{load-path}, and loads the first file it finds whose name
113 matches. The current default directory is tried only if it is specified
114 in @code{load-path}, where @code{nil} stands for the default directory.
115 @code{load} tries all three possible suffixes in the first directory in
116 @code{load-path}, then all three suffixes in the second directory, and
117 so on. @xref{Library Search}.
118
119 Whatever the name under which the file is eventually found, and the
120 directory where Emacs found it, Emacs sets the value of the variable
121 @code{load-file-name} to that file's name.
122
123 If you get a warning that @file{foo.elc} is older than @file{foo.el}, it
124 means you should consider recompiling @file{foo.el}. @xref{Byte
125 Compilation}.
126
127 When loading a source file (not compiled), @code{load} performs
128 character set translation just as Emacs would do when visiting the file.
129 @xref{Coding Systems}.
130
131 @c This is referred to from the Macros chapter.
132 @c Not sure if it should be the other way round.
133 @cindex eager macro expansion
134 When loading an uncompiled file, Emacs tries to expand any macros
135 that the file contains (@pxref{Macros}). We refer to this as
136 @dfn{eager macro expansion}. Doing this (rather than deferring
137 the expansion until the relevant code runs) can significantly speed
138 up the execution of uncompiled code. Sometimes, this macro expansion
139 cannot be done, owing to a cyclic dependency. In the simplest
140 example of this, the file you are loading refers to a macro defined
141 in another file, and that file in turn requires the file you are
142 loading. This is generally harmless. Emacs prints a warning
143 (@samp{Eager macro-expansion skipped due to cycle@dots{}})
144 giving details of the problem, but it still loads the file, just
145 leaving the macro unexpanded for now. You may wish to restructure
146 your code so that this does not happen. Loading a compiled file does
147 not cause macroexpansion, because this should already have happened
148 during compilation. @xref{Compiling Macros}.
149
150 Messages like @samp{Loading foo...} and @samp{Loading foo...done} appear
151 in the echo area during loading unless @var{nomessage} is
152 non-@code{nil}.
153
154 @cindex load errors
155 Any unhandled errors while loading a file terminate loading. If the
156 load was done for the sake of @code{autoload}, any function definitions
157 made during the loading are undone.
158
159 @kindex file-error
160 If @code{load} can't find the file to load, then normally it signals the
161 error @code{file-error} (with @samp{Cannot open load file
162 @var{filename}}). But if @var{missing-ok} is non-@code{nil}, then
163 @code{load} just returns @code{nil}.
164
165 You can use the variable @code{load-read-function} to specify a function
166 for @code{load} to use instead of @code{read} for reading expressions.
167 See below.
168
169 @code{load} returns @code{t} if the file loads successfully.
170 @end defun
171
172 @deffn Command load-file filename
173 This command loads the file @var{filename}. If @var{filename} is a
174 relative file name, then the current default directory is assumed.
175 This command does not use @code{load-path}, and does not append
176 suffixes. However, it does look for compressed versions (if Auto
177 Compression Mode is enabled). Use this command if you wish to specify
178 precisely the file name to load.
179 @end deffn
180
181 @deffn Command load-library library
182 This command loads the library named @var{library}. It is equivalent to
183 @code{load}, except for the way it reads its argument interactively.
184 @xref{Lisp Libraries,,,emacs, The GNU Emacs Manual}.
185 @end deffn
186
187 @defvar load-in-progress
188 This variable is non-@code{nil} if Emacs is in the process of loading a
189 file, and it is @code{nil} otherwise.
190 @end defvar
191
192 @defvar load-file-name
193 When Emacs is in the process of loading a file, this variable's value
194 is the name of that file, as Emacs found it during the search
195 described earlier in this section.
196 @end defvar
197
198 @defvar load-read-function
199 @anchor{Definition of load-read-function}
200 @c do not allow page break at anchor; work around Texinfo deficiency.
201 This variable specifies an alternate expression-reading function for
202 @code{load} and @code{eval-region} to use instead of @code{read}.
203 The function should accept one argument, just as @code{read} does.
204
205 Normally, the variable's value is @code{nil}, which means those
206 functions should use @code{read}.
207
208 Instead of using this variable, it is cleaner to use another, newer
209 feature: to pass the function as the @var{read-function} argument to
210 @code{eval-region}. @xref{Definition of eval-region,, Eval}.
211 @end defvar
212
213 For information about how @code{load} is used in building Emacs, see
214 @ref{Building Emacs}.
215
216 @node Load Suffixes
217 @section Load Suffixes
218 We now describe some technical details about the exact suffixes that
219 @code{load} tries.
220
221 @defvar load-suffixes
222 This is a list of suffixes indicating (compiled or source) Emacs Lisp
223 files. It should not include the empty string. @code{load} uses
224 these suffixes in order when it appends Lisp suffixes to the specified
225 file name. The standard value is @code{(".elc" ".el")} which produces
226 the behavior described in the previous section.
227 @end defvar
228
229 @defvar load-file-rep-suffixes
230 This is a list of suffixes that indicate representations of the same
231 file. This list should normally start with the empty string.
232 When @code{load} searches for a file it appends the suffixes in this
233 list, in order, to the file name, before searching for another file.
234
235 Enabling Auto Compression mode appends the suffixes in
236 @code{jka-compr-load-suffixes} to this list and disabling Auto
237 Compression mode removes them again. The standard value of
238 @code{load-file-rep-suffixes} if Auto Compression mode is disabled is
239 @code{("")}. Given that the standard value of
240 @code{jka-compr-load-suffixes} is @code{(".gz")}, the standard value
241 of @code{load-file-rep-suffixes} if Auto Compression mode is enabled
242 is @code{("" ".gz")}.
243 @end defvar
244
245 @defun get-load-suffixes
246 This function returns the list of all suffixes that @code{load} should
247 try, in order, when its @var{must-suffix} argument is non-@code{nil}.
248 This takes both @code{load-suffixes} and @code{load-file-rep-suffixes}
249 into account. If @code{load-suffixes}, @code{jka-compr-load-suffixes}
250 and @code{load-file-rep-suffixes} all have their standard values, this
251 function returns @code{(".elc" ".elc.gz" ".el" ".el.gz")} if Auto
252 Compression mode is enabled and @code{(".elc" ".el")} if Auto
253 Compression mode is disabled.
254 @end defun
255
256 To summarize, @code{load} normally first tries the suffixes in the
257 value of @code{(get-load-suffixes)} and then those in
258 @code{load-file-rep-suffixes}. If @var{nosuffix} is non-@code{nil},
259 it skips the former group, and if @var{must-suffix} is non-@code{nil},
260 it skips the latter group.
261
262 @defopt load-prefer-newer
263 If this option is non-@code{nil}, then rather than stopping at the
264 first suffix that exists, @code{load} tests them all, and uses
265 whichever file is the newest.
266 @end defopt
267
268 @node Library Search
269 @section Library Search
270 @cindex library search
271 @cindex find library
272
273 When Emacs loads a Lisp library, it searches for the library
274 in a list of directories specified by the variable @code{load-path}.
275
276 @defvar load-path
277 The value of this variable is a list of directories to search when
278 loading files with @code{load}. Each element is a string (which must be
279 a directory name) or @code{nil} (which stands for the current working
280 directory).
281 @end defvar
282
283 When Emacs starts up, it sets up the value of @code{load-path}
284 in several steps. First, it initializes @code{load-path} using
285 default locations set when Emacs was compiled. Normally, this
286 is a directory something like
287
288 @example
289 "/usr/local/share/emacs/@var{version}/lisp"
290 @end example
291
292 (In this and the following examples, replace @file{/usr/local} with
293 the installation prefix appropriate for your Emacs.)
294 These directories contain the standard Lisp files that come with
295 Emacs. If Emacs cannot find them, it will not start correctly.
296
297 If you run Emacs from the directory where it was built---that is, an
298 executable that has not been formally installed---Emacs instead
299 initializes @code{load-path} using the @file{lisp}
300 directory in the directory containing the sources from which it
301 was built.
302 @c Though there should be no *.el files in builddir/lisp, so it's pointless.
303 If you built Emacs in a separate directory from the
304 sources, it also adds the lisp directories from the build directory.
305 (In all cases, elements are represented as absolute file names.)
306
307 @cindex site-lisp directories
308 Unless you start Emacs with the @option{--no-site-lisp} option,
309 it then adds two more @file{site-lisp} directories to the front of
310 @code{load-path}. These are intended for locally installed Lisp files,
311 and are normally of the form:
312
313 @example
314 "/usr/local/share/emacs/@var{version}/site-lisp"
315 @end example
316
317 @noindent
318 and
319
320 @example
321 "/usr/local/share/emacs/site-lisp"
322 @end example
323
324 @noindent
325 The first one is for locally installed files for a specific Emacs
326 version; the second is for locally installed files meant for use
327 with all installed Emacs versions. (If Emacs is running uninstalled,
328 it also adds @file{site-lisp} directories from the source and build
329 directories, if they exist. Normally these directories do not contain
330 @file{site-lisp} directories.)
331
332 @cindex @env{EMACSLOADPATH} environment variable
333 If the environment variable @env{EMACSLOADPATH} is set, it modifies
334 the above initialization procedure. Emacs initializes
335 @code{load-path} based on the value of the environment variable.
336
337 The syntax of @env{EMACSLOADPATH} is the same as used for @code{PATH};
338 directory names are separated by @samp{:} (or @samp{;}, on some
339 operating systems).
340 @ignore
341 @c AFAICS, does not (yet) work right to specify non-absolute elements.
342 and @samp{.} stands for the current default directory.
343 @end ignore
344 Here is an example of how to set @env{EMACSLOADPATH} variable (from a
345 @command{sh}-style shell):
346
347 @example
348 export EMACSLOADPATH=/home/foo/.emacs.d/lisp:
349 @end example
350
351 An empty element in the value of the environment variable, whether
352 trailing (as in the above example), leading, or embedded, is replaced
353 by the default value of @code{load-path} as determined by the standard
354 initialization procedure. If there are no such empty elements, then
355 @env{EMACSLOADPATH} specifies the entire @code{load-path}. You must
356 include either an empty element, or the explicit path to the directory
357 containing the standard Lisp files, else Emacs will not function.
358 (Another way to modify @code{load-path} is to use the @option{-L}
359 command-line option when starting Emacs; see below.)
360
361 For each directory in @code{load-path}, Emacs then checks to see if
362 it contains a file @file{subdirs.el}, and if so, loads it. The
363 @file{subdirs.el} file is created when Emacs is built/installed,
364 and contains code that causes Emacs to add any subdirectories of those
365 directories to @code{load-path}. Both immediate subdirectories and
366 subdirectories multiple levels down are added. But it excludes
367 subdirectories whose names do not start with a letter or digit, and
368 subdirectories named @file{RCS} or @file{CVS}, and subdirectories
369 containing a file named @file{.nosearch}.
370
371 Next, Emacs adds any extra load directories that you specify using the
372 @option{-L} command-line option (@pxref{Action Arguments,,,emacs, The
373 GNU Emacs Manual}). It also adds the directories where optional
374 packages are installed, if any (@pxref{Packaging Basics}).
375
376 It is common to add code to one's init file (@pxref{Init File}) to
377 add one or more directories to @code{load-path}. For example:
378
379 @example
380 (push "~/.emacs.d/lisp" load-path)
381 @end example
382
383 Dumping Emacs uses a special value of @code{load-path}. If you use
384 a @file{site-load.el} or @file{site-init.el} file to customize the
385 dumped Emacs (@pxref{Building Emacs}), any changes to @code{load-path}
386 that these files make will be lost after dumping.
387
388 @deffn Command locate-library library &optional nosuffix path interactive-call
389 This command finds the precise file name for library @var{library}. It
390 searches for the library in the same way @code{load} does, and the
391 argument @var{nosuffix} has the same meaning as in @code{load}: don't
392 add suffixes @samp{.elc} or @samp{.el} to the specified name
393 @var{library}.
394
395 If the @var{path} is non-@code{nil}, that list of directories is used
396 instead of @code{load-path}.
397
398 When @code{locate-library} is called from a program, it returns the file
399 name as a string. When the user runs @code{locate-library}
400 interactively, the argument @var{interactive-call} is @code{t}, and this
401 tells @code{locate-library} to display the file name in the echo area.
402 @end deffn
403
404 @cindex shadowed Lisp files
405 @deffn Command list-load-path-shadows &optional stringp
406 This command shows a list of @dfn{shadowed} Emacs Lisp files. A
407 shadowed file is one that will not normally be loaded, despite being
408 in a directory on @code{load-path}, due to the existence of another
409 similarly-named file in a directory earlier on @code{load-path}.
410
411 For instance, suppose @code{load-path} is set to
412
413 @example
414 ("/opt/emacs/site-lisp" "/usr/share/emacs/23.3/lisp")
415 @end example
416
417 @noindent
418 and that both these directories contain a file named @file{foo.el}.
419 Then @code{(require 'foo)} never loads the file in the second
420 directory. Such a situation might indicate a problem in the way Emacs
421 was installed.
422
423 When called from Lisp, this function prints a message listing the
424 shadowed files, instead of displaying them in a buffer. If the
425 optional argument @code{stringp} is non-@code{nil}, it instead returns
426 the shadowed files as a string.
427 @end deffn
428
429 @node Loading Non-ASCII
430 @section Loading Non-@acronym{ASCII} Characters
431 @cindex loading, and non-ASCII characters
432 @cindex non-ASCII characters in loaded files
433
434 When Emacs Lisp programs contain string constants with non-@acronym{ASCII}
435 characters, these can be represented within Emacs either as unibyte
436 strings or as multibyte strings (@pxref{Text Representations}). Which
437 representation is used depends on how the file is read into Emacs. If
438 it is read with decoding into multibyte representation, the text of the
439 Lisp program will be multibyte text, and its string constants will be
440 multibyte strings. If a file containing Latin-1 characters (for
441 example) is read without decoding, the text of the program will be
442 unibyte text, and its string constants will be unibyte strings.
443 @xref{Coding Systems}.
444
445 In most Emacs Lisp programs, the fact that non-@acronym{ASCII}
446 strings are multibyte strings should not be noticeable, since
447 inserting them in unibyte buffers converts them to unibyte
448 automatically. However, if this does make a difference, you can force
449 a particular Lisp file to be interpreted as unibyte by writing
450 @samp{coding: raw-text} in a local variables section. With
451 that designator, the file will unconditionally be interpreted as
452 unibyte. This can matter when making keybindings to
453 non-@acronym{ASCII} characters written as @code{?v@var{literal}}.
454
455 @node Autoload
456 @section Autoload
457 @cindex autoload
458
459 The @dfn{autoload} facility lets you register the existence of a
460 function or macro, but put off loading the file that defines it. The
461 first call to the function automatically loads the proper library, in
462 order to install the real definition and other associated code, then
463 runs the real definition as if it had been loaded all along.
464 Autoloading can also be triggered by looking up the documentation of
465 the function or macro (@pxref{Documentation Basics}).
466
467 There are two ways to set up an autoloaded function: by calling
468 @code{autoload}, and by writing a ``magic'' comment in the
469 source before the real definition. @code{autoload} is the low-level
470 primitive for autoloading; any Lisp program can call @code{autoload} at
471 any time. Magic comments are the most convenient way to make a function
472 autoload, for packages installed along with Emacs. These comments do
473 nothing on their own, but they serve as a guide for the command
474 @code{update-file-autoloads}, which constructs calls to @code{autoload}
475 and arranges to execute them when Emacs is built.
476
477 @defun autoload function filename &optional docstring interactive type
478 This function defines the function (or macro) named @var{function} so as
479 to load automatically from @var{filename}. The string @var{filename}
480 specifies the file to load to get the real definition of @var{function}.
481
482 If @var{filename} does not contain either a directory name, or the
483 suffix @code{.el} or @code{.elc}, this function insists on adding one
484 of these suffixes, and it will not load from a file whose name is just
485 @var{filename} with no added suffix. (The variable
486 @code{load-suffixes} specifies the exact required suffixes.)
487
488 The argument @var{docstring} is the documentation string for the
489 function. Specifying the documentation string in the call to
490 @code{autoload} makes it possible to look at the documentation without
491 loading the function's real definition. Normally, this should be
492 identical to the documentation string in the function definition
493 itself. If it isn't, the function definition's documentation string
494 takes effect when it is loaded.
495
496 If @var{interactive} is non-@code{nil}, that says @var{function} can be
497 called interactively. This lets completion in @kbd{M-x} work without
498 loading @var{function}'s real definition. The complete interactive
499 specification is not given here; it's not needed unless the user
500 actually calls @var{function}, and when that happens, it's time to load
501 the real definition.
502
503 You can autoload macros and keymaps as well as ordinary functions.
504 Specify @var{type} as @code{macro} if @var{function} is really a macro.
505 Specify @var{type} as @code{keymap} if @var{function} is really a
506 keymap. Various parts of Emacs need to know this information without
507 loading the real definition.
508
509 An autoloaded keymap loads automatically during key lookup when a prefix
510 key's binding is the symbol @var{function}. Autoloading does not occur
511 for other kinds of access to the keymap. In particular, it does not
512 happen when a Lisp program gets the keymap from the value of a variable
513 and calls @code{define-key}; not even if the variable name is the same
514 symbol @var{function}.
515
516 @cindex function cell in autoload
517 If @var{function} already has a non-void function definition that is not
518 an autoload object, this function does nothing and returns @code{nil}.
519 Otherwise, it constructs an autoload object (@pxref{Autoload Type}),
520 and stores it as the function definition for @var{function}. The
521 autoload object has this form:
522
523 @example
524 (autoload @var{filename} @var{docstring} @var{interactive} @var{type})
525 @end example
526
527 For example,
528
529 @example
530 @group
531 (symbol-function 'run-prolog)
532 @result{} (autoload "prolog" 169681 t nil)
533 @end group
534 @end example
535
536 @noindent
537 In this case, @code{"prolog"} is the name of the file to load, 169681
538 refers to the documentation string in the
539 @file{emacs/etc/DOC} file (@pxref{Documentation Basics}),
540 @code{t} means the function is interactive, and @code{nil} that it is
541 not a macro or a keymap.
542 @end defun
543
544 @defun autoloadp object
545 This function returns non-@code{nil} if @var{object} is an autoload
546 object. For example, to check if @code{run-prolog} is defined as an
547 autoloaded function, evaluate
548
549 @smallexample
550 (autoloadp (symbol-function 'run-prolog))
551 @end smallexample
552 @end defun
553
554 @cindex autoload errors
555 The autoloaded file usually contains other definitions and may require
556 or provide one or more features. If the file is not completely loaded
557 (due to an error in the evaluation of its contents), any function
558 definitions or @code{provide} calls that occurred during the load are
559 undone. This is to ensure that the next attempt to call any function
560 autoloading from this file will try again to load the file. If not for
561 this, then some of the functions in the file might be defined by the
562 aborted load, but fail to work properly for the lack of certain
563 subroutines not loaded successfully because they come later in the file.
564
565 If the autoloaded file fails to define the desired Lisp function or
566 macro, then an error is signaled with data @code{"Autoloading failed to
567 define function @var{function-name}"}.
568
569 @findex update-file-autoloads
570 @findex update-directory-autoloads
571 @cindex magic autoload comment
572 @cindex autoload cookie
573 @anchor{autoload cookie}
574 A magic autoload comment (often called an @dfn{autoload cookie})
575 consists of @samp{;;;###autoload}, on a line by itself,
576 just before the real definition of the function in its
577 autoloadable source file. The command @kbd{M-x update-file-autoloads}
578 writes a corresponding @code{autoload} call into @file{loaddefs.el}.
579 (The string that serves as the autoload cookie and the name of the
580 file generated by @code{update-file-autoloads} can be changed from the
581 above defaults, see below.)
582 Building Emacs loads @file{loaddefs.el} and thus calls @code{autoload}.
583 @kbd{M-x update-directory-autoloads} is even more powerful; it updates
584 autoloads for all files in the current directory.
585
586 The same magic comment can copy any kind of form into
587 @file{loaddefs.el}. The form following the magic comment is copied
588 verbatim, @emph{except} if it is one of the forms which the autoload
589 facility handles specially (e.g., by conversion into an
590 @code{autoload} call). The forms which are not copied verbatim are
591 the following:
592
593 @table @asis
594 @item Definitions for function or function-like objects:
595 @code{defun} and @code{defmacro}; also @code{cl-defun} and
596 @code{cl-defmacro} (@pxref{Argument Lists,,,cl,Common Lisp Extensions}),
597 and @code{define-overloadable-function} (see the commentary in
598 @file{mode-local.el}).
599
600 @item Definitions for major or minor modes:
601 @code{define-minor-mode}, @code{define-globalized-minor-mode},
602 @code{define-generic-mode}, @code{define-derived-mode},
603 @code{easy-mmode-define-minor-mode},
604 @code{easy-mmode-define-global-mode}, @code{define-compilation-mode},
605 and @code{define-global-minor-mode}.
606
607 @item Other definition types:
608 @code{defcustom}, @code{defgroup}, @code{defclass}
609 (@pxref{Top,EIEIO,,eieio,EIEIO}), and @code{define-skeleton} (see the
610 commentary in @file{skeleton.el}).
611 @end table
612
613 You can also use a magic comment to execute a form at build time
614 @emph{without} executing it when the file itself is loaded. To do this,
615 write the form @emph{on the same line} as the magic comment. Since it
616 is in a comment, it does nothing when you load the source file; but
617 @kbd{M-x update-file-autoloads} copies it to @file{loaddefs.el}, where
618 it is executed while building Emacs.
619
620 The following example shows how @code{doctor} is prepared for
621 autoloading with a magic comment:
622
623 @example
624 ;;;###autoload
625 (defun doctor ()
626 "Switch to *doctor* buffer and start giving psychotherapy."
627 (interactive)
628 (switch-to-buffer "*doctor*")
629 (doctor-mode))
630 @end example
631
632 @noindent
633 Here's what that produces in @file{loaddefs.el}:
634
635 @example
636 (autoload (quote doctor) "doctor" "\
637 Switch to *doctor* buffer and start giving psychotherapy.
638
639 \(fn)" t nil)
640 @end example
641
642 @noindent
643 @cindex @code{fn} in function's documentation string
644 The backslash and newline immediately following the double-quote are a
645 convention used only in the preloaded uncompiled Lisp files such as
646 @file{loaddefs.el}; they tell @code{make-docfile} to put the
647 documentation string in the @file{etc/DOC} file. @xref{Building Emacs}.
648 See also the commentary in @file{lib-src/make-docfile.c}. @samp{(fn)}
649 in the usage part of the documentation string is replaced with the
650 function's name when the various help functions (@pxref{Help
651 Functions}) display it.
652
653 If you write a function definition with an unusual macro that is not
654 one of the known and recognized function definition methods, use of an
655 ordinary magic autoload comment would copy the whole definition into
656 @code{loaddefs.el}. That is not desirable. You can put the desired
657 @code{autoload} call into @code{loaddefs.el} instead by writing this:
658
659 @example
660 ;;;###autoload (autoload 'foo "myfile")
661 (mydefunmacro foo
662 ...)
663 @end example
664
665 You can use a non-default string as the autoload cookie and have the
666 corresponding autoload calls written into a file whose name is
667 different from the default @file{loaddefs.el}. Emacs provides two
668 variables to control this:
669
670 @defvar generate-autoload-cookie
671 The value of this variable should be a string whose syntax is a Lisp
672 comment. @kbd{M-x update-file-autoloads} copies the Lisp form that
673 follows the cookie into the autoload file it generates. The default
674 value of this variable is @code{";;;###autoload"}.
675 @end defvar
676
677 @defvar generated-autoload-file
678 The value of this variable names an Emacs Lisp file where the autoload
679 calls should go. The default value is @file{loaddefs.el}, but you can
680 override that, e.g., in the local variables section of a
681 @file{.el} file (@pxref{File Local Variables}). The autoload file is
682 assumed to contain a trailer starting with a formfeed character.
683 @end defvar
684
685 The following function may be used to explicitly load the library
686 specified by an autoload object:
687
688 @defun autoload-do-load autoload &optional name macro-only
689 This function performs the loading specified by @var{autoload}, which
690 should be an autoload object. The optional argument @var{name}, if
691 non-@code{nil}, should be a symbol whose function value is
692 @var{autoload}; in that case, the return value of this function is the
693 symbol's new function value. If the value of the optional argument
694 @var{macro-only} is @code{macro}, this function avoids loading a
695 function, only a macro.
696 @end defun
697
698 @node Repeated Loading
699 @section Repeated Loading
700 @cindex repeated loading
701
702 You can load a given file more than once in an Emacs session. For
703 example, after you have rewritten and reinstalled a function definition
704 by editing it in a buffer, you may wish to return to the original
705 version; you can do this by reloading the file it came from.
706
707 When you load or reload files, bear in mind that the @code{load} and
708 @code{load-library} functions automatically load a byte-compiled file
709 rather than a non-compiled file of similar name. If you rewrite a file
710 that you intend to save and reinstall, you need to byte-compile the new
711 version; otherwise Emacs will load the older, byte-compiled file instead
712 of your newer, non-compiled file! If that happens, the message
713 displayed when loading the file includes, @samp{(compiled; note, source is
714 newer)}, to remind you to recompile it.
715
716 When writing the forms in a Lisp library file, keep in mind that the
717 file might be loaded more than once. For example, think about whether
718 each variable should be reinitialized when you reload the library;
719 @code{defvar} does not change the value if the variable is already
720 initialized. (@xref{Defining Variables}.)
721
722 The simplest way to add an element to an alist is like this:
723
724 @example
725 (push '(leif-mode " Leif") minor-mode-alist)
726 @end example
727
728 @noindent
729 But this would add multiple elements if the library is reloaded. To
730 avoid the problem, use @code{add-to-list} (@pxref{List Variables}):
731
732 @example
733 (add-to-list 'minor-mode-alist '(leif-mode " Leif"))
734 @end example
735
736 Occasionally you will want to test explicitly whether a library has
737 already been loaded. If the library uses @code{provide} to provide a
738 named feature, you can use @code{featurep} earlier in the file to test
739 whether the @code{provide} call has been executed before (@pxref{Named
740 Features}). Alternatively, you could use something like this:
741
742 @example
743 (defvar foo-was-loaded nil)
744
745 (unless foo-was-loaded
746 @var{execute-first-time-only}
747 (setq foo-was-loaded t))
748 @end example
749
750 @noindent
751
752 @node Named Features
753 @section Features
754 @cindex features
755 @cindex requiring features
756 @cindex providing features
757
758 @code{provide} and @code{require} are an alternative to
759 @code{autoload} for loading files automatically. They work in terms of
760 named @dfn{features}. Autoloading is triggered by calling a specific
761 function, but a feature is loaded the first time another program asks
762 for it by name.
763
764 A feature name is a symbol that stands for a collection of functions,
765 variables, etc. The file that defines them should @dfn{provide} the
766 feature. Another program that uses them may ensure they are defined by
767 @dfn{requiring} the feature. This loads the file of definitions if it
768 hasn't been loaded already.
769
770 @cindex load error with require
771 To require the presence of a feature, call @code{require} with the
772 feature name as argument. @code{require} looks in the global variable
773 @code{features} to see whether the desired feature has been provided
774 already. If not, it loads the feature from the appropriate file. This
775 file should call @code{provide} at the top level to add the feature to
776 @code{features}; if it fails to do so, @code{require} signals an error.
777
778 For example, in @file{idlwave.el}, the definition for
779 @code{idlwave-complete-filename} includes the following code:
780
781 @example
782 (defun idlwave-complete-filename ()
783 "Use the comint stuff to complete a file name."
784 (require 'comint)
785 (let* ((comint-file-name-chars "~/A-Za-z0-9+@@:_.$#%=@{@}\\-")
786 (comint-completion-addsuffix nil)
787 ...)
788 (comint-dynamic-complete-filename)))
789 @end example
790
791 @noindent
792 The expression @code{(require 'comint)} loads the file @file{comint.el}
793 if it has not yet been loaded, ensuring that
794 @code{comint-dynamic-complete-filename} is defined. Features are
795 normally named after the files that provide them, so that
796 @code{require} need not be given the file name. (Note that it is
797 important that the @code{require} statement be outside the body of the
798 @code{let}. Loading a library while its variables are let-bound can
799 have unintended consequences, namely the variables becoming unbound
800 after the let exits.)
801
802 The @file{comint.el} file contains the following top-level expression:
803
804 @example
805 (provide 'comint)
806 @end example
807
808 @noindent
809 This adds @code{comint} to the global @code{features} list, so that
810 @code{(require 'comint)} will henceforth know that nothing needs to be
811 done.
812
813 @cindex byte-compiling @code{require}
814 When @code{require} is used at top level in a file, it takes effect
815 when you byte-compile that file (@pxref{Byte Compilation}) as well as
816 when you load it. This is in case the required package contains macros
817 that the byte compiler must know about. It also avoids byte compiler
818 warnings for functions and variables defined in the file loaded with
819 @code{require}.
820
821 Although top-level calls to @code{require} are evaluated during
822 byte compilation, @code{provide} calls are not. Therefore, you can
823 ensure that a file of definitions is loaded before it is byte-compiled
824 by including a @code{provide} followed by a @code{require} for the same
825 feature, as in the following example.
826
827 @example
828 @group
829 (provide 'my-feature) ; @r{Ignored by byte compiler,}
830 ; @r{evaluated by @code{load}.}
831 (require 'my-feature) ; @r{Evaluated by byte compiler.}
832 @end group
833 @end example
834
835 @noindent
836 The compiler ignores the @code{provide}, then processes the
837 @code{require} by loading the file in question. Loading the file does
838 execute the @code{provide} call, so the subsequent @code{require} call
839 does nothing when the file is loaded.
840
841 @defun provide feature &optional subfeatures
842 This function announces that @var{feature} is now loaded, or being
843 loaded, into the current Emacs session. This means that the facilities
844 associated with @var{feature} are or will be available for other Lisp
845 programs.
846
847 The direct effect of calling @code{provide} is if not already in
848 @var{features} then to add @var{feature} to the front of that list and
849 call any @code{eval-after-load} code waiting for it (@pxref{Hooks for
850 Loading}). The argument @var{feature} must be a symbol.
851 @code{provide} returns @var{feature}.
852
853 If provided, @var{subfeatures} should be a list of symbols indicating
854 a set of specific subfeatures provided by this version of
855 @var{feature}. You can test the presence of a subfeature using
856 @code{featurep}. The idea of subfeatures is that you use them when a
857 package (which is one @var{feature}) is complex enough to make it
858 useful to give names to various parts or functionalities of the
859 package, which might or might not be loaded, or might or might not be
860 present in a given version. @xref{Network Feature Testing}, for
861 an example.
862
863 @example
864 features
865 @result{} (bar bish)
866
867 (provide 'foo)
868 @result{} foo
869 features
870 @result{} (foo bar bish)
871 @end example
872
873 When a file is loaded to satisfy an autoload, and it stops due to an
874 error in the evaluation of its contents, any function definitions or
875 @code{provide} calls that occurred during the load are undone.
876 @xref{Autoload}.
877 @end defun
878
879 @defun require feature &optional filename noerror
880 This function checks whether @var{feature} is present in the current
881 Emacs session (using @code{(featurep @var{feature})}; see below). The
882 argument @var{feature} must be a symbol.
883
884 If the feature is not present, then @code{require} loads @var{filename}
885 with @code{load}. If @var{filename} is not supplied, then the name of
886 the symbol @var{feature} is used as the base file name to load.
887 However, in this case, @code{require} insists on finding @var{feature}
888 with an added @samp{.el} or @samp{.elc} suffix (possibly extended with
889 a compression suffix); a file whose name is just @var{feature} won't
890 be used. (The variable @code{load-suffixes} specifies the exact
891 required Lisp suffixes.)
892
893 If @var{noerror} is non-@code{nil}, that suppresses errors from actual
894 loading of the file. In that case, @code{require} returns @code{nil}
895 if loading the file fails. Normally, @code{require} returns
896 @var{feature}.
897
898 If loading the file succeeds but does not provide @var{feature},
899 @code{require} signals an error, @samp{Required feature @var{feature}
900 was not provided}.
901 @end defun
902
903 @defun featurep feature &optional subfeature
904 This function returns @code{t} if @var{feature} has been provided in
905 the current Emacs session (i.e., if @var{feature} is a member of
906 @code{features}.) If @var{subfeature} is non-@code{nil}, then the
907 function returns @code{t} only if that subfeature is provided as well
908 (i.e., if @var{subfeature} is a member of the @code{subfeature}
909 property of the @var{feature} symbol.)
910 @end defun
911
912 @defvar features
913 The value of this variable is a list of symbols that are the features
914 loaded in the current Emacs session. Each symbol was put in this list
915 with a call to @code{provide}. The order of the elements in the
916 @code{features} list is not significant.
917 @end defvar
918
919 @node Where Defined
920 @section Which File Defined a Certain Symbol
921 @cindex symbol, where defined
922 @cindex where was a symbol defined
923
924 @defun symbol-file symbol &optional type
925 This function returns the name of the file that defined @var{symbol}.
926 If @var{type} is @code{nil}, then any kind of definition is acceptable.
927 If @var{type} is @code{defun}, @code{defvar}, or @code{defface}, that
928 specifies function definition, variable definition, or face definition
929 only.
930
931 The value is normally an absolute file name. It can also be @code{nil},
932 if the definition is not associated with any file. If @var{symbol}
933 specifies an autoloaded function, the value can be a relative file name
934 without extension.
935 @end defun
936
937 The basis for @code{symbol-file} is the data in the variable
938 @code{load-history}.
939
940 @defvar load-history
941 The value of this variable is an alist that associates the names of
942 loaded library files with the names of the functions and variables
943 they defined, as well as the features they provided or required.
944
945 Each element in this alist describes one loaded library (including
946 libraries that are preloaded at startup). It is a list whose @sc{car}
947 is the absolute file name of the library (a string). The rest of the
948 list elements have these forms:
949
950 @table @code
951 @item @var{var}
952 The symbol @var{var} was defined as a variable.
953 @item (defun . @var{fun})
954 The function @var{fun} was defined.
955 @item (t . @var{fun})
956 The function @var{fun} was previously an autoload before this library
957 redefined it as a function. The following element is always
958 @code{(defun . @var{fun})}, which represents defining @var{fun} as a
959 function.
960 @item (autoload . @var{fun})
961 The function @var{fun} was defined as an autoload.
962 @item (defface . @var{face})
963 The face @var{face} was defined.
964 @item (require . @var{feature})
965 The feature @var{feature} was required.
966 @item (provide . @var{feature})
967 The feature @var{feature} was provided.
968 @end table
969
970 The value of @code{load-history} may have one element whose @sc{car} is
971 @code{nil}. This element describes definitions made with
972 @code{eval-buffer} on a buffer that is not visiting a file.
973 @end defvar
974
975 The command @code{eval-region} updates @code{load-history}, but does so
976 by adding the symbols defined to the element for the file being visited,
977 rather than replacing that element. @xref{Eval}.
978
979 @node Unloading
980 @section Unloading
981 @cindex unloading packages
982
983 @c Emacs 19 feature
984 You can discard the functions and variables loaded by a library to
985 reclaim memory for other Lisp objects. To do this, use the function
986 @code{unload-feature}:
987
988 @deffn Command unload-feature feature &optional force
989 This command unloads the library that provided feature @var{feature}.
990 It undefines all functions, macros, and variables defined in that
991 library with @code{defun}, @code{defalias}, @code{defsubst},
992 @code{defmacro}, @code{defconst}, @code{defvar}, and @code{defcustom}.
993 It then restores any autoloads formerly associated with those symbols.
994 (Loading saves these in the @code{autoload} property of the symbol.)
995
996 Before restoring the previous definitions, @code{unload-feature} runs
997 @code{remove-hook} to remove functions in the library from certain
998 hooks. These hooks include variables whose names end in @samp{-hook}
999 (or the deprecated suffix @samp{-hooks}), plus those listed in
1000 @code{unload-feature-special-hooks}, as well as
1001 @code{auto-mode-alist}. This is to prevent Emacs from ceasing to
1002 function because important hooks refer to functions that are no longer
1003 defined.
1004
1005 Standard unloading activities also undoes ELP profiling of functions
1006 in that library, unprovides any features provided by the library, and
1007 cancels timers held in variables defined by the library.
1008
1009 @vindex @var{feature}-unload-function
1010 If these measures are not sufficient to prevent malfunction, a library
1011 can define an explicit unloader named @code{@var{feature}-unload-function}.
1012 If that symbol is defined as a function, @code{unload-feature} calls
1013 it with no arguments before doing anything else. It can do whatever
1014 is appropriate to unload the library. If it returns @code{nil},
1015 @code{unload-feature} proceeds to take the normal unload actions.
1016 Otherwise it considers the job to be done.
1017
1018 Ordinarily, @code{unload-feature} refuses to unload a library on which
1019 other loaded libraries depend. (A library @var{a} depends on library
1020 @var{b} if @var{a} contains a @code{require} for @var{b}.) If the
1021 optional argument @var{force} is non-@code{nil}, dependencies are
1022 ignored and you can unload any library.
1023 @end deffn
1024
1025 The @code{unload-feature} function is written in Lisp; its actions are
1026 based on the variable @code{load-history}.
1027
1028 @defvar unload-feature-special-hooks
1029 This variable holds a list of hooks to be scanned before unloading a
1030 library, to remove functions defined in the library.
1031 @end defvar
1032
1033 @node Hooks for Loading
1034 @section Hooks for Loading
1035 @cindex loading hooks
1036 @cindex hooks for loading
1037
1038 You can ask for code to be executed each time Emacs loads a library,
1039 by using the variable @code{after-load-functions}:
1040
1041 @defvar after-load-functions
1042 This abnormal hook is run after loading a file. Each function in the
1043 hook is called with a single argument, the absolute filename of the
1044 file that was just loaded.
1045 @end defvar
1046
1047 If you want code to be executed when a @emph{particular} library is
1048 loaded, use the macro @code{with-eval-after-load}:
1049
1050 @defmac with-eval-after-load library body@dots{}
1051 This macro arranges to evaluate @var{body} at the end of loading
1052 the file @var{library}, each time @var{library} is loaded. If
1053 @var{library} is already loaded, it evaluates @var{body} right away.
1054
1055 You don't need to give a directory or extension in the file name
1056 @var{library}. Normally, you just give a bare file name, like this:
1057
1058 @example
1059 (with-eval-after-load "edebug" (def-edebug-spec c-point t))
1060 @end example
1061
1062 To restrict which files can trigger the evaluation, include a
1063 directory or an extension or both in @var{library}. Only a file whose
1064 absolute true name (i.e., the name with all symbolic links chased out)
1065 matches all the given name components will match. In the following
1066 example, @file{my_inst.elc} or @file{my_inst.elc.gz} in some directory
1067 @code{..../foo/bar} will trigger the evaluation, but not
1068 @file{my_inst.el}:
1069
1070 @example
1071 (with-eval-after-load "foo/bar/my_inst.elc" @dots{})
1072 @end example
1073
1074 @var{library} can also be a feature (i.e., a symbol), in which case
1075 @var{body} is evaluated at the end of any file where
1076 @code{(provide @var{library})} is called.
1077
1078 An error in @var{body} does not undo the load, but does prevent
1079 execution of the rest of @var{body}.
1080 @end defmac
1081
1082 Normally, well-designed Lisp programs should not use
1083 @code{eval-after-load}. If you need to examine and set the variables
1084 defined in another library (those meant for outside use), you can do
1085 it immediately---there is no need to wait until the library is loaded.
1086 If you need to call functions defined by that library, you should load
1087 the library, preferably with @code{require} (@pxref{Named Features}).
1088
1089 @node Dynamic Modules
1090 @section Emacs Dynamic Modules
1091 @cindex dynamic modules
1092
1093 @c FIXME: This is intentionally incomplete, as the module integration
1094 @c is not yet finished. To be refined later.
1095 A @dfn{dynamic Emacs module} is a shared library that provides
1096 additional functionality for use in Emacs Lisp programs, just like a
1097 package written in Emacs Lisp would.
1098
1099 Functions that load Emacs Lisp packages can also load dynamic
1100 modules. They recognize dynamic modules by looking at their file-name
1101 extension, a.k.a.@: ``suffix''. This suffix is platform-dependent.
1102
1103 @defvar module-file-suffix
1104 This variable holds the system-dependent value of the file-name
1105 extension of the module files. Its value is @file{.so} on Posix hosts
1106 and @file{.dll} on MS-Windows.
1107 @end defvar
1108
1109 @findex emacs_module_init
1110 @vindex plugin_is_GPL_compatible
1111 Every dynamic module should export a C-callable function named
1112 @code{emacs_module_init}, which Emacs will call as part of the call to
1113 @code{load} or @code{require} which loads the module. It should also
1114 export a symbol named @code{plugin_is_GPL_compatible} to indicate that
1115 its code is released under the GPL or compatible license; Emacs will
1116 refuse to load modules that don't export such a symbol.
1117
1118 If a module needs to call Emacs functions, it should do so through the
1119 API defined and documented in the header file @file{emacs-module.h}
1120 that is part of the Emacs distribution.
1121
1122 @cindex user-ptr object
1123 Modules can create @code{user-ptr} Lisp objects that embed pointers to
1124 C struct's defined by the module. This is useful for keeping around
1125 complex data structures created by a module, to be passed back to the
1126 module's functions. User-ptr objects can also have associated
1127 @dfn{finalizers} -- functions to be run when the object is GC'ed; this
1128 is useful for freeing any resources allocated for the underlying data
1129 structure, such as memory, open file descriptors, etc.
1130
1131 @defun user-ptrp object
1132 This function returns @code{t} if its argument is a @code{user-ptr}
1133 object.
1134 @end defun
1135
1136 Loadable modules in Emacs are enabled by using the
1137 @kbd{--with-modules} option at configure time.