diff options
| author | Kenichi Handa | 2003-05-06 05:08:32 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-05-06 05:08:32 +0000 |
| commit | a38ac4c2d8d0c328310cc316c2c2f6e8248a8a10 (patch) | |
| tree | 7ec9a9bb267e0a390f18b53fbd0651998ce2401e | |
| parent | 590ef566ad28433b124afc426641d1d0c603ca6a (diff) | |
| download | emacs-a38ac4c2d8d0c328310cc316c2c2f6e8248a8a10.tar.gz emacs-a38ac4c2d8d0c328310cc316c2c2f6e8248a8a10.zip | |
(archive-set-buffer-as-visiting-file): Use
after-insert-file-set-coding, not
after-insert-file-set-buffer-file-coding-system.
| -rw-r--r-- | lisp/arc-mode.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index 2c2569bb970..5b6e14d58db 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el | |||
| @@ -894,8 +894,7 @@ using `make-temp-file', and the generated name is returned." | |||
| 894 | (setq last-coding-system-used coding)) | 894 | (setq last-coding-system-used coding)) |
| 895 | (set-buffer-modified-p nil) | 895 | (set-buffer-modified-p nil) |
| 896 | (kill-local-variable 'buffer-file-coding-system) | 896 | (kill-local-variable 'buffer-file-coding-system) |
| 897 | (after-insert-file-set-buffer-file-coding-system (- (point-max) | 897 | (after-insert-file-set-coding (- (point-max) (point-min)))))) |
| 898 | (point-min)))))) | ||
| 899 | 898 | ||
| 900 | (defun archive-mouse-extract (event) | 899 | (defun archive-mouse-extract (event) |
| 901 | "Extract a file whose name you click on." | 900 | "Extract a file whose name you click on." |