aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-01-24 11:08:22 +0000
committernyamatongwe <devnull@localhost>2002-01-24 11:08:22 +0000
commite4772b7376e6b1527c3ed88ac2dba0bc95b6452a (patch)
tree505c3547e94f997cc2e890233d4e21882ba8fa41 /include
parent7b30ee22d13e9f266ee678abd9f1ac2feb946cd0 (diff)
downloadscintilla-mirror-e4772b7376e6b1527c3ed88ac2dba0bc95b6452a.tar.gz
Added parameter to WordStartPosition / WordEndPosition to indicate that
only word characters should be considered parts of words.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.iface4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 2f0efa9be..47e244b4f 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -906,10 +906,10 @@ set void SetMouseDwellTime=2264(int periodMilliseconds,)
get int GetMouseDwellTime=2265(,)
# Get position of start of word
-fun int WordStartPosition=2266(position pos,)
+fun int WordStartPosition=2266(position pos, bool onlyWordCharacters)
# Get position of end of word
-fun int WordEndPosition=2267(position pos,)
+fun int WordEndPosition=2267(position pos, bool onlyWordCharacters)
val SC_WRAP_NONE=0
val SC_WRAP_WORD=1