]> git.eshelyaron.com Git - emacs.git/commitdiff
(edmacro-parse-keys): Remove redundant test for ?.
authorErik Naggum <erik@naggum.no>
Wed, 5 Feb 1997 01:33:07 +0000 (01:33 +0000)
committerErik Naggum <erik@naggum.no>
Wed, 5 Feb 1997 01:33:07 +0000 (01:33 +0000)
lisp/edmacro.el

index b61cc559fd220cde90bf445d33d55f32675b7e97..150160c802d4ba712f28a889bb58cef3da4a17ad 100644 (file)
@@ -698,8 +698,7 @@ If START or END is negative, it counts from the end."
                             ;; and C-? is not used (we use DEL instead).
                             (string-match "[@-_a-z]" word))
                        (setq key (list (+ bits (- ?\C-\^@)
-                                          (if (equal word "?") 127
-                                            (logand (aref word 0) 31))))))
+                                          (logand (aref word 0) 31)))))
                       (t
                        (setq key (list (+ bits (aref word 0)))))))))
        (when key