aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-03 23:36:52 +0000
committerRichard M. Stallman1994-05-03 23:36:52 +0000
commit325e3af2760eebf750390bfebdf4ee058227e8e4 (patch)
tree0c4dfbe7db26f428b18be9116a34c12db8df740c
parentd733c5ec034baf089cdc50bc79b919897ab98bec (diff)
downloademacs-325e3af2760eebf750390bfebdf4ee058227e8e4.tar.gz
emacs-325e3af2760eebf750390bfebdf4ee058227e8e4.zip
(backquote): Add autoloads.
-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)"
83;; A few advertised variables that control which symbols are used 83;; A few advertised variables that control which symbols are used
84;; to represent the backquote, unquote, and splice operations. 84;; to represent the backquote, unquote, and splice operations.
85 85
86;;;###autoload
86(defvar backquote-backquote-symbol '` 87(defvar backquote-backquote-symbol '`
87 "*Symbol used to represent a backquote or nested backquote (e.g. `).") 88 "*Symbol used to represent a backquote or nested backquote (e.g. `).")
88 89
@@ -92,6 +93,7 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
92(defvar backquote-splice-symbol ',@ 93(defvar backquote-splice-symbol ',@
93 "*Symbol used to represent a splice (e.g. `,'@) inside a backquote.") 94 "*Symbol used to represent a splice (e.g. `,'@) inside a backquote.")
94 95
96;;;###autoload
95(defmacro backquote (arg) 97(defmacro backquote (arg)
96 "Argument STRUCTURE describes a template to build. 98 "Argument STRUCTURE describes a template to build.
97 99
@@ -110,6 +112,7 @@ Vectors work just like lists. Nested backquotes are permitted."
110 112
111;; GNU Emacs has no reader macros 113;; GNU Emacs has no reader macros
112 114
115;;;###autoload
113(fset backquote-backquote-symbol (symbol-function 'backquote)) 116(fset backquote-backquote-symbol (symbol-function 'backquote))
114 117
115;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and 118;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and