* lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Fix :variable case.
This commit is contained in:
parent
bccc0e401f
commit
e58e988add
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-01-31 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp/easy-mmode.el (define-minor-mode): Fix :variable case.
|
||||
|
||||
2012-01-30 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* emacs-lisp/authors.el (authors-fixed-entries):
|
||||
|
|
|
@ -286,7 +286,7 @@ the mode if ARG is omitted or nil.
|
|||
,(if keymap keymap-sym
|
||||
`(if (boundp ',keymap-sym) ,keymap-sym))
|
||||
nil
|
||||
,(unless (eq mode modefun) 'modefun)))))))
|
||||
,(unless (eq mode modefun) `',modefun)))))))
|
||||
|
||||
;;;
|
||||
;;; make global minor mode
|
||||
|
|
Loading…
Add table
Reference in a new issue