diff options
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/isearchb.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8e33fcfc3a6..0bc9e4999fd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-06-06 Juanma Barranquero <lekktu@gmail.com> + + * isearchb.el (isearchb): Don't pass a spurious second argument to + `iswitchb-completions'. + 2005-06-05 Nick Roberts <nickrob@snap.net.nz> * progmodes/gdb-ui.el (gdb-info-locals-handler): Use window point 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)))))) |