GNU bug report logs -
#29189
25.3; Dired does not work with binary filenames
Previous Next
Reported by: Allen Li <vianchielfaura <at> gmail.com>
Date: Tue, 7 Nov 2017 09:04:01 UTC
Severity: minor
Found in version 25.3
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #56 received at 29189 <at> debbugs.gnu.org (full text, mbox):
Ping! Kenichi, any comments on this issue or the proposed patch?
> Date: Mon, 20 Nov 2017 20:15:55 +0200
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: vianchielfaura <at> gmail.com, 29189 <at> debbugs.gnu.org
>
> > From: Andreas Schwab <schwab <at> suse.de>
> > Cc: Kenichi Handa <handa <at> gnu.org>, vianchielfaura <at> gmail.com, 29189 <at> debbugs.gnu.org
> > Date: Mon, 20 Nov 2017 10:48:09 +0100
> >
> > > + /* Copy raw bytes in their 2-byte forms as single characters. */
> > > + if (CHAR_BYTE8_HEAD_P (*src) && nbytes > 0)
> > > + {
> > > + c = STRING_CHAR_ADVANCE (src);
> >
> > CHAR_BYTE8_HEAD_P and STRING_CHAR_ADVANCE are only valid for multibyte
> > strings. I don't think it makes sense to use them for unibyte strings.
>
> Right you are, thanks. Updated patch below.
>
> diff --git a/src/coding.c b/src/coding.c
> index d790ad0..ac55f87 100644
> --- a/src/coding.c
> +++ b/src/coding.c
> @@ -7423,10 +7423,23 @@ decode_coding (struct coding_system *coding)
>
> while (nbytes-- > 0)
> {
> - int c = *src++;
> + int c;
>
> - if (c & 0x80)
> - c = BYTE8_TO_CHAR (c);
> + /* Copy raw bytes in their 2-byte forms from multibyte
> + text as single characters. */
> + if (coding->src_multibyte
> + && CHAR_BYTE8_HEAD_P (*src) && nbytes > 0)
> + {
> + c = STRING_CHAR_ADVANCE (src);
> + nbytes--;
> + }
> + else
> + {
> + c = *src++;
> +
> + if (c & 0x80)
> + c = BYTE8_TO_CHAR (c);
> + }
> coding->charbuf[coding->charbuf_used++] = c;
> }
> produce_chars (coding, Qnil, 1);
>
>
>
>
This bug report was last modified 6 years and 261 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.