ecomplete.el: Intercept key sequence from terminal as well.
[gnus] / lisp / ecomplete.el
index 6a47b11..737c0db 100644 (file)
            (message "%s" matches)
            nil)
        (setq highlight (ecomplete-highlight-match-line matches line))
-       (while (not (memq (setq command (read-event highlight)) '(? return)))
+       (while (not (member (setq command (read-key-sequence-vector highlight))
+                           '([? ] [return] [?\r] [?\n] [?\C-g])))
          (cond
-          ((eq command ?\M-n)
+          ((member command '([27 ?n] [?\M-n]))
            (setq line (min (1+ line) max-lines)))
-          ((eq command ?\M-p)
+          ((member command '([27 ?p] [?\M-p]))
            (setq line (max (1- line) 0))))
          (setq highlight (ecomplete-highlight-match-line matches line)))
-       (when (eq command 'return)
+       (when (member command '([return] [?\r] [?\n]))
          (nth line (split-string matches "\n")))))))
 
 (defun ecomplete-highlight-match-line (matches line)