# HG changeset patch # User Richard M. Stallman # Date 768008212 0 # Node ID 44c38d99d3c4d413fcee75e58a6bd93752cc76ed # Parent 4fd40bd394fe8e4a5b4214a801623c4aa92d73a9 (backquote): Add autoloads. diff -r 4fd40bd394fe -r 44c38d99d3c4 lisp/emacs-lisp/backquote.el --- a/lisp/emacs-lisp/backquote.el Tue May 03 22:46:37 1994 +0000 +++ b/lisp/emacs-lisp/backquote.el Tue May 03 23:36:52 1994 +0000 @@ -83,6 +83,7 @@ ;; A few advertised variables that control which symbols are used ;; to represent the backquote, unquote, and splice operations. +;;;###autoload (defvar backquote-backquote-symbol '` "*Symbol used to represent a backquote or nested backquote (e.g. `).") @@ -92,6 +93,7 @@ (defvar backquote-splice-symbol ',@ "*Symbol used to represent a splice (e.g. `,'@) inside a backquote.") +;;;###autoload (defmacro backquote (arg) "Argument STRUCTURE describes a template to build. @@ -110,6 +112,7 @@ ;; GNU Emacs has no reader macros +;;;###autoload (fset backquote-backquote-symbol (symbol-function 'backquote)) ;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and