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