Georg, is that right? info.feature was not initialized, I set it to
false (or maybe you prefer to avoid constructors for structs?)
JMarc
Index: src/encoding.C
===================================================================
--- src/encoding.C (révision 17429)
+++ src/encoding.C (copie de travail)
@@ -187,6 +187,7 @@ char_type const arabic_start = 0xc1;
/// Information about a single UCS4 character
struct CharInfo {
+ CharInfo() : combining(false), feature(false), force(false) {};
/// LaTeX command for this character
docstring command;
/// Needed LaTeX preamble (or feature)
@@ -393,8 +394,6 @@ void Encodings::read(FileName const & en
else
break;
- info.combining = false;
- info.force = false;
while (!flags.empty()) {
string flag;
flags = support::split(flags, flag, ',');