2012-01-31 Glenn Morris <rgm@gnu.org>
- * emacs-lisp/easy-mmode.el (define-minor-mode): Fix :variable case.
+ * emacs-lisp/easy-mmode.el (define-minor-mode):
+ Fix :variable handling of mode a symbol not equal to modefun.
+ Allow named functions to be used as the cdr of variable:.
2012-01-30 Glenn Morris <rgm@gnu.org>
(hook (intern (concat mode-name "-hook")))
(hook-on (intern (concat mode-name "-on-hook")))
(hook-off (intern (concat mode-name "-off-hook")))
- keyw keymap-sym)
+ keyw keymap-sym tmp)
;; Check keys.
(while (keywordp (setq keyw (car body)))
(:require (setq require (pop body)))
(:keymap (setq keymap (pop body)))
(:variable (setq variable (pop body))
- (if (not (functionp (cdr-safe variable)))
+ (setq tmp (cdr-safe variable))
+ (if (not (or (functionp tmp)
+ (and tmp
+ (symbolp tmp)
+ ;; Hack to allow for named functions not within
+ ;; eval-when-compile.
+ ;; Cf define-compilation-mode.
+ (boundp 'byte-compile-function-environment)
+ (assq tmp byte-compile-function-environment))))
;; PLACE is not of the form (GET . SET).
(setq mode variable)
(setq mode (car variable))