Subject: | Very odd mangling of lowercase a with grave accent |
For some reason, lower case a with grave accent in a bib string, appearing on any line other
than the first if a field is split over several lines is mangled. This is highly odd and only
appears to happen with lower case a-grave. To reproduce use the small code snippet below
(happens nomatter what field this occurs in, using a preamble for simplicity). I tried all
versions back to 0.40 and same issue. Don't think it's to do with UTF-8 changes I made as
they were for names only. This is really odd. Doesn't seem to be in bt_postprocess either as it
happens before that. Essentially, it seems like every a-grave after the first newline is mangled
(looks like the second byte is turned into a space).
------
#!/usr/bin/perl
use Text::BibTeX;
$string = q|@PREAMBLE{"à
à"}|;
print $string, "\n\n";
my $entry = new Text::BibTeX::Entry;
$entry->parse_s($string);
$pstring = $entry->value;
print "$pstring\n";