diff options
author | Andreas Schwab <schwab@suse.de> | 2005-06-11 07:14:38 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2005-06-11 07:14:38 +0000 |
commit | 480c8cd32a866173eb847a7af9372ea9dd9d35e7 (patch) | |
tree | aecd993b14fc7cb75e9cdb6085d577154e1dde00 /lisp/hexl.el | |
parent | 75fb9fde10ab29c162eb84ce5f3662a6aa2bc0d4 (diff) | |
download | emacs-480c8cd32a866173eb847a7af9372ea9dd9d35e7.tar.gz |
Add binding of `ESC functionkey' for every `M-functionkey'.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r-- | lisp/hexl.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el index b67ab7876b4..e24f6b7f72b 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) |