diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/electric.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/electric.el')
-rw-r--r-- | lisp/electric.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/electric.el b/lisp/electric.el index 7682c566332..17c33c7d5cd 100644 --- a/lisp/electric.el +++ b/lisp/electric.el @@ -63,11 +63,12 @@ ;; conditions for any error that occurred or nil if none. (defun Electric-command-loop (return-tag - &optional prompt inhibit-quit + &optional prompt inhibit-quitting loop-function loop-state) (let (cmd (err nil) + (inhibit-quit inhibit-quitting) (prompt-string prompt)) (while t (if (functionp prompt) |