aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-02-24 04:10:59 +0000
committernyamatongwe <devnull@localhost>2001-02-24 04:10:59 +0000
commitcd48a5b8d0285c04f73cbe6b05ab2aec4708c1bc (patch)
tree1bcbf27024a6121f37741b1f2be557e82d78f4db
parentfbe180d9ce47a401cf366a069e7a78e05540f014 (diff)
downloadscintilla-mirror-cd48a5b8d0285c04f73cbe6b05ab2aec4708c1bc.tar.gz
Added a parameter to GetNearestwords to allow use of another separator char
as well as '(' and ':'.
-rw-r--r--include/PropSet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/PropSet.h b/include/PropSet.h
index 90e0a266f..15d0100d6 100644
--- a/include/PropSet.h
+++ b/include/PropSet.h
@@ -65,7 +65,8 @@ public:
void SetFromAllocated();
bool InList(const char *s);
const char *GetNearestWord(const char *wordStart, int searchLen = -1, bool ignoreCase = false);
- char *GetNearestWords(const char *wordStart, int searchLen = -1, bool ignoreCase = false);
+ char *GetNearestWords(const char *wordStart, int searchLen=-1,
+ bool ignoreCase=false, char otherSeparator='\0');
};
inline bool nonFuncChar(char ch) {