]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListingsParams.cpp
- Simplify prefs, graphics and external display options which are now true or false.
[lyx.git] / src / insets / InsetListingsParams.cpp
index b9146870486d3c2aa2d3b5cfb722f9545bb72479..4c0b804372e0b472f3f2a18472032b9392779625 100644 (file)
@@ -21,7 +21,7 @@
 #include "support/textutils.h"
 #include "support/convert.h"
 
-#include "support/assert.h"
+#include "support/lassert.h"
 
 #include <sstream>
 
@@ -796,7 +796,7 @@ void InsetListingsParams::addParams(string const & par)
                } else if (par[i] == '=' && braces == 0) {
                        isValue = true;
                        continue;
-               } else if (par[i] == '{' && par[i - 1] == '=')
+               } else if (par[i] == '{' && i > 0 && par[i - 1] == '=')
                        braces ++;
                else if (par[i] == '}'
                        && (i == par.size() - 1 || par[i + 1] == ',' || par[i + 1] == '\n'))