diff options
author | nyamatongwe <unknown> | 2012-06-13 09:09:20 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-06-13 09:09:20 +1000 |
commit | bfc2f6ad73d6580231d9cc5b6af0cbcdcaedc923 (patch) | |
tree | c95947890199e72af7a7013ea49518baaedfbdb3 | |
parent | af7f285e34c817917c883f67c8e2e3354e7891bd (diff) | |
download | scintilla-mirror-bfc2f6ad73d6580231d9cc5b6af0cbcdcaedc923.tar.gz |
Fix extra comma. Bug #3534667.
-rw-r--r-- | include/Scintilla.iface | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 42d0ad0ec..24de70917 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2131,7 +2131,7 @@ set void SetSelectionNStart=2584(int selection, position pos) get position GetSelectionNStart=2585(int selection,) # Sets the position that ends the selection - this becomes the currentPosition. -set void SetSelectionNEnd=2586(int selection, position pos,) +set void SetSelectionNEnd=2586(int selection, position pos) # Returns the position at the end of the selection. get position GetSelectionNEnd=2587(int selection,) |