GNU bug report logs -
#1853
Trouble with gzipped info files on Windows
Previous Next
Reported by: "Juanma Barranquero" <lekktu <at> gmail.com>
Date: Sat, 10 Jan 2009 21:55:03 UTC
Severity: normal
Found in version 23.0.60
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> Date: Sat, 17 Jan 2009 16:05:36 +0200
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: lekktu <at> gmail.com, emacs-devel <at> gnu.org
>
> --- lisp/international/mule-cmds.el 9 Jan 2009 05:01:02 -0000 1.353
> +++ lisp/international/mule-cmds.el 17 Jan 2009 14:01:33 -0000
> @@ -1936,7 +1936,11 @@
> (eol-type (coding-system-eol-type default-buffer-file-coding-system)))
> (when priority
> (set-default-coding-systems
> - (if (memq eol-type '(0 1 2 unix dos mac))
> + ;; Don't use eol-type if default-buffer-file-coding-system is
> + ;; nil, because coding-system-eol-type treats nil as
> + ;; `no-conversion'.
> + (if (and default-buffer-file-coding-system
> + (memq eol-type '(0 1 2 unix dos mac)))
> (coding-system-change-eol-conversion default-coding eol-type)
> default-coding))
> (setq default-sendmail-coding-system default-coding)
Upon further thought, perhaps we want the default coding-systems to
have an explicit -dos EOL type on DOS and Windows, for consistency
with how we set up things on startup. This would involve explicitly
changing eol-type of default-coding before the last line above.
WDYT?
This bug report was last modified 16 years and 179 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.