]> git.eshelyaron.com Git - emacs.git/commitdiff
(backquote-backquote-symbol)
authorGerd Moellmann <gerd@gnu.org>
Mon, 3 Sep 2001 07:56:39 +0000 (07:56 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 3 Sep 2001 07:56:39 +0000 (07:56 +0000)
(backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
from doc strings.

lisp/ChangeLog
lisp/emacs-lisp/backquote.el

index fd3907897d5053f956c3ca4a941aebbe22e08580..5584bdb475fd0dd8239d47ac86133116ce6ebe3b 100644 (file)
@@ -1,3 +1,9 @@
+2001-09-03  Gerd Moellmann  <gerd@gnu.org>
+
+       * emacs-lisp/backquote.el (backquote-backquote-symbol) 
+       (backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
+       from doc strings.
+
 2001-09-02  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * progmodes/cmacexp.el (c-macro-preprocessor): Use "gcc -E" for
index 04078815d2e21cb18544f76203e08f0487d0fac6..f175eb8ccbf14beac89c034f106f04c5cd59e395 100644 (file)
@@ -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 <jrs@world.std.com>
 ;; 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)