]> git.lyx.org Git - lyx.git/blobdiff - src/CmdDef.cpp
tex2lyx: fix import of umlauts and ß in math (#12739)
[lyx.git] / src / CmdDef.cpp
index 7f2f0a654c28a3d6832da80e3f1196e2da449dd6..08cd7dd6a928e01812904f2eb4e854bbfc97f2e0 100644 (file)
@@ -12,6 +12,7 @@
 
 #include "CmdDef.h"
 
+#include "FuncRequest.h"
 #include "LyXAction.h"
 #include "Lexer.h"
 
@@ -99,8 +100,8 @@ bool CmdDef::read(string const & def_file)
                }
                case BN_DEFFILE:
                        if (lex.next()) {
-                               string const tmp = lex.getString();
-                               error |= !read(tmp);
+                               string const stmp = lex.getString();
+                               error |= !read(stmp);
                        } else {
                                lex.printError("BN_DEFFILE: Missing file name");
                                error = true;