* isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
authorJuri Linkov <juri@jurta.org>
Thu, 20 May 2010 22:01:57 +0000 (01:01 +0300)
committerJuri Linkov <juri@jurta.org>
Thu, 20 May 2010 22:01:57 +0000 (01:01 +0300)
[f1], [help], and (char-to-string help-char) instead of "\C-h".
(Bug#6222)

lisp/ChangeLog
lisp/isearch.el

index 8ba93b3..b0dbec2 100644 (file)
@@ -1,3 +1,9 @@
+2010-05-20  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-mode-map): Bind more keys to isearch-help-map:
+       [f1], [help], and (char-to-string help-char) instead of "\C-h".
+       (Bug#6222)
+
 2010-05-20  Juri Linkov  <juri@jurta.org>
 
        * isearch.el (isearch-yank-string): Use isearch-process-search-string.
index 22b20a4..b3d1215 100644 (file)
@@ -460,7 +460,9 @@ This is like `describe-bindings', but displays only Isearch keys."
     (define-key map "\M-\C-y" 'isearch-yank-char)
     (define-key map    "\C-y" 'isearch-yank-line)
 
-    (define-key map "\C-h" isearch-help-map)
+    (define-key map (char-to-string help-char) isearch-help-map)
+    (define-key map [help] isearch-help-map)
+    (define-key map [f1] isearch-help-map)
 
     (define-key map "\M-n" 'isearch-ring-advance)
     (define-key map "\M-p" 'isearch-ring-retreat)