aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2004-06-06 13:58:09 +0000
committerRichard M. Stallman2004-06-06 13:58:09 +0000
commit33bc06fb3745d2c2a1360293026be10fff3afafe (patch)
tree3579c0055893c8e728163f5c837ef084df153650 /lisp
parent0722292b2057d8de5c4b845ef48508a6eceac5b8 (diff)
downloademacs-33bc06fb3745d2c2a1360293026be10fff3afafe.tar.gz
emacs-33bc06fb3745d2c2a1360293026be10fff3afafe.zip
(isearch-mode-map): Undo previous change.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/isearch.el4
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index edff6ce362e..b6d564d2a1d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-06-06 Richard M. Stallman <rms@gnu.org>
2
3 * isearch.el (isearch-mode-map): Undo previous change.
4
12004-06-05 Juri Linkov <juri@jurta.org> 52004-06-05 Juri Linkov <juri@jurta.org>
2 6
3 * bindings.el (debug-ignored-errors): Add regexps for history 7 * bindings.el (debug-ignored-errors): Add regexps for history
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 76e72bfb632..8357527dc8c 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -294,9 +294,7 @@ Default value, nil, means edit the string instead."
294 (define-key map " " 'isearch-whitespace-chars) 294 (define-key map " " 'isearch-whitespace-chars)
295 (define-key map [?\S-\ ] 'isearch-whitespace-chars) 295 (define-key map [?\S-\ ] 'isearch-whitespace-chars)
296 296
297 (define-key map "\C-b" 'isearch-del-char) 297 (define-key map "\C-w" 'isearch-yank-word-or-char)
298 (define-key map "\C-f" 'isearch-yank-char)
299 (define-key map "\C-w" 'isearch-yank-word)
300 (define-key map "\C-y" 'isearch-yank-line) 298 (define-key map "\C-y" 'isearch-yank-line)
301 299
302 ;; Define keys for regexp chars * ? |. 300 ;; Define keys for regexp chars * ? |.