Martin Buchholz <martin(a)xemacs.org> writes:
This is a `robustness' release. Circular lists are much less
likely
to freeze up your xemacs. Some illegal constructs in lisp or C code
that used to be ignored are now tightened up,
Yes! It helped me catch a bug in htmlize.el. This used to run
without signaling an error:
(defvar htmlize-face-hash (make-hash-table :type 'eq))
In case it's not obvious, `:type' should really be `:test'. It wasn't
at all obvious to me.
hash-table-tests.el: 8554 of 8554 (100%) tests successful.
Testing /home/martin/x/dev/tests/automated/lisp-tests.el...
lisp-tests.el: 3188 of 3188 (100%) tests successful.
Testing /home/martin/x/dev/tests/automated/database-tests.el...
database-tests.el: 20 of 20 (100%) tests successful.
Testing /home/martin/x/dev/tests/automated/byte-compiler-tests.el...
byte-compiler-tests.el: 50 of 50 (100%) tests successful.
Done
make[1]: Leaving directory `/home/martin/x/build/uop/src'
Could you add something like "all tests completed successfully", so we
can just glance at the last line and see if any investigation is
needed?