From xemacs-m  Fri Sep 19 13:03:03 1997
Received: from mecca.spd.louisville.edu (mecca.spd.louisville.edu [136.165.40.148])
	by xemacs.org (8.8.5/8.8.5) with SMTP id NAA16869
	for <xemacs-beta@xemacs.org>; Fri, 19 Sep 1997 13:03:00 -0500 (CDT)
Received: (from tjchol01@localhost) by mecca.spd.louisville.edu (950413.SGI.8.6.12/8.6.12) id SAA02464; Fri, 19 Sep 1997 18:02:10 GMT
Date: Fri, 19 Sep 1997 18:02:10 GMT
Message-Id: <199709191802.SAA02464@mecca.spd.louisville.edu>
From: Tomasz Cholewo <tjchol01@mecca.spd.louisville.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: XEmacs-Beta Mailing List <xemacs-beta@xemacs.org>
Subject: [patch] site-packages fix
X-Mailer: VM 6.33 under 20.3 "Tirana" XEmacs  Lucid (beta20)

I was trying to put something into site-packages but whenever it was not 
empty I was getting "`not' function not bound" errors during dump.
The simple fix follows.

1997-09-19  Tomasz Cholewo  <tjchol01@mecca.spd.louisville.edu>

	* prim/make-docfile.el: Use null, not not.

--- lisp/prim/make-docfile.el.orig	Fri Sep 19 13:55:41 1997
+++ lisp/prim/make-docfile.el	Fri Sep 19 13:55:51 1997
@@ -124,7 +124,7 @@
       (load site-file-list t t)
       (while site-load-packages
 	(let ((arg (car site-load-packages)))
-	  (if (not (member arg processed))
+	  (if (null (member arg processed))
 	      (progn
 		(if (and (null docfile-out-of-date)
 			 (file-newer-than-file-p arg docfile))


-- Tomasz Cholewo

