X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/f4e3d4eb483dc4502e2c60ace21266f43cbb6484..2c3d59853173258cd84dab5b12c239705dd8fc02:/lisp/hexl.el diff --git a/lisp/hexl.el b/lisp/hexl.el index 7238903eda..67b5ee9ae8 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -1,9 +1,10 @@ ;;; hexl.el --- edit a file in a hex dump format using the hexl filter. -;; Copyright (C) 1989 Free Software Foundation, Inc. +;; Copyright (C) 1989, 1994, 1998 Free Software Foundation, Inc. ;; Author: Keith Gabryelski -;; Keywords: non-text +;; Maintainer: FSF +;; Keywords: data ;; This file is part of GNU Emacs. @@ -18,8 +19,9 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to -;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;; along with GNU Emacs; see the file COPYING. If not, write to the +;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, +;; Boston, MA 02111-1307, USA. ;;; Commentary: @@ -51,33 +53,67 @@ ;; vars here ;; -(defvar hexl-program "hexl" - "The program that will hexlify and de-hexlify its stdin. +(defgroup hexl nil + "Edit a file in a hex dump format using the hexl filter." + :group 'data) + + +(defcustom hexl-program "hexl" + "The program that will hexlify and dehexlify its stdin. `hexl-program' will always be concatenated with `hexl-options' -and \"-de\" when dehexlfying a buffer.") +and \"-de\" when dehexlifying a buffer." + :type 'string + :group 'hexl) -(defvar hexl-iso "" +(defcustom hexl-iso "" "If your emacs can handle ISO characters, this should be set to -\"-iso\" otherwise it should be \"\".") +\"-iso\" otherwise it should be \"\"." + :type 'string + :group 'hexl) -(defvar hexl-options (format "-hex %s" hexl-iso) - "Options to hexl-program that suit your needs.") +(defcustom hexl-options (format "-hex %s" hexl-iso) + "Options to hexl-program that suit your needs." + :type 'string + :group 'hexl) -(defvar hexlify-command +(defcustom hexlify-command (format "%s%s %s" exec-directory hexl-program hexl-options) - "The command to use to hexlify a buffer.") + "The command to use to hexlify a buffer." + :type 'string + :group 'hexl) -(defvar dehexlify-command +(defcustom dehexlify-command (format "%s%s -de %s" exec-directory hexl-program hexl-options) - "The command to use to unhexlify a buffer.") + "The command to use to unhexlify a buffer." + :type 'string + :group 'hexl) + +(defcustom hexl-follow-ascii t + "If non-nil then highlight the ASCII character corresponding to point." + :type 'boolean + :group 'hexl + :version "20.3") (defvar hexl-max-address 0 "Maximum offset into hexl buffer.") (defvar hexl-mode-map nil) +(defvar hexl-mode-old-local-map) +(defvar hexl-mode-old-mode-name) +(defvar hexl-mode-old-major-mode) +(defvar hexl-mode-old-write-contents-hooks) +(defvar hexl-mode-old-require-final-newline) +(defvar hexl-mode-old-syntax-table) + +(defvar hexl-ascii-overlay nil + "Overlay used to highlight ASCII element corresponding to current point.") +(make-variable-buffer-local 'hexl-ascii-overlay) + ;; routines +(put 'hexl-mode 'mode-class 'special) + ;;;###autoload (defun hexl-mode (&optional arg) "\\ @@ -152,8 +188,26 @@ You can use \\[hexl-find-file] to visit a file in hexl-mode. \\[describe-bindings] for advanced commands." (interactive "p") (if (eq major-mode 'hexl-mode) - (error "You are already in hexl mode.") - (kill-all-local-variables) + (error "You are already in hexl mode") + + (let ((modified (buffer-modified-p)) + (inhibit-read-only t) + (original-point (1- (point))) + max-address) + (and (eobp) (not (bobp)) + (setq original-point (1- original-point))) + (if (not (or (eq arg 1) (not arg))) + ;; if no argument then we guess at hexl-max-address + (setq max-address (+ (* (/ (1- (buffer-size)) 68) 16) 15)) + (setq max-address (1- (buffer-size))) + (hexlify-buffer) + (set-buffer-modified-p modified)) + (make-local-variable 'hexl-max-address) + (setq hexl-max-address max-address) + (hexl-goto-address original-point)) + + ;; We do not turn off the old major mode; instead we just + ;; override most of it. That way, we can restore it perfectly. (make-local-variable 'hexl-mode-old-local-map) (setq hexl-mode-old-local-map (current-local-map)) (use-local-map hexl-mode-map) @@ -166,21 +220,33 @@ You can use \\[hexl-find-file] to visit a file in hexl-mode. (setq hexl-mode-old-major-mode major-mode) (setq major-mode 'hexl-mode) + (make-local-variable 'hexl-mode-old-syntax-table) + (setq hexl-mode-old-syntax-table (syntax-table)) + (set-syntax-table (standard-syntax-table)) + + (make-local-variable 'hexl-mode-old-write-contents-hooks) + (setq hexl-mode-old-write-contents-hooks write-contents-hooks) (make-local-variable 'write-contents-hooks) (add-hook 'write-contents-hooks 'hexl-save-buffer) - (let ((modified (buffer-modified-p)) - (read-only buffer-read-only) - (original-point (1- (point)))) - (if (not (or (eq arg 1) (not arg))) -;; if no argument then we guess at hexl-max-address - (setq hexl-max-address (+ (* (/ (1- (buffer-size)) 68) 16) 15)) - (setq buffer-read-only nil) - (setq hexl-max-address (1- (buffer-size))) - (hexlify-buffer) - (set-buffer-modified-p modified) - (setq buffer-read-only read-only) - (hexl-goto-address original-point))))) + (make-local-variable 'hexl-mode-old-require-final-newline) + (setq hexl-mode-old-require-final-newline require-final-newline) + (make-local-variable 'require-final-newline) + (setq require-final-newline nil) + + ;; Add hooks to rehexlify or dehexlify on various events. + (make-local-hook 'after-revert-hook) + (add-hook 'after-revert-hook 'hexl-after-revert-hook nil t) + + (make-local-hook 'change-major-mode-hook) + (add-hook 'change-major-mode-hook 'hexl-maybe-dehexlify-buffer nil t) + + (if hexl-follow-ascii (hexl-follow-ascii 1))) + (run-hooks 'hexl-mode-hook)) + +(defun hexl-after-revert-hook () + (hexlify-buffer) + (set-buffer-modified-p nil)) (defvar hexl-in-save-buffer nil) @@ -218,7 +284,7 @@ You can use \\[hexl-find-file] to visit a file in hexl-mode. "Edit file FILENAME in hexl-mode. Switch to a buffer visiting file FILENAME, creating one in none exists." (interactive "fFilename: ") - (find-file filename) + (find-file-literally filename) (if (not (eq major-mode 'hexl-mode)) (hexl-mode))) @@ -228,28 +294,52 @@ With arg, don't unhexlify buffer." (interactive "p") (if (or (eq arg 1) (not arg)) (let ((modified (buffer-modified-p)) - (read-only buffer-read-only) + (inhibit-read-only t) (original-point (1+ (hexl-current-address)))) - (setq buffer-read-only nil) (dehexlify-buffer) - (remove-hook 'write-contents-hook 'hexl-save-buffer) + (remove-hook 'write-contents-hooks 'hexl-save-buffer) (set-buffer-modified-p modified) - (setq buffer-read-only read-only) (goto-char original-point))) + + (remove-hook 'after-revert-hook 'hexl-after-revert-hook t) + (remove-hook 'change-major-mode-hook 'hexl-maybe-dehexlify-buffer t) + (remove-hook 'post-command-hook 'hexl-follow-ascii-find t) + (setq hexl-ascii-overlay nil) + + (setq write-contents-hooks hexl-mode-old-write-contents-hooks) + (setq require-final-newline hexl-mode-old-require-final-newline) (setq mode-name hexl-mode-old-mode-name) (use-local-map hexl-mode-old-local-map) + (set-syntax-table hexl-mode-old-syntax-table) (setq major-mode hexl-mode-old-major-mode) -;; Kludge to update mode-line - (switch-to-buffer (current-buffer)) -) + (force-mode-line-update)) -(defun hexl-current-address () +(defun hexl-maybe-dehexlify-buffer () + "Convert a hexl format buffer to binary. +Ask the user for confirmation." + (if (y-or-n-p "Convert contents back to binary format? ") + (let ((modified (buffer-modified-p)) + (inhibit-read-only t) + (original-point (1+ (hexl-current-address)))) + (dehexlify-buffer) + (remove-hook 'write-contents-hooks 'hexl-save-buffer) + (set-buffer-modified-p modified) + (goto-char original-point)))) + +(defun hexl-current-address (&optional validate) "Return current hexl-address." (interactive) (let ((current-column (- (% (point) 68) 11)) (hexl-address 0)) - (setq hexl-address (+ (* (/ (point) 68) 16) - (/ (- current-column (/ current-column 5)) 2))) + (if (< current-column 0) + (if validate + (error "Point is not on a character in the file") + (setq current-column 0))) + (setq hexl-address + (+ (* (/ (point) 68) 16) + (if (>= current-column 41) + (- current-column 41) + (/ (- current-column (/ current-column 5)) 2)))) hexl-address)) (defun hexl-address-to-marker (address) @@ -259,16 +349,14 @@ With arg, don't unhexlify buffer." (defun hexl-goto-address (address) "Goto hexl-mode (decimal) address ADDRESS. - Signal error if ADDRESS out of range." (interactive "nAddress: ") (if (or (< address 0) (> address hexl-max-address)) - (error "Out of hexl region.")) + (error "Out of hexl region")) (goto-char (hexl-address-to-marker address))) (defun hexl-goto-hex-address (hex-address) "Go to hexl-mode address (hex string) HEX-ADDRESS. - Signal error if HEX-ADDRESS is out of range." (interactive "sHex Address: ") (hexl-goto-address (hexl-hex-string-to-integer hex-address))) @@ -460,12 +548,12 @@ With prefix arg N, puts point N bytes of the way from the true beginning." (recenter 0)))) (defun hexl-beginning-of-1k-page () - "Goto to beginning of 1k boundry." + "Go to beginning of 1k boundary." (interactive) (hexl-goto-address (logand (hexl-current-address) -1024))) (defun hexl-end-of-1k-page () - "Goto to end of 1k boundry." + "Go to end of 1k boundary." (interactive) (hexl-goto-address (let ((address (logior (hexl-current-address) 1023))) (if (> address hexl-max-address) @@ -473,12 +561,12 @@ With prefix arg N, puts point N bytes of the way from the true beginning." address))) (defun hexl-beginning-of-512b-page () - "Goto to beginning of 512 byte boundry." + "Go to beginning of 512 byte boundary." (interactive) (hexl-goto-address (logand (hexl-current-address) -512))) (defun hexl-end-of-512b-page () - "Goto to end of 512 byte boundry." + "Go to end of 512 byte boundary." (interactive) (hexl-goto-address (let ((address (logior (hexl-current-address) 511))) (if (> address hexl-max-address) @@ -496,14 +584,49 @@ You may also type up to 3 octal digits, to insert a character with that code" ;;;###autoload (defun hexlify-buffer () - "Convert a binary buffer to hexl format" + "Convert a binary buffer to hexl format. +This discards the buffer's undo information." (interactive) - (shell-command-on-region (point-min) (point-max) hexlify-command t)) + (and buffer-undo-list + (or (y-or-n-p "Converting to hexl format discards undo info; ok? ") + (error "Aborted"))) + (setq buffer-undo-list nil) + ;; Don't decode text in the ASCII part of `hexl' program output. + (let ((coding-system-for-read 'raw-text) + ;; If the buffer was read with EOL conversions, be sure to use the + ;; same conversions when passing the region to the `hexl' program. + (coding-system-for-write + (let ((eol-type (coding-system-eol-type buffer-file-coding-system))) + (cond ((eq eol-type 1) + 'raw-text-dos) + ((eq eol-type 2) + 'raw-text-mac) + ((eq eol-type 0) + 'raw-text-unix) + (t 'no-conversion)))) + (buffer-undo-list t)) + (shell-command-on-region (point-min) (point-max) hexlify-command t))) (defun dehexlify-buffer () - "Convert a hexl format buffer to binary." + "Convert a hexl format buffer to binary. +This discards the buffer's undo information." (interactive) - (shell-command-on-region (point-min) (point-max) dehexlify-command t)) + (and buffer-undo-list + (or (y-or-n-p "Converting from hexl format discards undo info; ok? ") + (error "Aborted"))) + (setq buffer-undo-list nil) + (let ((coding-system-for-write 'raw-text) + (coding-system-for-read + (let ((eol-type (coding-system-eol-type buffer-file-coding-system))) + (cond ((eq eol-type 1) + 'raw-text-dos) + ((eq eol-type 2) + 'raw-text-mac) + ((eq eol-type 0) + 'raw-text-unix) + (t 'no-conversion)))) + (buffer-undo-list t)) + (shell-command-on-region (point-min) (point-max) dehexlify-command t))) (defun hexl-char-after-point () "Return char for ASCII hex digits at point." @@ -522,13 +645,13 @@ You may also type up to 3 octal digits, to insert a character with that code" (let ((ch (logior character 32))) (if (and (>= ch ?a) (<= ch ?f)) (- ch (- ?a 10)) - (error (format "Invalid hex digit `%c'." ch)))))) + (error "Invalid hex digit `%c'" ch))))) (defun hexl-oct-char-to-integer (character) "Take a char and return its value as if it was a octal digit." (if (and (>= character ?0) (<= character ?7)) (- character ?0) - (error (format "Invalid octal digit `%c'." character)))) + (error "Invalid octal digit `%c'" character))) (defun hexl-printable-character (ch) "Return a displayable string for character CH." @@ -547,17 +670,32 @@ You may also type up to 3 octal digits, to insert a character with that code" (defun hexl-insert-char (ch num) "Insert a character in a hexl buffer." - (let ((address (hexl-current-address))) + (let ((address (hexl-current-address t))) (while (> num 0) - (delete-char 2) - (insert (format "%02x" ch)) - (goto-char - (+ (* (/ address 16) 68) 52 (% address 16))) - (delete-char 1) - (insert (hexl-printable-character ch)) - (if (eq address hexl-max-address) - (hexl-goto-address address) - (hexl-goto-address (1+ address))) + (let ((hex-position + (+ (* (/ address 16) 68) + 11 + (* 2 (% address 16)) + (/ (% address 16) 2))) + (ascii-position + (+ (* (/ address 16) 68) 52 (% address 16))) + at-ascii-position) + (if (= (point) ascii-position) + (setq at-ascii-position t)) + (goto-char hex-position) + (delete-char 2) + (insert (format "%02x" ch)) + (goto-char ascii-position) + (delete-char 1) + (insert (hexl-printable-character ch)) + (or (eq address hexl-max-address) + (setq address (1+ address))) + (hexl-goto-address address) + (if at-ascii-position + (progn + (beginning-of-line) + (forward-char 51) + (forward-char (% address 16))))) (setq num (1- num))))) ;; hex conversion @@ -567,7 +705,7 @@ You may also type up to 3 octal digits, to insert a character with that code" (interactive "p") (let ((num (hexl-hex-string-to-integer (read-string "Hex number: ")))) (if (or (> num 255) (< num 0)) - (error "Hex number out of range.") + (error "Hex number out of range") (hexl-insert-char num arg)))) (defun hexl-insert-decimal-char (arg) @@ -575,7 +713,7 @@ You may also type up to 3 octal digits, to insert a character with that code" (interactive "p") (let ((num (string-to-int (read-string "Decimal Number: ")))) (if (or (> num 255) (< num 0)) - (error "Decimal number out of range.") + (error "Decimal number out of range") (hexl-insert-char num arg)))) (defun hexl-insert-octal-char (arg) @@ -583,101 +721,156 @@ You may also type up to 3 octal digits, to insert a character with that code" (interactive "p") (let ((num (hexl-octal-string-to-integer (read-string "Octal Number: ")))) (if (or (> num 255) (< num 0)) - (error "Decimal number out of range.") + (error "Decimal number out of range") (hexl-insert-char num arg)))) +(defun hexl-follow-ascii (&optional arg) + "Toggle following ASCII in Hexl buffers. +With prefix ARG, turn on following if and only if ARG is positive. +When following is enabled, the ASCII character corresponding to the +element under the point is highlighted. +Customize the variable `hexl-follow-ascii' to disable this feature." + (interactive "P") + (let ((on-p (if arg + (> (prefix-numeric-value arg) 0) + (not hexl-ascii-overlay)))) + + (make-local-hook 'post-command-hook) + + (if on-p + ;; turn it on + (if (not hexl-ascii-overlay) + (progn + (setq hexl-ascii-overlay (make-overlay 1 1) + hexl-follow-ascii t) + (overlay-put hexl-ascii-overlay 'face 'highlight) + (add-hook 'post-command-hook 'hexl-follow-ascii-find nil t))) + ;; turn it off + (if hexl-ascii-overlay + (progn + (delete-overlay hexl-ascii-overlay) + (setq hexl-ascii-overlay nil + hexl-follow-ascii nil) + (remove-hook 'post-command-hook 'hexl-follow-ascii-find t) + ))))) + +(defun hexl-follow-ascii-find () + "Find and highlight the ASCII element corresponding to current point." + (let ((pos (+ 51 + (- (point) (current-column)) + (mod (hexl-current-address) 16)))) + (move-overlay hexl-ascii-overlay pos (1+ pos)) + )) + ;; startup stuff. (if hexl-mode-map nil - (setq hexl-mode-map (make-sparse-keymap)) - - (define-key hexl-mode-map "\C-a" 'hexl-beginning-of-line) - (define-key hexl-mode-map "\C-b" 'hexl-backward-char) - (define-key hexl-mode-map "\C-d" 'undefined) - (define-key hexl-mode-map "\C-e" 'hexl-end-of-line) - (define-key hexl-mode-map "\C-f" 'hexl-forward-char) - - (if (not (eq (key-binding (char-to-string help-char)) 'help-command)) - (define-key hexl-mode-map help-char 'undefined)) - - (define-key hexl-mode-map "\C-i" 'hexl-self-insert-command) - (define-key hexl-mode-map "\C-j" 'hexl-self-insert-command) - (define-key hexl-mode-map "\C-k" 'undefined) - (define-key hexl-mode-map "\C-m" 'hexl-self-insert-command) - (define-key hexl-mode-map "\C-n" 'hexl-next-line) - (define-key hexl-mode-map "\C-o" 'undefined) - (define-key hexl-mode-map "\C-p" 'hexl-previous-line) - (define-key hexl-mode-map "\C-q" 'hexl-quoted-insert) - (define-key hexl-mode-map "\C-t" 'undefined) - (define-key hexl-mode-map "\C-v" 'hexl-scroll-up) - (define-key hexl-mode-map "\C-w" 'undefined) - (define-key hexl-mode-map "\C-y" 'undefined) - - (let ((ch 32)) - (while (< ch 127) - (define-key hexl-mode-map (format "%c" ch) 'hexl-self-insert-command) - (setq ch (1+ ch)))) - - (define-key hexl-mode-map "\e\C-a" 'hexl-beginning-of-512b-page) - (define-key hexl-mode-map "\e\C-b" 'hexl-backward-short) - (define-key hexl-mode-map "\e\C-c" 'undefined) - (define-key hexl-mode-map "\e\C-d" 'hexl-insert-decimal-char) - (define-key hexl-mode-map "\e\C-e" 'hexl-end-of-512b-page) - (define-key hexl-mode-map "\e\C-f" 'hexl-forward-short) - (define-key hexl-mode-map "\e\C-g" 'undefined) - (define-key hexl-mode-map "\e\C-h" 'undefined) - (define-key hexl-mode-map "\e\C-i" 'undefined) - (define-key hexl-mode-map "\e\C-j" 'undefined) - (define-key hexl-mode-map "\e\C-k" 'undefined) - (define-key hexl-mode-map "\e\C-l" 'undefined) - (define-key hexl-mode-map "\e\C-m" 'undefined) - (define-key hexl-mode-map "\e\C-n" 'undefined) - (define-key hexl-mode-map "\e\C-o" 'hexl-insert-octal-char) - (define-key hexl-mode-map "\e\C-p" 'undefined) - (define-key hexl-mode-map "\e\C-q" 'undefined) - (define-key hexl-mode-map "\e\C-r" 'undefined) - (define-key hexl-mode-map "\e\C-s" 'undefined) - (define-key hexl-mode-map "\e\C-t" 'undefined) - (define-key hexl-mode-map "\e\C-u" 'undefined) - - (define-key hexl-mode-map "\e\C-w" 'undefined) - (define-key hexl-mode-map "\e\C-x" 'hexl-insert-hex-char) - (define-key hexl-mode-map "\e\C-y" 'undefined) - - (define-key hexl-mode-map "\ea" 'undefined) - (define-key hexl-mode-map "\eb" 'hexl-backward-word) - (define-key hexl-mode-map "\ec" 'undefined) - (define-key hexl-mode-map "\ed" 'undefined) - (define-key hexl-mode-map "\ee" 'undefined) - (define-key hexl-mode-map "\ef" 'hexl-forward-word) - (define-key hexl-mode-map "\eg" 'hexl-goto-hex-address) - (define-key hexl-mode-map "\eh" 'undefined) - (define-key hexl-mode-map "\ei" 'undefined) - (define-key hexl-mode-map "\ej" 'hexl-goto-address) - (define-key hexl-mode-map "\ek" 'undefined) - (define-key hexl-mode-map "\el" 'undefined) - (define-key hexl-mode-map "\em" 'undefined) - (define-key hexl-mode-map "\en" 'undefined) - (define-key hexl-mode-map "\eo" 'undefined) - (define-key hexl-mode-map "\ep" 'undefined) - (define-key hexl-mode-map "\eq" 'undefined) - (define-key hexl-mode-map "\er" 'undefined) - (define-key hexl-mode-map "\es" 'undefined) - (define-key hexl-mode-map "\et" 'undefined) - (define-key hexl-mode-map "\eu" 'undefined) - (define-key hexl-mode-map "\ev" 'hexl-scroll-down) - (define-key hexl-mode-map "\ey" 'undefined) - (define-key hexl-mode-map "\ez" 'undefined) - (define-key hexl-mode-map "\e<" 'hexl-beginning-of-buffer) - (define-key hexl-mode-map "\e>" 'hexl-end-of-buffer) - - (define-key hexl-mode-map "\C-c\C-c" 'hexl-mode-exit) - - (define-key hexl-mode-map "\C-x[" 'hexl-beginning-of-1k-page) - (define-key hexl-mode-map "\C-x]" 'hexl-end-of-1k-page) - (define-key hexl-mode-map "\C-x\C-p" 'undefined) - (define-key hexl-mode-map "\C-x\C-s" 'hexl-save-buffer) - (define-key hexl-mode-map "\C-x\C-t" 'undefined)) + (setq hexl-mode-map (make-sparse-keymap)) + + (define-key hexl-mode-map [left] 'hexl-backward-char) + (define-key hexl-mode-map [right] 'hexl-forward-char) + (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 [M-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-buffer) + (define-key hexl-mode-map [deletechar] 'undefined) + (define-key hexl-mode-map [deleteline] 'undefined) + (define-key hexl-mode-map [insertline] 'undefined) + (define-key hexl-mode-map [S-delete] 'undefined) + (define-key hexl-mode-map "\177" 'undefined) + + (define-key hexl-mode-map "\C-a" 'hexl-beginning-of-line) + (define-key hexl-mode-map "\C-b" 'hexl-backward-char) + (define-key hexl-mode-map "\C-d" 'undefined) + (define-key hexl-mode-map "\C-e" 'hexl-end-of-line) + (define-key hexl-mode-map "\C-f" 'hexl-forward-char) + + (if (not (eq (key-binding (char-to-string help-char)) 'help-command)) + (define-key hexl-mode-map (char-to-string help-char) 'undefined)) + + (define-key hexl-mode-map "\C-i" 'hexl-self-insert-command) + (define-key hexl-mode-map "\C-j" 'hexl-self-insert-command) + (define-key hexl-mode-map "\C-k" 'undefined) + (define-key hexl-mode-map "\C-m" 'hexl-self-insert-command) + (define-key hexl-mode-map "\C-n" 'hexl-next-line) + (define-key hexl-mode-map "\C-o" 'undefined) + (define-key hexl-mode-map "\C-p" 'hexl-previous-line) + (define-key hexl-mode-map "\C-q" 'hexl-quoted-insert) + (define-key hexl-mode-map "\C-t" 'undefined) + (define-key hexl-mode-map "\C-v" 'hexl-scroll-up) + (define-key hexl-mode-map "\C-w" 'undefined) + (define-key hexl-mode-map "\C-y" 'undefined) + + (let ((ch 32)) + (while (< ch 127) + (define-key hexl-mode-map (format "%c" ch) 'hexl-self-insert-command) + (setq ch (1+ ch)))) + + (define-key hexl-mode-map "\e\C-a" 'hexl-beginning-of-512b-page) + (define-key hexl-mode-map "\e\C-b" 'hexl-backward-short) + (define-key hexl-mode-map "\e\C-c" 'undefined) + (define-key hexl-mode-map "\e\C-d" 'hexl-insert-decimal-char) + (define-key hexl-mode-map "\e\C-e" 'hexl-end-of-512b-page) + (define-key hexl-mode-map "\e\C-f" 'hexl-forward-short) + (define-key hexl-mode-map "\e\C-g" 'undefined) + (define-key hexl-mode-map "\e\C-h" 'undefined) + (define-key hexl-mode-map "\e\C-i" 'undefined) + (define-key hexl-mode-map "\e\C-j" 'undefined) + (define-key hexl-mode-map "\e\C-k" 'undefined) + (define-key hexl-mode-map "\e\C-l" 'undefined) + (define-key hexl-mode-map "\e\C-m" 'undefined) + (define-key hexl-mode-map "\e\C-n" 'undefined) + (define-key hexl-mode-map "\e\C-o" 'hexl-insert-octal-char) + (define-key hexl-mode-map "\e\C-p" 'undefined) + (define-key hexl-mode-map "\e\C-q" 'undefined) + (define-key hexl-mode-map "\e\C-r" 'undefined) + (define-key hexl-mode-map "\e\C-s" 'undefined) + (define-key hexl-mode-map "\e\C-t" 'undefined) + (define-key hexl-mode-map "\e\C-u" 'undefined) + + (define-key hexl-mode-map "\e\C-w" 'undefined) + (define-key hexl-mode-map "\e\C-x" 'hexl-insert-hex-char) + (define-key hexl-mode-map "\e\C-y" 'undefined) + + (define-key hexl-mode-map "\ea" 'undefined) + (define-key hexl-mode-map "\eb" 'hexl-backward-word) + (define-key hexl-mode-map "\ec" 'undefined) + (define-key hexl-mode-map "\ed" 'undefined) + (define-key hexl-mode-map "\ee" 'undefined) + (define-key hexl-mode-map "\ef" 'hexl-forward-word) + (define-key hexl-mode-map "\eg" 'hexl-goto-hex-address) + (define-key hexl-mode-map "\eh" 'undefined) + (define-key hexl-mode-map "\ei" 'undefined) + (define-key hexl-mode-map "\ej" 'hexl-goto-address) + (define-key hexl-mode-map "\ek" 'undefined) + (define-key hexl-mode-map "\el" 'undefined) + (define-key hexl-mode-map "\em" 'undefined) + (define-key hexl-mode-map "\en" 'undefined) + (define-key hexl-mode-map "\eo" 'undefined) + (define-key hexl-mode-map "\ep" 'undefined) + (define-key hexl-mode-map "\eq" 'undefined) + (define-key hexl-mode-map "\er" 'undefined) + (define-key hexl-mode-map "\es" 'undefined) + (define-key hexl-mode-map "\et" 'undefined) + (define-key hexl-mode-map "\eu" 'undefined) + (define-key hexl-mode-map "\ev" 'hexl-scroll-down) + (define-key hexl-mode-map "\ey" 'undefined) + (define-key hexl-mode-map "\ez" 'undefined) + (define-key hexl-mode-map "\e<" 'hexl-beginning-of-buffer) + (define-key hexl-mode-map "\e>" 'hexl-end-of-buffer) + + (define-key hexl-mode-map "\C-c\C-c" 'hexl-mode-exit) + + (define-key hexl-mode-map "\C-x[" 'hexl-beginning-of-1k-page) + (define-key hexl-mode-map "\C-x]" 'hexl-end-of-1k-page) + (define-key hexl-mode-map "\C-x\C-p" 'undefined) + (define-key hexl-mode-map "\C-x\C-s" 'hexl-save-buffer) + (define-key hexl-mode-map "\C-x\C-t" 'undefined)) + +(provide 'hexl) ;;; hexl.el ends here