[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-AUCTeX] 2010-05-24; autogen.sh from CVS fails with 'redirection
From: |
David Engster |
Subject: |
Re: [Bug-AUCTeX] 2010-05-24; autogen.sh from CVS fails with 'redirection unexpected' |
Date: |
Thu, 27 May 2010 20:58:57 +0200 |
User-agent: |
Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (gnu/linux) |
Ralf Angeli writes:
> Do you happen to know why this fixes the bug? (It also works if you use
> UTF-8 for the file.)
Well, we're in locale hell. 'Belaïche' in iso-8859-1 is '0x42 0x65 0x6c
0x61 0xef 0x63 0x68 0x65'. In UTF-8, the '0xef' indicates a 3 byte
sequence, but the following '0x63' lacks the necessary control bits ('1'
and '0'), hence it's an illegal character which isn't matched by ".".
LANG=C is a unibyte locale.
-David