all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kazuhiro Ito <kzhr@d1.dion.ne.jp>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 40519@debbugs.gnu.org
Subject: bug#40519: 28.0.50; decode-coding-string fails EOL conversion of ASCII string
Date: Thu, 09 Apr 2020 19:48:36 +0900	[thread overview]
Message-ID: <86a73lkk8r.wl--xmue@d1.dion.ne.jp> (raw)
In-Reply-To: <83r1wxnhce.fsf@gnu.org>

> > 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	other threads:[~2020-04-09 10:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-09  8:26 bug#40519: 28.0.50; decode-coding-string fails EOL conversion of ASCII string Kazuhiro Ito
2020-04-09  9:22 ` Eli Zaretskii
2020-04-09 10:48   ` Kazuhiro Ito [this message]
2020-04-16 10:44 ` Mattias Engdegård

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=86a73lkk8r.wl--xmue@d1.dion.ne.jp \
    --to=kzhr@d1.dion.ne.jp \
    --cc=40519@debbugs.gnu.org \
    --cc=eliz@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.