Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: parse from even deeper in hell
- X-seq: zsh-workers 34578
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: Peter Stephenson <p.w.stephenson@xxxxxxxxxxxx>
- Subject: Re: PATCH: parse from even deeper in hell
- Date: Fri, 20 Feb 2015 04:16:04 +0100
- Cc: "Zsh Hackers' List" <zsh-workers@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=1zvbz0Q/SHVcIejdiWYHaFZkJUz7Tc/dIC3GlUWfnR0=; b=OgBRSy+AbiJgMzKYblmZO8wU3HH8kxTUESJEXYnU5v4o90xOk+zDlRthll8ZSJHxX0 h5nSo1Y7ta8MqsRBt2tYzhe4Cs5XNfuyHWzjjNNiaxREiPQRAL7Lu3IZ/TF8lHSrP43E WDWAHQUdPUI7AD0K87MdUntGh2g8VvKLOVN1QXiqGivjYxSd09Xg7RwIP1974CA+ILNC k2hyVXVjXn4jqiBvx5cX8nSNm50S/5xyIgw1nKzoex+dYCnHnGrRKA0BK7fw77saY68U u2A6Gp7hPyU0onG+tRkfAGPOiGXBjFNWxdr/KTCcQrqW9wDfAtWRP+BIA0kwXnI0s2F7 W0YA==
- In-reply-to: <20150219220311.7dfdc4ec@ntlworld.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20150219101315.477f7f95@pwslap01u.europe.root.pri> <CAHYJk3T4yw3cz8o8-EVF8gzN_hi+M4kc92UR-XTaFBsJtDD7qg@mail.gmail.com> <20150219220311.7dfdc4ec@ntlworld.com>
On Thu, Feb 19, 2015 at 11:03 PM, Peter Stephenson
<p.w.stephenson@xxxxxxxxxxxx> wrote:
> On Thu, 19 Feb 2015 22:47:12 +0100
> Mikael Magnusson <mikachu@xxxxxxxxx> wrote:
>> I get a crapton of "bad(2) wordsplit reading history:" with this
>> patch. It seems like all the failed lines have metafied characters in
>> them, if that's a hint. Most don't contain any syntax characters at
>> all, for example:
>> hist.c:3499: bad(2) wordsplit reading history: mp3info 好きになり\M-c\M-^Aい.mp3
>> at: 好きになり\M-c\M-^Aい.mp3s
>> word: 好きになり\M-c\M-^Aい.mp3
>
> Unless I'm missing something, I don't think you've said what the real
> characters you're expecting are. The broken ones aren't much use for
> testing.
>
>> The (2) means it's the second of the two bad=1; assignments
>> triggering.
>
> At line 3490?
Yes.
>> I'm also not sure why the utf8 is slightly mishandled in the output
>> there. It has at least been unmetafied, the raw string in the history
>> file is more or less:
>> mp3info 好ぃ�になゃ�たぃ�.mp3
>
> So those aren't actually valid characters? Does that mean metafied
> characters are getting into the history? I've made it necessary for two
> more bytes to be metafied, so if the shell was expecting them to be
> metafied in the history file they won't be. The bytes are 0x9e and
> 0x9f. I guess we could special case those, but do we really output
> metafied characters to the history file?
The actual line in the history is
mp3info 好きになりたい.mp3
but in the history _file_, it's stored metafied, which is hard to
paste into an email. I'm not sure why pasting the original string
didn't occur to me. AFAIK, history files have always been metafied.
I'm not sure why the た is mangled in the error message is what I tried
to say originally. The final byte is 9f which I suppose is an esc with
the 8th bit set. Maybe something is trying to double unmetafy? Running
it through unmetafy() twice doesn't cause any problems though...
--
Mikael Magnusson
Messages sorted by:
Reverse Date,
Date,
Thread,
Author