diff options
| author | Stefan Monnier | 2000-05-10 22:13:41 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-05-10 22:13:41 +0000 |
| commit | 334bff783de4f9cd48104ba8ee7c13215adf8f02 (patch) | |
| tree | 2cef8a89ceabc31d42dbe0e44d0008993a59e6f8 | |
| parent | 0e104800ef8727fd679210414b37e2387f663011 (diff) | |
| download | emacs-334bff783de4f9cd48104ba8ee7c13215adf8f02.tar.gz emacs-334bff783de4f9cd48104ba8ee7c13215adf8f02.zip | |
(iswitchb-completion-help): Unquote lambda.
| -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." | |||
| 888 | iswitchb-buflist) | 888 | iswitchb-buflist) |
| 889 | :help-string "iswitchb " | 889 | :help-string "iswitchb " |
| 890 | :activate-callback | 890 | :activate-callback |
| 891 | '(lambda (x y z) | 891 | (lambda (x y z) |
| 892 | (message "doesn't work yet, sorry!"))) | 892 | (message "doesn't work yet, sorry!"))) |
| 893 | ;; else running Emacs | 893 | ;; else running Emacs |
| 894 | (display-completion-list (if iswitchb-matches | 894 | (display-completion-list (if iswitchb-matches |
| 895 | iswitchb-matches | 895 | iswitchb-matches |