diff options
author | Kenichi Handa <handa@m17n.org> | 1998-07-25 02:02:59 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-07-25 02:02:59 +0000 |
commit | 47e1dcfee1eaadebef070e28688097f0f6772781 (patch) | |
tree | 23fd13849997e610243d97a54f8111867483f518 /lisp/tar-mode.el | |
parent | 823a266d9a44c2bd72898ca8faaf17ec6109fd0a (diff) | |
download | emacs-47e1dcfee1eaadebef070e28688097f0f6772781.tar.gz |
Give set-auto-coding-funciton FILENAME argument.
Diffstat (limited to 'lisp/tar-mode.el')
-rw-r--r-- | lisp/tar-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index ad8bdea817b..3ca808a60c1 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -749,7 +749,8 @@ appear on disk when you save the tar-file's buffer." (let ((coding (and set-auto-coding-function (save-excursion - (funcall set-auto-coding-function (point-max))))) + (funcall set-auto-coding-function + name (point-max))))) (multibyte enable-multibyte-characters) (detected (detect-coding-region 1 (min 16384 (point-max)) t))) |