Update of /cvsroot/win32forth/win32forth/src/lib
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28545/src/lib
Modified Files:
ScintillaControl.f
Log Message:
Bug fix in CanPaste:
Index: ScintillaControl.f
===================================================================
RCS file: /cvsroot/win32forth/win32forth/src/lib/ScintillaControl.f,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ScintillaControl.f 14 May 2007 05:34:38 -0000 1.7
--- ScintillaControl.f 30 Jun 2008 02:54:11 -0000 1.8
***************
*** 1095,1099 ****
\ use the result of this message to enable/disable the Edit menu Undo command.
:M CanUndo: ( -- n )
! 0 SCI_CANUNDO SendMessage:Self ;M
\ undoes the effect of the last SCI_UNDO operation.
--- 1095,1099 ----
\ use the result of this message to enable/disable the Edit menu Undo command.
:M CanUndo: ( -- n )
! 0 0 SCI_CANUNDO SendMessage:Self ;M
\ undoes the effect of the last SCI_UNDO operation.
***************
*** 1105,1109 ****
\ menu Redo command
:M CanRedo: ( -- n )
! 0 SCI_CANREDO SendMessage:Self ;M
\ This command tells Scintilla to forget any saved undo or redo history. It also
--- 1105,1109 ----
\ menu Redo command
:M CanRedo: ( -- n )
! 0 0 SCI_CANREDO SendMessage:Self ;M
\ This command tells Scintilla to forget any saved undo or redo history. It also
|