diff options
| author | Kenichi Handa | 1998-07-25 02:02:59 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-07-25 02:02:59 +0000 |
| commit | 47e1dcfee1eaadebef070e28688097f0f6772781 (patch) | |
| tree | 23fd13849997e610243d97a54f8111867483f518 | |
| parent | 823a266d9a44c2bd72898ca8faaf17ec6109fd0a (diff) | |
| download | emacs-47e1dcfee1eaadebef070e28688097f0f6772781.tar.gz emacs-47e1dcfee1eaadebef070e28688097f0f6772781.zip | |
Give set-auto-coding-funciton FILENAME argument.
| -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." | |||
| 749 | (let ((coding | 749 | (let ((coding |
| 750 | (and set-auto-coding-function | 750 | (and set-auto-coding-function |
| 751 | (save-excursion | 751 | (save-excursion |
| 752 | (funcall set-auto-coding-function (point-max))))) | 752 | (funcall set-auto-coding-function |
| 753 | name (point-max))))) | ||
| 753 | (multibyte enable-multibyte-characters) | 754 | (multibyte enable-multibyte-characters) |
| 754 | (detected (detect-coding-region | 755 | (detected (detect-coding-region |
| 755 | 1 (min 16384 (point-max)) t))) | 756 | 1 (min 16384 (point-max)) t))) |