aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2001-11-26 07:30:58 +0000
committerPavel Janík2001-11-26 07:30:58 +0000
commit34d16326e4aa4cc8dbadd8e550e713308eeaaf28 (patch)
treea00b7df6a555ccac1f3243f22981cca1053b00ce
parent5c131048fe2d428a82ea0ea1ca1f2d466f1a17cd (diff)
downloademacs-34d16326e4aa4cc8dbadd8e550e713308eeaaf28.tar.gz
emacs-34d16326e4aa4cc8dbadd8e550e713308eeaaf28.zip
(iswitchb-exhibit): Use insert instead of insert-string.
-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.