Mercurial > emacs
changeset 7299:44c38d99d3c4
(backquote): Add autoloads.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 03 May 1994 23:36:52 +0000 |
parents | 4fd40bd394fe |
children | cc7cd83ccf3f |
files | lisp/emacs-lisp/backquote.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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