diff options
| author | Eli Zaretskii | 2006-07-21 09:27:17 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2006-07-21 09:27:17 +0000 |
| commit | e9fe3513c97ed16b9003dd0af4433fb724a1928b (patch) | |
| tree | 2f2b776309a74f4685aee58f8f51dde1c887c0fa | |
| parent | b3658160cbed48a465336430cd2bc237b43f8284 (diff) | |
| download | emacs-e9fe3513c97ed16b9003dd0af4433fb724a1928b.tar.gz emacs-e9fe3513c97ed16b9003dd0af4433fb724a1928b.zip | |
(archive-set-buffer-as-visiting-file): Comment fix.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/arc-mode.el | 12 |
2 files changed, 15 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 383881b78b0..a75f47677b9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2006-07-21 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * dos-w32.el (find-buffer-file-type-coding-system): Support calls | ||
| 4 | where `(nth 1 command)' is a cons cell. Doc fix. | ||
| 5 | |||
| 6 | * textmodes/po.el (po-find-charset): Doc fix. | ||
| 7 | |||
| 1 | 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com> | 8 | 2006-07-21 Ken Manheimer <ken.manheimer@gmail.com> |
| 2 | 9 | ||
| 3 | * allout.el (allout-unprotected, allout-e-o-prefix-p) | 10 | * allout.el (allout-unprotected, allout-e-o-prefix-p) |
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index 500ad5ff5fa..4afdfac2bf5 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el | |||
| @@ -870,10 +870,14 @@ using `make-temp-file', and the generated name is returned." | |||
| 870 | (save-excursion | 870 | (save-excursion |
| 871 | (funcall set-auto-coding-function | 871 | (funcall set-auto-coding-function |
| 872 | filename (- (point-max) (point-min))))) | 872 | filename (- (point-max) (point-min))))) |
| 873 | ;; dos-w32.el defines find-operation-coding-system for | 873 | ;; dos-w32.el defines the function |
| 874 | ;; DOS/Windows systems which preserves the coding-system | 874 | ;; find-buffer-file-type-coding-system for DOS/Windows |
| 875 | ;; of existing files. We want it to act here as if the | 875 | ;; systems which preserves the coding-system of existing files. |
| 876 | ;; extracted file existed. | 876 | ;; (That function is called via file-coding-system-alist.) |
| 877 | ;; Here, we want it to act as if the extracted file existed. | ||
| 878 | ;; The following let-binding of file-name-handler-alist forces | ||
| 879 | ;; find-file-not-found-set-buffer-file-coding-system to ignore | ||
| 880 | ;; the file's name (see dos-w32.el). | ||
| 877 | (let ((file-name-handler-alist | 881 | (let ((file-name-handler-alist |
| 878 | '(("" . archive-file-name-handler)))) | 882 | '(("" . archive-file-name-handler)))) |
| 879 | (car (find-operation-coding-system | 883 | (car (find-operation-coding-system |