diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-12 00:43:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-12 00:43:42 +0000 |
commit | 44c48a834aa12141be1a9c81824b709acc67f9fd (patch) | |
tree | a943fcae176a6844f0d8295ec7dfebfac6f07f99 /lisp/emacs-lisp | |
parent | dcb8f03d8d30311a6b05585a772ae01bdeffce60 (diff) | |
download | emacs-44c48a834aa12141be1a9c81824b709acc67f9fd.tar.gz emacs-44c48a834aa12141be1a9c81824b709acc67f9fd.tar.bz2 emacs-44c48a834aa12141be1a9c81824b709acc67f9fd.zip |
(backquote-splice-symbol): Doc typo fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/backquote.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index b915e4cbc80..0bc4b95d9ec 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -90,7 +90,7 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)" "*Symbol used to represent an unquote (e.g. `,') inside a backquote.") (defvar backquote-splice-symbol ',@ - "*Symbol used to represent a splice (e.g. `,'@) inside a backquote.") + "*Symbol used to represent a splice (e.g. `,@') inside a backquote.") ;;;###autoload (defmacro backquote (arg) |