aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/net/ange-ftp.el1
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 39a428a5a28..2a8188f8f5e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12011-06-25 Eli Zaretskii <eliz@gnu.org>
2
3 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
4 buffer-file-type before setting its value, to avoid disastrous
5 global effects on decoding files for DOS/Windows systems.
6 (Bug#8780)
7
12011-06-25 Juanma Barranquero <lekktu@gmail.com> 82011-06-25 Juanma Barranquero <lekktu@gmail.com>
2 9
3 * allout.el (allout-unload-function): Pass -1 to `allout-mode'. 10 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el
index 0493ead7bbf..1282f86d503 100644
--- a/lisp/net/ange-ftp.el
+++ b/lisp/net/ange-ftp.el
@@ -3278,6 +3278,7 @@ system TYPE.")
3278 (name (ange-ftp-quote-string (nth 2 parsed))) 3278 (name (ange-ftp-quote-string (nth 2 parsed)))
3279 (temp (ange-ftp-make-tmp-name host)) 3279 (temp (ange-ftp-make-tmp-name host))
3280 (binary (ange-ftp-binary-file filename)) 3280 (binary (ange-ftp-binary-file filename))
3281 (buffer-file-type buffer-file-type)
3281 (abbr (ange-ftp-abbreviate-filename filename)) 3282 (abbr (ange-ftp-abbreviate-filename filename))
3282 (coding-system-used last-coding-system-used) 3283 (coding-system-used last-coding-system-used)
3283 size) 3284 size)