summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-05-03 23:36:52 +0000
committerRichard M. Stallman <rms@gnu.org>1994-05-03 23:36:52 +0000
commit1ec9a6ce565503c24989ab76cef572fbf0708cac (patch)
treec27f2aff1307138ddf9fdd3f40819f14f5ee67be /lisp
parent51c6428533a8df88a9c9b6d8362f81ff2b682ecd (diff)
downloademacs-1ec9a6ce565503c24989ab76cef572fbf0708cac.tar.gz
(backquote): Add autoloads.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/backquote.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index a0a9765e807..e61f24935ac 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -83,6 +83,7 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
;; 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 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
(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 @@ Vectors work just like lists. Nested backquotes are permitted."
;; 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