]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove inappropriate customization (allowing custom.el to use
authorDave Love <fx@gnu.org>
Sat, 8 Jan 2000 15:19:21 +0000 (15:19 +0000)
committerDave Love <fx@gnu.org>
Sat, 8 Jan 2000 15:19:21 +0000 (15:19 +0000)
backquote).

lisp/emacs-lisp/backquote.el

index 9a0f5a0cd1ed59ea3e2cefc9d74b3c941df3da96..9b7e7a95fb36f220beb5c90b63a206784dd626c7 100644 (file)
@@ -69,27 +69,16 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
 
 (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)
-
-(defcustom backquote-unquote-symbol ',
-  "*Symbol used to represent an unquote (e.g. `,') inside a backquote."
-  :type 'symbol
-  :group 'backquote)
-
-(defcustom backquote-splice-symbol ',@
-  "*Symbol used to represent a splice (e.g. `,@') inside a backquote."
-  :type 'symbol
-  :group 'backquote)
+(defconst backquote-backquote-symbol '\`
+  "*Symbol used to represent a backquote or nested backquote.")
+
+(defconst backquote-unquote-symbol ',
+  "*Symbol used to represent an unquote inside a backquote.")
+
+(defconst backquote-splice-symbol ',@
+  "*Symbol used to represent a splice inside a backquote.")
 
 ;;;###autoload
 (defmacro backquote (arg)