| 1303 | } |
| 1304 | |
| 1305 | CharClassify::cc Document::WordCharClass(unsigned char ch) { |
| 1306 | if ((SC_CP_UTF8 == dbcsCodePage) && (!UTF8IsAscii(ch))) |
| 1307 | return CharClassify::ccWord; |
| 1308 | return charClass.GetClass(ch); |
| 1309 | } |
| 1310 | |
| 1311 | /** |
| 1312 | * Used by commmands that want to select whole words. |
nothing calls this directly
no test coverage detected