Comment fix.
[bpt/emacs.git] / lisp / international / isearch-x.el
CommitLineData
4ed46869
KH
1;;; isearch-x.el --- extended isearch handling commands
2
4ed46869 3;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
fa526c4a 4;; Licensed to the Free Software Foundation.
4ed46869
KH
5
6;; Keywords: multilingual, isearch
7
8;; Author: Kenichi HANDA <handa@etl.go.jp>
9;; Maintainer: Kenichi HANDA <handa@etl.go.jp>
10
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software; you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
15;; the Free Software Foundation; either version 2, or (at your option)
16;; any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
369314dc
KH
24;; along with GNU Emacs; see the file COPYING. If not, write to the
25;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26;; Boston, MA 02111-1307, USA.
4ed46869
KH
27
28;;; Code:
29
30;;;###autoload
31(defun isearch-toggle-specified-input-method ()
e81ed9ed 32 "Select an input method and turn it on in interactive search."
4ed46869 33 (interactive)
000028d7
KH
34 (let ((overriding-terminal-local-map nil))
35 (toggle-input-method t))
a2abd6b4
KH
36 (setq isearch-input-method-function input-method-function
37 isearch-input-method-local-p t)
38 (setq input-method-function nil)
000028d7 39 (isearch-update))
4ed46869
KH
40
41;;;###autoload
42(defun isearch-toggle-input-method ()
43 "Toggle input method in interactive search."
44 (interactive)
000028d7
KH
45 (let ((overriding-terminal-local-map nil))
46 (toggle-input-method))
a2abd6b4
KH
47 (setq isearch-input-method-function input-method-function
48 isearch-input-method-local-p t)
49 (setq input-method-function nil)
4ed46869
KH
50 (isearch-update))
51
a2abd6b4 52(defvar isearch-minibuffer-local-map
a50192e7
KH
53 (let ((map (copy-keymap minibuffer-local-map)))
54 (define-key map [with-keyboard-coding] 'isearch-with-keyboard-coding)
55 (define-key map [with-input-method] 'isearch-with-input-method)
a2abd6b4 56 map)
a50192e7 57 "Keymap to use in minibuffer for multibyte character inputting in isearch.")
a2abd6b4 58
a50192e7
KH
59;; Exit from recursive edit safely. Set in `after-change-functions'
60;; by isearch-with-keyboard-coding.
61(defun isearch-exit-recursive-edit ()
a2abd6b4 62 (interactive)
a50192e7
KH
63 (throw 'exit nil))
64
65;; Simulate character decoding by the keyboard coding system in the
66;; current buffer (minibuffer). As soon as a character is inserted,
67;; it exits from minibuffer.
68
69(defun isearch-with-keyboard-coding ()
70 (interactive)
71 (let ((after-change-functions '(isearch-exit-recursive-edit)))
72 (recursive-edit))
a2abd6b4
KH
73 (exit-minibuffer))
74
a50192e7
KH
75;; Simulate the work of the current input method in the current buffer
76;; (minibuffer).
77
78(defun isearch-with-input-method ()
a2abd6b4 79 (interactive)
8aa87e06
KH
80 (let ((key (car unread-command-events))
81 events)
82 (setq unread-command-events (cdr unread-command-events)
83 events (funcall input-method-function key))
a50192e7
KH
84 ;; EVENTS is a list of events the input method has generated. It
85 ;; contains a character event and/or the special event
86 ;; `compose-last-chars'. We extract only character events and
87 ;; insert the corresponding characters.
88 (while events
89 (if (integerp (car events)) (insert (car events)))
90 (setq events (cdr events)))
bbb398a1 91 (exit-minibuffer)))
a2abd6b4 92
000028d7 93;;;###autoload
4ed46869 94(defun isearch-process-search-multibyte-characters (last-char)
07474fef
KH
95 (if (eq this-command 'isearch-printing-char)
96 (let ((overriding-terminal-local-map nil)
a50192e7 97 (prompt (concat (isearch-message-prefix) isearch-message))
07474fef
KH
98 (minibuffer-local-map isearch-minibuffer-local-map)
99 str)
a50192e7
KH
100 (if isearch-input-method-function
101 (let (;; Let input method work rather tersely.
5cf1bf86 102 (input-method-verbose-flag nil))
a50192e7
KH
103 (setq unread-command-events
104 (cons 'with-input-method
105 (cons last-char unread-command-events))
5cf1bf86
KH
106 ;; Inherit current-input-method in a minibuffer.
107 str (read-string prompt nil nil nil t))
a50192e7
KH
108 (if (not str)
109 ;; All inputs were deleted while the input method
110 ;; was working.
111 (setq str "")
112 (if (and (= (length str) 1)
5cf1bf86
KH
113 (= (aref str 0) last-char)
114 (>= last-char 128))
a50192e7
KH
115 ;; The input method couldn't handle LAST-CHAR.
116 (setq str nil)))))
117
118 (if (and (not str) (keyboard-coding-system))
119 (setq unread-command-events
120 (cons 'with-keyboard-coding
121 (cons last-char unread-command-events))
122 str (read-string prompt)))
123
07474fef 124 (if (and str (> (length str) 0))
39d484ed
KH
125 (let ((unread-command-events nil))
126 (isearch-process-search-string str str))
127 (isearch-update)))
07474fef 128 (isearch-process-search-char last-char)))
4ed46869
KH
129
130;;; isearch-x.el ends here