]> git.lyx.org Git - features.git/commitdiff
Fix uninitialized value revealed by Coverity
authorJuergen Spitzmueller <spitz@lyx.org>
Sat, 1 Sep 2018 08:41:29 +0000 (10:41 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Sat, 1 Sep 2018 08:41:29 +0000 (10:41 +0200)
src/insets/InsetLayout.cpp

index ef8e7d3f66fea3e7c97e2257ef6001cbd738fa00..e78b3ff7ef3b3bbaa6476af09cc1d7092ebbbb1f 100644 (file)
@@ -590,6 +590,7 @@ void InsetLayout::readArgument(Lexer & lex)
        arg.labelfont = inherit_font;
        arg.is_toc_caption = false;
        arg.passthru = PT_INHERITED;
+       arg.nodelims = false;
        string nr;
        lex >> nr;
        bool const postcmd = prefixIs(nr, "post:");