diff options
author | nyamatongwe <devnull@localhost> | 2003-03-04 10:53:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-03-04 10:53:59 +0000 |
commit | 9258e76edf918a09e812face4af9eb66cc8771cd (patch) | |
tree | ab73038e7420a7a3902f38457b1635d8cb4fc676 /include/Scintilla.h | |
parent | fbd7b1eae711e8348d57ff75b87e06ed0cc20f04 (diff) | |
download | scintilla-mirror-9258e76edf918a09e812face4af9eb66cc8771cd.tar.gz |
Patch from Jakub to optionally implement more POSIX compatible regular
expressions. \(..\) changes to (..)
Fixes problem where find previous would not find earlier matches on same
line.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index ecdda8de1..a04dc6c50 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -285,6 +285,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCFIND_MATCHCASE 4 #define SCFIND_WORDSTART 0x00100000 #define SCFIND_REGEXP 0x00200000 +#define SCFIND_POSIX 0x00400000 #define SCI_FINDTEXT 2150 #define SCI_FORMATRANGE 2151 #define SCI_GETFIRSTVISIBLELINE 2152 |