aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/backquote.el
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-09-03 07:56:39 +0000
committerGerd Moellmann <[email protected]>2001-09-03 07:56:39 +0000
commitcdab3e503a49caf651c1513a069f578f6bfc5bc7 (patch)
tree6caa04ad76d0b3e313ee7a9e19d433f73df66584 /lisp/emacs-lisp/backquote.el
parent883310a73162f2e7f85aefbb98d0b60d4a676589 (diff)
(backquote-backquote-symbol)
(backquote-unquote-symbol, backquote-splice-symbol): Remove `*' from doc strings.
Diffstat (limited to 'lisp/emacs-lisp/backquote.el')
-rw-r--r--lisp/emacs-lisp/backquote.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index 04078815d2..f175eb8ccb 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -1,6 +1,6 @@
;;; backquote.el --- implement the ` Lisp construct
-;;; Copyright (C) 1990, 1992, 1994 Free Software Foundation, Inc.
+;;; Copyright (C) 1990, 1992, 1994, 2001 Free Software Foundation, Inc.
;; Author: Rick Sladkey <[email protected]>
;; Maintainer: FSF
@@ -72,13 +72,13 @@ 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.
(defconst backquote-backquote-symbol '\`
- "*Symbol used to represent a backquote or nested backquote.")
+ "Symbol used to represent a backquote or nested backquote.")
(defconst backquote-unquote-symbol ',
- "*Symbol used to represent an unquote inside a backquote.")
+ "Symbol used to represent an unquote inside a backquote.")
(defconst backquote-splice-symbol ',@
- "*Symbol used to represent a splice inside a backquote.")
+ "Symbol used to represent a splice inside a backquote.")
;;;###autoload
(defmacro backquote (arg)