]> git.eshelyaron.com Git - emacs.git/commitdiff
* functions.texi (What Is a Function): Document the autoload
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 3 Jul 2011 12:33:37 +0000 (14:33 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 3 Jul 2011 12:33:37 +0000 (14:33 +0200)
object.

Fixes: debbugs:6496
doc/lispref/ChangeLog
doc/lispref/functions.texi

index a87cd201676953d8578fb1d8b4f234d2a3c5b912..f96ecc30c5892ea68c7e060d5c5594aa4c73aacf 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * functions.texi (What Is a Function): Document the autoload
+       object (bug#6496).
+
 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * customize.texi (Variable Definitions): Clarify that SETFUNCTION
index 974487382c8604622fd9439eb5786a62c80f658d..519957f8921c8a9a2e702a78254f5fa85226e934 100644 (file)
@@ -112,6 +112,13 @@ editors; for Lisp programs, the distinction is normally unimportant.
 @item byte-code function
 A @dfn{byte-code function} is a function that has been compiled by the
 byte compiler.  @xref{Byte-Code Type}.
+
+@item autoload object
+@cindex autoload object
+An @dfn{autoload object} is a place-holder for a real function.  If
+the autoload object is called, it will make Emacs load the file
+containing the definition of the real function, and then call the real
+function instead.
 @end table
 
 @defun functionp object