]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/text.C
move reading of bind files from lyxrc.C to kbmap.C; do not read bindings or menus...
[features.git] / src / tex2lyx / text.C
index 524605b529ad7b3f4fe090b2919fc969a9bd894b..79ad1057d89231a12bb85daf05d9c4bfc8507941 100644 (file)
@@ -510,12 +510,17 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
                        os << "\n\\size " << known_coded_sizes[where - known_sizes] << "\n";
                }
 
-               else if (t.cs() == "LyX" || t.cs() == "TeX"
-                     || t.cs() == "LaTeX" || t.cs() == "LaTeXe") {
+               else if (t.cs() == "LyX" || t.cs() == "TeX" 
+                        || t.cs() == "LaTeX") {
                        os << t.cs();
                        skip_braces(p); // eat {}
                }
 
+               else if (t.cs() == "LaTeXe") {
+                       os << "LaTeX2e";
+                       skip_braces(p); // eat {}
+               }
+
                else if (t.cs() == "lyxarrow") {
                        os << "\\SpecialChar \\menuseparator\n";
                        skip_braces(p);