diff options
author | Dave Love <fx@gnu.org> | 2000-01-08 15:19:21 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-01-08 15:19:21 +0000 |
commit | 4c5482386b6bdc77aea564798029ce43e2d6cb29 (patch) | |
tree | a92d5af1a8acfefe245adf720bbc0996d50ec991 /lisp/emacs-lisp | |
parent | f4191f953759c26d97e91c1ac2728eb05d4c4c0f (diff) | |
download | emacs-4c5482386b6bdc77aea564798029ce43e2d6cb29.tar.gz |
Remove inappropriate customization (allowing custom.el to use
backquote).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/backquote.el | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el index 9a0f5a0cd1e..9b7e7a95fb3 100644 --- a/lisp/emacs-lisp/backquote.el +++ b/lisp/emacs-lisp/backquote.el @@ -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) |