From xemacs-m  Sun Feb 16 07:03:11 1997
Received: from elc1.dina.kvl.dk (elc1.dina.kvl.dk [130.225.40.228])
	by xemacs.org (8.8.5/8.8.5) with SMTP id HAA24021
	for <xemacs-beta@xemacs.org>; Sun, 16 Feb 1997 07:03:10 -0600 (CST)
Received: from zuse.dina.kvl.dk (zuse.dina.kvl.dk [130.225.40.245]) by elc1.dina.kvl.dk (8.6.12/8.6.4) with ESMTP id NAA08686; Sun, 16 Feb 1997 13:53:04 +0100
Received: (abraham@localhost) by zuse.dina.kvl.dk (8.6.12/8.6.4) id OAA21134; Sun, 16 Feb 1997 14:01:39 +0100
Sender: abraham@dina.kvl.dk
To: xemacs-beta@xemacs.org
Subject: Re: XEmacs 20.1-b1 build success on Digital UNIX V3.2D
References: <9702161211.AA22274@fornet.gvc.dec.com>
Organization: The Church of Emacs
X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM<U{B+4e{k79.Ya{~':DblFPCg$
 @60,BfLv2@SKZ19cMWK0/C'v;tM:|6B'R}U1rp6CL&kN({9<zF/V{:JCg27yC)9oZjeqcQawzKfiNL
 t9}`vjmK["dRQC/qGFQq"%u|Q`:6{"Rz}b(dnl_"3$Jtqimi>|8MBp/
From: Per Abrahamsen <abraham@dina.kvl.dk>
Date: 16 Feb 1997 14:01:39 +0100
In-Reply-To: Steve Carney's message of Sun, 16 Feb 1997 13:11:14 +0100
Message-ID: <rjd8u0ucp8.fsf@zuse.dina.kvl.dk>
Lines: 45
X-Mailer: Gnus v5.4.12/Emacs 19.34
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit


Steve Carney <carney@gvc.dec.com> writes:

>   This is usually because some files were preloaded by loaddefs.el or
>   site-load.el, but were not passed to make-docfile by Makefile.

This could be the fault of custom.el, then.

It includes the code:

	(when (string-match "XEmacs" emacs-version)
	  ;; Support for special XEmacs font attributes.
	  (require 'font)

well hidden so Steve wouldn't see it.

If so, the patch below might help:  

[ `font-create-object' should probably be declared ';;;###autoload' in
  font.el ]

Index: custom.el
===================================================================
RCS file: /home/user_22/abraham/cvs/custom/custom.el,v
retrieving revision 1.61
diff -c -r1.61 custom.el
*** 1.61	1997/02/15 21:27:23
--- custom.el	1997/02/16 12:54:09
***************
*** 410,416 ****
  
  (when (string-match "XEmacs" emacs-version)
    ;; Support for special XEmacs font attributes.
!   (require 'font)
  
    (unless (fboundp 'face-font-name)
      (defun face-font-name (face &rest args)
--- 410,416 ----
  
  (when (string-match "XEmacs" emacs-version)
    ;; Support for special XEmacs font attributes.
!   (autoload 'font-create-object "font" nil)
  
    (unless (fboundp 'face-font-name)
      (defun face-font-name (face &rest args)

