diff options
author | Kenichi Handa <handa@m17n.org> | 2003-05-06 05:08:32 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2003-05-06 05:08:32 +0000 |
commit | a38ac4c2d8d0c328310cc316c2c2f6e8248a8a10 (patch) | |
tree | 7ec9a9bb267e0a390f18b53fbd0651998ce2401e /lisp/arc-mode.el | |
parent | 590ef566ad28433b124afc426641d1d0c603ca6a (diff) | |
download | emacs-a38ac4c2d8d0c328310cc316c2c2f6e8248a8a10.tar.gz |
(archive-set-buffer-as-visiting-file): Use
after-insert-file-set-coding, not
after-insert-file-set-buffer-file-coding-system.
Diffstat (limited to 'lisp/arc-mode.el')
-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." (setq last-coding-system-used coding)) (set-buffer-modified-p nil) (kill-local-variable 'buffer-file-coding-system) - (after-insert-file-set-buffer-file-coding-system (- (point-max) - (point-min)))))) + (after-insert-file-set-coding (- (point-max) (point-min)))))) (defun archive-mouse-extract (event) "Extract a file whose name you click on." |