bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40519: 28.0.50; decode-coding-string fails EOL conversion of ASCII s


From: Kazuhiro Ito
Subject: bug#40519: 28.0.50; decode-coding-string fails EOL conversion of ASCII string
Date: Thu, 09 Apr 2020 19:48:36 +0900
User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/28.0 (x86_64-w64-mingw32) MULE/6.0 (HANACHIRUSATO)

> > Since commit 4ed39549e3f9dbfeb2aea0e2674a7701dbc0e5ea (Avoid expensive
> > recoding for ASCII identity cases (bug#40407)), below code returns
> > unexpected result.
> > 
> > (let ((string "ABCD\x0d\nEFG")
> >       inhibit-eol-conversion)
> >   (decode-coding-string string 'raw-text-dos))
> > 
> > -> "ABCD^M
> > EFG"
> > 
> > expected result is 
> > -> "ABCD
> > EFG"
> > 
> > It seems that the committed code does not take care of EOL conversion.
> 
> Thanks, I hope I fixed this now.

Thank you.  But there is still a problem in encode-coding-string.

(let ((string "ABCD\nEFG")
      inhibit-eol-conversion)
  (list
   (encode-coding-string string 'raw-text-dos)
   (encode-coding-string string 'raw-text-mac)))

-> ("ABCD
EFG" "ABCD
EFG")

-- 
Kazuhiro Ito





reply via email to

[Prev in Thread] Current Thread [Next in Thread]