mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Avoid the use of ((lambda ...) ...) in lexical-binding code.
* emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall. Fixes: debbugs:11241
This commit is contained in:
parent
0be641c057
commit
9c2d6a4ab2
2 changed files with 6 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue