# HG changeset patch # User Dave Love # Date 947344761 0 # Node ID 069b39c07c8d87e90bdd3592aa84f3eb0203fc86 # Parent 09c7e3f9d0f687eab7345691ba1bbdfb79e1d457 Remove inappropriate customization (allowing custom.el to use backquote). diff -r 09c7e3f9d0f6 -r 069b39c07c8d lisp/emacs-lisp/backquote.el --- 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)