]> git.eshelyaron.com Git - emacs.git/commitdiff
* hexl.el (hexlify-buffer): Move point in proper range
authorPhillip Rulon <pjr@gnu.org>
Fri, 8 Oct 1999 15:42:32 +0000 (15:42 +0000)
committerPhillip Rulon <pjr@gnu.org>
Fri, 8 Oct 1999 15:42:32 +0000 (15:42 +0000)
if it is too large.
(hexl-after-revert-hook): Update hexl-max-address.
(hexl-address-to-marker): Doc fix.

lisp/hexl.el

index e4c80c68c796e9a25067cb7b49b68f1cea1f2788..4a5d12c28e9e2f78d15b802a23eb18e150cd71b3 100644 (file)
@@ -251,6 +251,7 @@ You can use \\[hexl-find-file] to visit a file in hexl-mode.
   (run-hooks 'hexl-mode-hook))
 
 (defun hexl-after-revert-hook ()
+  (setq hexl-max-address (1- (buffer-size)))
   (hexlify-buffer)
   (set-buffer-modified-p nil))
 
@@ -349,7 +350,7 @@ Ask the user for confirmation."
     hexl-address))
 
 (defun hexl-address-to-marker (address)
-  "Return marker for ADDRESS."
+  "Return buffer position for ADDRESS."
   (interactive "nAddress: ")
   (+ (* (/ address 16) 68) 11 (/ (* (% address 16) 5) 2)))
 
@@ -611,7 +612,9 @@ This discards the buffer's undo information."
                  'raw-text-unix)
                 (t 'no-conversion))))
        (buffer-undo-list t))
-    (shell-command-on-region (point-min) (point-max) hexlify-command t)))
+    (shell-command-on-region (point-min) (point-max) hexlify-command t)
+    (if (> (point) (hexl-address-to-marker hexl-max-address))
+       (hexl-goto-address hexl-max-address))))
 
 (defun dehexlify-buffer ()
   "Convert a hexl format buffer to binary.