]> git.lyx.org Git - features.git/commitdiff
Fix bug #10918.
authorRichard Heck <rgheck@lyx.org>
Sat, 24 Feb 2018 06:06:36 +0000 (01:06 -0500)
committerRichard Heck <rgheck@lyx.org>
Sat, 24 Feb 2018 06:06:36 +0000 (01:06 -0500)
src/LyXRC.cpp

index 9e42857a7d3455cb4f90ac6476bcd6ef5fcde65e..f0f82622f70357d03745b597e8012bc055fe670f 100644 (file)
@@ -430,7 +430,7 @@ LyXRC::ReturnValues LyXRC::read(Lexer & lexrc, bool check_format)
                return ReadError;
 
        // format prior to 2.0 and introduction of format tag
-       unsigned int format = 0;
+       unsigned int rc_format = 0;
 
        while (lexrc.isOK()) {
                // By using two switches we take advantage of the compiler
@@ -453,7 +453,7 @@ LyXRC::ReturnValues LyXRC::read(Lexer & lexrc, bool check_format)
                switch (static_cast<LyXRCTags>(le)) {
                case RC_LYXRCFORMAT:
                        if (lexrc.next())
-                               format = lexrc.getInteger();
+                               rc_format = lexrc.getInteger();
                        break;
                case RC_INPUT: // Include file
                        if (lexrc.next()) {
@@ -1232,7 +1232,7 @@ LyXRC::ReturnValues LyXRC::read(Lexer & lexrc, bool check_format)
 
                // This is triggered the first time through the loop unless
                // we hit a format tag.
-               if (check_format && format != LYXRC_FILEFORMAT)
+               if (check_format && rc_format != LYXRC_FILEFORMAT)
                        return FormatMismatch;
        }