]> git.lyx.org Git - lyx.git/blobdiff - src/converter.h
Rob's latest and greatest dialog tweaking.
[lyx.git] / src / converter.h
index 0f507af1ac66fde8c46f878cb98d21dff8b7f0d2..77dc9723d031568d49a624a5c390119ebf5dd3a4 100644 (file)
@@ -77,7 +77,11 @@ private:
 inline
 bool operator<(Format const & a, Format const & b)
 {
-       return compare_no_case(a.prettyname(), b.prettyname()) < 0;
+       // use the compare_ascii_no_case instead of compare_no_case,
+       // because in turkish, 'i' is not the lowercase version of 'I',
+       // and thus turkish locale breaks parsing of tags.
+
+       return compare_ascii_no_case(a.prettyname(), b.prettyname()) < 0;
 }