From xemacs-m  Sat Jul 19 22:55:04 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 WAA26117
	for <xemacs-beta@xemacs.org>; Sat, 19 Jul 1997 22:55:03 -0500 (CDT)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.6/8.8.6) id UAA10462;
	Sat, 19 Jul 1997 20:58:28 -0700
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Re: el compile prob w/latin
References: <E0wpl8A-0003O9-00@neptune.corp.comsat.com>
X-Face: `'%\i;ySOu]g?NlziJSk_$&@]KP`}~PEQPjZ5;nxSaDW_o$4+4%Ab]%Ifw3ZR;7TIT3,O,'
 @2{L;]ox6kc;$_5kU'n**9vFg-]eV~GbxSVCx|(s%uR[],*:^WKmC`B}(;|k9/m]gwt?&`t;^rfCJg
 khHH>pP1W\)xM0U@!FNDD72{3fDP$PkBhx^7Z?-WxH6DbFN:QOnT`llzW}VGdYv;n9lzljQvKTIBhQ
 YuV
X-Attribution: sb
From: SL Baur <steve@xemacs.org>
In-Reply-To: 's message of "Sat, 19 Jul 1997 21:49:50 -0400"
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: text/plain; charset=US-ASCII
Date: 19 Jul 1997 20:58:27 -0700
Message-ID: <m2bu3yidcs.fsf@altair.xemacs.org>
Lines: 53
X-Mailer: Gnus v5.4.63/XEmacs 20.3(beta15) - "Berlin"

neal  <neal@ctd.comsat.com> writes:

> I'm patching up to b14/Latin.  Is this normal?
> While compiling toplevel forms in file /usr/local/src/xemacs-20.3-b14/lisp/tl/char-table.el:
>   !! End of stream ((#<buffer " *Compiler Input*">))
> Compiling /usr/local/src/xemacs-20.3-b14/lisp/tl/chartblxmas.el...
> While compiling toplevel forms in file /usr/local/src/xemacs-20.3-b14/lisp/tl/chartblxmas.el:
>   !! End of stream (("internal input stream"))

chartblxmas.el and char-table.el are only compilable (and usable) with
XEmacs/Mule.

1997-07-19  SL Baur  <steve@altair.xemacs.org>

	* update-elc.sh (mule_p): Do not attempt to bytecompile
	char-table.el and chartblxmas.el.

Index: lib-src/update-elc.sh
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lib-src/update-elc.sh,v
retrieving revision 1.21
diff -u -r1.21 update-elc.sh
--- update-elc.sh	1997/07/09 04:31:03	1.21
+++ update-elc.sh	1997/07/20 03:48:51
@@ -69,14 +69,18 @@
 
 # Compute patterns to ignore when searching for files
 ignore_dirs=""
+ignore_pattern=''
 
 # Only use Mule XEmacs to compile Mule-specific elisp dirs
 echon "Checking for Mule support..."
 lisp_prog='(princ (featurep (quote mule)))'
 mule_p="`$EMACS -batch -no-site-file -eval \"$lisp_prog\"`"
 if test "$mule_p" = nil ; then
-  echo No
-  ignore_dirs="$ignore_dirs its egg mule language leim"
+	echo No
+	ignore_dirs="$ignore_dirs its egg mule language leim"
+	ignore_pattern='\!/tl/char-table.el$!d
+\!/tl/chartblxmas.el$!d
+'
 else
   echo Yes
 fi
@@ -124,7 +128,6 @@
 make_special oobr HYPB_ELC='' elc
 make_special w3 xemacs-w3
 
-ignore_pattern=''
 for dir in $ignore_dirs ; do
   ignore_pattern="${ignore_pattern}/\\/$dir\\//d
 /\\/$dir\$/d

