From: Kenichi Handa Date: Thu, 10 Jul 1997 06:44:55 +0000 (+0000) Subject: (isearch-message-prefix): Adjusted X-Git-Tag: emacs-20.1~1236 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8c5d9782ecd21dc57e803b20e3435adf7e7910dd;p=emacs.git (isearch-message-prefix): Adjusted for the previous change of variables related to input methods. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index 05c659f574f..1fc4ce97d63 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -522,6 +522,7 @@ is treated as a regexp. See \\[isearch-forward] for more info." isearch-small-window nil isearch-just-started t isearch-multibyte-characters-flag nil + isearch-input-method nil isearch-opoint (point) search-ring-yank-pointer nil @@ -1172,7 +1173,7 @@ Obsolete." (defun isearch-printing-char () "Add this ordinary printing character to the search string and search." (interactive) - (if isearch-multibyte-characters-flag + (if isearch-input-method (isearch-process-search-multibyte-characters (isearch-last-command-char)) (isearch-process-search-char (isearch-last-command-char)))) @@ -1408,8 +1409,8 @@ If there is no completion possible, say so and continue searching." (if isearch-regexp "regexp " "") (if nonincremental "search" "I-search") (if isearch-forward "" " backward") - (if isearch-multibyte-characters-flag - (concat " [" default-input-method-title "]: ") + (if isearch-input-method + (concat " [" isearch-input-method-title "]: ") ": ") ))) (aset m 0 (upcase (aref m 0)))