From xemacs-m  Fri Jun 27 12:58:13 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id MAA01980
	for <xemacs-beta@xemacs.org>; Fri, 27 Jun 1997 12:58:12 -0500 (CDT)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.6/8.8.6) id LAA30167;
	Fri, 27 Jun 1997 11:01:08 -0700
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: malformed property list in richtext, enriched
References: <8790zwq71r.fsf@mharnois.workgroup.net>
X-Url: http://www.miranova.com/%7Esteve/
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@xemacs.org>
In-Reply-To: Michael Harnois's message of "27 Jun 1997 12:39:28 -0500"
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: text/plain; charset=US-ASCII
Date: 27 Jun 1997 11:01:08 -0700
Message-ID: <m2k9jg0vtn.fsf@altair.xemacs.org>
Lines: 47
X-Mailer: Gnus v5.4.59/XEmacs 20.3(beta10) - "Athens"

Michael Harnois <mharnois@sbt.net> writes:

> Am I correct in thinking this is infelicitous?
> Compiling /xemacs-20.3-b9/lisp/apel/richtext.el...
> While compiling toplevel forms in file /xemacs-20.3-b9/lisp/apel/richtext.el:
>   !! Malformed property list ((0 0))
> Compiling /xemacs-20.3-b9/lisp/modes/enriched.el...
> While compiling toplevel forms in file /xemacs-20.3-b9/lisp/modes/enriched.el:
>   !! Malformed property list ((0 0))

Hmm, that looks familiar.  I wish I knew where it was coming from.

I added the following patch to autoload.el between beta7 and beta8

@@ -498,7 +514,9 @@
     (insert
      (with-output-to-string
       (mapatoms (lambda (symbol)
-                 (let ((members (get symbol 'custom-group))
+                 (let ((members (condition-case nil
+                                    (get symbol 'custom-group)
+                                  (t nil)))
                        item where found)
                    (when members
                      (princ "(put '")

because that error was afflicting custom load generation.  (It would
get through all the source and bomb with that message at the end and
ruin the whole run).



$ ../../src/xemacs -batch -f batch-byte-compile richtext.el
Compiling /usr/src/xemacs-20.0/lisp/apel/richtext.el...
Wrote /usr/src/xemacs-20.0/lisp/apel/richtext.elc
Done
$ cd ../modes
$ ../../src/xemacs -batch -f batch-byte-compile enriched.el
Compiling /usr/src/xemacs-20.0/lisp/modes/enriched.el...
While compiling the end of the data in file /usr/src/xemacs-20.0/lisp/modes/enriched.el:
  ** the function facemenu-get-face is not known to be defined.
Wrote /usr/src/xemacs-20.0/lisp/modes/enriched.elc
Done
$ 
-- 
steve@calag.com baur
Unsolicited commercial e-mail will be billed at $250/message.

