]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbib.C
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetbib.C
index 03adf891373dbe62b56fbbf2607684d9366ad8a4..d314ad7013c235f5c9cf0a11f710e4496a4bbb11 100644 (file)
@@ -252,7 +252,7 @@ vector<pair<string, string> > const InsetBibtex::getKeys(Buffer const * buffer)
                string linebuf0;
                while (getline(ifs, linebuf0)) {
                        string linebuf = frontStrip(strip(linebuf0));
-                       if (linebuf.empty() ) continue;
+                       if (linebuf.empty()) continue;
                        if (prefixIs(linebuf, "@")) {
                                linebuf = subst(linebuf, '{', '(');
                                string tmp;