diff options
| author | Erik Naggum | 1997-02-05 01:33:07 +0000 |
|---|---|---|
| committer | Erik Naggum | 1997-02-05 01:33:07 +0000 |
| commit | 094e8ee4ac55b3da65f56d300b0421c75dd2452a (patch) | |
| tree | 6d68422f12a6ce7c4df2b0dc3e253f9f8190d4c2 | |
| parent | 96c188b08ca4329bec2d6538a7c868cc943f1914 (diff) | |
| download | emacs-094e8ee4ac55b3da65f56d300b0421c75dd2452a.tar.gz emacs-094e8ee4ac55b3da65f56d300b0421c75dd2452a.zip | |
(edmacro-parse-keys): Remove redundant test for ?.
| -rw-r--r-- | lisp/edmacro.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index b61cc559fd2..150160c802d 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el | |||
| @@ -698,8 +698,7 @@ If START or END is negative, it counts from the end." | |||
| 698 | ;; and C-? is not used (we use DEL instead). | 698 | ;; and C-? is not used (we use DEL instead). |
| 699 | (string-match "[@-_a-z]" word)) | 699 | (string-match "[@-_a-z]" word)) |
| 700 | (setq key (list (+ bits (- ?\C-\^@) | 700 | (setq key (list (+ bits (- ?\C-\^@) |
| 701 | (if (equal word "?") 127 | 701 | (logand (aref word 0) 31))))) |
| 702 | (logand (aref word 0) 31)))))) | ||
| 703 | (t | 702 | (t |
| 704 | (setq key (list (+ bits (aref word 0))))))))) | 703 | (setq key (list (+ bits (aref word 0))))))))) |
| 705 | (when key | 704 | (when key |