2001-05-09 Eli Zaretskii <eliz@is.elta.co.il>
+ * tar-mode.el (tar-extract): Pay attention to the value of
+ coding-system-for-read, if it is non-nil.
+
* calendar/holidays.el (holidays): Add an autoload cookie. From
Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>.
;; We need to mimic the parts of insert-file-contents
;; which determine the coding-system and decode the text.
(let ((coding
- (and set-auto-coding-function
- (save-excursion
- (funcall set-auto-coding-function
- name (- (point-max) (point))))))
+ (or coding-system-for-read
+ (and set-auto-coding-function
+ (save-excursion
+ (funcall set-auto-coding-function
+ name (- (point-max) (point)))))))
(multibyte enable-multibyte-characters)
(detected (detect-coding-region
1 (min 16384 (point-max)) t)))