]> git.lyx.org Git - lyx.git/blobdiff - src/support/textutils.h
MacOSX compile fix.
[lyx.git] / src / support / textutils.h
index 4424f6bcdaed86b4f00fe287d7567f2feef45e9f..42bbb36c9a333701ed969468f192d823a7dba40b 100644 (file)
 #ifndef TEXTUTILS_H
 #define TEXTUTILS_H
 
+#include "support/types.h"
 
 /// return true if the char is a line separator
 inline
-bool isLineSeparatorChar(char c)
+bool isLineSeparatorChar(lyx::char_type c)
 {
        return c == ' ';
 }
@@ -26,17 +27,17 @@ bool isLineSeparatorChar(char c)
 
 /// return true if a char is alphabetical (including accented chars)
 inline
-bool isLetterChar(unsigned char c)
+bool isLetterChar(lyx::char_type c)
 {
        return (c >= 'A' && c <= 'Z')
                || (c >= 'a' && c <= 'z')
-               || (c >= 192); // in iso-8859-x these are accented chars
+               || (c >= 192 && c < 256); // in iso-8859-x these are accented chars
 }
 
 
 /// return true if the char is printable (masked to 7-bit ASCII)
 inline
-bool isPrintable(unsigned char c)
+bool isPrintable(lyx::char_type c)
 {
        return (c & 127) >= ' ';
 }
@@ -44,15 +45,14 @@ bool isPrintable(unsigned char c)
 
 /// return true if the char is printable and not a space (masked to 7-bit ASCII)
 inline
-bool isPrintableNonspace(unsigned char c)
+bool isPrintableNonspace(lyx::char_type c)
 {
        return isPrintable(c) && c != ' ';
 }
 
-
-/// completely pointless FIXME
+/// return true if a unicode char is a digit.
 inline
-bool isDigit(unsigned char ch)
+bool isDigit(lyx::char_type ch)
 {
        return ch >= '0' && ch <= '9';
 }