Mercurial > emacs
changeset 22193:e6a21f2c62f9
(uncompress-while-visiting): Leave point at beginning.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 22 May 1998 23:54:21 +0000 |
parents | bf83c23f3300 |
children | 376bd8ec20f1 |
files | lisp/uncompress.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/uncompress.el Fri May 22 23:36:06 1998 +0000 +++ b/lisp/uncompress.el Fri May 22 23:54:21 1998 +0000 @@ -74,6 +74,7 @@ (message "Uncompressing...") (let ((buffer-read-only nil)) (shell-command-on-region (point-min) (point-max) uncompress-program t)) + (goto-char (point-min)) (message "Uncompressing...done") (set-buffer-modified-p nil) (make-local-variable 'write-file-hooks)