]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetspecialchar.C
index 2b30693a010a0d33019b38d69ba839a861d036d8..b75d573b3700ced7100e567015602675370dd7d5 100644 (file)
@@ -344,5 +344,13 @@ bool InsetSpecialChar::isSpace() const
 
 bool InsetSpecialChar::isLineSeparator() const
 {
+#if 0
+       // this would be nice, but it does not work, since
+       // Paragraph::stripLeadingSpaces nukes the characters which
+       // have this property. I leave the code here, since it should
+       // eventually be made to work. (JMarc 20020327)
        return kind_ == HYPHENATION || kind_ == MENU_SEPARATOR;
+#else
+       return false;
+#endif
 }