>>>> "Matthew" == Matthew O Persico
<persicom(a)acedsl.com> writes:
Matthew> I just compiled 21.5.7. When I load it up, the default
Matthew> font is not a courier new, but rather Lucidia.
This is probably because Ben put in a really big patch to the font
handling code. ISTR he changed some defaults.
Matthew> Furthermore, after I use the font menu to chnge
Matthew> to courier new, I get a loading error:
Matthew> Assertion failed: (equal enabled-behavior-list val)
I think this is a known bug. Due to a bureaucratic snafu, my fault,
the patch got applied after the release. Why changing fonts triggers
this, I'm not sure....
Either update to current CVS or apply the following patch.
Index: behavior.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/behavior.el,v
retrieving revision 1.2
diff -u -r1.2 behavior.el
--- behavior.el 2002/03/31 08:27:23 1.2
+++ behavior.el 2002/06/27 20:45:29
@@ -59,7 +59,8 @@
(disable-behavior b t))
(dolist (b enable-list)
(enable-behavior b t))
- (assert (equal enabled-behavior-list val)))))
+ (assert (equal (sort (copy-sequence enabled-behavior-list) 'string-lessp)
+ (sort (copy-sequence val) 'string-lessp))))))
:type '(repeat (symbol :tag "Behavior"))
:group 'behaviors)
--
Institute of Policy and Planning Sciences
http://turnbull.sk.tsukuba.ac.jp
University of Tsukuba Tennodai 1-1-1 Tsukuba 305-8573 JAPAN
My nostalgia for Icon makes me forget about any of the bad things. I don't
have much nostalgia for Perl, so its faults I remember. Scott Gilbert c.l.py