aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/iswitchb.el10
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f2370b78626..d0e8b953aa0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-11-26 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * iswitchb.el (iswitchb-exhibit): Use insert instead of
4 insert-string.
5
12001-11-25 Stefan Monnier <monnier@cs.yale.edu> 62001-11-25 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities. 8 * diff-mode.el (diff-end-of-hunk): Watch out for ambiguities.
diff --git a/lisp/iswitchb.el b/lisp/iswitchb.el
index e3bb8ad76b3..5ec032adb98 100644
--- a/lisp/iswitchb.el
+++ b/lisp/iswitchb.el
@@ -1143,11 +1143,11 @@ Copied from `icomplete-exhibit' with two changes:
1143 (iswitchb-set-common-completion) 1143 (iswitchb-set-common-completion)
1144 1144
1145 ;; Insert the match-status information: 1145 ;; Insert the match-status information:
1146 (insert-string (iswitchb-completions 1146 (insert (iswitchb-completions
1147 contents 1147 contents
1148 minibuffer-completion-table 1148 minibuffer-completion-table
1149 minibuffer-completion-predicate 1149 minibuffer-completion-predicate
1150 (not minibuffer-completion-confirm))))))) 1150 (not minibuffer-completion-confirm)))))))
1151 1151
1152(defun iswitchb-completions (name candidates predicate require-match) 1152(defun iswitchb-completions (name candidates predicate require-match)
1153 "Return the string that is displayed after the user's text. 1153 "Return the string that is displayed after the user's text.