Update of /cvsroot/q-lang/qcalc
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6615
Modified Files:
qcalc.q
Log Message:
bugfix: timer must not process any queued GUI updates in local mode
Index: qcalc.q
===================================================================
RCS file: /cvsroot/q-lang/qcalc/qcalc.q,v
retrieving revision 1.203
retrieving revision 1.204
diff -C2 -d -r1.203 -r1.204
*** qcalc.q 30 Nov 2007 13:04:35 -0000 1.203
--- qcalc.q 30 Nov 2007 13:20:49 -0000 1.204
***************
*** 827,840 ****
not null (get REDO_LIST)
else
! qt EDIT "isRedoAvailable" ();
!
! /* In local mode we only do the minimally necessary processing here. */
!
! digest_loop = digest_loop2 if is_global;
! = do_queued_updates otherwise;
! digest_loop2 = do_queued_updates || fail; // falls through
! = digest S || digest_loop2 where S = get MSGS if #MSGS>0;
! = digest X || digest_loop2 where X = get CBQ if #CBQ>0;
= () otherwise;
--- 827,836 ----
not null (get REDO_LIST)
else
! qt EDIT "isRedoAvailable" ()
! if is_global;
! digest_loop = do_queued_updates || fail; // falls through
! = digest S || digest_loop where S = get MSGS if #MSGS>0;
! = digest X || digest_loop where X = get CBQ if #CBQ>0;
= () otherwise;
|