SL Baur <steve(a)xemacs.org> writes in xemacs-beta(a)xemacs.org:
> nbecker <nbecker(a)fred.net> writes in xemacs-beta(a)xemacs.org:
...
>> I configured without --mule, but:
...
>> Checking for Mule support...Yes <===============
> I see this too, it's a bug.
O.K. The code that produces this output looks like:
echon "Checking for Mule support..."
lisp_prog='(princ (featurep (quote mule)))'
mule_p="`$EMACS -batch -vanilla -eval \"$lisp_prog\"`"
if test "$mule_p" = nil ; then
echo No
ignore_dirs="$ignore_dirs mule"
else
echo Yes
fi
Here's the difference in output between 21.1 (which isn't broken) and
21.2 which is:
$ dec-latin1-21.1/src/xemacs -batch -vanilla \
-eval '(princ (featurep (quote mule)))'
nil
$ dec-latin1/src/xemacs -batch -vanilla \
-eval '(princ (featurep (quote mule)))'
nil
$
What is the reason for the leading linefeed in the output of 21.2?