diff options
| author | Richard M. Stallman | 1993-12-25 00:50:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-25 00:50:10 +0000 |
| commit | f7ead361209a433b031f1805c5829ae01114b2b7 (patch) | |
| tree | f9a42308b22c1a4d18c581a03f6e60ecb3d91190 /lisp | |
| parent | aba567f8eb70459d21fcf2ed9f2b2543116d5b8a (diff) | |
| download | emacs-f7ead361209a433b031f1805c5829ae01114b2b7.tar.gz emacs-f7ead361209a433b031f1805c5829ae01114b2b7.zip | |
(isearch-mode-map): Bind kp-... keys.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/isearch.el | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 7be09bd5f28..ba24618d1a6 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> | 5 | ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> |
| 6 | 6 | ||
| 7 | ;; |$Date: 1993/12/23 03:28:10 $|$Revision: 1.56 $ | 7 | ;; |$Date: 1993/12/24 03:30:11 $|$Revision: 1.57 $ |
| 8 | 8 | ||
| 9 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| 10 | 10 | ||
| @@ -242,6 +242,26 @@ Default value, nil, means edit the string instead.") | |||
| 242 | ;; since otherwise the default binding would override. | 242 | ;; since otherwise the default binding would override. |
| 243 | ;; We bind [escape] below. | 243 | ;; We bind [escape] below. |
| 244 | (define-key map [tab] 'isearch-printing-char) | 244 | (define-key map [tab] 'isearch-printing-char) |
| 245 | (define-key map [kp-0] 'isearch-printing-char) | ||
| 246 | (define-key map [kp-1] 'isearch-printing-char) | ||
| 247 | (define-key map [kp-2] 'isearch-printing-char) | ||
| 248 | (define-key map [kp-3] 'isearch-printing-char) | ||
| 249 | (define-key map [kp-4] 'isearch-printing-char) | ||
| 250 | (define-key map [kp-5] 'isearch-printing-char) | ||
| 251 | (define-key map [kp-6] 'isearch-printing-char) | ||
| 252 | (define-key map [kp-7] 'isearch-printing-char) | ||
| 253 | (define-key map [kp-8] 'isearch-printing-char) | ||
| 254 | (define-key map [kp-9] 'isearch-printing-char) | ||
| 255 | (define-key map [kp-add] 'isearch-printing-char) | ||
| 256 | (define-key map [kp-subtract] 'isearch-printing-char) | ||
| 257 | (define-key map [kp-multiply] 'isearch-printing-char) | ||
| 258 | (define-key map [kp-divide] 'isearch-printing-char) | ||
| 259 | (define-key map [kp-decimal] 'isearch-printing-char) | ||
| 260 | (define-key map [kp-separator] 'isearch-printing-char) | ||
| 261 | (define-key map [kp-equal] 'isearch-printing-char) | ||
| 262 | (define-key map [kp-tab] 'isearch-printing-char) | ||
| 263 | (define-key map [kp-space] 'isearch-printing-char) | ||
| 264 | (define-key map [kp-enter] 'isearch-exit) | ||
| 245 | (define-key map [delete] 'isearch-delete-char) | 265 | (define-key map [delete] 'isearch-delete-char) |
| 246 | (define-key map [backspace] 'isearch-delete-char) | 266 | (define-key map [backspace] 'isearch-delete-char) |
| 247 | (define-key map [return] 'isearch-exit) | 267 | (define-key map [return] 'isearch-exit) |