[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
copy readtable bug already fixed
Sorry, I see that bug was reported and fixed a few months back. Here
is the fix again, from Yuasa:
The bug was about COPY-READTABLE. If you supply a readtable as the second
argument to COPY-READTABLE, then the KCL process will die. To fix the bug,
add the following two lines (marked =>) to the definition of the C function
copy_readtable in file c/read.d.
if (to == Cnil) {
....
=> } else
=> rtab = to->rt.rt_self;
for (i = 0; i < RTABSIZE; i++)
....
-- Taiichi