# HG changeset patch # User Richard M. Stallman # Date 799620295 0 # Node ID 14c5ed91e3d030f89e2d56d48a1ea240d0d62fa9 # Parent b1fa0717df0d9a4fc051ffa88133a041492bef12 ('\`): Use backslash for reading the backquote. (backquote-backquote-symbol): Likewise. (backquote): Doc fix. diff -r b1fa0717df0d -r 14c5ed91e3d0 lisp/emacs-lisp/backquote.el --- a/lisp/emacs-lisp/backquote.el Thu May 04 20:01:13 1995 +0000 +++ b/lisp/emacs-lisp/backquote.el Thu May 04 20:44:55 1995 +0000 @@ -83,7 +83,7 @@ ;; A few advertised variables that control which symbols are used ;; to represent the backquote, unquote, and splice operations. -(defvar backquote-backquote-symbol '` +(defvar backquote-backquote-symbol '\` "*Symbol used to represent a backquote or nested backquote (e.g. `).") (defvar backquote-unquote-symbol ', @@ -101,10 +101,10 @@ For example: -b => (ba bb bc) ; assume b has this value -\(` (a b c)) => (a b c) ; backquote acts like quote -\(` (a (, b) c)) => (a (ba bb bc) c) ; insert the value of b -\(` (a (,@ b) c)) => (a ba bb bc c) ; splice in the value of b +b => (ba bb bc) ; assume b has this value +`(a b c) => (a b c) ; backquote acts like quote +`(a (, b) c) => (a (ba bb bc) c) ; insert the value of b +`(a (,@ b) c) => (a ba bb bc c) ; splice in the value of b Vectors work just like lists. Nested backquotes are permitted." (cdr (backquote-process arg))) @@ -112,7 +112,7 @@ ;; GNU Emacs has no reader macros ;;;###autoload -(defalias '` (symbol-function 'backquote)) +(defalias '\` (symbol-function 'backquote)) ;; backquote-process returns a dotted-pair of a tag (0, 1, or 2) and ;; the backquote-processed structure. 0 => the structure is