]> git.lyx.org Git - lyx.git/blobdiff - src/support/textutils.h
Remove executable status info from typeIndicator.
[lyx.git] / src / support / textutils.h
index f6e1cc2e67041e0cf65653586242e92ec9777151..19867e79edbc85829ac36c76f3f6e6ee829d4a6d 100644 (file)
@@ -31,36 +31,6 @@ bool IsLineSeparatorChar(char c)
 }
 
 
-/// return true if the char is "punctuation"
-inline
-bool IsKommaChar(char c)
-{
-       return c == ','
-               || c == '('
-               || c == ')'
-               || c == '['
-               || c == ']'
-               || c == '{'
-               || c == '}'
-               || c == ';'
-               || c == '.'
-               || c == ':'
-               || c == '-'
-               || c == '?'
-               || c == '!'
-               || c == '&'
-               || c == '@'
-               || c == '+'
-               || c == '-'
-               || c == '~'
-               || c == '#'
-               || c == '%'
-               || c == '^'
-               || c == '/'
-               || c == '\\';
-}
-
-
 /// return true if a char is alphabetical (including accented chars)
 inline
 bool IsLetterChar(unsigned char c)