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/iswitchb.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/iswitchb.el')
-rw-r--r-- | lisp/iswitchb.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el index fd6cff0faa0..171048e22dc 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el @@ -658,7 +658,7 @@ the selection process begins. Used by isearchb.el." (not (iswitchb-existing-buffer-p))) (let ((virt (car iswitchb-virtual-buffers)) (new-buf)) - ;; Keep the name of the buffer returned by find-file-noselect, as + ;; Keep the name of the buffer returned by find-file-noselect, as ;; the buffer 'virt' could be a symlink to a file of a different name. (setq new-buf (buffer-name (find-file-noselect (cdr virt)))) (setq iswitchb-matches (list new-buf) @@ -1015,7 +1015,7 @@ Return the modified list with the last element prepended to it." (display-completion-list (or iswitchb-matches iswitchb-buflist) :help-string "iswitchb " :activate-callback - (lambda (x y z) + (lambda (_x _y _z) (message "doesn't work yet, sorry!"))) ;; else running Emacs (display-completion-list (or iswitchb-matches iswitchb-buflist)))) |