;ELC   
;;; Compiled by rms@psilocin.gnu.org on Sun Apr 19 23:55:35 1998
;;; from file /gd/gnu/emacs/lisp/hexl.el
;;; in Emacs version 20.2.91.4
;;; with bytecomp version 2.40
;;; with all optimizations.
;;; This file uses opcodes which do not exist in Emacs 18.

(if (and (boundp 'emacs-version)
	 (< (aref emacs-version (1- (length emacs-version))) ?A)
	 (or (and (boundp 'epoch::version) epoch::version)
	     (string-lessp emacs-version "19.29")))
    (error "`hexl.el' was compiled for Emacs 19.29 or later"))


(custom-declare-group 'hexl nil "Edit a file in a hex dump format using the hexl filter." :group 'data)
#@157 The program that will hexlify and dehexlify its stdin.
`hexl-program' will always be concatenated with `hexl-options'
and "-de" when dehexlifying a buffer.
(custom-declare-variable 'hexl-program '"hexl" '(#$ . 628) :type 'string :group 'hexl)
#@98 If your emacs can handle ISO characters, this should be set to
"-iso" otherwise it should be "".
(custom-declare-variable 'hexl-iso '"" '(#$ . 877) :type 'string :group 'hexl)
#@47 Options to hexl-program that suit your needs.
(custom-declare-variable 'hexl-options '(format "-hex %s" hexl-iso) '(#$ . 1059) :type 'string :group 'hexl)
#@41 The command to use to hexlify a buffer.
(custom-declare-variable 'hexlify-command '(format "%s%s %s" exec-directory hexl-program hexl-options) '(#$ . 1220) :type 'string :group 'hexl)
#@43 The command to use to unhexlify a buffer.
(custom-declare-variable 'dehexlify-command '(format "%s%s -de %s" exec-directory hexl-program hexl-options) '(#$ . 1410) :type 'string :group 'hexl)
#@71 If non-nil then highlight the ASCII character corresponding to point.
(custom-declare-variable 'hexl-follow-ascii 't '(#$ . 1608) :type 'boolean :group 'hexl :version "20.3")
#@34 Maximum offset into hexl buffer.
(defvar hexl-max-address 0 (#$ . 1789))
(byte-code "\302\300!\204 \303\300	B\304	B\305	B\306	B\307	B\310	B\311	B\303\207" [hexl-mode-map current-load-list boundp nil hexl-mode-old-local-map hexl-mode-old-mode-name hexl-mode-old-major-mode hexl-mode-old-write-contents-hooks hexl-mode-old-require-final-newline hexl-mode-old-syntax-table] 2)
#@73 Overlay used to highlight ASCII element corresponding to current point.
(defvar hexl-ascii-overlay nil (#$ . 2178))
(byte-code "\300\301!\210\302\303\304\305#\207" [make-variable-buffer-local hexl-ascii-overlay put hexl-mode mode-class special] 4)
#@3278 \<hexl-mode-map>
A major mode for editing binary files in hex dump format.

This function automatically converts a buffer into the hexl format
using the function `hexlify-buffer'.

Each line in the buffer has an "address" (displayed in hexadecimal)
representing the offset into the file that the characters on this line
are at and 16 characters from the file (displayed as hexadecimal
values grouped every 16 bits) and as their ASCII values.

If any of the characters (displayed as ASCII characters) are
unprintable (control or meta characters) they will be replaced as
periods.

If `hexl-mode' is invoked with an argument the buffer is assumed to be
in hexl format.

A sample format:

  HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  000000c0: 7265 6769 6f6e 2e0a                      region..

Movement is as simple as movement in a normal emacs text buffer.  Most
cursor movement bindings are the same (ie. Use \[hexl-backward-char], \[hexl-forward-char], \[hexl-next-line], and \[hexl-previous-line]
to move the cursor left, right, down, and up).

Advanced cursor movement commands (ala \[hexl-beginning-of-line], \[hexl-end-of-line], \[hexl-beginning-of-buffer], and \[hexl-end-of-buffer]) are
also supported.

There are several ways to change text in hexl mode:

ASCII characters (character between space (0x20) and tilde (0x7E)) are
bound to self-insert so you can simply type the character and it will
insert itself (actually overstrike) into the buffer.

\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
it isn't bound to self-insert.  An octal number can be supplied in place
of another key to insert the octal number's ASCII representation.

\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
into the buffer at the current point.

\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
into the buffer at the current point.

\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
into the buffer at the current point.

\[hexl-mode-exit] will exit hexl-mode.

Note: saving the file with any of the usual Emacs commands
will actually convert it back to binary format while saving.

You can use \[hexl-find-file] to visit a file in hexl-mode.

\[describe-bindings] for advanced commands.
(defalias 'hexl-mode #[(&optional arg) "\306=\203 \307\310!\210\202\275 \311 \312`S\313m\203\" o\204\" \nS\314=\2049 \2039 \315 S\316\245\317_\320\\\202D \315 S\321 \210\322\f!\210\323\324!\210	\325\n!\210,\323\326!\210\327 \330.!\210\323\331!\210/\332/\323\333!\210\306\323\334!\210\335 \336\337 !\210\323\340!\210! \323\341!\210\342\341\343\"\210\323\344!\210%$\323\345!\210\313%\346\347!\210\342\347\350\313\312$\210\346\351!\210\342\351\352\313\312$\210+\203\275 \353\314!\210\354\355!\207" [major-mode max-address original-point inhibit-read-only modified arg hexl-mode error "You are already in hexl mode" buffer-modified-p t nil 1 buffer-size 68 16 15 hexlify-buffer set-buffer-modified-p make-local-variable hexl-max-address hexl-goto-address hexl-mode-old-local-map current-local-map use-local-map hexl-mode-old-mode-name "Hexl" hexl-mode-old-major-mode hexl-mode-old-syntax-table syntax-table set-syntax-table standard-syntax-table hexl-mode-old-write-contents-hooks write-contents-hooks add-hook hexl-save-buffer hexl-mode-old-require-final-newline require-final-newline make-local-hook after-revert-hook hexl-after-revert-hook change-major-mode-hook hexl-maybe-dehexlify-buffer hexl-follow-ascii run-hooks hexl-mode-hook hexl-mode-map mode-name] 5 (#$ . 2434) "p"])
(defalias 'hexl-after-revert-hook #[nil "\300 \210\301\302!\207" [hexlify-buffer set-buffer-modified-p nil] 2])
(byte-code "\302\300!\204 \303\300	B\303\207" [hexl-in-save-buffer current-load-list boundp nil] 2)
#@66 Save a hexl format buffer as binary in visited file if modified.
(defalias 'hexl-save-buffer #[nil "?\205S \306\307 \203K \212\310\311!\312 \313 ed\314\211q\210\315\n#\210q\210\316 \210\317\320 \210)\307 ed|\210\315\n#\210\321!\210	.\202P \322\323!\210\314!\210\317\207" [hexl-in-save-buffer modified end start file-name name set-buffer-modified-p buffer-modified-p generate-new-buffer " hexl" buffer-name buffer-file-name nil insert-buffer-substring dehexlify-buffer t save-buffer kill-buffer message "(No changes need to be saved)" buf] 8 (#$ . 7242) nil])
#@106 Edit file FILENAME in hexl-mode.
Switch to a buffer visiting file FILENAME, creating one in none exists.
(defalias 'hexl-find-file #[(filename) "\302!\210	\303=?\205 \303 \207" [filename major-mode find-file-literally hexl-mode] 2 (#$ . 7827) "fFilename: "])
#@79 Exit Hexl mode, returning to previous mode.
With arg, don't unhexlify buffer.
(defalias 'hexl-mode-exit #[(&optional arg) "\306=\204\n \204# \307 \310\311 T\312 \210\313\314\315\"\210\316!\210	b\210+\313\317\320\310#\210\313\321\322\310#\210\313\323\324\310#\210\325\f\326!\210\327!\210 \330 \207" [arg original-point inhibit-read-only modified hexl-ascii-overlay hexl-mode-old-write-contents-hooks 1 buffer-modified-p t hexl-current-address dehexlify-buffer remove-hook write-contents-hooks hexl-save-buffer set-buffer-modified-p after-revert-hook hexl-after-revert-hook change-major-mode-hook hexl-maybe-dehexlify-buffer post-command-hook hexl-follow-ascii-find nil use-local-map set-syntax-table force-mode-line-update hexl-mode-old-require-final-newline require-final-newline hexl-mode-old-mode-name mode-name hexl-mode-old-local-map hexl-mode-old-syntax-table hexl-mode-old-major-mode major-mode] 4 (#$ . 8094) "p"])
#@72 Convert a hexl format buffer to binary.
Ask the user for confirmation.
(defalias 'hexl-maybe-dehexlify-buffer #[nil "\303\304!\205 \305 \306\307 T\310 \210\311\312\313\"\210\314\n!\210b+\207" [original-point inhibit-read-only modified y-or-n-p "Convert contents back to binary format? " buffer-modified-p t hexl-current-address dehexlify-buffer remove-hook write-contents-hooks hexl-save-buffer set-buffer-modified-p] 3 (#$ . 9046)])
#@30 Return current hexl-address.
(defalias 'hexl-current-address #[(&optional validate) "`\303\246\304Z\305\211\305W\203 \n\203 \306\307!\210\202 \305`\303\245\310_	\311Y\203, 	\311Z\2023 	\211\312\245Z\313\245\\\211*\207" [hexl-address current-column validate 68 11 0 error "Point is not on a character in the file" 16 41 5 2] 5 (#$ . 9491) nil])
#@28 Return marker for ADDRESS.
(defalias 'hexl-address-to-marker #[(address) "\301\245\302_\301\246\303_\304\245\\\305\\\207" [address 16 68 5 2 11] 3 (#$ . 9848) "nAddress: "])
#@81 Goto hexl-mode (decimal) address ADDRESS.
Signal error if ADDRESS out of range.
(defalias 'hexl-goto-address #[(address) "\302W\204\f 	V\203 \303\304!\210\305!b\207" [address hexl-max-address 0 error "Out of hexl region" hexl-address-to-marker] 2 (#$ . 10030) "nAddress: "])
#@96 Go to hexl-mode address (hex string) HEX-ADDRESS.
Signal error if HEX-ADDRESS is out of range.
(defalias 'hexl-goto-hex-address #[(hex-address) "\301\302!!\207" [hex-address hexl-goto-address hexl-hex-string-to-integer] 3 (#$ . 10315) "sHex Address: "])
#@40 Return decimal integer for HEX-STRING.
(defalias 'hexl-hex-string-to-integer #[(hex-string) "\302	\303\232\204 \304_\305\306	!!\\	\307\310O\211\202 )\207" [hex-num hex-string 0 "" 16 hexl-hex-char-to-integer string-to-char 1 nil] 5 (#$ . 10576) "sHex number: "])
#@42 Return decimal integer for OCTAL-STRING.
(defalias 'hexl-octal-string-to-integer #[(octal-string) "\302	\303\232\204 \304_\305\306	!!\\	\307\310O\211\202 )\207" [oct-num octal-string 0 "" 8 hexl-oct-char-to-integer string-to-char 1 nil] 5 (#$ . 10852) "sOctal number: "])
#@62 Move to left ARG bytes (right if ARG negative) in hexl-mode.
(defalias 'hexl-backward-char #[(arg) "\301\302 Z!\207" [arg hexl-goto-address hexl-current-address] 3 (#$ . 11137) "p"])
#@59 Move right ARG bytes (left if ARG negative) in hexl-mode.
(defalias 'hexl-forward-char #[(arg) "\301\302 \\!\207" [arg hexl-goto-address hexl-current-address] 3 (#$ . 11327) "p"])
#@63 Move to left ARG shorts (right if ARG negative) in hexl-mode.
(defalias 'hexl-backward-short #[(arg) "\303\304 	\305W\203d 	[\211\305V\203M \306\307\"\232\2043 \nV\203+ \310\311!\210\n\202F \306\307\"\202F \nV\203B \310\311!\210\n\202F \312\\	S\211\202 \nV\203\\ \310\311!\210\n\202\223 \306\307\"\202\223 	\305V\203\223 \313\314\"\232\204{ \313\314\"\202\214 \305\232\204\210 \312Z\202\214 \310\315!\210	S\211\202e )!\207" [address arg hexl-max-address hexl-goto-address hexl-current-address 0 logior 3 message "End of buffer." 4 logand -4 "Beginning of buffer."] 6 (#$ . 11514) "p"])
#@60 Move right ARG shorts (left if ARG negative) in hexl-mode.
(defalias 'hexl-forward-short #[(arg) "\301[!\207" [arg hexl-backward-short] 2 (#$ . 12133) "p"])
#@62 Move to left ARG words (right if ARG negative) in hexl-mode.
(defalias 'hexl-backward-word #[(arg) "\303\304 	\305W\203d 	[\211\305V\203M \306\307\"\232\2043 \nV\203+ \310\311!\210\n\202F \306\307\"\202F \nV\203B \310\311!\210\n\202F \312\\	S\211\202 \nV\203\\ \310\311!\210\n\202\223 \306\307\"\202\223 	\305V\203\223 \313\314\"\232\204{ \313\314\"\202\214 \305\232\204\210 \312Z\202\214 \310\315!\210	S\211\202e )!\207" [address arg hexl-max-address hexl-goto-address hexl-current-address 0 logior 7 message "End of buffer." 8 logand -8 "Beginning of buffer."] 6 (#$ . 12297) "p"])
#@59 Move right ARG words (left if ARG negative) in hexl-mode.
(defalias 'hexl-forward-word #[(arg) "\301[!\207" [arg hexl-backward-word] 2 (#$ . 12914) "p"])
#@153 Move vertically up ARG lines [16 bytes] (down if ARG negative) in hexl-mode.
If there is byte at the target address move to the last byte in that line.
(defalias 'hexl-previous-line #[(arg) "\301[!\207" [arg hexl-next-line] 2 (#$ . 13076) "p"])
#@156 Move vertically down ARG lines [16 bytes] (up if ARG negative) in hexl-mode.
If there is no byte at the target address move to the last byte in that line.
(defalias 'hexl-next-line #[(arg) "\303\304 \305_\\\306W\203  	\306W\203  \307\310!\210\304 \305\246\202I 	\nV\2035 \n\305\246	\305\246W\2035 \n\202I 	\nV\203I \307\310!\210\311\n\312\"\304 \305\246\\	)!\207" [arg address hexl-max-address hexl-goto-address hexl-current-address 16 0 message "Out of hexl region." logand -16] 4 (#$ . 13329) "p"])
#@158 Move to the beginning of the hexl buffer.
Leaves `hexl-mark' at previous position.
With prefix arg N, puts point N bytes of the way from the true beginning.
(defalias 'hexl-beginning-of-buffer #[(arg) "\301`!\210\302S\303\\!\207" [arg push-mark hexl-goto-address 0] 3 (#$ . 13843) "p"])
#@37 Go to `hexl-max-address' minus ARG.
(defalias 'hexl-end-of-buffer #[(arg) "\302`!\210\303	SZ!\207" [hexl-max-address arg push-mark hexl-goto-address] 3 (#$ . 14137) "p"])
#@38 Goto beginning of line in hexl mode.
(defalias 'hexl-beginning-of-line #[nil "`\300\245\300_\301\\b\207" [68 11] 2 (#$ . 14315) nil])
#@32 Goto end of line in hexl mode.
(defalias 'hexl-end-of-line #[nil "\302\303\304 \305\"\211	V\203 	)!\207" [address hexl-max-address hexl-goto-address logior hexl-current-address 15] 5 (#$ . 14455) nil])
#@76 Scroll hexl buffer window upward ARG lines; or near full window if no ARG.
(defalias 'hexl-scroll-down #[(arg) "\204 \301 S\202 \302!\303[!\207" [arg window-height prefix-numeric-value hexl-scroll-up] 2 (#$ . 14667) "P"])
#@76 Scroll hexl buffer window upward ARG lines; or near full window if no ARG.
(defalias 'hexl-scroll-up #[(arg) "\204 \304 S\202 \305!\306_\307 	\n\\V\204& 	\n\\\310W\203, \311\312!\2025 \313	\n\\!\210\314\310!*\207" [arg address movement hexl-max-address window-height prefix-numeric-value 16 hexl-current-address 0 message "Out of hexl region." hexl-goto-address recenter] 3 (#$ . 14902) "P"])
#@33 Go to beginning of 1k boundary.
(defalias 'hexl-beginning-of-1k-page #[nil "\300\301\302 \303\"!\207" [hexl-goto-address logand hexl-current-address -1024] 4 (#$ . 15311) nil])
#@27 Go to end of 1k boundary.
(defalias 'hexl-end-of-1k-page #[nil "\302\303\304 \305\"\211	V\203 	)!\207" [address hexl-max-address hexl-goto-address logior hexl-current-address 1023] 5 (#$ . 15494) nil])
#@39 Go to beginning of 512 byte boundary.
(defalias 'hexl-beginning-of-512b-page #[nil "\300\301\302 \303\"!\207" [hexl-goto-address logand hexl-current-address -512] 4 (#$ . 15706) nil])
#@33 Go to end of 512 byte boundary.
(defalias 'hexl-end-of-512b-page #[nil "\302\303\304 \305\"\211	V\203 	)!\207" [address hexl-max-address hexl-goto-address logior hexl-current-address 511] 5 (#$ . 15896) nil])
#@160 Read next input character and insert it.
Useful for inserting control characters.
You may also type up to 3 octal digits, to insert a character with that code
(defalias 'hexl-quoted-insert #[(arg) "\301\302 \"\207" [arg hexl-insert-char read-quoted-char] 3 (#$ . 16116) "p"])
#@86 Convert a binary buffer to hexl format.
This discards the buffer's undo information.
(defalias 'hexlify-buffer #[nil "\203 \306\307!\204 \310\311!\210\312\313\314	!\211\315=\203 \316\2024 \n\317=\203) \320\2024 \n\321=\2033 \322\2024 \323)\324\325ed\324$+\207" [buffer-undo-list buffer-file-coding-system eol-type coding-system-for-write coding-system-for-read hexlify-command y-or-n-p "Converting to hexl format discards undo info; ok? " error "Aborted" nil raw-text coding-system-eol-type 1 raw-text-dos 2 raw-text-mac 0 raw-text-unix no-conversion t shell-command-on-region] 6 (#$ . 16399) nil])
#@86 Convert a hexl format buffer to binary.
This discards the buffer's undo information.
(defalias 'dehexlify-buffer #[nil "\203 \306\307!\204 \310\311!\210\312\313\314	!\211\315=\203 \316\2024 \n\317=\203) \320\2024 \n\321=\2033 \322\2024 \323)\324\325ed\324$+\207" [buffer-undo-list buffer-file-coding-system eol-type coding-system-for-read coding-system-for-write dehexlify-command y-or-n-p "Converting from hexl format discards undo info; ok? " error "Aborted" nil raw-text coding-system-eol-type 1 raw-text-dos 2 raw-text-mac 0 raw-text-unix no-conversion t shell-command-on-region] 6 (#$ . 17014) nil])
#@44 Return char for ASCII hex digits at point.
(defalias 'hexl-char-after-point #[nil "\300`f`Tf\"\207" [hexl-htoi] 3 (#$ . 17635)])
#@37 Hex (char) LH (char) RH to integer.
(defalias 'hexl-htoi #[(lh rh) "\302!\303_\302	!\\\207" [lh rh hexl-hex-char-to-integer 16] 3 (#$ . 17770)])
#@60 Take a char and return its value as if it was a hex digit.
(defalias 'hexl-hex-char-to-integer #[(character) "\302Y\203 \303X\203 \302Z\207\304\305\"\211\306Y\203' 	\307X\203' 	\310Z\202+ \311\312	\")\207" [character ch 48 57 logior 32 97 102 87 error "Invalid hex digit `%c'"] 4 (#$ . 17922)])
#@62 Take a char and return its value as if it was a octal digit.
(defalias 'hexl-oct-char-to-integer #[(character) "\301Y\203 \302X\203 \301Z\207\303\304\"\207" [character 48 55 error "Invalid octal digit `%c'"] 3 (#$ . 18230)])
#@47 Return a displayable string for character CH.
(defalias 'hexl-printable-character #[(ch) "\302\303\203  	\304W\204 	\305Y\203 	\306W\203 \307\2021 	\2021 	\304W\204, 	\305Y\2030 \307\2021 	\"\207" [hexl-iso ch format "%c" 32 127 160 46] 4 (#$ . 18467)])
#@24 Insert this character.
(defalias 'hexl-self-insert-command #[(arg) "\302	\"\207" [last-command-char arg hexl-insert-char] 3 (#$ . 18731) "p"])
#@38 Insert a character in a hexl buffer.
(defalias 'hexl-insert-char #[(ch num) "\306\307!	\310V\205r \311\245\312_\311\246\313_\\\311\246\313\245\\\314\\\311\245\312_\311\246\\\315\\\316`U\2034 \307\fb\210\317\313!\210\320\321\"c\210b\210\317\322!\210\323!c\210=\204W T\324!\210\n\203j \310y\210\325u\210\311\246u\210+	S\211\202 )\207" [address num at-ascii-position ascii-position hex-position ch hexl-current-address t 0 16 68 2 11 52 nil delete-char format "%02x" 1 hexl-printable-character hexl-goto-address 51 hexl-max-address] 5 (#$ . 18881)])
#@72 Insert a ASCII char ARG times at point for a given hexadecimal number.
(defalias 'hexl-insert-hex-char #[(arg) "\302\303\304!!\211\305V\204 \306W\203 \307\310!\202 \311	\")\207" [num arg hexl-hex-string-to-integer read-string "Hex number: " 255 0 error "Hex number out of range" hexl-insert-char] 4 (#$ . 19457) "p"])
#@68 Insert a ASCII char ARG times at point for a given decimal number.
(defalias 'hexl-insert-decimal-char #[(arg) "\302\303\304!!\211\305V\204 \306W\203 \307\310!\202 \311	\")\207" [num arg string-to-int read-string "Decimal Number: " 255 0 error "Decimal number out of range" hexl-insert-char] 4 (#$ . 19787) "p"])
#@66 Insert a ASCII char ARG times at point for a given octal number.
(defalias 'hexl-insert-octal-char #[(arg) "\302\303\304!!\211\305V\204 \306W\203 \307\310!\202 \311	\")\207" [num arg hexl-octal-string-to-integer read-string "Octal Number: " 255 0 error "Decimal number out of range" hexl-insert-char] 4 (#$ . 20112) "p"])
#@284 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.
(defalias 'hexl-follow-ascii #[(&optional arg) "\203\f \304!\305V\202 	?\306\307!\210\n\2032 	?\205C \310\311\211\"\312\313	\314\315#\210\316\307\317\320\312$\202C 	\205C \321	!\210\320\320\322\307\317\312#)\207" [arg hexl-ascii-overlay on-p hexl-follow-ascii prefix-numeric-value 0 make-local-hook post-command-hook make-overlay 1 t overlay-put face highlight add-hook hexl-follow-ascii-find nil delete-overlay remove-hook] 5 (#$ . 20447) "P"])
#@70 Find and highlight the ASCII element corresponding to current point.
(defalias 'hexl-follow-ascii-find #[nil "`iZ\302\303 \304\"\\\305\\\306	\211T#)\207" [pos hexl-ascii-overlay mod hexl-current-address 16 51 move-overlay] 4 (#$ . 21190)])
(byte-code "\204\272\303 \304\305\306#\210\304\307\310#\210\304\311\312#\210\304\313\314#\210\304\315\316#\210\304\317\320#\210\304\321\322#\210\304\323\324#\210\304\325\326#\210\304\327\330#\210\304\331\330#\210\304\332\330#\210\304\333\330#\210\304\334\330#\210\304\335\336#\210\304\337\306#\210\304\340\330#\210\304\341\342#\210\304\343\310#\210\344\345	!!\346=\204\213 \304\345	!\330#\210\304\347\350#\210\304\351\350#\210\304\352\330#\210\304\353\350#\210\304\354\314#\210\304\355\330#\210\304\356\312#\210\304\357\360#\210\304\361\330#\210\304\362\322#\210\304\363\330#\210\304\364\330#\210\365\365\366W\203\353 \304\367\370\n\"\350#\210\nT\211\202\326 )\304\371\372#\210\304\373\316#\210\304\374\330#\210\304\375\376#\210\304\377\201@ #\210\304\201A \320#\210\304\201B \330#\210\304\201C \330#\210\304\201D \330#\210\304\201E \330#\210\304\201F \330#\210\304\201G \330#\210\304\201H \330#\210\304\201I \330#\210\304\201J \201K #\210\304\201L \330#\210\304\201M \330#\210\304\201N \330#\210\304\201O \330#\210\304\201P \330#\210\304\201Q \330#\210\304\201R \330#\210\304\201S \201T #\210\304\201U \330#\210\304\201V \330#\210\304\201W \201X #\210\304\201Y \330#\210\304\201Z \330#\210\304\201[ \330#\210\304\201\\ \201] #\210\304\201^ \201_ #\210\304\201` \330#\210\304\201a \330#\210\304\201b \201c #\210\304\201d \330#\210\304\201e \330#\210\304\201f \330#\210\304\201g \330#\210\304\201h \330#\210\304\201i \330#\210\304\201j \330#\210\304\201k \330#\210\304\201l \330#\210\304\201m \330#\210\304\201n \330#\210\304\201o \324#\210\304\201p \330#\210\304\201q \330#\210\304\201r \326#\210\304\201s \201t #\210\304\201u \201v #\210\304\201w \201x #\210\304\201y \201z #\210\304\201{ \330#\210\304\201| \201} #\210\304\201~ \330#\210\201 \201\200 !\207" [hexl-mode-map help-char ch make-sparse-keymap define-key [left] hexl-backward-char [right] hexl-forward-char [up] hexl-previous-line [down] hexl-next-line [M-left] hexl-backward-short [M-right] hexl-forward-short [next] hexl-scroll-up [prior] hexl-scroll-down [home] hexl-beginning-of-buffer [deletechar] undefined [deleteline] [insertline] [S-delete] "" "" hexl-beginning-of-line "" "" "" hexl-end-of-line "" key-binding char-to-string help-command "	" hexl-self-insert-command "\n" "" "" "" "" "" "" hexl-quoted-insert "" "" "" "" 32 127 format "%c" "" hexl-beginning-of-512b-page "" "" "" hexl-insert-decimal-char "" hexl-end-of-512b-page "" "" "" "	" "\n" "" "\f" "" "" "" hexl-insert-octal-char "" "" "" "" "" "" "" "" hexl-insert-hex-char "" "a" "b" hexl-backward-word "c" "d" "e" "f" hexl-forward-word "g" hexl-goto-hex-address "h" "i" "j" hexl-goto-address "k" "l" "m" "n" "o" "p" "q" "r" "s" "t" "u" "v" "y" "z" "<" ">" hexl-end-of-buffer "" hexl-mode-exit "[" hexl-beginning-of-1k-page "]" hexl-end-of-1k-page "" "" hexl-save-buffer "" provide hexl] 6)
