aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-09-03 07:56:39 +0000
committerGerd Moellmann2001-09-03 07:56:39 +0000
commitcdab3e503a49caf651c1513a069f578f6bfc5bc7 (patch)
tree6caa04ad76d0b3e313ee7a9e19d433f73df66584
parent883310a73162f2e7f85aefbb98d0b60d4a676589 (diff)
downloademacs-cdab3e503a49caf651c1513a069f578f6bfc5bc7.tar.gz
emacs-cdab3e503a49caf651c1513a069f578f6bfc5bc7.zip
(backquote-backquote-symbol)
(backquote-unquote-symbol, backquote-splice-symbol): Remove `*' from doc strings.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/emacs-lisp/backquote.el8
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fd3907897d5..5584bdb475f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12001-09-03 Gerd Moellmann <gerd@gnu.org>
2
3 * emacs-lisp/backquote.el (backquote-backquote-symbol)
4 (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
5 from doc strings.
6
12001-09-02 Eli Zaretskii <eliz@is.elta.co.il> 72001-09-02 Eli Zaretskii <eliz@is.elta.co.il>
2 8
3 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for 9 * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index 04078815d2e..f175eb8ccbf 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -1,6 +1,6 @@
1;;; backquote.el --- implement the ` Lisp construct 1;;; backquote.el --- implement the ` Lisp construct
2 2
3;;; Copyright (C) 1990, 1992, 1994 Free Software Foundation, Inc. 3;;; Copyright (C) 1990, 1992, 1994, 2001 Free Software Foundation, Inc.
4 4
5;; Author: Rick Sladkey <jrs@world.std.com> 5;; Author: Rick Sladkey <jrs@world.std.com>
6;; Maintainer: FSF 6;; Maintainer: FSF
@@ -72,13 +72,13 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
72;; A few advertised variables that control which symbols are used 72;; A few advertised variables that control which symbols are used
73;; to represent the backquote, unquote, and splice operations. 73;; to represent the backquote, unquote, and splice operations.
74(defconst backquote-backquote-symbol '\` 74(defconst backquote-backquote-symbol '\`
75 "*Symbol used to represent a backquote or nested backquote.") 75 "Symbol used to represent a backquote or nested backquote.")
76 76
77(defconst backquote-unquote-symbol ', 77(defconst backquote-unquote-symbol ',
78 "*Symbol used to represent an unquote inside a backquote.") 78 "Symbol used to represent an unquote inside a backquote.")
79 79
80(defconst backquote-splice-symbol ',@ 80(defconst backquote-splice-symbol ',@
81 "*Symbol used to represent a splice inside a backquote.") 81 "Symbol used to represent a splice inside a backquote.")
82 82
83;;;###autoload 83;;;###autoload
84(defmacro backquote (arg) 84(defmacro backquote (arg)