# Returns the position at the start of the selection.
get position GetSelectionNStart=2585(,)
# Returns the position at the end of the selection.
get position GetSelectionNEnd=2587(,)
This should be
# Returns the position at the start of the selection.
get position GetSelectionNStart=2585(int selection,)
# Returns the position at the end of the selection.
get position GetSelectionNEnd=2587(int selection,)
> The documentation says, that SCI_GETSELECTIONNSTART and
> SCI_GETSELECTIONNEND have a parameter 'int selection'. This parameter
> is missing in scintilla.iface
Fixed in CVS.
Neil