summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-07-16 02:25:48 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-07-16 02:25:48 +0000
commitfceb44d2863736de37b3986fe03a9381190be0a4 (patch)
tree9bde020821ce7ddfb2e48acc7ef189259da1c44e /lisp/emacs-lisp
parent9f8a6f72056a56d8d5ed248a596c20664e1a6716 (diff)
downloademacs-fceb44d2863736de37b3986fe03a9381190be0a4.tar.gz
emacs-fceb44d2863736de37b3986fe03a9381190be0a4.tar.bz2
emacs-fceb44d2863736de37b3986fe03a9381190be0a4.zip
(define-minor-mode): Avoid constructing a defcustom with two :set or
:type keywords.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/easy-mmode.el15
1 files changed, 11 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index 3b4662277b6..87f3e7249aa 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -142,8 +142,10 @@ For example, you could write
(let* ((mode-name (symbol-name mode))
(pretty-name (easy-mmode-pretty-mode-name mode lighter))
(globalp nil)
+ (set nil)
(initialize nil)
(group nil)
+ (type nil)
(extra-args nil)
(extra-keywords nil)
(require t)
@@ -160,8 +162,10 @@ For example, you could write
(:lighter (setq lighter (pop body)))
(:global (setq globalp (pop body)))
(:extra-args (setq extra-args (pop body)))
+ (:set (setq set (list :set (pop body))))
(:initialize (setq initialize (list :initialize (pop body))))
(:group (setq group (nconc group (list :group (pop body)))))
+ (:type (setq type (list :type (pop body))))
(:require (setq require (pop body)))
(:keymap (setq keymap (pop body)))
(t (push keyw extra-keywords) (push (pop body) extra-keywords))))
@@ -169,9 +173,10 @@ For example, you could write
(setq keymap-sym (if (and keymap (symbolp keymap)) keymap
(intern (concat mode-name "-map"))))
+ (unless set (setq set '(:set 'custom-set-minor-mode)))
+
(unless initialize
- (setq initialize
- '(:initialize 'custom-initialize-default)))
+ (setq initialize '(:initialize 'custom-initialize-default)))
(unless group
;; We might as well provide a best-guess default group.
@@ -179,6 +184,8 @@ For example, you could write
`(:group ',(intern (replace-regexp-in-string
"-mode\\'" "" mode-name)))))
+ (unless type (setq type '(:type 'boolean)))
+
`(progn
;; Define the variable to enable or disable the mode.
,(if (not globalp)
@@ -201,10 +208,10 @@ See the command `%s' for a description of this minor-mode."))
`(defcustom ,mode ,init-value
,(format base-doc-string pretty-name mode mode)
- :set 'custom-set-minor-mode
+ ,@set
,@initialize
,@group
- :type 'boolean
+ ,@type
,@(cond
((not (and curfile require)) nil)
((not (eq require t)) `(:require ,require)))