comparison lisp/hexl.el @ 5066:8abe8fb9621c

(hexlify-buffer): Add autoload cookie.
author Richard M. Stallman <rms@gnu.org>
date Fri, 19 Nov 1993 15:57:50 +0000
parents 82353ffa44b7
children 9cde7d7fea1f
comparison
equal deleted inserted replaced
5065:cd3d59bc0b94 5066:8abe8fb9621c
492 (interactive "p") 492 (interactive "p")
493 (hexl-insert-char (read-quoted-char) arg)) 493 (hexl-insert-char (read-quoted-char) arg))
494 494
495 ;00000000: 0011 2233 4455 6677 8899 aabb ccdd eeff 0123456789ABCDEF 495 ;00000000: 0011 2233 4455 6677 8899 aabb ccdd eeff 0123456789ABCDEF
496 496
497 ;;;###autoload
497 (defun hexlify-buffer () 498 (defun hexlify-buffer ()
498 "Convert a binary buffer to hexl format" 499 "Convert a binary buffer to hexl format"
499 (interactive) 500 (interactive)
500 (shell-command-on-region (point-min) (point-max) hexlify-command t)) 501 (shell-command-on-region (point-min) (point-max) hexlify-command t))
501 502