diff options
author | nyamatongwe <devnull@localhost> | 2000-10-16 10:58:24 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-10-16 10:58:24 +0000 |
commit | 517692e10fa73e5bdab499c7127fd33e8814a233 (patch) | |
tree | 5137098751a63a18dcd7a6db8823fa6ed3c9257d /src/Document.h | |
parent | 1bbf2f102eed4474c183ad1d99eb66d3ed4c2145 (diff) | |
download | scintilla-mirror-517692e10fa73e5bdab499c7127fd33e8814a233.tar.gz |
Merged Jason's WordPart left and right movement patch.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h index af477dd79..c89d677a2 100644 --- a/src/Document.h +++ b/src/Document.h @@ -188,6 +188,10 @@ public: const WatcherWithUserData *GetWatchers() const { return watchers; } int GetLenWatchers() const { return lenWatchers; } + bool IsWordPartSeparator(char ch); + int WordPartLeft(int pos); + int WordPartRight(int pos); + private: bool IsDBCS(int pos); bool IsWordChar(unsigned char ch); |