Update of /cvsroot/q-lang/qcalc
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9866
Modified Files:
qcalc.q
Log Message:
allow word wrap in cells spanning more than one line
Index: qcalc.q
===================================================================
RCS file: /cvsroot/q-lang/qcalc/qcalc.q,v
retrieving revision 1.133
retrieving revision 1.134
diff -C2 -d -r1.133 -r1.134
*** qcalc.q 12 Nov 2007 18:20:52 -0000 1.133
--- qcalc.q 12 Nov 2007 18:28:52 -0000 1.134
***************
*** 927,931 ****
spanned_table_item (I,J) (N,M)
! = qt IT "setSpan" (N,M) || IT
if not is_nil IT
where (I0,J0) = real_index (I,J),
--- 927,932 ----
spanned_table_item (I,J) (N,M)
! = qt IT "setSpan" (N,M) ||
! qt IT "setWordWrap" (N>1) || IT
if not is_nil IT
where (I0,J0) = real_index (I,J),
|