diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 07:30:58 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-26 07:30:58 +0000 |
commit | 34d16326e4aa4cc8dbadd8e550e713308eeaaf28 (patch) | |
tree | a00b7df6a555ccac1f3243f22981cca1053b00ce /lisp/iswitchb.el | |
parent | 5c131048fe2d428a82ea0ea1ca1f2d466f1a17cd (diff) | |
download | emacs-34d16326e4aa4cc8dbadd8e550e713308eeaaf28.tar.gz |
(iswitchb-exhibit): Use insert instead of insert-string.
Diffstat (limited to 'lisp/iswitchb.el')
-rw-r--r-- | lisp/iswitchb.el | 10 |
1 files changed, 5 insertions, 5 deletions
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. |