diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-05-10 22:13:41 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-05-10 22:13:41 +0000 |
commit | 334bff783de4f9cd48104ba8ee7c13215adf8f02 (patch) | |
tree | 2cef8a89ceabc31d42dbe0e44d0008993a59e6f8 /lisp/iswitchb.el | |
parent | 0e104800ef8727fd679210414b37e2387f663011 (diff) | |
download | emacs-334bff783de4f9cd48104ba8ee7c13215adf8f02.tar.gz |
(iswitchb-completion-help): Unquote lambda.
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 0f57b789038..6cd519bcc9f 100644 --- a/lisp/iswitchb.el +++ b/lisp/iswitchb.el @@ -888,8 +888,8 @@ Return the modified list with the last element prepended to it." iswitchb-buflist) :help-string "iswitchb " :activate-callback - '(lambda (x y z) - (message "doesn't work yet, sorry!"))) + (lambda (x y z) + (message "doesn't work yet, sorry!"))) ;; else running Emacs (display-completion-list (if iswitchb-matches iswitchb-matches |