aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/backquote.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index a2a929d9601..4940e2fd8c6 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -92,7 +92,7 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
92 "Symbol used to represent a splice inside a backquote.") 92 "Symbol used to represent a splice inside a backquote.")
93 93
94;;;###autoload 94;;;###autoload
95(defmacro backquote (arg) 95(defmacro backquote (structure)
96 "Argument STRUCTURE describes a template to build. 96 "Argument STRUCTURE describes a template to build.
97 97
98The whole structure acts as if it were quoted except for certain 98The whole structure acts as if it were quoted except for certain
@@ -106,7 +106,7 @@ b => (ba bb bc) ; assume b has this value
106`(a ,@b c) => (a ba bb bc c) ; splice in the value of b 106`(a ,@b c) => (a ba bb bc c) ; splice in the value of b
107 107
108Vectors work just like lists. Nested backquotes are permitted." 108Vectors work just like lists. Nested backquotes are permitted."
109 (cdr (backquote-process arg))) 109 (cdr (backquote-process structure)))
110 110
111;; GNU Emacs has no reader macros 111;; GNU Emacs has no reader macros
112 112