aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-01-24 11:08:22 +0000
committernyamatongwe <unknown>2002-01-24 11:08:22 +0000
commit01dce90a53e864aa280506904441b9e1efb53da3 (patch)
tree505c3547e94f997cc2e890233d4e21882ba8fa41 /include
parent449c9cedd4861e59fe19d3fd0731688ebbcbb8e1 (diff)
downloadscintilla-mirror-01dce90a53e864aa280506904441b9e1efb53da3.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