diff options
author | nyamatongwe <unknown> | 2002-05-20 07:34:07 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-05-20 07:34:07 +0000 |
commit | 94b85e1fad1ca53b56fa1e1d41c5627849603b27 (patch) | |
tree | 47fb5a85c3f1a491576ae9b06af25016631be14d /src/DocumentAccessor.h | |
parent | 01629f9e76ae6614b54631f3dbabad7301ddda27 (diff) | |
download | scintilla-mirror-94b85e1fad1ca53b56fa1e1d41c5627849603b27.tar.gz |
Added a Match method to Accessor to make it easy to check for strings in a document. Moved IsASpaceOrTab into StyleContext header.
Diffstat (limited to 'src/DocumentAccessor.h')
-rw-r--r-- | src/DocumentAccessor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DocumentAccessor.h b/src/DocumentAccessor.h index 5b68dd15c..dc591d13e 100644 --- a/src/DocumentAccessor.h +++ b/src/DocumentAccessor.h @@ -38,6 +38,7 @@ public: startSeg(0), startPosStyling(0) { } ~DocumentAccessor(); + bool Match(int pos, const char *s); char StyleAt(int position); int GetLine(int position); int LineStart(int line); |