translation-table-for-input.
+2005-12-10 Kenichi Handa <handa@m17n.org>
+
+ * simple.el (zap-to-char): Translate CHAR by
+ translation-table-for-input.
+
+ * isearch.el (isearch-process-search-char): Translate CHAR by
+ translation-table-for-input.
+
2005-12-09 Chong Yidong <cyd@stupidchicken.com>
* foldout.el (foldout-exit-fold): Properly hide subtree.
((eq char ?|) (isearch-fallback t nil t)))
;; Append the char to the search string, update the message and re-search.
+ (if (char-table-p translation-table-for-input)
+ (setq char (or (aref translation-table-for-input char) char)))
(isearch-process-search-string
(char-to-string char)
(if (>= char ?\200)