Mercurial > emacs
changeset 39085:97bb42866d17
(backquote-backquote-symbol)
(backquote-unquote-symbol, backquote-splice-symbol): Remove `*'
from doc strings.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 03 Sep 2001 07:56:17 +0000 |
parents | c1a1fa5c76bc |
children | 57c4dfabffa8 |
files | lisp/emacs-lisp/backquote.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/backquote.el Sun Sep 02 17:29:14 2001 +0000 +++ b/lisp/emacs-lisp/backquote.el Mon Sep 03 07:56:17 2001 +0000 @@ -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 @@ ;; 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)