From 34d16326e4aa4cc8dbadd8e550e713308eeaaf28 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Mon, 26 Nov 2001 07:30:58 +0000 Subject: [PATCH] (iswitchb-exhibit): Use insert instead of insert-string. --- lisp/ChangeLog | 5 +++++ lisp/iswitchb.el | 10 +++++----- 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 @@ +2001-11-26 Pavel Jan,Bm(Bk + + * iswitchb.el (iswitchb-exhibit): Use insert instead of + insert-string. + 2001-11-25 Stefan Monnier * 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: (iswitchb-set-common-completion) ;; Insert the match-status information: - (insert-string (iswitchb-completions - contents - minibuffer-completion-table - minibuffer-completion-predicate - (not minibuffer-completion-confirm))))))) + (insert (iswitchb-completions + contents + minibuffer-completion-table + minibuffer-completion-predicate + (not minibuffer-completion-confirm))))))) (defun iswitchb-completions (name candidates predicate require-match) "Return the string that is displayed after the user's text. -- 2.39.2