diff options
author | nyamatongwe <devnull@localhost> | 2002-05-20 07:34:07 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-05-20 07:34:07 +0000 |
commit | 457f1a4f6b7b7c066db3842f0d2f622afb85a3ed (patch) | |
tree | 47fb5a85c3f1a491576ae9b06af25016631be14d /src/DocumentAccessor.h | |
parent | 51abc6e7d4e9c37a98266eba25589c24a713d64b (diff) | |
download | scintilla-mirror-457f1a4f6b7b7c066db3842f0d2f622afb85a3ed.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); |