Loading
Loading a file of Lisp code means bringing its contents into the Lisp environment in the form of Lisp objects. Emacs finds and opens the file, reads the text, evaluates each form, and then closes the file. Such a file is also called a Lisp library. The load functions evaluate all the expressions in a file just as the eval-buffer function evaluates all the expressions in a buffer. The difference is that the load functions read and evaluate the text in the file as found on disk, not the text in an Emacs buffer. The loaded file must contain Lisp expressions, either as source code or as byte-compiled code. Each form in the file is called a top-level form. There is no special format for the forms in a loadable file; any form in a file may equally well be typed directly into a buffer and evaluated there. (Indeed, most code is tested this way.) Most often, the forms are function definitions and variable definitions. Emacs can also load compiled dynamic modules: shared libraries that provide additional functionality for use in Emacs Lisp programs, just like a package written in Emacs Lisp would. When a dynamic module is loaded, Emacs calls a specially-named initialization function which the module needs to implement, and which exposes the additional functions and variables to Emacs Lisp programs. For on-demand loading of external libraries which are known in advance to be required by certain Emacs primitives, Dynamic Libraries.
How Programs Do Loading
Emacs Lisp has several interfaces for loading. For example, autoload creates a placeholder object for a function defined in a file; trying to call the autoloading function loads the file to get the function's real definition (Autoload). require loads a file if it isn't already loaded (Named Features). Ultimately, all these facilities call the load function to do the work.
-
load - This function finds and opens a file of Lisp code, evaluates all the forms in it, and closes the file. To find the file,
loadfirst looks for a file namedFILENAME.elc, that is, for a file whose name is filename with the extension.elcappended. If such a file exists, and Emacs was compiled with native-compilation support (Native Compilation),loadattempts to find a corresponding.elnfile, and if found, loads it instead ofFILENAME.elc. Otherwise, it loadsFILENAME.elc(and starts a background native compilation to produce the missing.elnfile, followed by loading that file). If there is noFILENAME.elc, thenloadlooks for a file namedFILENAME.el. If that file exists, it is loaded. If Emacs was compiled with support for dynamic modules (Dynamic Modules),loadnext looks for a file namedFILENAME.EXT, where ext is a system-dependent file-name extension of shared libraries (.soon GNU and Unix systems). Finally, if neither of those names is found,loadlooks for a file named filename with nothing appended, and loads it if it exists. (Theloadfunction is not clever about looking at filename. In the perverse case of a file namedfoo.el.el, evaluation of(load "foo.el")will indeed find it.) If Auto Compression mode is enabled, as it is by default, then ifloadcan not find a file, it searches for a compressed version of the file before trying other file names. It decompresses and loads it if it exists. It looks for compressed versions by appending each of the suffixes injka-compr-load-suffixesto the file name. The value of this variable must be a list of strings. Its standard value is(".gz"). If the optional argument nosuffix is non-nil, thenloaddoes not try the suffixes.elcand.el. In this case, you must specify the precise file name you want, except that, if Auto Compression mode is enabled,loadwill still usejka-compr-load-suffixesto find compressed versions. By specifying the precise file name and usingtfor nosuffix, you can prevent file names likefoo.el.elfrom being tried. If the optional argument must-suffix is non-nil, thenloadinsists that the file name used must end in either.elor.elc(possibly extended with a compression suffix) or the shared-library extension, unless it contains an explicit directory name. If the optionload-prefer-neweris non-nil, then when searching suffixes,loadselects whichever version of a file (.elc,.el, etc.) has been modified most recently. In this case,loaddoesn't load the.elnnatively-compiled file even if it exists. If filename is a relative file name, such asfooorbaz/foo.bar,loadsearches for the file using the variableload-path. It appends filename to each of the directories listed inload-path, and loads the first file it finds whose name matches. The current default directory is tried only if it is specified inload-path, wherenilstands for the default directory.loadtries all three possible suffixes in the first directory inload-path, then all three suffixes in the second directory, and so on. Library Search. Whatever the name under which the file is eventually found, and the directory where Emacs found it, Emacs sets the value of the variableload-file-nameto that file's name. If you get a warning thatfoo.elcis older thanfoo.el, it means you should consider recompilingfoo.el. Byte Compilation. When loading a source file (not compiled),loadperforms character set translation just as Emacs would do when visiting the file. Coding Systems. When loading an uncompiled file, Emacs tries to expand any macros that the file contains (Macros). We refer to this as eager macro expansion. Doing this (rather than deferring the expansion until the relevant code runs) can significantly speed up the execution of uncompiled code. Sometimes, this macro expansion cannot be done, owing to a cyclic dependency. In the simplest example of this, the file you are loading refers to a macro defined in another file, and that file in turn requires the file you are loading. Emacs will issue an error about (Eager macro-expansion skipped due to cycle...) giving details of the problem. You have to restructure your code so that this does not happen. Loading a compiled file does not cause macroexpansion, because this should already have happened during compilation. Compiling Macros. Messages likeLoading foo...andLoading foo...doneappear in the echo area during loading unless nomessage is non-nil. If a natively-compiled.elnfile is loaded, the message says so. Any unhandled errors while loading a file terminate loading. If the load was done for the sake ofautoload, any function definitions made during the loading are undone. Ifloadcan't find the file to load, then normally it signals afile-error(withCannot open load file FILENAME). But if missing-ok is non-nil, thenloadjust returnsnil. You can use the variableload-read-functionto specify a function forloadto use instead ofreadfor reading expressions. See below.loadreturnstif the file loads successfully. -
Command load-file - This command loads the file filename. If filename is a relative file name, then the current default directory is assumed. This command does not use
load-path, and does not append suffixes. However, it does look for compressed versions (if Auto Compression Mode is enabled). Use this command if you wish to specify precisely the file name to load. -
Command load-library - This command loads the library named library. It is equivalent to
load, except for the way it reads its argument interactively. Lisp Libraries. -
load-in-progress - This variable is non-
nilif Emacs is in the process of loading a file, and it isnilotherwise. -
load-file-name - When Emacs is in the process of loading a file, this variable's value is the name of that file, as Emacs found it during the search described earlier in this section.
-
load-read-function - This variable specifies an alternate expression-reading function for
loadandeval-regionto use instead ofread. The function should accept one argument, just asreaddoes. By default, this variable's value isread. Input Functions. Instead of using this variable, it is cleaner to use another, newer feature: to pass the function as the read-function argument toeval-region. Eval.
For information about how load is used in building Emacs, see Building Emacs.
Load Suffixes
We now describe some technical details about the exact suffixes that load tries.
-
load-suffixes - This is a list of suffixes indicating (compiled or source) Emacs Lisp files. It should not include the empty string.
loaduses these suffixes in order when it appends Lisp suffixes to the specified file name. The standard value is(".elc" ".el")which produces the behavior described in the previous section. -
load-file-rep-suffixes - This is a list of suffixes that indicate representations of the same file. This list should normally start with the empty string. When
loadsearches for a file it appends the suffixes in this list, in order, to the file name, before searching for another file. Enabling Auto Compression mode appends the suffixes injka-compr-load-suffixesto this list and disabling Auto Compression mode removes them again. The standard value ofload-file-rep-suffixesif Auto Compression mode is disabled is(""). Given that the standard value ofjka-compr-load-suffixesis(".gz"), the standard value ofload-file-rep-suffixesif Auto Compression mode is enabled is("" ".gz"). -
get-load-suffixes - This function returns the list of all suffixes that
loadshould try, in order, when its must-suffix argument is non-nil. This takes bothload-suffixesandload-file-rep-suffixesinto account. Ifload-suffixes,jka-compr-load-suffixesandload-file-rep-suffixesall have their standard values, this function returns(".elc" ".elc.gz" ".el" ".el.gz")if Auto Compression mode is enabled and(".elc" ".el")if Auto Compression mode is disabled.
To summarize, load normally first tries the suffixes in the value of (get-load-suffixes) and then those in load-file-rep-suffixes. If nosuffix is non-nil, it skips the former group, and if must-suffix is non-nil, it skips the latter group.
-
load-prefer-newer - If this option is non-
nil, then rather than stopping at the first suffix that exists,loadtests them all, and uses whichever file is the newest.
Library Search
When Emacs loads a Lisp library, it searches for the library in a list of directories specified by the variable load-path.
-
load-path - The value of this variable is a list of directories to search when loading files with
load. Each element is a string (which must be a directory) ornil(which stands for the current working directory).
When Emacs starts up, it sets up the value of load-path in several steps. First, it looks for the directory containing its own Lisp files, using default locations set when Emacs was compiled. It saves this directory in lisp-directory. Normally, this is a directory where the *.elc files are installed, something like
"/usr/local/share/emacs/VERSION/lisp"
where version is the Emacs version. (In this and the following examples, replace /usr/local with the prefix appropriate for your Emacs installation.) This directory and its subdirectories contain the standard Lisp files that come with Emacs. If Emacs cannot find its own Lisp files, it will not start correctly. If you run Emacs from the directory where it was built—that is, an executable that has not been installed yet—Emacs instead initializes lisp-directory using the lisp subdirectory of the directory containing the sources from which it was built. Emacs then initializes load-path with this lisp-directory. If you built Emacs in a separate directory from the sources, it also adds the lisp subdirectory of the build directory. All of these directories are stored in the above two variables as absolute file names. Unless you start Emacs with the --no-site-lisp option, it then adds two more site-lisp directories to the front of load-path. These are intended for locally installed Lisp files, and are normally of the form:
"/usr/local/share/emacs/VERSION/site-lisp"
and
"/usr/local/share/emacs/site-lisp"
The first one is for locally installed files for the current Emacs version; the second is for locally installed files meant for use with any installed Emacs version. (If Emacs is running uninstalled, it also adds site-lisp subdirectories from the source and build directories, if they exist. However, normally the source and build directories do not contain site-lisp subdirectories.) If the environment variable EMACSLOADPATH is set, it modifies the above initialization procedure. Emacs initializes load-path based on the value of the environment variable. The syntax of EMACSLOADPATH is the same as used for PATH; directories are separated by : (or ;, on some operating systems). Here is an example of how to set EMACSLOADPATH variable (from a sh-style shell):
export EMACSLOADPATH=/home/foo/.emacs.d/lisp:
An empty element in the value of the environment variable, whether trailing (as in the above example, note the trailing :), leading, or embedded, is replaced by the default value of load-path as determined by the standard initialization procedure. If there are no such empty elements, then EMACSLOADPATH specifies the entire load-path. You must include either an empty element, or the explicit path to the directory containing the standard Lisp files, else Emacs will not function. (Another way to modify load-path is to use the -L command-line option when starting Emacs; see below.) For each directory in load-path, Emacs then checks to see if it contains a file subdirs.el, and if so, loads it. The subdirs.el file is created when Emacs is built/installed, and contains code that causes Emacs to add any subdirectories of those directories to load-path. Both immediate subdirectories and subdirectories multiple levels down are added. But it excludes subdirectories whose names do not start with a letter or digit, and subdirectories named RCS or CVS, and subdirectories containing a file named .nosearch. Next, Emacs adds any extra load directories that you specify using the -L command-line option (Action Arguments). It also adds the directories where optional packages are installed, if any (Packaging Basics). It is common to add code to one's init file (Init File) to add one or more directories to load-path. For example:
(push "~/.emacs.d/lisp" load-path)
push, for the description of push. Dumping Emacs uses a special value of load-path. If you use a site-load.el or site-init.el file to customize the dumped Emacs (Building Emacs), any changes to load-path that these files make will be lost after dumping.
-
lisp-directory - This variable holds a string naming the directory which holds Emacs's own
*.eland*.elcfiles. This is usually the place where those files are located in the Emacs installation tree, unless Emacs is run from its build directory in which case it points to thelispsubdirectory in the source directory from which Emacs was built. -
Command locate-library - This command finds the precise file name for library library. It searches for the library in the same way
loaddoes, and the argument nosuffix has the same meaning as inload: don't add suffixes.elcor.elto the specified name library. If the path is non-nil, that list of directories is used instead ofload-path. Whenlocate-libraryis called from a program, it returns the file name as a string. When the user runslocate-libraryinteractively, the argument interactive-call ist, and this tellslocate-libraryto display the file name in the echo area. -
Command list-load-path-shadows - This command shows a list of shadowed Emacs Lisp files. A shadowed file is one that will not normally be loaded, despite being in a directory on
load-path, due to the existence of another similarly-named file in a directory earlier onload-path. For instance, supposeload-pathis set to
("/opt/emacs/site-lisp" "/usr/share/emacs/29.1/lisp")
and that both these directories contain a file named foo.el. Then (require 'foo) never loads the file in the second directory. Such a situation might indicate a problem in the way Emacs was installed. When called from Lisp, this function prints a message listing the shadowed files, instead of displaying them in a buffer. If the optional argument stringp is non-nil, it instead returns the shadowed files as a string. If Emacs was compiled with support for native compilation (Native Compilation), then when a .elc byte-compiled file is found by searching load-path, Emacs will try to look for a corresponding .eln file holding the corresponding natively-compiled code. The natively-compiled files are looked up in the directories listed by the native-comp-eln-load-path.
-
native-comp-eln-load-path - This variable holds a list of directories where Emacs looks for natively-compiled
.elnfiles. File names in the list that are not absolute are interpreted as relative toinvocation-directory(System Environment). The last directory in the list is the system directory, i.e. the directory with.elnfiles installed by the Emacs build and installation procedure. In each of the directories in the list, Emacs looks for.elnfiles in a subdirectory whose name is constructed from the Emacs version and an 8-character hash that depends on the current native-compilation ABI; the name of this subdirectory is stored in the variablecomp-native-version-dir.
Loading Non-ASCII Characters
When Emacs Lisp programs contain string constants with non-ASCII characters, these can be represented within Emacs either as unibyte strings or as multibyte strings (Text Representations). Which representation is used depends on how the file is read into Emacs. If it is read with decoding into multibyte representation, the text of the Lisp program will be multibyte text, and its string constants will be multibyte strings. If a file containing Latin-1 characters (for example) is read without decoding, the text of the program will be unibyte text, and its string constants will be unibyte strings. Coding Systems. In most Emacs Lisp programs, the fact that non-ASCII strings are multibyte strings should not be noticeable, since inserting them in unibyte buffers converts them to unibyte automatically. However, if this does make a difference, you can force a particular Lisp file to be interpreted as unibyte by writing coding: raw-text in a local variables section. With that designator, the file will unconditionally be interpreted as unibyte. This can matter when making key bindings to non-ASCII characters written as ?vLITERAL.
Autoload
The autoload facility lets you register the existence of a function or macro, but put off loading the file that defines it. The first call to the function automatically loads the proper library, in order to install the real definition and other associated code, then runs the real definition as if it had been loaded all along. Autoloading can also be triggered by looking up the documentation of the function or macro (Documentation Basics), and completion of variable and function names (Autoload by Prefix below). There are two ways to set up an autoloaded function: by calling autoload, and by writing a "magic" comment in the source before the real definition. autoload is the low-level primitive for autoloading; any Lisp program can call autoload at any time. Magic comments are the most convenient way to make a function autoload, for packages installed along with Emacs. These comments do nothing on their own, but they serve as a guide for the command loaddefs-generate, which constructs calls to autoload and arranges to execute them when Emacs is built.
-
autoload - This function defines the function (or macro) named function so as to load automatically from filename. The string filename specifies the file to load to get the real definition of function. If filename does not contain either a directory name, or the suffix
.elor.elc, this function insists on adding one of these suffixes, and it will not load from a file whose name is just filename with no added suffix. (The variableload-suffixesspecifies the exact required suffixes.) The argument docstring is the documentation string for the function. Specifying the documentation string in the call toautoloadmakes it possible to look at the documentation without loading the function's real definition. Normally, this should be identical to the documentation string in the function definition itself. If it isn't, the function definition's documentation string takes effect when it is loaded. If interactive is non-nil, that says function can be called interactively. This lets completion inM-xwork without loading function's real definition. The complete interactive specification is not given here; it's not needed unless the user actually calls function, and when that happens, it's time to load the real definition. If interactive is a list, it is interpreted as a list of modes this command is applicable for. You can autoload macros and keymaps as well as ordinary functions. Specify type asmacroif function is really a macro. Specify type askeymapif function is really a keymap. Various parts of Emacs need to know this information without loading the real definition. An autoloaded keymap loads automatically during key lookup when a prefix key's binding is the symbol function. Autoloading does not occur for other kinds of access to the keymap. In particular, it does not happen when a Lisp program gets the keymap from the value of a variable and callskeymap-set; not even if the variable name is the same symbol function. If function already has a non-void function definition that is not an autoload object, this function does nothing and returnsnil. Otherwise, it constructs an autoload object (Autoload Type), and stores it as the function definition for function. The autoload object has this form:
(autoload FILENAME DOCSTRING INTERACTIVE TYPE)
For example,
(symbol-function 'run-prolog)
=> (autoload "prolog" 169681 t nil)
In this case, "prolog" is the name of the file to load, 169681 refers to the documentation string in the emacs/etc/DOC file (Documentation Basics), t means the function is interactive, and nil that it is not a macro or a keymap.
-
autoloadp - This function returns non-
nilif object is an autoload object. For example, to check ifrun-prologis defined as an autoloaded function, evaluate
(autoloadp (symbol-function 'run-prolog))
The autoloaded file usually contains other definitions and may require or provide one or more features. If the file is not completely loaded (due to an error in the evaluation of its contents), any function definitions or provide calls that occurred during the load are undone. This is to ensure that the next attempt to call any function autoloading from this file will try again to load the file. If not for this, then some of the functions in the file might be defined by the aborted load, but fail to work properly for the lack of certain subroutines not loaded successfully because they come later in the file. If the autoloaded file fails to define the desired Lisp function or macro, then an error is signaled with data "Autoloading failed to define function FUNCTION-NAME". A magic autoload comment (often called an autoload cookie) consists of ;;;###autoload, on a line by itself, just before the real definition of the function in its autoloadable source file. The function loaddefs-generate writes a corresponding autoload call into loaddefs.el. (The string that serves as the autoload cookie and the name of the file generated by loaddefs-generate can be changed from the above defaults, see below.) Building Emacs loads loaddefs.el and thus calls autoload. The same magic comment can copy any kind of form into loaddefs.el. The form following the magic comment is copied verbatim, except if it is one of the forms which the autoload facility handles specially (e.g., by conversion into an autoload call). The forms which are not copied verbatim are the following:
- Definitions for function or function-like objects:
defunanddefmacro; alsocl-defunandcl-defmacro(Argument Lists), anddefine-overloadable-function(see the commentary inmode-local.el).- Definitions for major or minor modes:
define-minor-mode,define-globalized-minor-mode,define-generic-mode,define-derived-mode,easy-mmode-define-minor-mode,easy-mmode-define-global-mode,define-compilation-mode, anddefine-global-minor-mode.- Other definition types:
defcustom,defgroup,deftheme,defclass(EIEIO), anddefine-skeleton(Autotyping).
You can also use a magic comment to execute a form at build time without executing it when the file itself is loaded. To do this, write the form on the same line as the magic comment. Since it is in a comment, it does nothing when you load the source file; but loaddefs-generate copies it to loaddefs.el, where it is executed while building Emacs. The following example shows how doctor is prepared for autoloading with a magic comment:
;;;###autoload (defun doctor () "Switch to *doctor* buffer and start giving psychotherapy." (interactive) (switch-to-buffer "*doctor*") (doctor-mode))
Here's what that produces in loaddefs.el:
(autoload 'doctor "doctor" "\ Switch to *doctor* buffer and start giving psychotherapy. \(fn)" t nil)
While the loaddefs.el isn't for editing, we try to keep it somewhat readable for people. For instance, control characters in defvar values are escaped, and we insert a backslash and newline immediately following the double-quote of the doc string to keep the line length down. (fn) in the usage part of the documentation string is replaced with the function's name when the various help functions (Help Functions) display it. If you write a function definition with an unusual macro that is not one of the known and recognized function definition methods, use of an ordinary magic autoload comment would copy the whole definition into loaddefs.el. That is not desirable. You can put the desired autoload call into loaddefs.el instead by writing this:
;;;###autoload (autoload 'foo "myfile") (mydefunmacro foo ...)
You can use a non-default string as the autoload cookie and have the corresponding autoload calls written into a file whose name is different from the default loaddefs.el. Emacs provides two variables to control this:
-
lisp-mode-autoload-regexp - The value of this constant is a regexp that matches autoload cookies.
loaddefs-generatecopies the Lisp form that follows the cookie into the autoload file it generates. This will match comments like;;;###autoloadand;;;###calc-autoload. -
generated-autoload-file - The value of this variable names an Emacs Lisp file where the autoload calls should go. The default value is
loaddefs.el, but you can override that, e.g., in the local variables section of a.elfile (File Local Variables). The autoload file is assumed to contain a trailer starting with a formfeed character.
The following function may be used to explicitly load the library specified by an autoload object:
-
autoload-do-load - This function performs the loading specified by autoload, which should be an autoload object. The optional argument name, if non-
nil, should be a symbol whose function value is autoload; in that case, the return value of this function is the symbol's new function value. If the value of the optional argument macro-only ismacro, this function avoids loading a function, only a macro.
Autoload by Prefix
During completion for the commands describe-variable and describe-function, Emacs will try to load files which may contain definitions matching the prefix being completed. The variable definition-prefixes holds a hashtable which maps a prefix to the corresponding list of files to load for it. Entries to this mapping are added by calls to register-definition-prefixes which are generated by loaddefs-generate (Autoload). Files which don't contain any definitions worth loading (test files, for example), should set autoload-compute-prefixes to nil as a file-local variable.
When to Use Autoload
Do not add an autoload comment unless it is really necessary. Autoloading code means it is always globally visible. Once an item is autoloaded, there is no compatible way to transition back to it not being autoloaded (after people become accustomed to being able to use it without an explicit load).
- The most common items to autoload are the interactive entry points to a library. For example, if
python.elis a library defining a major-mode for editing Python code, autoload the definition of thepython-modefunction, so that people can simply useM-x python-modeto load the library. - Variables usually don't need to be autoloaded. An exception is if the variable on its own is generally useful without the whole defining library being loaded. (An example of this might be something like
find-exec-terminator.) - Don't autoload a user option just so that a user can set it.
- Never add an autoload comment to silence a compiler warning in another file. In the file that produces the warning, use
(defvar foo)to silence an undefined variable warning, anddeclare-function(Declaring Functions) to silence an undefined function warning; or require the relevant library; or use an explicit autoload statement.
Repeated Loading
You can load a given file more than once in an Emacs session. For example, after you have rewritten and reinstalled a function definition by editing it in a buffer, you may wish to return to the original version; you can do this by reloading the file it came from. When you load or reload files, bear in mind that the load and load-library functions automatically load a byte-compiled file rather than a non-compiled file of similar name. If you rewrite a file that you intend to save and reinstall, you need to byte-compile the new version; otherwise Emacs will load the older, byte-compiled file instead of your newer, non-compiled file! If that happens, the message displayed when loading the file includes, (compiled; note, to remind you to recompile it. When writing the forms in a Lisp library file, keep in mind that the file might be loaded more than once. For example, think about whether each variable should be reinitialized when you reload the library; defvar does not change the value if the variable is already initialized. (Defining Variables.) The simplest way to add an element to an alist is like this:
(push '(leif-mode " Leif") minor-mode-alist)
But this would add multiple elements if the library is reloaded. To avoid the problem, use add-to-list (List Variables):
(add-to-list 'minor-mode-alist '(leif-mode " Leif"))
Occasionally you will want to test explicitly whether a library has already been loaded. If the library uses provide to provide a named feature, you can use featurep earlier in the file to test whether the provide call has been executed before (Named Features). Alternatively, you could use something like this:
(defvar foo-was-loaded nil) (unless foo-was-loaded EXECUTE-FIRST-TIME-ONLY (setq foo-was-loaded t))
Features
provide and require are an alternative to autoload for loading files automatically. They work in terms of named features. Autoloading is triggered by calling a specific function, but a feature is loaded the first time another program asks for it by name. A feature name is a symbol that stands for a collection of functions, variables, etc. The file that defines them should provide the feature. Another program that uses them may ensure they are defined by requiring the feature. This loads the file of definitions if it hasn't been loaded already. To require the presence of a feature, call require with the feature name as argument. require looks in the global variable features to see whether the desired feature has been provided already. If not, it loads the feature from the appropriate file. This file should call provide at the top level to add the feature to features; if it fails to do so, require signals an error. For example, in idlwave.el, the definition for idlwave-complete-filename includes the following code:
(defun idlwave-complete-filename ()
"Use the comint stuff to complete a file name."
(require 'comint)
(let* ((comint-file-name-chars "~/A-Za-z0-9+@:_.$#%={}\\-")
(comint-completion-addsuffix nil)
...)
(comint-dynamic-complete-filename)))
The expression (require 'comint) loads the file comint.el if it has not yet been loaded, ensuring that comint-dynamic-complete-filename is defined. Features are normally named after the files that provide them, so that require need not be given the file name. (Note that it is important that the require statement be outside the body of the let. Loading a library while its variables are let-bound can have unintended consequences, namely the variables becoming unbound after the let exits.) The comint.el file contains the following top-level expression:
(provide 'comint)
This adds comint to the global features list, so that (require 'comint) will henceforth know that nothing needs to be done. When require is used at top level in a file, it takes effect when you byte-compile that file (Byte Compilation) as well as when you load it. This is in case the required package contains macros that the byte compiler must know about. It also avoids byte compiler warnings for functions and variables defined in the file loaded with require. Although top-level calls to require are evaluated during byte compilation, provide calls are not. Therefore, you can ensure that a file of definitions is loaded before it is byte-compiled by including a provide followed by a require for the same feature, as in the following example.
(provide 'my-feature) ; Ignored by byte compiler
; evaluated by load.
(require 'my-feature) ; Evaluated by byte compiler.
The compiler ignores the provide, then processes the require by loading the file in question. Loading the file does execute the provide call, so the subsequent require call does nothing when the file is loaded.
-
provide - This function announces that feature is now loaded, or being loaded, into the current Emacs session. This means that the facilities associated with feature are or will be available for other Lisp programs. The direct effect of calling
provideis to add feature to the front offeaturesif it is not already in that list and call anyeval-after-loadcode waiting for it (Hooks for Loading). The argument feature must be a symbol.providereturns feature. If provided, subfeatures should be a list of symbols indicating a set of specific subfeatures provided by this version of feature. You can test the presence of a subfeature usingfeaturep. The idea of subfeatures is that you use them when a package (which is one feature) is complex enough to make it useful to give names to various parts or functionalities of the package, which might or might not be loaded, or might or might not be present in a given version. Network Feature Testing, for an example.
features
=> (bar bish)
(provide 'foo)
=> foo
features
=> (foo bar bish)
When a file is loaded to satisfy an autoload, and it stops due to an error in the evaluation of its contents, any function definitions or provide calls that occurred during the load are undone. Autoload.
-
require - This function checks whether feature is present in the current Emacs session (using
(featurep FEATURE); see below). The argument feature must be a symbol. If the feature is not present, thenrequireloads filename withload. If filename is not supplied, then the name of the symbol feature is used as the base file name to load. However, in this case,requireinsists on finding feature with an added.elor.elcsuffix (possibly extended with a compression suffix); a file whose name is just feature won't be used. (The variableload-suffixesspecifies the exact required Lisp suffixes.) If noerror is non-nil, that suppresses errors from actual loading of the file. In that case,requirereturnsnilif loading the file fails. Normally,requirereturns feature. If loading the file succeeds but does not provide feature,requiresignals an error about the missing feature. -
featurep - This function returns
tif feature has been provided in the current Emacs session (i.e., if feature is a member offeatures.) If subfeature is non-nil, then the function returnstonly if that subfeature is provided as well (i.e., if subfeature is a member of thesubfeatureproperty of the feature symbol.) -
features - The value of this variable is a list of symbols that are the features loaded in the current Emacs session. Each symbol was put in this list with a call to
provide. The order of the elements in thefeatureslist is not significant.
The use-package macro provides a convenient way of loading a feature and configuring it for use. It provides a means to combine requiring a feature, like require does, with code to be run when the feature is actually loaded, similar to load-time hooks (Hooks for Loading). The declarative syntax of use-package makes it exceptionally easy to use in user init files.
-
use-package - This macro specifies how to load the named feature and how to configure and customize it for use. The arguments args are keyword-value pairs. Some of the important keywords and their values are:
-
:init FORMS - Specifies forms to execute before feature is loaded.
-
:config FORMS - Specifies forms to execute after loading feature.
-
:defer CONDITION - If condition is non-
nil, it specifies to defer loading feature until any of the autoloaded commands or variables of feature are first used. If condition is a number n, it specifies that feature should be loaded after n seconds of idle time. -
:commands COMMANDS... - Specifies commands of feature to be autoloaded.
-
:bind KEYBINDINGS... - Specifies the keybindings for feature/s commands. Each binding has the form (/key-sequence . command) or (:map keymap (key-sequence . command)) where key-sequence is in the form accepted by the
kbdmacro (Key Sequences).
For more details about use-package, see Top.
Which File Defined a Certain Symbol
-
symbol-file - This function returns the name of the file that defined symbol. If type is
nil, then any kind of definition is acceptable. If type isdefun,defvar, ordefface, that specifies function definition, variable definition, or face definition only. The value is normally an absolute file name. It can also benil, if the definition is not associated with any file. If symbol specifies an autoloaded function, the value can be a relative file name without extension. If the optional third argument native-p is non-nil, and Emacs was built with native compilation support (Native Compilation), this function will try to find the.elnfile that defined symbol, instead of the.elcor.elfile. If such a.elnfile is found and is not outdated, the function will return its absolute file name; otherwise it will report the name of either the source or the byte-compiled file.
The basis for symbol-file is the data in the variable load-history.
-
load-history - The value of this variable is an alist that associates the names of loaded library files with the names of the functions and variables they defined, as well as the features they provided or required. Each element in this alist describes one loaded library (including libraries that are preloaded at startup). It is a list whose CAR is the absolute file name of the library (a string). The rest of the list elements have these forms:
-
VAR - The symbol var was defined as a variable.
-
(defun . FUN) - The function fun was defined.
(defun . FUN), which represents defining fun as a function. -
(defface . FACE) - The face face was defined.
-
(require . FEATURE) - The feature feature was required.
-
(provide . FEATURE) - The feature feature was provided.
-
(cl-defmethod METHOD SPECIALIZERS) - The named method was defined by using
cl-defmethod, with specializers as its specializers. -
(define-type . TYPE) - The type type was defined.
The value of load-history may have one element whose CAR is nil. This element describes definitions made with eval-buffer on a buffer that is not visiting a file. The command eval-region updates load-history, but does so by adding the symbols defined to the element for the file being visited, rather than replacing that element. Eval. In addition to load-history, every function keeps track of its own history in the symbol property function-history. The reason why functions are treated specially in this respect is that it is common for functions to be defined in two steps in two different files (typically, one of them is an autoload), so in order to be able to properly unload a file, we need to know more precisely what that file did to the function definition. The symbol property function-history holds a list of the form (FILE1 DEF2 FILE2 DEF3 ...), where file1 is the last file that changed the definition and def2 was the definition before file1, set by file2, etc. Logically this list should end with the name of the first file that defined this function, but to save space this last element is usually omitted.
Unloading
You can discard the functions and variables loaded by a library to reclaim memory for other Lisp objects. To do this, use the function unload-feature:
-
Command unload-feature - This command unloads the library that provided feature feature. It undefines all functions, macros, and variables defined in that library with
defun,defalias,defsubst,defmacro,defconst,defvar, anddefcustom. It then restores any autoloads formerly associated with those symbols. (Loading saves these in thefunction-historyproperty of the symbol.) Before restoring the previous definitions,unload-featurerunsremove-hookto remove functions defined by the library from certain hooks. These hooks include variables whose names end in-hook(or the deprecated suffix-hooks), plus those listed inunload-feature-special-hooks, as well asauto-mode-alist. This is to prevent Emacs from ceasing to function because important hooks refer to functions that are no longer defined. Standard unloading activities also undo ELP profiling of functions in that library, unprovides any features provided by the library, and cancels timers held in variables defined by the library. If these measures are not sufficient to prevent malfunction, a library can define an explicit unloader namedFEATURE-unload-function. If that symbol is defined as a function,unload-featurecalls it with no arguments before doing anything else. It can do whatever is appropriate to unload the library. If it returnsnil,unload-featureproceeds to take the normal unload actions. Otherwise it considers the job to be done. Ordinarily,unload-featurerefuses to unload a library on which other loaded libraries depend. (A library a depends on library b if a contains arequirefor b.) If the optional argument force is non-nil, dependencies are ignored and you can unload any library.
The unload-feature function is written in Lisp; its actions are based on the variable load-history.
-
unload-feature-special-hooks - This variable holds a list of hooks to be scanned before unloading a library, to remove functions defined in the library.
Hooks for Loading
You can ask for code to be executed each time Emacs loads a library, by using the variable after-load-functions:
-
after-load-functions - This abnormal hook is run after loading a file. Each function in the hook is called with a single argument, the absolute filename of the file that was just loaded.
If you want code to be executed when a particular library is loaded, use the macro with-eval-after-load:
-
with-eval-after-load - This macro arranges to evaluate body at the end of loading the file library, each time library is loaded. If library is already loaded, it evaluates body right away. You don't need to give a directory or extension in the file name library. Normally, you just give a bare file name, like this:
(with-eval-after-load "js" (keymap-set js-mode-map "C-c C-c" 'js-eval))
To restrict which files can trigger the evaluation, include a directory or an extension or both in library. Only a file whose absolute true name (i.e., the name with all symbolic links chased out) matches all the given name components will match. In the following example, my_inst.elc or my_inst.elc.gz in some directory ..../foo/bar will trigger the evaluation, but not my_inst.el:
(with-eval-after-load "foo/bar/my_inst.elc" ...)
library can also be a feature (i.e., a symbol), in which case body is evaluated at the end of any file where (provide LIBRARY) is called. An error in body does not undo the load, but does prevent execution of the rest of body. Normally, well-designed Lisp programs should not use with-eval-after-load. If you need to examine and set the variables defined in another library (those meant for outside use), you can do it immediately—there is no need to wait until the library is loaded. If you need to call functions defined by that library, you should load the library, preferably with require (Named Features).
Emacs Dynamic Modules
A dynamic Emacs module is a shared library that provides additional functionality for use in Emacs Lisp programs, just like a package written in Emacs Lisp would. Functions that load Emacs Lisp packages can also load dynamic modules. They recognize dynamic modules by looking at their file-name extension, a.k.a. "suffix". This suffix is platform-dependent.
-
module-file-suffix - This variable holds the system-dependent value of the file-name extension of the module files. Its value is
.soon POSIX hosts,.dylibon macOS, and.dllon MS-Windows.
On macOS, dynamic modules can also have the suffix .so in addition to .dylib. Every dynamic module should export a C-callable function named emacs_module_init, which Emacs will call as part of the call to load or require which loads the module. It should also export a symbol named plugin_is_GPL_compatible to indicate that its code is released under the GPL or compatible license; Emacs will signal an error if your program tries to load modules that don't export such a symbol. If a module needs to call Emacs functions, it should do so through the API (Application Programming Interface) defined and documented in the header file emacs-module.h that is part of the Emacs distribution. Writing Dynamic Modules, for details of using that API when writing your own modules. Modules can create user-ptr Lisp objects that embed pointers to C struct's defined by the module. This is useful for keeping around complex data structures created by a module, to be passed back to the module's functions. User-ptr objects can also have associated finalizers – functions to be run when the object is GC'ed; this is useful for freeing any resources allocated for the underlying data structure, such as memory, open file descriptors, etc. Module Values.
-
user-ptrp - This function returns
tif its argument is auser-ptrobject. -
module-load - Emacs calls this low-level primitive to load a module from the specified file and perform the necessary initialization of the module. This is the primitive which makes sure the module exports the
plugin_is_GPL_compatiblesymbol, calls the module'semacs_module_initfunction, and signals an error if that function returns an error indication, or if the user typedC-gduring the initialization. If the initialization succeeds,module-loadreturnst. Note that file must already have the proper file-name extension, as this function doesn't try looking for files with known extensions, unlikeload. Unlikeload,module-loaddoesn't record the module inload-history, doesn't print any messages, and doesn't protect against recursive loads. Most users should therefore useload,load-file,load-library, orrequireinstead ofmodule-load.
Loadable modules in Emacs are enabled by using the --with-modules option at configure time.