changeset 27243:069b39c07c8d

Remove inappropriate customization (allowing custom.el to use backquote).
author Dave Love <fx@gnu.org>
date Sat, 08 Jan 2000 15:19:21 +0000
parents 09c7e3f9d0f6
children 5694f863dde9
files lisp/emacs-lisp/backquote.el
diffstat 1 files changed, 6 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/backquote.el	Fri Jan 07 21:26:57 2000 +0000
+++ b/lisp/emacs-lisp/backquote.el	Sat Jan 08 15:19:21 2000 +0000
@@ -69,27 +69,16 @@
 
 (defalias 'backquote-list* (symbol-function 'backquote-list*-macro))
 
-(defgroup backquote nil
-  "Implement the ` Lisp construct."
-  :prefix "backquote-"
-  :group 'lisp)
-
 ;; A few advertised variables that control which symbols are used
 ;; to represent the backquote, unquote, and splice operations.
-(defcustom backquote-backquote-symbol '\`
-  "*Symbol used to represent a backquote or nested backquote (e.g. `)."
-  :type 'symbol
-  :group 'backquote)
+(defconst backquote-backquote-symbol '\`
+  "*Symbol used to represent a backquote or nested backquote.")
 
-(defcustom backquote-unquote-symbol ',
-  "*Symbol used to represent an unquote (e.g. `,') inside a backquote."
-  :type 'symbol
-  :group 'backquote)
+(defconst backquote-unquote-symbol ',
+  "*Symbol used to represent an unquote inside a backquote.")
 
-(defcustom backquote-splice-symbol ',@
-  "*Symbol used to represent a splice (e.g. `,@') inside a backquote."
-  :type 'symbol
-  :group 'backquote)
+(defconst backquote-splice-symbol ',@
+  "*Symbol used to represent a splice inside a backquote.")
 
 ;;;###autoload
 (defmacro backquote (arg)