From: Stefan Monnier Date: Sat, 14 Apr 2012 12:48:27 +0000 (-0400) Subject: Avoid the use of ((lambda ...) ...) in lexical-binding code. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/9c2d6a4ab2911db8c7ac531fe49d038df521f55b Avoid the use of ((lambda ...) ...) in lexical-binding code. * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall. Fixes: debbugs:11241 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b031a5dfe..caa11a8444 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-04-14 Stefan Monnier + + Avoid the use of ((lambda ...) ...) in lexical-binding code. + * emacs-lisp/easy-mmode.el (define-minor-mode):Use funcall (bug#11241). + 2012-04-13 Kim F. Storm * emulation/cua-base.el (cua-exchange-point-and-mark): Just call diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 88698a1f06..0d6716a2e6 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -260,7 +260,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. ;; repeat-command still does the toggling correctly. (interactive (list (or current-prefix-arg 'toggle))) (let ((,last-message (current-message))) - (,@(if setter (list setter) + (,@(if setter `(funcall #',setter) (list (if (symbolp mode) 'setq 'setf) mode)) (if (eq arg 'toggle) (not ,mode)