GNU bug report logs -
#14287
24.3.50; Some *-dos coding systems remove characters before LF for some files.
Previous Next
Reported by: Kazuhiro Ito <kzhr <at> d1.dion.ne.jp>
Date: Sat, 27 Apr 2013 12:04:01 UTC
Severity: normal
Found in version 24.3.50
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#14287: 24.3.50; Some *-dos coding systems remove characters before LF for some files.
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 14287 <at> debbugs.gnu.org.
--
14287: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14287
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
> Date: Sun, 28 Apr 2013 07:19:56 +0900
> From: Kazuhiro Ito <kzhr <at> d1.dion.ne.jp>
> Cc: 14287 <at> debbugs.gnu.org
>
> > > When I evaluate the below code on trunk, I get different result from 24.3.
> > >
> > > (let ((file (expand-file-name "HELLO" data-directory)))
> > > (mapcar
> > > (lambda (coding)
> > > (with-temp-buffer
> > > (let ((coding-system-for-read coding))
> > > (insert-file-contents file))
> > > (cons coding
> > > (buffer-substring
> > > (point-min) (progn (forward-line 1) (point))))))
> > > '(iso-8859-1-unix
> > > iso-8859-1-dos
> > > raw-text-unix
> > > raw-text-dos
> > > sjis-unix
> > > sjis-dos
> > > iso-2022-7bit-unix
> > > iso-2022-7bit-dos)))
> > >
> > > ->
> > >
> > > ((iso-8859-1-unix . "This is a list of ways to say hello in various languages.
> > > ") (iso-8859-1-dos . "This is a list of ways to say hello in various languages
> >
> > Does the patch below fix that?
>
> I confirmed your patch fixed the problem. Thank you.
Thanks, installed.
[Message part 3 (message/rfc822, inline)]
When I evaluate the below code on trunk, I get different result from 24.3.
(let ((file (expand-file-name "HELLO" data-directory)))
(mapcar
(lambda (coding)
(with-temp-buffer
(let ((coding-system-for-read coding))
(insert-file-contents file))
(cons coding
(buffer-substring
(point-min) (progn (forward-line 1) (point))))))
'(iso-8859-1-unix
iso-8859-1-dos
raw-text-unix
raw-text-dos
sjis-unix
sjis-dos
iso-2022-7bit-unix
iso-2022-7bit-dos)))
->
((iso-8859-1-unix . "This is a list of ways to say hello in various languages.
") (iso-8859-1-dos . "This is a list of ways to say hello in various languages
") (raw-text-unix . "This is a list of ways to say hello in various languages.
") (raw-text-dos . "This is a list of ways to say hello in various languages
") (sjis-unix . "This is a list of ways to say hello in various languages.
") (sjis-dos . "This is a list of ways to say hello in various languages
") (iso-2022-7bit-unix . "This is a list of ways to say hello in various languages.
") (iso-2022-7bit-dos . "This is a list of ways to say hello in various languages.
"))
Result of Emacs 23.4 is below.
((iso-8859-1-unix . "This is a list of ways to say hello in various languages.
") (iso-8859-1-dos . "This is a list of ways to say hello in various languages.
") (raw-text-unix . "This is a list of ways to say hello in various languages.
") (raw-text-dos . "This is a list of ways to say hello in various languages.
") (sjis-unix . "This is a list of ways to say hello in various languages.
") (sjis-dos . "This is a list of ways to say hello in various languages.
") (iso-2022-7bit-unix . "This is a list of ways to say hello in various languages.
") (iso-2022-7bit-dos . "This is a list of ways to say hello in various languages.
"))
We can confirm manually with universal-coding-system-argument and
find-file command. The problem seems to depend the content of the
file and the kind of coding system. For example, it does not occur
with NEWS file. Of course, it is bad manner to load the content of
the file with incorrect coding system. But I think this current
behavior is very confusing.
--
Kazuhiro Ito
This bug report was last modified 12 years and 27 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.