Mercurial > emacs
comparison lisp/hexl.el @ 49588:37645a051842
Trailing whitespace deleted.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 04 Feb 2003 11:26:42 +0000 |
parents | 8f5cfbb41433 |
children | 0b8df17aac7e d7ddb3e565de |
comparison
equal
deleted
inserted
replaced
49587:e82b3fe06d4c | 49588:37645a051842 |
---|---|
128 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal | 128 00000030: 7320 6173 2068 6578 6164 6563 696d 616c s as hexadecimal |
129 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print | 129 00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74 ASCII.and print |
130 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara | 130 00000050: 6162 6c65 2041 5343 4949 2063 6861 7261 able ASCII chara |
131 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont | 131 00000060: 6374 6572 732e 2020 416e 7920 636f 6e74 cters. Any cont |
132 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII | 132 00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949 rol or non-ASCII |
133 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are | 133 00000080: 2063 6861 7261 6374 6572 730a 6172 6520 characters.are |
134 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per | 134 00000090: 6469 7370 6c61 7965 6420 6173 2070 6572 displayed as per |
135 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin | 135 000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e iods in the prin |
136 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character | 136 000000b0: 7461 626c 6520 6368 6172 6163 7465 7220 table character |
137 000000c0: 7265 6769 6f6e 2e0a region.. | 137 000000c0: 7265 6769 6f6e 2e0a region.. |
138 | 138 |
139 Movement is as simple as movement in a normal emacs text buffer. Most | 139 Movement is as simple as movement in a normal emacs text buffer. Most |
140 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line] | 140 cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line] |
141 to move the cursor left, right, down, and up). | 141 to move the cursor left, right, down, and up). |
825 With prefix ARG, turn on following if and only if ARG is positive. | 825 With prefix ARG, turn on following if and only if ARG is positive. |
826 When following is enabled, the ASCII character corresponding to the | 826 When following is enabled, the ASCII character corresponding to the |
827 element under the point is highlighted. | 827 element under the point is highlighted. |
828 Customize the variable `hexl-follow-ascii' to disable this feature." | 828 Customize the variable `hexl-follow-ascii' to disable this feature." |
829 (interactive "P") | 829 (interactive "P") |
830 (let ((on-p (if arg | 830 (let ((on-p (if arg |
831 (> (prefix-numeric-value arg) 0) | 831 (> (prefix-numeric-value arg) 0) |
832 (not hexl-ascii-overlay)))) | 832 (not hexl-ascii-overlay)))) |
833 | 833 |
834 (if on-p | 834 (if on-p |
835 ;; turn it on | 835 ;; turn it on |