From: tomo Date: Tue, 16 Nov 1999 09:58:50 +0000 (+0000) Subject: Don't ignore lisp/utf-2000/ if utf-2000 is provided. X-Git-Tag: r21-2-19-utf-2000-0_13-0~171 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=7337c1dc7bff7856df7572712d9653045b6f3593;p=chise%2Fxemacs-chise.git- Don't ignore lisp/utf-2000/ if utf-2000 is provided. --- diff --git a/lib-src/update-elc.sh b/lib-src/update-elc.sh index 1333114..b109e8d 100644 --- a/lib-src/update-elc.sh +++ b/lib-src/update-elc.sh @@ -111,7 +111,16 @@ else echo Yes fi -ignore_dirs="$ignore_dirs utf-2000" +# Only use UTF-2000 XEmacs to compile UTF-2000-specific elisp dirs +echon "Checking for UTF-2000 support..." +lisp_prog='(princ (featurep (quote utf-2000)))' +mule_p="`$EMACS -batch -vanilla -eval \"$lisp_prog\"`" +if test "$utf_2000_p" = nil ; then + echo No + ignore_dirs="$ignore_dirs utf-2000" +else + echo Yes +fi # first recompile the byte-compiler, so that the other compiles take place # with the latest version (assuming we're compiling the lisp dir of the emacs