]> git.lyx.org Git - lyx.git/blobdiff - src/support/textutils.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / textutils.h
index fe07ee7c2c910930b191b415fa7932b09cb10309..8dcb0acc3a804ded53e95e6dca5fb17f0195e8fa 100644 (file)
 #ifndef TEXTUTILS_H
 #define TEXTUTILS_H
 
-/// return true if the char is a meta-character newline
-inline
-bool IsNewlineChar(char c)
-{
-       return (c == Paragraph::META_NEWLINE);
-}
-
-
 /// return true if the char is a word separator
 inline
 bool IsSeparatorChar(char c)
@@ -74,7 +66,6 @@ bool IsKommaChar(char c)
                || c == '^'
                || c == '/'
                || c == '\\'
-               || c == Paragraph::META_NEWLINE
                );
 }