Mercurial > emacs
annotate lispref/loading.texi @ 21631:e9650ae37732
(array-mode): Add autoload cookie.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 17 Apr 1998 20:40:30 +0000 |
parents | 66d807bdc5b4 |
children | 90da2489c498 |
rev | line source |
---|---|
6453 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998 Free Software Foundation, Inc. |
6453 | 4 @c See the file elisp.texi for copying conditions. |
5 @setfilename ../info/loading | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
6 @node Loading, Byte Compilation, Customization, Top |
6453 | 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 Lisp | |
13 environment in the form of Lisp objects. Emacs finds and opens the | |
14 file, reads the text, evaluates each form, and then closes the file. | |
15 | |
16 The load functions evaluate all the expressions in a file just | |
17 as the @code{eval-current-buffer} function evaluates all the | |
18 expressions in a buffer. The difference is that the load functions | |
19 read and evaluate the text in the file as found on disk, not the text | |
20 in an Emacs buffer. | |
21 | |
22 @cindex top-level form | |
23 The loaded file must contain Lisp expressions, either as source code | |
7212 | 24 or as byte-compiled code. Each form in the file is called a |
25 @dfn{top-level form}. There is no special format for the forms in a | |
6453 | 26 loadable file; any form in a file may equally well be typed directly |
27 into a buffer and evaluated there. (Indeed, most code is tested this | |
28 way.) Most often, the forms are function definitions and variable | |
29 definitions. | |
30 | |
31 A file containing Lisp code is often called a @dfn{library}. Thus, | |
32 the ``Rmail library'' is a file containing code for Rmail mode. | |
33 Similarly, a ``Lisp library directory'' is a directory of files | |
34 containing Lisp code. | |
35 | |
36 @menu | |
37 * How Programs Do Loading:: The @code{load} function and others. | |
38 * Autoload:: Setting up a function to autoload. | |
39 * Repeated Loading:: Precautions about loading a file twice. | |
12098 | 40 * Named Features:: Loading a library if it isn't already loaded. |
6453 | 41 * Unloading:: How to ``unload'' a library that was loaded. |
42 * Hooks for Loading:: Providing code to be run when | |
43 particular libraries are loaded. | |
44 @end menu | |
45 | |
46 @node How Programs Do Loading | |
47 @section How Programs Do Loading | |
48 | |
49 Emacs Lisp has several interfaces for loading. For example, | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
50 @code{autoload} creates a placeholder object for a function defined in a |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
51 file; trying to call the autoloading function loads the file to get the |
6453 | 52 function's real definition (@pxref{Autoload}). @code{require} loads a |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
53 file if it isn't already loaded (@pxref{Named Features}). Ultimately, |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
54 all these facilities call the @code{load} function to do the work. |
6453 | 55 |
56 @defun load filename &optional missing-ok nomessage nosuffix | |
57 This function finds and opens a file of Lisp code, evaluates all the | |
58 forms in it, and closes the file. | |
59 | |
60 To find the file, @code{load} first looks for a file named | |
61 @file{@var{filename}.elc}, that is, for a file whose name is | |
62 @var{filename} with @samp{.elc} appended. If such a file exists, it is | |
63 loaded. If there is no file by that name, then @code{load} looks for a | |
7212 | 64 file named @file{@var{filename}.el}. If that file exists, it is loaded. |
6453 | 65 Finally, if neither of those names is found, @code{load} looks for a |
66 file named @var{filename} with nothing appended, and loads it if it | |
67 exists. (The @code{load} function is not clever about looking at | |
68 @var{filename}. In the perverse case of a file named @file{foo.el.el}, | |
69 evaluation of @code{(load "foo.el")} will indeed find it.) | |
70 | |
71 If the optional argument @var{nosuffix} is non-@code{nil}, then the | |
72 suffixes @samp{.elc} and @samp{.el} are not tried. In this case, you | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
73 must specify the precise file name you want. By specifying the precise |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
74 file name and using @code{t} for @var{nosuffix}, you can prevent |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
75 perverse file names such as @file{foo.el.el} from being tried. |
6453 | 76 |
77 If @var{filename} is a relative file name, such as @file{foo} or | |
78 @file{baz/foo.bar}, @code{load} searches for the file using the variable | |
79 @code{load-path}. It appends @var{filename} to each of the directories | |
80 listed in @code{load-path}, and loads the first file it finds whose name | |
81 matches. The current default directory is tried only if it is specified | |
82 in @code{load-path}, where @code{nil} stands for the default directory. | |
83 @code{load} tries all three possible suffixes in the first directory in | |
84 @code{load-path}, then all three suffixes in the second directory, and | |
85 so on. | |
86 | |
87 If you get a warning that @file{foo.elc} is older than @file{foo.el}, it | |
88 means you should consider recompiling @file{foo.el}. @xref{Byte | |
89 Compilation}. | |
90 | |
91 Messages like @samp{Loading foo...} and @samp{Loading foo...done} appear | |
92 in the echo area during loading unless @var{nomessage} is | |
93 non-@code{nil}. | |
94 | |
95 @cindex load errors | |
96 Any unhandled errors while loading a file terminate loading. If the | |
7212 | 97 load was done for the sake of @code{autoload}, any function definitions |
98 made during the loading are undone. | |
6453 | 99 |
100 @kindex file-error | |
101 If @code{load} can't find the file to load, then normally it signals the | |
102 error @code{file-error} (with @samp{Cannot open load file | |
103 @var{filename}}). But if @var{missing-ok} is non-@code{nil}, then | |
104 @code{load} just returns @code{nil}. | |
105 | |
12067 | 106 You can use the variable @code{load-read-function} to specify a function |
107 for @code{load} to use instead of @code{read} for reading expressions. | |
108 See below. | |
109 | |
6453 | 110 @code{load} returns @code{t} if the file loads successfully. |
111 @end defun | |
112 | |
113 @deffn Command load-file filename | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
114 This command loads the file @var{filename}. If @var{filename} is a |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
115 relative file name, then the current default directory is assumed. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
116 @code{load-path} is not used, and suffixes are not appended. Use this |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
117 command if you wish to specify the file to be loaded exactly. |
6453 | 118 @end deffn |
119 | |
120 @deffn Command load-library library | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
121 This command loads the library named @var{library}. It is equivalent to |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
122 @code{load}, except in how it reads its argument interactively. |
6453 | 123 @end deffn |
124 | |
125 @defopt load-path | |
126 @cindex @code{EMACSLOADPATH} environment variable | |
127 The value of this variable is a list of directories to search when | |
128 loading files with @code{load}. Each element is a string (which must be | |
129 a directory name) or @code{nil} (which stands for the current working | |
130 directory). The value of @code{load-path} is initialized from the | |
131 environment variable @code{EMACSLOADPATH}, if that exists; otherwise its | |
132 default value is specified in @file{emacs/src/paths.h} when Emacs is | |
133 built. | |
134 | |
135 The syntax of @code{EMACSLOADPATH} is the same as used for @code{PATH}; | |
12098 | 136 @samp{:} (or @samp{;}, according to the operating system) separates |
137 directory names, and @samp{.} is used for the current default directory. | |
138 Here is an example of how to set your @code{EMACSLOADPATH} variable from | |
139 a @code{csh} @file{.login} file: | |
6453 | 140 |
141 @c This overfull hbox is OK. --rjc 16mar92 | |
142 @smallexample | |
143 setenv EMACSLOADPATH .:/user/bil/emacs:/usr/lib/emacs/lisp | |
144 @end smallexample | |
145 | |
146 Here is how to set it using @code{sh}: | |
147 | |
148 @smallexample | |
149 export EMACSLOADPATH | |
150 EMACSLOADPATH=.:/user/bil/emacs:/usr/local/lib/emacs/lisp | |
151 @end smallexample | |
152 | |
153 Here is an example of code you can place in a @file{.emacs} file to add | |
154 several directories to the front of your default @code{load-path}: | |
155 | |
156 @smallexample | |
12282
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
157 @group |
6453 | 158 (setq load-path |
159 (append (list nil "/user/bil/emacs" | |
160 "/usr/local/lisplib" | |
12315
49a48bf414c7
Fix up load-path example.
Richard M. Stallman <rms@gnu.org>
parents:
12282
diff
changeset
|
161 "~/emacs") |
6453 | 162 load-path)) |
12282
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
163 @end group |
6453 | 164 @end smallexample |
165 | |
166 @c Wordy to rid us of an overfull hbox. --rjc 15mar92 | |
167 @noindent | |
168 In this example, the path searches the current working directory first, | |
12315
49a48bf414c7
Fix up load-path example.
Richard M. Stallman <rms@gnu.org>
parents:
12282
diff
changeset
|
169 followed then by the @file{/user/bil/emacs} directory, the |
49a48bf414c7
Fix up load-path example.
Richard M. Stallman <rms@gnu.org>
parents:
12282
diff
changeset
|
170 @file{/usr/local/lisplib} directory, and the @file{~/emacs} directory, |
6453 | 171 which are then followed by the standard directories for Lisp code. |
172 | |
7212 | 173 The command line options @samp{-l} or @samp{-load} specify a Lisp |
174 library to load as part of Emacs startup. Since this file might be in | |
175 the current directory, Emacs 18 temporarily adds the current directory | |
176 to the front of @code{load-path} so the file can be found there. Newer | |
177 Emacs versions also find such files in the current directory, but | |
178 without altering @code{load-path}. | |
10659
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
179 |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
180 Dumping Emacs uses a special value of @code{load-path}. If the value of |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
181 @code{load-path} at the end of dumping is unchanged (that is, still the |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
182 same special value), the dumped Emacs switches to the ordinary |
12128
27144f55d1c6
fixed errors that appeared during update to 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents:
12098
diff
changeset
|
183 @code{load-path} value when it starts up, as described above. But if |
10659
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
184 @code{load-path} has any other value at the end of dumping, that value |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
185 is used for execution of the dumped Emacs also. |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
186 |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
187 Therefore, if you want to change @code{load-path} temporarily for |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
188 loading a few libraries in @file{site-init.el} or @file{site-load.el}, |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
189 you should bind @code{load-path} locally with @code{let} around the |
a0efedb217ed
Explain load-path and dumping.
Richard M. Stallman <rms@gnu.org>
parents:
10513
diff
changeset
|
190 calls to @code{load}. |
6453 | 191 @end defopt |
192 | |
15767
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
193 The default value of @code{load-path}, when running an Emacs which has |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
194 been installed on the system, looks like this: |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
195 |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
196 @smallexample |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
197 ("/usr/local/share/emacs/@var{version}/site-lisp" |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
198 "/usr/local/share/emacs/site-lisp" |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
199 "/usr/local/share/emacs/@var{version}/lisp") |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
200 @end smallexample |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
201 |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
202 The last of these three directories is where the Lisp files of Emacs |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
203 itself are installed; the first two are for additional Lisp packages |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
204 installed at your site. The first directory is for locally installed |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
205 packages that belong with a particular Emacs version; the second is for |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
206 locally installed packages that can be used with any installed Emacs |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
207 version. |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
208 |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
209 There are several reasons why a Lisp package that works well in one |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
210 Emacs version can cause trouble in another. Sometimes packages need |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
211 updating for incompatible changes in Emacs; sometimes they depend on |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
212 undocumented internal Emacs data that can change without notice; |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
213 sometimes a newer Emacs version incorporates a version of the package, |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
214 and should be used only with that version. |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
215 |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
216 If you run Emacs from the directory where it was built---that is, an |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
217 executable that has not been formally installed---then @code{load-path} |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
218 normally contains two additional directories. These are the @code{lisp} |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
219 and @code{site-lisp} subdirectories of the main build directory. (Both |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
220 are represented as absolute file names.) |
039b338d9656
Describe the version-specific site-list directory.
Richard M. Stallman <rms@gnu.org>
parents:
13087
diff
changeset
|
221 |
6453 | 222 @defvar load-in-progress |
223 This variable is non-@code{nil} if Emacs is in the process of loading a | |
12098 | 224 file, and it is @code{nil} otherwise. |
6453 | 225 @end defvar |
226 | |
12067 | 227 @defvar load-read-function |
228 This variable specifies an alternate expression-reading function for | |
229 @code{load} and @code{eval-region} to use instead of @code{read}. | |
230 The function should accept one argument, just as @code{read} does. | |
231 | |
232 Normally, the variable's value is @code{nil}, which means those | |
233 functions should use @code{read}. | |
234 @end defvar | |
235 | |
6453 | 236 To learn how @code{load} is used to build Emacs, see @ref{Building Emacs}. |
237 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
238 @deffn Command locate-library library &optional nosuffix path interactive-call |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
239 This command finds the precise file name for library @var{library}. It |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
240 searches for the library in the same way @code{load} does, and the |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
241 argument @var{nosuffix} has the same meaning as in @code{load}: don't |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
242 add suffixes @samp{.elc} or @samp{.el} to the specified name |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
243 @var{library}. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
244 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
245 If the @var{path} is non-@code{nil}, that list of directories is used |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
246 instead of @code{load-path}. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
247 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
248 When @code{locate-library} is called from a program, it returns the file |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
249 name as a string. When the user runs @code{locate-library} |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
250 interactively, the argument @var{interactive-call} is @code{t}, and this |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
251 tells @code{locate-library} to display the file name in the echo area. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
252 @end deffn |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
253 |
6453 | 254 @node Autoload |
255 @section Autoload | |
256 @cindex autoload | |
257 | |
258 The @dfn{autoload} facility allows you to make a function or macro | |
12098 | 259 known in Lisp, but put off loading the file that defines it. The first |
260 call to the function automatically reads the proper file to install the | |
261 real definition and other associated code, then runs the real definition | |
6453 | 262 as if it had been loaded all along. |
263 | |
264 There are two ways to set up an autoloaded function: by calling | |
265 @code{autoload}, and by writing a special ``magic'' comment in the | |
266 source before the real definition. @code{autoload} is the low-level | |
267 primitive for autoloading; any Lisp program can call @code{autoload} at | |
268 any time. Magic comments do nothing on their own; they serve as a guide | |
269 for the command @code{update-file-autoloads}, which constructs calls to | |
270 @code{autoload} and arranges to execute them when Emacs is built. Magic | |
271 comments are the most convenient way to make a function autoload, but | |
272 only for packages installed along with Emacs. | |
273 | |
7212 | 274 @defun autoload function filename &optional docstring interactive type |
275 This function defines the function (or macro) named @var{function} so as | |
6453 | 276 to load automatically from @var{filename}. The string @var{filename} |
277 specifies the file to load to get the real definition of @var{function}. | |
278 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
279 If @var{filename} does not contain either a directory name, or the |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
280 suffix @code{.el} or @code{.elc}, then @code{autoload} insists on adding |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
281 one of these suffixes, and it will not load from a file whose name is |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
282 just @var{filename} with no added suffix. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
283 |
6453 | 284 The argument @var{docstring} is the documentation string for the |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
285 function. Normally, this should be identical to the documentation string |
6453 | 286 in the function definition itself. Specifying the documentation string |
287 in the call to @code{autoload} makes it possible to look at the | |
288 documentation without loading the function's real definition. | |
289 | |
290 If @var{interactive} is non-@code{nil}, then the function can be called | |
291 interactively. This lets completion in @kbd{M-x} work without loading | |
292 the function's real definition. The complete interactive specification | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
293 is not given here; it's not needed unless the user actually calls |
6453 | 294 @var{function}, and when that happens, it's time to load the real |
295 definition. | |
296 | |
297 You can autoload macros and keymaps as well as ordinary functions. | |
298 Specify @var{type} as @code{macro} if @var{function} is really a macro. | |
299 Specify @var{type} as @code{keymap} if @var{function} is really a | |
300 keymap. Various parts of Emacs need to know this information without | |
301 loading the real definition. | |
302 | |
12282
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
303 An autoloaded keymap loads automatically during key lookup when a prefix |
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
304 key's binding is the symbol @var{function}. Autoloading does not occur |
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
305 for other kinds of access to the keymap. In particular, it does not |
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
306 happen when a Lisp program gets the keymap from the value of a variable |
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
307 and calls @code{define-key}; not even if the variable name is the same |
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
308 symbol @var{function}. |
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
309 |
6453 | 310 @cindex function cell in autoload |
7212 | 311 If @var{function} already has a non-void function definition that is not |
6453 | 312 an autoload object, @code{autoload} does nothing and returns @code{nil}. |
7212 | 313 If the function cell of @var{function} is void, or is already an autoload |
6453 | 314 object, then it is defined as an autoload object like this: |
315 | |
316 @example | |
317 (autoload @var{filename} @var{docstring} @var{interactive} @var{type}) | |
318 @end example | |
319 | |
320 For example, | |
321 | |
322 @example | |
12282
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
323 @group |
6453 | 324 (symbol-function 'run-prolog) |
325 @result{} (autoload "prolog" 169681 t nil) | |
12282
586e3ea81792
updates for version 19.29 made by melissa; also needed to check out files
Melissa Weisshaus <melissa@gnu.org>
parents:
12128
diff
changeset
|
326 @end group |
6453 | 327 @end example |
328 | |
329 @noindent | |
330 In this case, @code{"prolog"} is the name of the file to load, 169681 | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
331 refers to the documentation string in the |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
332 @file{emacs/etc/DOC-@var{version}} file (@pxref{Documentation Basics}), |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
333 @code{t} means the function is interactive, and @code{nil} that it is |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
334 not a macro or a keymap. |
6453 | 335 @end defun |
336 | |
337 @cindex autoload errors | |
338 The autoloaded file usually contains other definitions and may require | |
339 or provide one or more features. If the file is not completely loaded | |
340 (due to an error in the evaluation of its contents), any function | |
341 definitions or @code{provide} calls that occurred during the load are | |
342 undone. This is to ensure that the next attempt to call any function | |
343 autoloading from this file will try again to load the file. If not for | |
344 this, then some of the functions in the file might appear defined, but | |
345 they might fail to work properly for the lack of certain subroutines | |
346 defined later in the file and not loaded successfully. | |
347 | |
348 If the autoloaded file fails to define the desired Lisp function or | |
349 macro, then an error is signaled with data @code{"Autoloading failed to | |
350 define function @var{function-name}"}. | |
351 | |
352 @findex update-file-autoloads | |
353 @findex update-directory-autoloads | |
354 A magic autoload comment looks like @samp{;;;###autoload}, on a line | |
355 by itself, just before the real definition of the function in its | |
356 autoloadable source file. The command @kbd{M-x update-file-autoloads} | |
357 writes a corresponding @code{autoload} call into @file{loaddefs.el}. | |
358 Building Emacs loads @file{loaddefs.el} and thus calls @code{autoload}. | |
359 @kbd{M-x update-directory-autoloads} is even more powerful; it updates | |
360 autoloads for all files in the current directory. | |
361 | |
362 The same magic comment can copy any kind of form into | |
363 @file{loaddefs.el}. If the form following the magic comment is not a | |
364 function definition, it is copied verbatim. You can also use a magic | |
7212 | 365 comment to execute a form at build time @emph{without} executing it when |
13087 | 366 the file itself is loaded. To do this, write the form @emph{on the same |
7212 | 367 line} as the magic comment. Since it is in a comment, it does nothing |
368 when you load the source file; but @code{update-file-autoloads} copies | |
369 it to @file{loaddefs.el}, where it is executed while building Emacs. | |
6453 | 370 |
371 The following example shows how @code{doctor} is prepared for | |
372 autoloading with a magic comment: | |
373 | |
374 @smallexample | |
375 ;;;###autoload | |
376 (defun doctor () | |
377 "Switch to *doctor* buffer and start giving psychotherapy." | |
378 (interactive) | |
379 (switch-to-buffer "*doctor*") | |
380 (doctor-mode)) | |
381 @end smallexample | |
382 | |
383 @noindent | |
384 Here's what that produces in @file{loaddefs.el}: | |
385 | |
386 @smallexample | |
387 (autoload 'doctor "doctor" | |
388 "\ | |
389 Switch to *doctor* buffer and start giving psychotherapy." | |
390 t) | |
391 @end smallexample | |
392 | |
393 @noindent | |
394 The backslash and newline immediately following the double-quote are a | |
395 convention used only in the preloaded Lisp files such as | |
396 @file{loaddefs.el}; they tell @code{make-docfile} to put the | |
397 documentation string in the @file{etc/DOC} file. @xref{Building Emacs}. | |
398 | |
399 @node Repeated Loading | |
400 @section Repeated Loading | |
401 @cindex repeated loading | |
402 | |
403 You may load one file more than once in an Emacs session. For | |
404 example, after you have rewritten and reinstalled a function definition | |
405 by editing it in a buffer, you may wish to return to the original | |
406 version; you can do this by reloading the file it came from. | |
407 | |
408 When you load or reload files, bear in mind that the @code{load} and | |
409 @code{load-library} functions automatically load a byte-compiled file | |
410 rather than a non-compiled file of similar name. If you rewrite a file | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
411 that you intend to save and reinstall, you need to byte-compile the new |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
412 version; otherwise Emacs will load the older, byte-compiled file instead |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
413 of your newer, non-compiled file! If that happens, the message |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
414 displayed when loading the file says, ``(compiled; source is newer'', to |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
415 remind you to recompile. |
6453 | 416 |
417 When writing the forms in a Lisp library file, keep in mind that the | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
418 file might be loaded more than once. For example, think about whether |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
419 each variable should be reinitialized when you reload the library; |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
420 @code{defvar} does not change the value if the variable is already |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
421 initialized. (@xref{Defining Variables}.) |
6453 | 422 |
423 The simplest way to add an element to an alist is like this: | |
424 | |
425 @example | |
426 (setq minor-mode-alist | |
427 (cons '(leif-mode " Leif") minor-mode-alist)) | |
428 @end example | |
429 | |
430 @noindent | |
431 But this would add multiple elements if the library is reloaded. | |
432 To avoid the problem, write this: | |
433 | |
434 @example | |
435 (or (assq 'leif-mode minor-mode-alist) | |
436 (setq minor-mode-alist | |
437 (cons '(leif-mode " Leif") minor-mode-alist))) | |
438 @end example | |
439 | |
12098 | 440 To add an element to a list just once, use @code{add-to-list} |
441 (@pxref{Setting Variables}). | |
442 | |
6453 | 443 Occasionally you will want to test explicitly whether a library has |
444 already been loaded. Here's one way to test, in a library, whether it | |
445 has been loaded before: | |
446 | |
447 @example | |
12098 | 448 (defvar foo-was-loaded) |
449 | |
6453 | 450 (if (not (boundp 'foo-was-loaded)) |
451 @var{execute-first-time-only}) | |
452 | |
453 (setq foo-was-loaded t) | |
454 @end example | |
455 | |
456 @noindent | |
457 If the library uses @code{provide} to provide a named feature, you can | |
458 use @code{featurep} to test whether the library has been loaded. | |
7212 | 459 @ifinfo |
12098 | 460 @xref{Named Features}. |
7212 | 461 @end ifinfo |
6453 | 462 |
12098 | 463 @node Named Features |
6453 | 464 @section Features |
465 @cindex features | |
466 @cindex requiring features | |
467 @cindex providing features | |
468 | |
469 @code{provide} and @code{require} are an alternative to | |
470 @code{autoload} for loading files automatically. They work in terms of | |
471 named @dfn{features}. Autoloading is triggered by calling a specific | |
472 function, but a feature is loaded the first time another program asks | |
473 for it by name. | |
474 | |
475 A feature name is a symbol that stands for a collection of functions, | |
476 variables, etc. The file that defines them should @dfn{provide} the | |
477 feature. Another program that uses them may ensure they are defined by | |
478 @dfn{requiring} the feature. This loads the file of definitions if it | |
479 hasn't been loaded already. | |
480 | |
481 To require the presence of a feature, call @code{require} with the | |
482 feature name as argument. @code{require} looks in the global variable | |
483 @code{features} to see whether the desired feature has been provided | |
484 already. If not, it loads the feature from the appropriate file. This | |
7212 | 485 file should call @code{provide} at the top level to add the feature to |
6453 | 486 @code{features}; if it fails to do so, @code{require} signals an error. |
487 @cindex load error with require | |
488 | |
489 Features are normally named after the files that provide them, so that | |
490 @code{require} need not be given the file name. | |
491 | |
492 For example, in @file{emacs/lisp/prolog.el}, | |
493 the definition for @code{run-prolog} includes the following code: | |
494 | |
495 @smallexample | |
496 (defun run-prolog () | |
16736
981e116b4ac6
Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents:
15767
diff
changeset
|
497 "Run an inferior Prolog process, with I/O via buffer *prolog*." |
6453 | 498 (interactive) |
499 (require 'comint) | |
500 (switch-to-buffer (make-comint "prolog" prolog-program-name)) | |
501 (inferior-prolog-mode)) | |
502 @end smallexample | |
503 | |
504 @noindent | |
505 The expression @code{(require 'comint)} loads the file @file{comint.el} | |
506 if it has not yet been loaded. This ensures that @code{make-comint} is | |
507 defined. | |
508 | |
509 The @file{comint.el} file contains the following top-level expression: | |
510 | |
511 @smallexample | |
512 (provide 'comint) | |
513 @end smallexample | |
514 | |
515 @noindent | |
516 This adds @code{comint} to the global @code{features} list, so that | |
517 @code{(require 'comint)} will henceforth know that nothing needs to be | |
518 done. | |
519 | |
520 @cindex byte-compiling @code{require} | |
7212 | 521 When @code{require} is used at top level in a file, it takes effect |
6453 | 522 when you byte-compile that file (@pxref{Byte Compilation}) as well as |
523 when you load it. This is in case the required package contains macros | |
524 that the byte compiler must know about. | |
525 | |
526 Although top-level calls to @code{require} are evaluated during | |
527 byte compilation, @code{provide} calls are not. Therefore, you can | |
528 ensure that a file of definitions is loaded before it is byte-compiled | |
529 by including a @code{provide} followed by a @code{require} for the same | |
530 feature, as in the following example. | |
531 | |
532 @smallexample | |
533 @group | |
534 (provide 'my-feature) ; @r{Ignored by byte compiler,} | |
535 ; @r{evaluated by @code{load}.} | |
536 (require 'my-feature) ; @r{Evaluated by byte compiler.} | |
537 @end group | |
538 @end smallexample | |
539 | |
7212 | 540 @noindent |
541 The compiler ignores the @code{provide}, then processes the | |
542 @code{require} by loading the file in question. Loading the file does | |
543 execute the @code{provide} call, so the subsequent @code{require} call | |
544 does nothing while loading. | |
545 | |
6453 | 546 @defun provide feature |
547 This function announces that @var{feature} is now loaded, or being | |
548 loaded, into the current Emacs session. This means that the facilities | |
549 associated with @var{feature} are or will be available for other Lisp | |
550 programs. | |
551 | |
552 The direct effect of calling @code{provide} is to add @var{feature} to | |
553 the front of the list @code{features} if it is not already in the list. | |
554 The argument @var{feature} must be a symbol. @code{provide} returns | |
555 @var{feature}. | |
556 | |
557 @smallexample | |
558 features | |
559 @result{} (bar bish) | |
560 | |
561 (provide 'foo) | |
562 @result{} foo | |
563 features | |
564 @result{} (foo bar bish) | |
565 @end smallexample | |
566 | |
12098 | 567 When a file is loaded to satisfy an autoload, and it stops due to an |
568 error in the evaluating its contents, any function definitions or | |
569 @code{provide} calls that occurred during the load are undone. | |
570 @xref{Autoload}. | |
6453 | 571 @end defun |
572 | |
573 @defun require feature &optional filename | |
574 This function checks whether @var{feature} is present in the current | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
575 Emacs session (using @code{(featurep @var{feature})}; see below). The |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
576 argument @var{feature} must be a symbol. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
577 |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
578 If the feature is not present, then @code{require} loads @var{filename} |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
579 with @code{load}. If @var{filename} is not supplied, then the name of |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
580 the symbol @var{feature} is used as the base file name to load. |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
581 However, in this case, @code{require} insists on finding @var{feature} |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
582 with an added suffix; a file whose name is just @var{feature} won't be |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
583 used. |
6453 | 584 |
585 If loading the file fails to provide @var{feature}, @code{require} | |
586 signals an error, @samp{Required feature @var{feature} was not | |
587 provided}. | |
588 @end defun | |
589 | |
590 @defun featurep feature | |
591 This function returns @code{t} if @var{feature} has been provided in the | |
592 current Emacs session (i.e., @var{feature} is a member of | |
593 @code{features}.) | |
594 @end defun | |
595 | |
596 @defvar features | |
597 The value of this variable is a list of symbols that are the features | |
598 loaded in the current Emacs session. Each symbol was put in this list | |
599 with a call to @code{provide}. The order of the elements in the | |
600 @code{features} list is not significant. | |
601 @end defvar | |
602 | |
603 @node Unloading | |
604 @section Unloading | |
605 @cindex unloading | |
606 | |
607 @c Emacs 19 feature | |
608 You can discard the functions and variables loaded by a library to | |
609 reclaim memory for other Lisp objects. To do this, use the function | |
610 @code{unload-feature}: | |
611 | |
10513
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
612 @deffn Command unload-feature feature &optional force |
6453 | 613 This command unloads the library that provided feature @var{feature}. |
7212 | 614 It undefines all functions, macros, and variables defined in that |
615 library with @code{defconst}, @code{defvar}, @code{defun}, | |
616 @code{defmacro}, @code{defsubst} and @code{defalias}. It then restores | |
12098 | 617 any autoloads formerly associated with those symbols. (Loading |
618 saves these in the @code{autoload} property of the symbol.) | |
10513
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
619 |
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
620 Ordinarily, @code{unload-feature} refuses to unload a library on which |
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
621 other loaded libraries depend. (A library @var{a} depends on library |
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
622 @var{b} if @var{a} contains a @code{require} for @var{b}.) If the |
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
623 optional argument @var{force} is non-@code{nil}, dependencies are |
e4423ed2b4cb
Document force arg in unload-feature.
Richard M. Stallman <rms@gnu.org>
parents:
7212
diff
changeset
|
624 ignored and you can unload any library. |
6453 | 625 @end deffn |
626 | |
627 The @code{unload-feature} function is written in Lisp; its actions are | |
628 based on the variable @code{load-history}. | |
629 | |
630 @defvar load-history | |
631 This variable's value is an alist connecting library names with the | |
632 names of functions and variables they define, the features they provide, | |
633 and the features they require. | |
634 | |
635 Each element is a list and describes one library. The @sc{car} of the | |
636 list is the name of the library, as a string. The rest of the list is | |
637 composed of these kinds of objects: | |
638 | |
639 @itemize @bullet | |
640 @item | |
7212 | 641 Symbols that were defined by this library. |
6453 | 642 @item |
643 Lists of the form @code{(require . @var{feature})} indicating | |
644 features that were required. | |
645 @item | |
646 Lists of the form @code{(provide . @var{feature})} indicating | |
647 features that were provided. | |
648 @end itemize | |
649 | |
650 The value of @code{load-history} may have one element whose @sc{car} is | |
651 @code{nil}. This element describes definitions made with | |
652 @code{eval-buffer} on a buffer that is not visiting a file. | |
653 @end defvar | |
654 | |
655 The command @code{eval-region} updates @code{load-history}, but does so | |
656 by adding the symbols defined to the element for the file being visited, | |
657 rather than replacing that element. | |
658 | |
659 @node Hooks for Loading | |
660 @section Hooks for Loading | |
661 @cindex loading hooks | |
662 @cindex hooks for loading | |
663 | |
664 You can ask for code to be executed if and when a particular library is | |
665 loaded, by calling @code{eval-after-load}. | |
666 | |
667 @defun eval-after-load library form | |
668 This function arranges to evaluate @var{form} at the end of loading the | |
10913
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
669 library @var{library}, if and when @var{library} is loaded. If |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
670 @var{library} is already loaded, it evaluates @var{form} right away. |
6453 | 671 |
672 The library name @var{library} must exactly match the argument of | |
673 @code{load}. To get the proper results when an installed library is | |
674 found by searching @code{load-path}, you should not include any | |
675 directory names in @var{library}. | |
676 | |
677 An error in @var{form} does not undo the load, but does prevent | |
678 execution of the rest of @var{form}. | |
679 @end defun | |
680 | |
10913
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
681 In general, well-designed Lisp programs should not use this feature. |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
682 The clean and modular ways to interact with a Lisp library are (1) |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
683 examine and set the library's variables (those which are meant for |
12128
27144f55d1c6
fixed errors that appeared during update to 19.29.
Melissa Weisshaus <melissa@gnu.org>
parents:
12098
diff
changeset
|
684 outside use), and (2) call the library's functions. If you wish to |
10913
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
685 do (1), you can do it immediately---there is no need to wait for when |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
686 the library is loaded. To do (2), you must load the library (preferably |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
687 with @code{require}). |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
688 |
12098 | 689 But it is ok to use @code{eval-after-load} in your personal customizations |
10913
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
690 if you don't feel they must meet the design standards of programs to be |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
691 released. |
880d7c28921c
Change in eval-after-load; advise not using it.
Richard M. Stallman <rms@gnu.org>
parents:
10659
diff
changeset
|
692 |
6453 | 693 @defvar after-load-alist |
694 An alist of expressions to evaluate if and when particular libraries are | |
695 loaded. Each element looks like this: | |
696 | |
697 @example | |
698 (@var{filename} @var{forms}@dots{}) | |
699 @end example | |
700 | |
701 The function @code{load} checks @code{after-load-alist} in order to | |
702 implement @code{eval-after-load}. | |
703 @end defvar | |
704 | |
705 @c Emacs 19 feature |