aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorAndreas Schwab <[email protected]>2005-06-11 07:14:38 +0000
committerAndreas Schwab <[email protected]>2005-06-11 07:14:38 +0000
commit480c8cd32a866173eb847a7af9372ea9dd9d35e7 (patch)
treeaecd993b14fc7cb75e9cdb6085d577154e1dde00 /lisp/hexl.el
parent75fb9fde10ab29c162eb84ce5f3662a6aa2bc0d4 (diff)
Add binding of `ESC functionkey' for every `M-functionkey'.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el
index b67ab7876b..e24f6b7f72 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -988,7 +988,9 @@ This function is assumed to be used as call back function for `hl-line-mode'."
(define-key hexl-mode-map [up] 'hexl-previous-line)
(define-key hexl-mode-map [down] 'hexl-next-line)
(define-key hexl-mode-map [M-left] 'hexl-backward-short)
+ (define-key hexl-mode-map [?\e left] 'hexl-backward-short)
(define-key hexl-mode-map [M-right] 'hexl-forward-short)
+ (define-key hexl-mode-map [?\e right] 'hexl-forward-short)
(define-key hexl-mode-map [next] 'hexl-scroll-up)
(define-key hexl-mode-map [prior] 'hexl-scroll-down)
(define-key hexl-mode-map [home] 'hexl-beginning-of-line)