diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-06 06:16:05 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-06 06:16:05 +0000 |
commit | f7f1797562b18932d1abf7cf00676ce272fadceb (patch) | |
tree | b62b8f15570b42c609ca69720706764e796e0ab6 /lisp/isearchb.el | |
parent | a9b4333620eb259e974445066a8e64cee0c21d69 (diff) | |
download | emacs-f7f1797562b18932d1abf7cf00676ce272fadceb.tar.gz |
(isearchb): Don't pass a spurious second argument to `iswitchb-completions'.
Diffstat (limited to 'lisp/isearchb.el')
-rw-r--r-- | lisp/isearchb.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/isearchb.el b/lisp/isearchb.el index 9714701944f..5c70bd8fc00 100644 --- a/lisp/isearchb.el +++ b/lisp/isearchb.el @@ -151,7 +151,7 @@ It's purpose is to pass different call arguments to (switch-to-buffer buf) (if isearchb-show-completions (message "isearchb: %s%s" iswitchb-text - (iswitchb-completions iswitchb-text nil)) + (iswitchb-completions iswitchb-text)) (if (= 1 (length iswitchb-matches)) (message "isearchb: %s (only match)" iswitchb-text) (message "isearchb: %s" iswitchb-text)))))) |