summaryrefslogtreecommitdiff
path: root/lisp/custom.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-10-20 01:52:26 +0200
committerStefan Kangas <stefan@marxist.se>2021-10-20 01:56:24 +0200
commita4a35305101f24279d02d620a51b94b3e4682435 (patch)
tree27da452197ff89c205fe519f8d4939f176c2e89f /lisp/custom.el
parent766108f48db29f766908c728969f78d8e896171e (diff)
downloademacs-a4a35305101f24279d02d620a51b94b3e4682435.tar.gz
emacs-a4a35305101f24279d02d620a51b94b3e4682435.tar.bz2
emacs-a4a35305101f24279d02d620a51b94b3e4682435.zip
Remove some XEmacs compat code from custom.el
* lisp/custom.el (deftheme, custom-declare-theme): Remove XEmacs compat code.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r--lisp/custom.el12
1 files changed, 3 insertions, 9 deletions
diff --git a/lisp/custom.el b/lisp/custom.el
index a04af9abaa5..d4f617d1703 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -1132,30 +1132,24 @@ list, in which A occurs before B if B was defined with a
;; (provide-theme 'THEME)
-;; The IGNORED arguments to deftheme come from the XEmacs theme code, where
-;; they were used to supply keyword-value pairs like `:immediate',
-;; `:variable-reset-string', etc. We don't use any of these, so ignore them.
-
-(defmacro deftheme (theme &optional doc &rest _ignored)
+(defmacro deftheme (theme &optional doc)
"Declare THEME to be a Custom theme.
The optional argument DOC is a doc string describing the theme.
Any theme `foo' should be defined in a file called `foo-theme.el';
see `custom-make-theme-feature' for more information."
(declare (doc-string 2)
- (indent 1)
- (advertised-calling-convention (theme &optional doc) "22.1"))
+ (indent 1))
(let ((feature (custom-make-theme-feature theme)))
;; It is better not to use backquote in this file,
;; because that makes a bootstrapping problem
;; if you need to recompile all the Lisp files using interpreted code.
(list 'custom-declare-theme (list 'quote theme) (list 'quote feature) doc)))
-(defun custom-declare-theme (theme feature &optional doc &rest _ignored)
+(defun custom-declare-theme (theme feature &optional doc)
"Like `deftheme', but THEME is evaluated as a normal argument.
FEATURE is the feature this theme provides. Normally, this is a symbol
created from THEME by `custom-make-theme-feature'."
- (declare (advertised-calling-convention (theme feature &optional doc) "22.1"))
(unless (custom-theme-name-valid-p theme)
(error "Custom theme cannot be named %S" theme))
(unless (memq theme custom-known-themes)