From: tomo Date: Tue, 13 Aug 2002 05:46:31 +0000 (+0000) Subject: Sync up with r21-2-45-utf-2000-0_19-0. X-Git-Tag: r21-2-45-utf-2000-0_19-nc4-b5-1-2 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b24a82be4ed4916738cbed097d8dfc96ec312435;p=chise%2Fxemacs-chise.git.1 Sync up with r21-2-45-utf-2000-0_19-0. --- diff --git a/CHANGES-beta b/CHANGES-beta index 1421817..a762b32 100644 --- a/CHANGES-beta +++ b/CHANGES-beta @@ -1,3 +1,12 @@ +to 21.2.45 "Thelxepeia" +-- lib-src Makefile fixes -- Martin Buchholz +-- startup path fixes -- Michael Sperber +-- Port FSF 20.7 syntax table improvements -- Matt Tucker +-- --pdump now works with HP-UX native cc -- Martin Buchholz +-- copy-file now works correctly with non-ascii filenames -- Martin Buchholz +-- More pdump improvements -- Martin Buchholz +-- Prefer more standard utime() to utimes() -- Martin Buchholz + to 21.2.44 "Thalia" -- Upgrade to etags 14.15 -- Francesco Potorti -- XEmacs now works on Unixware 7 -- Martin Buchholz diff --git a/ChangeLog b/ChangeLog index 74ec7b4..19714cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -56,6 +56,31 @@ * configure.in: Add new option `--with-utf-2000'; define `UTF2000' if it is specified. +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-13 Martin Buchholz + + * aclocal.m4: Fix module support for AIX cc. + Support possible future OSes irix7, aix5, osf[56]. + +2001-02-12 Martin Buchholz + + * configure.in: No need for NON_GNU_CPP on SCO. + +2001-02-10 Martin Buchholz + + * etc/MACHINES: Rewritten. Bitrot discarded. + +2001-02-09 Martin Buchholz + + * configure.in: Prefer utime to utimes - it's more standard. + Remove explicit checking for struct utimbuf. + Remove explicit checking for . + Combined into one simpler test for utime. + Add explicit check for utimes, if utime not found. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/aclocal.m4 b/aclocal.m4 index 9dd7ecf..7e20505 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -88,11 +88,11 @@ if test "$XEGCC" = yes; then wl='-Wl,' case "$xehost_os" in - aix3* | aix4* | irix5* | irix6* | osf3* | osf4*) + aix[[3-9]]* | irix[[5-9]]* | osf[[3-9]]) # PIC is the default for these OSes. ;; - aix3* | aix4* | os2*) + os2*) # We can build DLLs from non-PIC. ;; amigaos*) @@ -117,7 +117,7 @@ else dll_cflags='+Z' ;; - irix5* | irix6*) + irix[[5-9]]*) wl='-Wl,' # PIC (with -KPIC) is the default. ;; @@ -126,11 +126,16 @@ else # We can build DLLs from non-PIC. ;; - osf3* | osf4*) + osf[[3-9]]*) # All OSF/1 code is PIC. wl='-Wl,' ;; + aix[[3-9]]*) + # All AIX code is PIC. + wl='-Wl,' + ;; + sco3.2v5*) dll_cflags='-belf -Kpic' wl='-Wl,' @@ -243,7 +248,7 @@ if test "$XEGCC" = yes; then xldf="-shared" else # Not using GCC case "$xehost_os" in - aix3* | aix4*) + aix[[3-9]]*) xldf="-bE:ELLSONAME.exp -H512 -T512 -bhalt:4 -bM:SRE -bnoentry -lc" xcldf="${wl}-bE:ELLSONAME.exp ${wl}-H512 ${wl}-T512 ${wl}-bhalt:4 ${wl}-bM:SRE ${wl}-bnoentry ${wl}-lc" ;; @@ -262,7 +267,7 @@ else # Not using GCC xcldf="${wl}-b ${wl}+s" ;; - irix5* | irix6* | osf3* | osf4*) + irix[[5-9]]* | osf[[3-9]]*) xcldf="${wl}-shared" xldf="-shared" ;; @@ -415,7 +420,7 @@ else dll_ldflags=$xldf ;; - aix4*) + aix[[4-9]]*) dll_ldflags=$xcldf ;; @@ -445,7 +450,7 @@ else dll_ldflags=$xldf ;; - irix5* | irix6*) + irix[[5-9]]*) dll_ld=$LTLD dll_ldflags=$xldf ;; @@ -532,11 +537,7 @@ fi if test -z "$ld_dynamic_link_flags"; then case "$xehost_os" in - aix3*) - ld_dynamic_link_flags= - ;; - - aix4*) + aix[[3-9]]*) ld_dynamic_link_flags= ;; @@ -556,7 +557,7 @@ if test -z "$ld_dynamic_link_flags"; then ld_dynamic_link_flags="${wl}-E" ;; - irix5* | irix6*) + irix[[5-9]]*) ld_dynamic_link_flags= ;; diff --git a/configure b/configure index 29d61d5..a7fb810 100755 --- a/configure +++ b/configure @@ -3,10 +3,11 @@ #### Configuration script for XEmacs. Largely divergent from FSF. #### Guess values for system-dependent variables and create Makefiles. #### Generated automatically using autoconf version 2.13 -#### Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. +#### Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. #### Copyright (C) 1993-1995 Board of Trustees, University of Illinois. #### Copyright (C) 1996, 1997 Sun Microsystems, Inc. #### Copyright (C) 1995, 1996 Ben Wing. +#### Copyright (C) 2000, 2001 Martin Buchholz. #### Copyright (C) 1998, 1999 J. Kean Johnston. ### Don't edit this script! @@ -837,7 +838,7 @@ echo " Use \`$progname --help' to show usage.") >&2 && exit 1 fi echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:841: checking whether ln -s works" >&5 +echo "configure:842: checking whether ln -s works" >&5 rm -f conftestdata if ln -s X conftestdata 2>/dev/null @@ -1102,7 +1103,7 @@ EOF echo $ac_n "checking "host system type"""... $ac_c" 1>&6 -echo "configure:1106: checking "host system type"" >&5 +echo "configure:1107: checking "host system type"" >&5 internal_configuration=`echo $configuration | sed 's/-\(workshop\)//'` canonical=`${CONFIG_SHELL-/bin/sh} $srcdir/config.sub "$internal_configuration"` configuration=`echo "$configuration" | sed 's/^\([^-][^-]*-[^-][^-]*-[^-][^-]*\)-.*$/\1/'` @@ -1481,12 +1482,7 @@ EOF *-bsdi3* ) opsys=bsdos3 ;; *-bsdi2.1* ) opsys=bsdos2-1 ;; *-bsdi2* ) opsys=bsdos2 ;; - *-sco3.2v5* ) opsys=sco5 ; - if test "$dynamic" = "yes" ; then - NON_GNU_CPP="/lib/cpp -D_XOPEN_SOURCE -D_SCO_ELF" ; - else - NON_GNU_CPP="/lib/cpp -D_XOPEN_SOURCE" ; - fi ;; + *-sco3.2v5* ) opsys=sco5 ;; *-sysv5* ) opsys=sco7 ;; *-386bsd* ) opsys=386bsd ;; *-freebsd* ) opsys=freebsd ;; @@ -1621,7 +1617,7 @@ xe_save_CFLAGS="$CFLAGS" # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1625: checking for $ac_word" >&5 +echo "configure:1621: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -1648,7 +1644,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1652: checking for $ac_word" >&5 +echo "configure:1648: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -1696,7 +1692,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1700: checking for $ac_word" >&5 +echo "configure:1696: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -1725,7 +1721,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1729: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:1725: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c xe_cppflags='$CPPFLAGS $c_switch_site $c_switch_machine $c_switch_system $c_switch_x_site $X_CFLAGS' @@ -1738,12 +1734,12 @@ cross_compiling=no cat > conftest.$ac_ext << EOF -#line 1742 "configure" +#line 1738 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:1747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -1771,19 +1767,19 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1775: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:1771: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1780: checking whether we are using GNU C" >&5 +echo "configure:1776: checking whether we are using GNU C" >&5 cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1783: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -1801,7 +1797,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1805: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:1801: checking whether ${CC-cc} accepts -g" >&5 echo 'void f(){}' > conftest.c if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then @@ -1834,7 +1830,7 @@ if test "$with_gcc" = "no" -a "$GCC" = "yes"; then # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1838: checking for $ac_word" >&5 +echo "configure:1834: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -1861,7 +1857,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1865: checking for $ac_word" >&5 +echo "configure:1861: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -1909,7 +1905,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1913: checking for $ac_word" >&5 +echo "configure:1909: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -1938,7 +1934,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1942: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:1938: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c xe_cppflags='$CPPFLAGS $c_switch_site $c_switch_machine $c_switch_system $c_switch_x_site $X_CFLAGS' @@ -1951,12 +1947,12 @@ cross_compiling=no cat > conftest.$ac_ext << EOF -#line 1955 "configure" +#line 1951 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:1960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -1984,19 +1980,19 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1988: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:1984: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1993: checking whether we are using GNU C" >&5 +echo "configure:1989: checking whether we are using GNU C" >&5 cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1996: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -2014,7 +2010,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:2018: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:2014: checking whether ${CC-cc} accepts -g" >&5 echo 'void f(){}' > conftest.c if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then @@ -2047,7 +2043,7 @@ elif test "$with_gcc" = "yes" -a "$GCC" != "yes" ; then # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2051: checking for $ac_word" >&5 +echo "configure:2047: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -2074,7 +2070,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2078: checking for $ac_word" >&5 +echo "configure:2074: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -2122,7 +2118,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2126: checking for $ac_word" >&5 +echo "configure:2122: checking for $ac_word" >&5 if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. @@ -2151,7 +2147,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:2155: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:2151: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c xe_cppflags='$CPPFLAGS $c_switch_site $c_switch_machine $c_switch_system $c_switch_x_site $X_CFLAGS' @@ -2164,12 +2160,12 @@ cross_compiling=no cat > conftest.$ac_ext << EOF -#line 2168 "configure" +#line 2164 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:2173: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2169: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -2197,19 +2193,19 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:2201: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:2197: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:2206: checking whether we are using GNU C" >&5 +echo "configure:2202: checking whether we are using GNU C" >&5 cat > conftest.c <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2209: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -2227,7 +2223,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:2231: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:2227: checking whether ${CC-cc} accepts -g" >&5 echo 'void f(){}' > conftest.c if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then @@ -2264,7 +2260,7 @@ test -n "$CPP" -a -d "$CPP" && CPP= test -n "$NON_GNU_CPP" -a "$GCC" != "yes" -a -z "$CPP" && CPP="$NON_GNU_CPP" echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:2268: checking how to run the C preprocessor" >&5 +echo "configure:2264: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -2277,13 +2273,13 @@ if test -z "$CPP"; then # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2287: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2283: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2294,13 +2290,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2304: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2300: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2311,13 +2307,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2321: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2317: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2343,9 +2339,9 @@ echo "$ac_t""$CPP" 1>&6 echo $ac_n "checking for AIX""... $ac_c" 1>&6 -echo "configure:2347: checking for AIX" >&5 +echo "configure:2343: checking for AIX" >&5 cat > conftest.$ac_ext <&6 -echo "configure:2376: checking for GNU libc" >&5 +echo "configure:2372: checking for GNU libc" >&5 cat > conftest.$ac_ext < int main() { @@ -2386,7 +2382,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:2390: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2386: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* have_glibc=yes else @@ -2463,7 +2459,7 @@ EOF esac cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:2477: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then : else @@ -2711,17 +2707,17 @@ test "$__DECC" = "yes" && c_switch_site="$c_switch_site -std1" && if test "$ext if test "$__USLC__" = yes; then echo $ac_n "checking for whether the -Kalloca compiler flag is needed""... $ac_c" 1>&6 -echo "configure:2715: checking for whether the -Kalloca compiler flag is needed" >&5 +echo "configure:2711: checking for whether the -Kalloca compiler flag is needed" >&5 need_kalloca=no cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2721: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* : else @@ -2732,14 +2728,14 @@ else xe_save_c_switch_system="$c_switch_system" c_switch_system="$c_switch_system -Kalloca" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* need_kalloca=yes else @@ -2773,7 +2769,7 @@ fi if test "$GCC" = "yes"; then echo $ac_n "checking for buggy gcc versions""... $ac_c" 1>&6 -echo "configure:2777: checking for buggy gcc versions" >&5 +echo "configure:2773: checking for buggy gcc versions" >&5 GCC_VERSION=`$CC --version` case `uname -s`:`uname -m`:$GCC_VERSION in *:sun4*:2.8.1|*:sun4*:egcs-2.90.*) @@ -2896,7 +2892,7 @@ test "$pdump" = "yes" && extra_objs="$extra_objs dumper.o" && if test "$extra_v fi echo $ac_n "checking for dynodump""... $ac_c" 1>&6 -echo "configure:2900: checking for dynodump" >&5 +echo "configure:2896: checking for dynodump" >&5 if test "$unexec" != "unexsol2.o"; then echo "$ac_t""no" 1>&6 else @@ -2934,12 +2930,12 @@ if test "$unexec" = "unexaix.o"; then done echo $ac_n "checking for terminateAndUnload in -lC""... $ac_c" 1>&6 -echo "configure:2938: checking for terminateAndUnload in -lC" >&5 +echo "configure:2934: checking for terminateAndUnload in -lC" >&5 ac_lib_var=`echo C'_'terminateAndUnload | sed 'y%./+-%__p_%'` xe_check_libs=" -lC " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2950: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3058,7 +3054,7 @@ fi if test "$add_runtime_path" = "yes"; then echo $ac_n "checking "for runtime libraries flag"""... $ac_c" 1>&6 -echo "configure:3062: checking "for runtime libraries flag"" >&5 +echo "configure:3058: checking "for runtime libraries flag"" >&5 case "$opsys" in sol2 ) dash_r="-R" ;; decosf* | linux* | irix*) dash_r="-rpath " ;; @@ -3080,14 +3076,14 @@ if test "$GCC" = "yes"; then done fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3087: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* dash_r="$try_dash_r" else @@ -3180,7 +3176,6 @@ fi - GNU_MALLOC=yes if test "$with_dlmalloc" != "no"; then doug_lea_malloc=yes @@ -3189,10 +3184,10 @@ else fi after_morecore_hook_exists=yes echo $ac_n "checking for malloc_set_state""... $ac_c" 1>&6 -echo "configure:3193: checking for malloc_set_state" >&5 +echo "configure:3188: checking for malloc_set_state" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_malloc_set_state=yes" else @@ -3235,16 +3230,16 @@ doug_lea_malloc=no fi echo $ac_n "checking whether __after_morecore_hook exists""... $ac_c" 1>&6 -echo "configure:3239: checking whether __after_morecore_hook exists" >&5 +echo "configure:3234: checking whether __after_morecore_hook exists" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 else @@ -3300,7 +3295,7 @@ fi # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3304: checking for $ac_word" >&5 +echo "configure:3299: checking for $ac_word" >&5 if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. @@ -3355,7 +3350,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:3359: checking for a BSD compatible install" >&5 +echo "configure:3354: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=":" @@ -3409,7 +3404,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3413: checking for $ac_word" >&5 +echo "configure:3408: checking for $ac_word" >&5 if test -n "$YACC"; then ac_cv_prog_YACC="$YACC" # Let the user override the test. @@ -3437,19 +3432,19 @@ done test -n "$YACC" || YACC="yacc" -for ac_hdr in a.out.h elf.h cygwin/version.h fcntl.h inttypes.h libgen.h locale.h mach/mach.h sys/param.h sys/pstat.h sys/time.h sys/timeb.h sys/un.h ulimit.h unistd.h utime.h +for ac_hdr in a.out.h elf.h cygwin/version.h fcntl.h inttypes.h libgen.h locale.h mach/mach.h sys/param.h sys/pstat.h sys/time.h sys/timeb.h sys/un.h ulimit.h unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3445: checking for $ac_hdr" >&5 +echo "configure:3440: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3453: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3448: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3479,10 +3474,10 @@ fi done echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6 -echo "configure:3483: checking for sys/wait.h that is POSIX.1 compatible" >&5 +echo "configure:3478: checking for sys/wait.h that is POSIX.1 compatible" >&5 cat > conftest.$ac_ext < #include @@ -3498,7 +3493,7 @@ wait (&s); s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } EOF -if { (eval echo configure:3502: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3497: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_sys_wait_h=yes else @@ -3522,10 +3517,10 @@ EOF fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:3526: checking for ANSI C header files" >&5 +echo "configure:3521: checking for ANSI C header files" >&5 cat > conftest.$ac_ext < #include @@ -3533,7 +3528,7 @@ cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3537: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3532: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3550,7 +3545,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3568,7 +3563,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3586,7 +3581,7 @@ fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -3597,7 +3592,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:3601: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:3596: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then : else @@ -3623,10 +3618,10 @@ EOF fi echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:3627: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:3622: checking whether time.h and sys/time.h may both be included" >&5 cat > conftest.$ac_ext < #include @@ -3635,7 +3630,7 @@ int main() { struct tm *tp; ; return 0; } EOF -if { (eval echo configure:3639: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3634: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -3659,10 +3654,10 @@ EOF fi echo $ac_n "checking for sys_siglist declaration in signal.h or unistd.h""... $ac_c" 1>&6 -echo "configure:3663: checking for sys_siglist declaration in signal.h or unistd.h" >&5 +echo "configure:3658: checking for sys_siglist declaration in signal.h or unistd.h" >&5 cat > conftest.$ac_ext < #include @@ -3674,7 +3669,7 @@ int main() { char *msg = *(sys_siglist + 1); ; return 0; } EOF -if { (eval echo configure:3678: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3673: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_decl_sys_siglist=yes else @@ -3698,36 +3693,26 @@ EOF fi -echo $ac_n "checking for struct utimbuf""... $ac_c" 1>&6 -echo "configure:3703: checking for struct utimbuf" >&5 + +echo $ac_n "checking for utime""... $ac_c" 1>&6 +echo "configure:3699: checking for utime" >&5 cat > conftest.$ac_ext < -#include -#else -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#endif -#ifdef HAVE_UTIME_H +#include #include -#endif int main() { -static struct utimbuf x; x.actime = x.modtime; +struct utimbuf x; x.actime = x.modtime = 0; utime ("/", &x); ; return 0; } EOF -if { (eval echo configure:3724: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3709: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 { test "$extra_verbose" = "yes" && cat << \EOF - Defining HAVE_STRUCT_UTIMBUF + Defining HAVE_UTIME EOF cat >> confdefs.h <<\EOF -#define HAVE_STRUCT_UTIMBUF 1 +#define HAVE_UTIME 1 EOF } @@ -3736,14 +3721,71 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* echo "$ac_t""no" 1>&6 + for ac_func in utimes +do +echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 +echo "configure:3728: checking for $ac_func" >&5 + +cat > conftest.$ac_ext < +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func(); + +int main() { + +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +$ac_func(); +#endif + +; return 0; } +EOF +if { (eval echo configure:3754: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_func_$ac_func=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_func_$ac_func=no" +fi +rm -f conftest* + +if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then + echo "$ac_t""yes" 1>&6 + ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` + { test "$extra_verbose" = "yes" && cat << EOF + Defining $ac_tr_func +EOF +cat >> confdefs.h <&6 +fi +done + fi rm -f conftest* + echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 -echo "configure:3744: checking return type of signal handlers" >&5 +echo "configure:3786: checking return type of signal handlers" >&5 cat > conftest.$ac_ext < #include @@ -3760,7 +3802,7 @@ int main() { int i; ; return 0; } EOF -if { (eval echo configure:3764: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3806: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_type_signal=void else @@ -3782,10 +3824,10 @@ EOF echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:3786: checking for size_t" >&5 +echo "configure:3828: checking for size_t" >&5 cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3816,10 +3858,10 @@ EOF fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:3820: checking for pid_t" >&5 +echo "configure:3862: checking for pid_t" >&5 cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3850,10 +3892,10 @@ EOF fi echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:3854: checking for uid_t in sys/types.h" >&5 +echo "configure:3896: checking for uid_t in sys/types.h" >&5 cat > conftest.$ac_ext < EOF @@ -3889,10 +3931,10 @@ EOF fi echo $ac_n "checking for mode_t""... $ac_c" 1>&6 -echo "configure:3893: checking for mode_t" >&5 +echo "configure:3935: checking for mode_t" >&5 cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3923,10 +3965,10 @@ EOF fi echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:3927: checking for off_t" >&5 +echo "configure:3969: checking for off_t" >&5 cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3957,10 +3999,10 @@ EOF fi echo $ac_n "checking for ssize_t""... $ac_c" 1>&6 -echo "configure:3961: checking for ssize_t" >&5 +echo "configure:4003: checking for ssize_t" >&5 cat > conftest.$ac_ext < #if STDC_HEADERS @@ -3992,9 +4034,9 @@ fi echo $ac_n "checking for socklen_t""... $ac_c" 1>&6 -echo "configure:3996: checking for socklen_t" >&5 +echo "configure:4038: checking for socklen_t" >&5 cat > conftest.$ac_ext < socklen_t x; @@ -4003,7 +4045,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:4007: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4049: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 else @@ -4012,7 +4054,7 @@ else rm -rf conftest* cat > conftest.$ac_ext < int accept (int, struct sockaddr *, size_t *); @@ -4021,7 +4063,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:4025: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4067: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""size_t" 1>&6 @@ -4053,9 +4095,9 @@ fi rm -f conftest* echo $ac_n "checking for struct timeval""... $ac_c" 1>&6 -echo "configure:4057: checking for struct timeval" >&5 +echo "configure:4099: checking for struct timeval" >&5 cat > conftest.$ac_ext < @@ -4071,7 +4113,7 @@ int main() { static struct timeval x; x.tv_sec = x.tv_usec; ; return 0; } EOF -if { (eval echo configure:4075: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4117: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 HAVE_TIMEVAL=yes @@ -4093,10 +4135,10 @@ fi rm -f conftest* echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 -echo "configure:4097: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "configure:4139: checking whether struct tm is in sys/time.h or time.h" >&5 cat > conftest.$ac_ext < #include @@ -4104,7 +4146,7 @@ int main() { struct tm *tp; tp->tm_sec; ; return 0; } EOF -if { (eval echo configure:4108: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4150: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm=time.h else @@ -4128,10 +4170,10 @@ EOF fi echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6 -echo "configure:4132: checking for tm_zone in struct tm" >&5 +echo "configure:4174: checking for tm_zone in struct tm" >&5 cat > conftest.$ac_ext < #include <$ac_cv_struct_tm> @@ -4139,7 +4181,7 @@ int main() { struct tm tm; tm.tm_zone; ; return 0; } EOF -if { (eval echo configure:4143: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm_zone=yes else @@ -4162,10 +4204,10 @@ EOF else echo $ac_n "checking for tzname""... $ac_c" 1>&6 -echo "configure:4166: checking for tzname" >&5 +echo "configure:4208: checking for tzname" >&5 cat > conftest.$ac_ext < #ifndef tzname /* For SGI. */ @@ -4175,7 +4217,7 @@ int main() { atoi(*tzname); ; return 0; } EOF -if { (eval echo configure:4179: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4221: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_var_tzname=yes else @@ -4201,10 +4243,10 @@ fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:4205: checking for working const" >&5 +echo "configure:4247: checking for working const" >&5 cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4299: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -4278,7 +4320,7 @@ fi echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:4282: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:4324: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` cat > conftestmake <<\EOF @@ -4303,12 +4345,12 @@ fi echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 -echo "configure:4307: checking whether byte ordering is bigendian" >&5 +echo "configure:4349: checking whether byte ordering is bigendian" >&5 ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat > conftest.$ac_ext < #include @@ -4319,11 +4361,11 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:4323: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4365: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* # It does; now see whether it defined to BIG_ENDIAN or not. cat > conftest.$ac_ext < #include @@ -4334,7 +4376,7 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:4338: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4380: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_bigendian=yes else @@ -4351,7 +4393,7 @@ fi rm -f conftest* if test $ac_cv_c_bigendian = unknown; then cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:4410: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_c_bigendian=no else @@ -4391,10 +4433,10 @@ fi echo $ac_n "checking size of short""... $ac_c" 1>&6 -echo "configure:4395: checking size of short" >&5 +echo "configure:4437: checking size of short" >&5 cat > conftest.$ac_ext < #include @@ -4406,7 +4448,7 @@ main() exit(0); } EOF -if { (eval echo configure:4410: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:4452: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_sizeof_short=`cat conftestval` else @@ -4434,10 +4476,10 @@ if test "$ac_cv_sizeof_short" = 0; then exit 1 fi echo $ac_n "checking size of int""... $ac_c" 1>&6 -echo "configure:4438: checking size of int" >&5 +echo "configure:4480: checking size of int" >&5 cat > conftest.$ac_ext < #include @@ -4449,7 +4491,7 @@ main() exit(0); } EOF -if { (eval echo configure:4453: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:4495: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_sizeof_int=`cat conftestval` else @@ -4471,10 +4513,10 @@ EOF echo $ac_n "checking size of long""... $ac_c" 1>&6 -echo "configure:4475: checking size of long" >&5 +echo "configure:4517: checking size of long" >&5 cat > conftest.$ac_ext < #include @@ -4486,7 +4528,7 @@ main() exit(0); } EOF -if { (eval echo configure:4490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:4532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_sizeof_long=`cat conftestval` else @@ -4508,10 +4550,10 @@ EOF echo $ac_n "checking size of long long""... $ac_c" 1>&6 -echo "configure:4512: checking size of long long" >&5 +echo "configure:4554: checking size of long long" >&5 cat > conftest.$ac_ext < #include @@ -4523,7 +4565,7 @@ main() exit(0); } EOF -if { (eval echo configure:4527: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:4569: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_sizeof_long_long=`cat conftestval` else @@ -4545,10 +4587,10 @@ EOF echo $ac_n "checking size of void *""... $ac_c" 1>&6 -echo "configure:4549: checking size of void *" >&5 +echo "configure:4591: checking size of void *" >&5 cat > conftest.$ac_ext < #include @@ -4560,7 +4602,7 @@ main() exit(0); } EOF -if { (eval echo configure:4564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:4606: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_sizeof_void_p=`cat conftestval` else @@ -4583,7 +4625,7 @@ EOF echo $ac_n "checking for long file names""... $ac_c" 1>&6 -echo "configure:4587: checking for long file names" >&5 +echo "configure:4629: checking for long file names" >&5 ac_cv_sys_long_file_names=yes # Test for long file names in all the places we know might matter: @@ -4629,10 +4671,10 @@ fi echo $ac_n "checking for sin""... $ac_c" 1>&6 -echo "configure:4633: checking for sin" >&5 +echo "configure:4675: checking for sin" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4701: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sin=yes" else @@ -4673,12 +4715,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for sin in -lm""... $ac_c" 1>&6 -echo "configure:4677: checking for sin in -lm" >&5 +echo "configure:4719: checking for sin in -lm" >&5 ac_lib_var=`echo m'_'sin | sed 'y%./+-%__p_%'` xe_check_libs=" -lm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4733,14 +4775,14 @@ EOF cat > conftest.$ac_ext < int main() { return atanh(1.0) + asinh(1.0) + acosh(1.0); ; return 0; } EOF -if { (eval echo configure:4744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_INVERSE_HYPERBOLIC @@ -4757,14 +4799,14 @@ fi rm -f conftest* echo "checking type of mail spool file locking" 1>&6 -echo "configure:4761: checking type of mail spool file locking" >&5 +echo "configure:4803: checking type of mail spool file locking" >&5 for ac_func in lockf flock do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4765: checking for $ac_func" >&5 +echo "configure:4807: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4833: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -4869,12 +4911,12 @@ test "$mail_locking" = "locking" -a "$ac_cv_func_locking" != "yes" && \ case "$opsys" in decosf*) echo $ac_n "checking for cma_open in -lpthreads""... $ac_c" 1>&6 -echo "configure:4873: checking for cma_open in -lpthreads" >&5 +echo "configure:4915: checking for cma_open in -lpthreads" >&5 ac_lib_var=`echo pthreads'_'cma_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lpthreads " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4931: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4921,7 +4963,7 @@ fi esac echo $ac_n "checking whether the -xildoff compiler flag is required""... $ac_c" 1>&6 -echo "configure:4925: checking whether the -xildoff compiler flag is required" >&5 +echo "configure:4967: checking whether the -xildoff compiler flag is required" >&5 if ${CC-cc} '-###' -xildon no_such_file.c 2>&1 | grep '^[^ ]*/ild ' > /dev/null ; then if ${CC-cc} '-###' -xildoff no_such_file.c 2>&1 | grep '^[^ ]*/ild ' > /dev/null ; then echo "$ac_t""no" 1>&6; @@ -4933,7 +4975,7 @@ fi if test "$opsys" = "sol2"; then if test "$os_release" -ge 56; then echo $ac_n "checking for \"-z ignore\" linker flag""... $ac_c" 1>&6 -echo "configure:4937: checking for \"-z ignore\" linker flag" >&5 +echo "configure:4979: checking for \"-z ignore\" linker flag" >&5 case "`ld -h 2>&1`" in *-z\ ignore\|record* ) echo "$ac_t""yes" 1>&6 ld_switch_site="-z ignore $ld_switch_site" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-z ignore\" to \$ld_switch_site"; fi ;; @@ -4944,7 +4986,7 @@ fi echo "checking "for specified window system"" 1>&6 -echo "configure:4948: checking "for specified window system"" >&5 +echo "configure:4990: checking "for specified window system"" >&5 if test "$with_x11" != "no"; then test "$x_includes $x_libraries" != "NONE NONE" && \ @@ -4977,7 +5019,7 @@ if test "$with_x11" != "no"; then # Uses ac_ vars as temps to allow command line to override cache and checks. # --without-x overrides everything else, but does not touch the cache. echo $ac_n "checking for X""... $ac_c" 1>&6 -echo "configure:4981: checking for X" >&5 +echo "configure:5023: checking for X" >&5 # Check whether --with-x or --without-x was given. if test "${with_x+set}" = set; then @@ -5037,12 +5079,12 @@ if test "$ac_x_includes" = NO; then # First, try using that file with no special directory specified. cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5046: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5088: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5111,14 +5153,14 @@ if test "$ac_x_libraries" = NO; then ac_save_LIBS="$LIBS" LIBS="-l$x_direct_test_library $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* LIBS="$ac_save_LIBS" # We can link X programs with no special library path. @@ -5227,17 +5269,17 @@ else case "`(uname -sr) 2>/dev/null`" in "SunOS 5"*) echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6 -echo "configure:5231: checking whether -R must be followed by a space" >&5 +echo "configure:5273: checking whether -R must be followed by a space" >&5 ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5283: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_R_nospace=yes else @@ -5253,14 +5295,14 @@ rm -f conftest* else LIBS="$ac_xsave_LIBS -R $x_libraries" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_R_space=yes else @@ -5296,12 +5338,12 @@ ac_cv_lib_dnet_dnet_ntoa=no else echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6 -echo "configure:5300: checking for dnet_ntoa in -ldnet" >&5 +echo "configure:5342: checking for dnet_ntoa in -ldnet" >&5 ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'` xe_check_libs=" -ldnet " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5358: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5336,12 +5378,12 @@ fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6 -echo "configure:5340: checking for dnet_ntoa in -ldnet_stub" >&5 +echo "configure:5382: checking for dnet_ntoa in -ldnet_stub" >&5 ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'` xe_check_libs=" -ldnet_stub " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5381,10 +5423,10 @@ fi # The nsl library prevents programs from opening the X display # on Irix 5.2, according to dickey@clark.net. echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 -echo "configure:5385: checking for gethostbyname" >&5 +echo "configure:5427: checking for gethostbyname" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5453: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethostbyname=yes" else @@ -5428,12 +5470,12 @@ fi if test $ac_cv_func_gethostbyname = no; then echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 -echo "configure:5432: checking for gethostbyname in -lnsl" >&5 +echo "configure:5474: checking for gethostbyname in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` xe_check_libs=" -lnsl " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5474,10 +5516,10 @@ fi # -lsocket must be given before -lnsl if both are needed. # We assume that if connect needs -lnsl, so does gethostbyname. echo $ac_n "checking for connect""... $ac_c" 1>&6 -echo "configure:5478: checking for connect" >&5 +echo "configure:5520: checking for connect" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5546: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_connect=yes" else @@ -5523,12 +5565,12 @@ fi xe_msg_checking="for connect in -lsocket" test -n "$X_EXTRA_LIBS" && xe_msg_checking="$xe_msg_checking using extra libs $X_EXTRA_LIBS" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:5527: checking "$xe_msg_checking"" >&5 +echo "configure:5569: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'` xe_check_libs=" -lsocket $X_EXTRA_LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5563,10 +5605,10 @@ fi # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX. echo $ac_n "checking for remove""... $ac_c" 1>&6 -echo "configure:5567: checking for remove" >&5 +echo "configure:5609: checking for remove" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5635: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_remove=yes" else @@ -5610,12 +5652,12 @@ fi if test $ac_cv_func_remove = no; then echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6 -echo "configure:5614: checking for remove in -lposix" >&5 +echo "configure:5656: checking for remove in -lposix" >&5 ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'` xe_check_libs=" -lposix " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5672: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5650,10 +5692,10 @@ fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. echo $ac_n "checking for shmat""... $ac_c" 1>&6 -echo "configure:5654: checking for shmat" >&5 +echo "configure:5696: checking for shmat" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5722: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shmat=yes" else @@ -5697,12 +5739,12 @@ fi if test $ac_cv_func_shmat = no; then echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6 -echo "configure:5701: checking for shmat in -lipc" >&5 +echo "configure:5743: checking for shmat in -lipc" >&5 ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'` xe_check_libs=" -lipc " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5759: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5749,12 +5791,12 @@ fi xe_msg_checking="for IceConnectionNumber in -lICE" test -n "$X_EXTRA_LIBS" && xe_msg_checking="$xe_msg_checking using extra libs $X_EXTRA_LIBS" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:5753: checking "$xe_msg_checking"" >&5 +echo "configure:5795: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'` xe_check_libs=" -lICE $X_EXTRA_LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5811: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5936,7 +5978,7 @@ EOF echo "checking for X defines extracted by xmkmf" 1>&6 -echo "configure:5940: checking for X defines extracted by xmkmf" >&5 +echo "configure:5982: checking for X defines extracted by xmkmf" >&5 rm -fr conftestdir if mkdir conftestdir; then cd conftestdir @@ -5983,15 +6025,15 @@ EOF ac_safe=`echo "X11/Intrinsic.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Intrinsic.h""... $ac_c" 1>&6 -echo "configure:5987: checking for X11/Intrinsic.h" >&5 +echo "configure:6029: checking for X11/Intrinsic.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5995: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6037: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6015,12 +6057,12 @@ fi echo $ac_n "checking for XOpenDisplay in -lX11""... $ac_c" 1>&6 -echo "configure:6019: checking for XOpenDisplay in -lX11" >&5 +echo "configure:6061: checking for XOpenDisplay in -lX11" >&5 ac_lib_var=`echo X11'_'XOpenDisplay | sed 'y%./+-%__p_%'` xe_check_libs=" -lX11 " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6056,12 +6098,12 @@ fi xe_msg_checking="for XGetFontProperty in -lX11" test -n "-b i486-linuxaout" && xe_msg_checking="$xe_msg_checking using extra libs -b i486-linuxaout" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:6060: checking "$xe_msg_checking"" >&5 +echo "configure:6102: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo X11'_'XGetFontProperty | sed 'y%./+-%__p_%'` xe_check_libs=" -lX11 -b i486-linuxaout" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6099,12 +6141,12 @@ fi echo $ac_n "checking for XShapeSelectInput in -lXext""... $ac_c" 1>&6 -echo "configure:6103: checking for XShapeSelectInput in -lXext" >&5 +echo "configure:6145: checking for XShapeSelectInput in -lXext" >&5 ac_lib_var=`echo Xext'_'XShapeSelectInput | sed 'y%./+-%__p_%'` xe_check_libs=" -lXext " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6161: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6138,12 +6180,12 @@ fi echo $ac_n "checking for XtOpenDisplay in -lXt""... $ac_c" 1>&6 -echo "configure:6142: checking for XtOpenDisplay in -lXt" >&5 +echo "configure:6184: checking for XtOpenDisplay in -lXt" >&5 ac_lib_var=`echo Xt'_'XtOpenDisplay | sed 'y%./+-%__p_%'` xe_check_libs=" -lXt " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6200: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6177,14 +6219,14 @@ fi echo $ac_n "checking the version of X11 being used""... $ac_c" 1>&6 -echo "configure:6181: checking the version of X11 being used" >&5 +echo "configure:6223: checking the version of X11 being used" >&5 cat > conftest.$ac_ext < int main(int c, char *v[]) { return c>1 ? XlibSpecificationRelease : 0; } EOF -if { (eval echo configure:6188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:6230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ./conftest foobar; x11_release=$? else @@ -6215,10 +6257,10 @@ EOF for ac_func in XConvertCase do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6219: checking for $ac_func" >&5 +echo "configure:6261: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6287: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6273,15 +6315,15 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:6277: checking for $ac_hdr" >&5 +echo "configure:6319: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6285: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6327: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6314,10 +6356,10 @@ done for ac_func in XRegisterIMInstantiateCallback do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6318: checking for $ac_func" >&5 +echo "configure:6360: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6386: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6368,9 +6410,9 @@ fi done echo $ac_n "checking for standard XRegisterIMInstantiateCallback prototype""... $ac_c" 1>&6 -echo "configure:6372: checking for standard XRegisterIMInstantiateCallback prototype" >&5 +echo "configure:6414: checking for standard XRegisterIMInstantiateCallback prototype" >&5 cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 else @@ -6403,12 +6445,12 @@ rm -f conftest* test -z "$with_xmu" && { echo $ac_n "checking for XmuReadBitmapDataFromFile in -lXmu""... $ac_c" 1>&6 -echo "configure:6407: checking for XmuReadBitmapDataFromFile in -lXmu" >&5 +echo "configure:6449: checking for XmuReadBitmapDataFromFile in -lXmu" >&5 ac_lib_var=`echo Xmu'_'XmuReadBitmapDataFromFile | sed 'y%./+-%__p_%'` xe_check_libs=" -lXmu " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6458,19 +6500,19 @@ EOF echo $ac_n "checking for main in -lXbsd""... $ac_c" 1>&6 -echo "configure:6462: checking for main in -lXbsd" >&5 +echo "configure:6504: checking for main in -lXbsd" >&5 ac_lib_var=`echo Xbsd'_'main | sed 'y%./+-%__p_%'` xe_check_libs=" -lXbsd " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6507,22 +6549,22 @@ fi fi if test "$with_msw" != "no"; then echo "checking for MS-Windows" 1>&6 -echo "configure:6511: checking for MS-Windows" >&5 +echo "configure:6553: checking for MS-Windows" >&5 echo $ac_n "checking for main in -lgdi32""... $ac_c" 1>&6 -echo "configure:6514: checking for main in -lgdi32" >&5 +echo "configure:6556: checking for main in -lgdi32" >&5 ac_lib_var=`echo gdi32'_'main | sed 'y%./+-%__p_%'` xe_check_libs=" -lgdi32 " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6593,12 +6635,12 @@ EOF fi fi cat > conftest.$ac_ext < int main() { return (open("/dev/windows", O_RDONLY, 0) > 0)? 0 : 1; } EOF -if { (eval echo configure:6602: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:6644: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_MSG_SELECT @@ -6662,15 +6704,15 @@ fi if test "$with_x11" = "yes"; then ac_safe=`echo "X11/extensions/shape.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/extensions/shape.h""... $ac_c" 1>&6 -echo "configure:6666: checking for X11/extensions/shape.h" >&5 +echo "configure:6708: checking for X11/extensions/shape.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6674: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6716: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6717,7 +6759,7 @@ case "$x_libraries" in *X11R4* ) esac echo "checking for WM_COMMAND option" 1>&6 -echo "configure:6721: checking for WM_COMMAND option" >&5; +echo "configure:6763: checking for WM_COMMAND option" >&5; if test "$with_wmcommand" != "no"; then { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_WMCOMMAND @@ -6732,15 +6774,15 @@ fi test -z "$with_xauth" && test "$window_system" = "none" && with_xauth=no test -z "$with_xauth" && { ac_safe=`echo "X11/Xauth.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Xauth.h""... $ac_c" 1>&6 -echo "configure:6736: checking for X11/Xauth.h" >&5 +echo "configure:6778: checking for X11/Xauth.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6744: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6786: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6763,12 +6805,12 @@ fi } test -z "$with_xauth" && { echo $ac_n "checking for XauGetAuthByAddr in -lXau""... $ac_c" 1>&6 -echo "configure:6767: checking for XauGetAuthByAddr in -lXau" >&5 +echo "configure:6809: checking for XauGetAuthByAddr in -lXau" >&5 ac_lib_var=`echo Xau'_'XauGetAuthByAddr | sed 'y%./+-%__p_%'` xe_check_libs=" -lXau " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6825: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6824,15 +6866,15 @@ if test "$with_tooltalk" != "no" ; then for dir in "" "Tt/" "desktop/" ; do ac_safe=`echo "${dir}tt_c.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ${dir}tt_c.h""... $ac_c" 1>&6 -echo "configure:6828: checking for ${dir}tt_c.h" >&5 +echo "configure:6870: checking for ${dir}tt_c.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6836: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6878: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6868,12 +6910,12 @@ if test "$with_tooltalk" != "no" ; then xe_msg_checking="for tt_message_create in -ltt" test -n "$extra_libs" && xe_msg_checking="$xe_msg_checking using extra libs $extra_libs" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:6872: checking "$xe_msg_checking"" >&5 +echo "configure:6914: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo tt'_'tt_message_create | sed 'y%./+-%__p_%'` xe_check_libs=" -ltt $extra_libs" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6930: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6941,15 +6983,15 @@ fi test -z "$with_cde" && { ac_safe=`echo "Dt/Dt.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for Dt/Dt.h""... $ac_c" 1>&6 -echo "configure:6945: checking for Dt/Dt.h" >&5 +echo "configure:6987: checking for Dt/Dt.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6953: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6995: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6972,12 +7014,12 @@ fi } test -z "$with_cde" && { echo $ac_n "checking for DtDndDragStart in -lDtSvc""... $ac_c" 1>&6 -echo "configure:6976: checking for DtDndDragStart in -lDtSvc" >&5 +echo "configure:7018: checking for DtDndDragStart in -lDtSvc" >&5 ac_lib_var=`echo DtSvc'_'DtDndDragStart | sed 'y%./+-%__p_%'` xe_check_libs=" -lDtSvc " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7034: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7058,7 +7100,7 @@ fi if test "$with_dragndrop" != "no" ; then echo $ac_n "checking if drag and drop API is needed""... $ac_c" 1>&6 -echo "configure:7062: checking if drag and drop API is needed" >&5 +echo "configure:7104: checking if drag and drop API is needed" >&5 if test -n "$dragndrop_proto" ; then with_dragndrop=yes echo "$ac_t""yes (${dragndrop_proto} )" 1>&6 @@ -7078,18 +7120,18 @@ EOF fi echo "checking for LDAP" 1>&6 -echo "configure:7082: checking for LDAP" >&5 +echo "configure:7124: checking for LDAP" >&5 test -z "$with_ldap" && { ac_safe=`echo "ldap.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ldap.h""... $ac_c" 1>&6 -echo "configure:7085: checking for ldap.h" >&5 +echo "configure:7127: checking for ldap.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7093: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7135: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7112,15 +7154,15 @@ fi } test -z "$with_ldap" && { ac_safe=`echo "lber.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for lber.h""... $ac_c" 1>&6 -echo "configure:7116: checking for lber.h" >&5 +echo "configure:7158: checking for lber.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7124: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7166: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7144,12 +7186,12 @@ fi if test "$with_ldap" != "no"; then echo $ac_n "checking for ldap_search in -lldap""... $ac_c" 1>&6 -echo "configure:7148: checking for ldap_search in -lldap" >&5 +echo "configure:7190: checking for ldap_search in -lldap" >&5 ac_lib_var=`echo ldap'_'ldap_search | sed 'y%./+-%__p_%'` xe_check_libs=" -lldap " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7206: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7185,12 +7227,12 @@ fi xe_msg_checking="for ldap_open in -lldap" test -n "-llber" && xe_msg_checking="$xe_msg_checking using extra libs -llber" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:7189: checking "$xe_msg_checking"" >&5 +echo "configure:7231: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo ldap'_'ldap_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lldap -llber" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7247: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7226,12 +7268,12 @@ fi xe_msg_checking="for ldap_open in -lldap" test -n "-llber -lkrb" && xe_msg_checking="$xe_msg_checking using extra libs -llber -lkrb" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:7230: checking "$xe_msg_checking"" >&5 +echo "configure:7272: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo ldap'_'ldap_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lldap -llber -lkrb" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7288: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7267,12 +7309,12 @@ fi xe_msg_checking="for ldap_open in -lldap" test -n "-llber -lkrb -ldes" && xe_msg_checking="$xe_msg_checking using extra libs -llber -lkrb -ldes" echo $ac_n "checking "$xe_msg_checking"""... $ac_c" 1>&6 -echo "configure:7271: checking "$xe_msg_checking"" >&5 +echo "configure:7313: checking "$xe_msg_checking"" >&5 ac_lib_var=`echo ldap'_'ldap_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lldap -llber -lkrb -ldes" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7329: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7334,10 +7376,10 @@ EOF for ac_func in ldap_set_option ldap_get_lderrno ldap_result2error ldap_parse_result do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:7338: checking for $ac_func" >&5 +echo "configure:7380: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7406: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -7391,20 +7433,20 @@ fi if test "$with_postgresql" != "no"; then echo "checking for PostgreSQL" 1>&6 -echo "configure:7395: checking for PostgreSQL" >&5 +echo "configure:7437: checking for PostgreSQL" >&5 for header_dir in "" "pgsql/" "postgresql/"; do ac_safe=`echo "${header_dir}libpq-fe.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ${header_dir}libpq-fe.h""... $ac_c" 1>&6 -echo "configure:7400: checking for ${header_dir}libpq-fe.h" >&5 +echo "configure:7442: checking for ${header_dir}libpq-fe.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7408: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7450: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7428,12 +7470,12 @@ fi test -n "$libpq_fe_h_file" && { echo $ac_n "checking for PQconnectdb in -lpq""... $ac_c" 1>&6 -echo "configure:7432: checking for PQconnectdb in -lpq" >&5 +echo "configure:7474: checking for PQconnectdb in -lpq" >&5 ac_lib_var=`echo pq'_'PQconnectdb | sed 'y%./+-%__p_%'` xe_check_libs=" -lpq " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7477,12 +7519,12 @@ EOF echo $ac_n "checking for PQconnectStart in -lpq""... $ac_c" 1>&6 -echo "configure:7481: checking for PQconnectStart in -lpq" >&5 +echo "configure:7523: checking for PQconnectStart in -lpq" >&5 ac_lib_var=`echo pq'_'PQconnectStart | sed 'y%./+-%__p_%'` xe_check_libs=" -lpq " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7539: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7541,15 +7583,15 @@ fi if test "$window_system" != "none"; then echo "checking for graphics libraries" 1>&6 -echo "configure:7545: checking for graphics libraries" >&5 +echo "configure:7587: checking for graphics libraries" >&5 xpm_problem="" if test -z "$with_xpm"; then echo $ac_n "checking for Xpm - no older than 3.4f""... $ac_c" 1>&6 -echo "configure:7550: checking for Xpm - no older than 3.4f" >&5 +echo "configure:7592: checking for Xpm - no older than 3.4f" >&5 xe_check_libs=-lXpm cat > conftest.$ac_ext < @@ -7558,7 +7600,7 @@ echo "configure:7550: checking for Xpm - no older than 3.4f" >&5 XpmIncludeVersion != XpmLibraryVersion() ? 1 : XpmIncludeVersion < 30406 ? 2 : 0 ;} EOF -if { (eval echo configure:7562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:7604: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ./conftest dummy_arg; xpm_status=$?; if test "$xpm_status" = "0"; then @@ -7600,17 +7642,17 @@ EOF libs_x="-lXpm $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-lXpm\" to \$libs_x"; fi echo $ac_n "checking for \"FOR_MSW\" xpm""... $ac_c" 1>&6 -echo "configure:7604: checking for \"FOR_MSW\" xpm" >&5 +echo "configure:7646: checking for \"FOR_MSW\" xpm" >&5 xe_check_libs=-lXpm cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7656: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* xpm_for_msw=no else @@ -7636,15 +7678,15 @@ EOF test -z "$with_xface" && { ac_safe=`echo "compface.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for compface.h""... $ac_c" 1>&6 -echo "configure:7640: checking for compface.h" >&5 +echo "configure:7682: checking for compface.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7648: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7690: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7667,12 +7709,12 @@ fi } test -z "$with_xface" && { echo $ac_n "checking for UnGenFace in -lcompface""... $ac_c" 1>&6 -echo "configure:7671: checking for UnGenFace in -lcompface" >&5 +echo "configure:7713: checking for UnGenFace in -lcompface" >&5 ac_lib_var=`echo compface'_'UnGenFace | sed 'y%./+-%__p_%'` xe_check_libs=" -lcompface " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7729: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7735,12 +7777,12 @@ EOF if test "$with_png $with_tiff" != "no no"; then echo $ac_n "checking for inflate in -lc""... $ac_c" 1>&6 -echo "configure:7739: checking for inflate in -lc" >&5 +echo "configure:7781: checking for inflate in -lc" >&5 ac_lib_var=`echo c'_'inflate | sed 'y%./+-%__p_%'` xe_check_libs=" -lc " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7770,12 +7812,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for inflate in -lz""... $ac_c" 1>&6 -echo "configure:7774: checking for inflate in -lz" >&5 +echo "configure:7816: checking for inflate in -lz" >&5 ac_lib_var=`echo z'_'inflate | sed 'y%./+-%__p_%'` xe_check_libs=" -lz " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7832: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7805,12 +7847,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for inflate in -lgz""... $ac_c" 1>&6 -echo "configure:7809: checking for inflate in -lgz" >&5 +echo "configure:7851: checking for inflate in -lgz" >&5 ac_lib_var=`echo gz'_'inflate | sed 'y%./+-%__p_%'` xe_check_libs=" -lgz " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7867: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7851,15 +7893,15 @@ fi test -z "$with_jpeg" && { ac_safe=`echo "jpeglib.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for jpeglib.h""... $ac_c" 1>&6 -echo "configure:7855: checking for jpeglib.h" >&5 +echo "configure:7897: checking for jpeglib.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7863: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7905: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7882,12 +7924,12 @@ fi } test -z "$with_jpeg" && { echo $ac_n "checking for jpeg_destroy_decompress in -ljpeg""... $ac_c" 1>&6 -echo "configure:7886: checking for jpeg_destroy_decompress in -ljpeg" >&5 +echo "configure:7928: checking for jpeg_destroy_decompress in -ljpeg" >&5 ac_lib_var=`echo jpeg'_'jpeg_destroy_decompress | sed 'y%./+-%__p_%'` xe_check_libs=" -ljpeg " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7944: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7934,10 +7976,10 @@ EOF png_problem="" test -z "$with_png" && { echo $ac_n "checking for pow""... $ac_c" 1>&6 -echo "configure:7938: checking for pow" >&5 +echo "configure:7980: checking for pow" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pow=yes" else @@ -7981,15 +8023,15 @@ fi } test -z "$with_png" && { ac_safe=`echo "png.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for png.h""... $ac_c" 1>&6 -echo "configure:7985: checking for png.h" >&5 +echo "configure:8027: checking for png.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7993: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8035: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8012,12 +8054,12 @@ fi } test -z "$with_png" && { echo $ac_n "checking for png_read_image in -lpng""... $ac_c" 1>&6 -echo "configure:8016: checking for png_read_image in -lpng" >&5 +echo "configure:8058: checking for png_read_image in -lpng" >&5 ac_lib_var=`echo png'_'png_read_image | sed 'y%./+-%__p_%'` xe_check_libs=" -lpng " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8074: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8051,10 +8093,10 @@ fi } if test -z "$with_png"; then echo $ac_n "checking for workable png version information""... $ac_c" 1>&6 -echo "configure:8055: checking for workable png version information" >&5 +echo "configure:8097: checking for workable png version information" >&5 xe_check_libs="-lpng -lz" cat > conftest.$ac_ext < int main(int c, char **v) { @@ -8062,7 +8104,7 @@ echo "configure:8055: checking for workable png version information" >&5 if (strcmp(png_libpng_ver, PNG_LIBPNG_VER_STRING) != 0) return 1; return (PNG_LIBPNG_VER < 10002) ? 2 : 0 ;} EOF -if { (eval echo configure:8066: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:8108: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ./conftest dummy_arg; png_status=$?; if test "$png_status" = "0"; then @@ -8105,15 +8147,15 @@ EOF test -z "$with_tiff" && { ac_safe=`echo "tiffio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for tiffio.h""... $ac_c" 1>&6 -echo "configure:8109: checking for tiffio.h" >&5 +echo "configure:8151: checking for tiffio.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8117: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8159: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8136,12 +8178,12 @@ fi } test -z "$with_tiff" && { echo $ac_n "checking for TIFFClientOpen in -ltiff""... $ac_c" 1>&6 -echo "configure:8140: checking for TIFFClientOpen in -ltiff" >&5 +echo "configure:8182: checking for TIFFClientOpen in -ltiff" >&5 ac_lib_var=`echo tiff'_'TIFFClientOpen | sed 'y%./+-%__p_%'` xe_check_libs=" -ltiff " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8198: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8191,10 +8233,10 @@ fi if test "$with_x11" = "yes"; then echo "checking for X11 graphics libraries" 1>&6 -echo "configure:8195: checking for X11 graphics libraries" >&5 +echo "configure:8237: checking for X11 graphics libraries" >&5 echo "checking for the Athena widgets" 1>&6 -echo "configure:8198: checking for the Athena widgets" >&5 +echo "configure:8240: checking for the Athena widgets" >&5 case "$with_athena" in "xaw" | "") athena_variant=Xaw athena_3d=no ;; @@ -8208,12 +8250,12 @@ echo "configure:8198: checking for the Athena widgets" >&5 if test "$athena_3d" = "no"; then echo $ac_n "checking for XawScrollbarSetThumb in -l$athena_variant""... $ac_c" 1>&6 -echo "configure:8212: checking for XawScrollbarSetThumb in -l$athena_variant" >&5 +echo "configure:8254: checking for XawScrollbarSetThumb in -l$athena_variant" >&5 ac_lib_var=`echo $athena_variant'_'XawScrollbarSetThumb | sed 'y%./+-%__p_%'` xe_check_libs=" -l$athena_variant " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8240,12 +8282,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for threeDClassRec in -l$athena_variant""... $ac_c" 1>&6 -echo "configure:8244: checking for threeDClassRec in -l$athena_variant" >&5 +echo "configure:8286: checking for threeDClassRec in -l$athena_variant" >&5 ac_lib_var=`echo $athena_variant'_'threeDClassRec | sed 'y%./+-%__p_%'` xe_check_libs=" -l$athena_variant " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8302: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8287,12 +8329,12 @@ fi else echo $ac_n "checking for threeDClassRec in -l$athena_variant""... $ac_c" 1>&6 -echo "configure:8291: checking for threeDClassRec in -l$athena_variant" >&5 +echo "configure:8333: checking for threeDClassRec in -l$athena_variant" >&5 ac_lib_var=`echo $athena_variant'_'threeDClassRec | sed 'y%./+-%__p_%'` xe_check_libs=" -l$athena_variant " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8321,12 +8363,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for threeDClassRec in -lXaw""... $ac_c" 1>&6 -echo "configure:8325: checking for threeDClassRec in -lXaw" >&5 +echo "configure:8367: checking for threeDClassRec in -lXaw" >&5 ac_lib_var=`echo Xaw'_'threeDClassRec | sed 'y%./+-%__p_%'` xe_check_libs=" -lXaw " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8383: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8368,15 +8410,15 @@ fi if test "$athena_3d" = "no"; then ac_safe=`echo "X11/Xaw/ThreeD.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Xaw/ThreeD.h""... $ac_c" 1>&6 -echo "configure:8372: checking for X11/Xaw/ThreeD.h" >&5 +echo "configure:8414: checking for X11/Xaw/ThreeD.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8380: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8422: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8396,15 +8438,15 @@ else echo "$ac_t""no" 1>&6 ac_safe=`echo "X11/Xaw/XawInit.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Xaw/XawInit.h""... $ac_c" 1>&6 -echo "configure:8400: checking for X11/Xaw/XawInit.h" >&5 +echo "configure:8442: checking for X11/Xaw/XawInit.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8408: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8450: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8430,15 +8472,15 @@ fi else ac_safe=`echo "X11/$athena_variant/XawInit.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/$athena_variant/XawInit.h""... $ac_c" 1>&6 -echo "configure:8434: checking for X11/$athena_variant/XawInit.h" >&5 +echo "configure:8476: checking for X11/$athena_variant/XawInit.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8442: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8484: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8455,15 +8497,15 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "X11/$athena_variant/ThreeD.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/$athena_variant/ThreeD.h""... $ac_c" 1>&6 -echo "configure:8459: checking for X11/$athena_variant/ThreeD.h" >&5 +echo "configure:8501: checking for X11/$athena_variant/ThreeD.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8467: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8509: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8491,15 +8533,15 @@ fi if test -z "$athena_h_path"; then ac_safe=`echo "$athena_variant/XawInit.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $athena_variant/XawInit.h""... $ac_c" 1>&6 -echo "configure:8495: checking for $athena_variant/XawInit.h" >&5 +echo "configure:8537: checking for $athena_variant/XawInit.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8503: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8545: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8516,15 +8558,15 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "$athena_variant/ThreeD.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $athena_variant/ThreeD.h""... $ac_c" 1>&6 -echo "configure:8520: checking for $athena_variant/ThreeD.h" >&5 +echo "configure:8562: checking for $athena_variant/ThreeD.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8528: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8570: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8553,15 +8595,15 @@ fi if test -z "$athena_h_path" -a "$athena_variant" != "Xaw3d"; then ac_safe=`echo "X11/Xaw3d/XawInit.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Xaw3d/XawInit.h""... $ac_c" 1>&6 -echo "configure:8557: checking for X11/Xaw3d/XawInit.h" >&5 +echo "configure:8599: checking for X11/Xaw3d/XawInit.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8565: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8607: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8578,15 +8620,15 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "X11/Xaw3d/ThreeD.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Xaw3d/ThreeD.h""... $ac_c" 1>&6 -echo "configure:8582: checking for X11/Xaw3d/ThreeD.h" >&5 +echo "configure:8624: checking for X11/Xaw3d/ThreeD.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8590: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8632: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8618,15 +8660,15 @@ fi if test -z "$athena_h_path" -a "$athena_variant" != "Xaw3d"; then ac_safe=`echo "Xaw3d/XawInit.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for Xaw3d/XawInit.h""... $ac_c" 1>&6 -echo "configure:8622: checking for Xaw3d/XawInit.h" >&5 +echo "configure:8664: checking for Xaw3d/XawInit.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8630: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8672: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8643,15 +8685,15 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "Xaw3d/ThreeD.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for Xaw3d/ThreeD.h""... $ac_c" 1>&6 -echo "configure:8647: checking for Xaw3d/ThreeD.h" >&5 +echo "configure:8689: checking for Xaw3d/ThreeD.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8655: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8697: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8683,15 +8725,15 @@ fi if test -z "$athena_h_path"; then ac_safe=`echo "X11/Xaw/ThreeD.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for X11/Xaw/ThreeD.h""... $ac_c" 1>&6 -echo "configure:8687: checking for X11/Xaw/ThreeD.h" >&5 +echo "configure:8729: checking for X11/Xaw/ThreeD.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8695: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8737: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8726,15 +8768,15 @@ fi ac_safe=`echo "Xm/Xm.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for Xm/Xm.h""... $ac_c" 1>&6 -echo "configure:8730: checking for Xm/Xm.h" >&5 +echo "configure:8772: checking for Xm/Xm.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8738: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8780: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8751,12 +8793,12 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for XmStringFree in -lXm""... $ac_c" 1>&6 -echo "configure:8755: checking for XmStringFree in -lXm" >&5 +echo "configure:8797: checking for XmStringFree in -lXm" >&5 ac_lib_var=`echo Xm'_'XmStringFree | sed 'y%./+-%__p_%'` xe_check_libs=" -lXm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8813: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8796,9 +8838,9 @@ fi if test "$have_motif" = "yes"; then echo $ac_n "checking for Lesstif""... $ac_c" 1>&6 -echo "configure:8800: checking for Lesstif" >&5 +echo "configure:8842: checking for Lesstif" >&5 cat > conftest.$ac_ext < #ifdef LESSTIF_VERSION @@ -9204,7 +9246,7 @@ fi if test "$with_mule" = "yes" ; then echo "checking for Mule-related features" 1>&6 -echo "configure:9208: checking for Mule-related features" >&5 +echo "configure:9250: checking for Mule-related features" >&5 { test "$extra_verbose" = "yes" && cat << \EOF Defining MULE EOF @@ -9245,15 +9287,15 @@ EOF do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:9249: checking for $ac_hdr" >&5 +echo "configure:9291: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9257: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9299: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9284,12 +9326,12 @@ done echo $ac_n "checking for strerror in -lintl""... $ac_c" 1>&6 -echo "configure:9288: checking for strerror in -lintl" >&5 +echo "configure:9330: checking for strerror in -lintl" >&5 ac_lib_var=`echo intl'_'strerror | sed 'y%./+-%__p_%'` xe_check_libs=" -lintl " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9346: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9352,18 +9394,18 @@ EOF fi echo "checking for Mule input methods" 1>&6 -echo "configure:9356: checking for Mule input methods" >&5 +echo "configure:9398: checking for Mule input methods" >&5 case "$with_xim" in "" | "yes" ) echo "checking for XIM" 1>&6 -echo "configure:9359: checking for XIM" >&5 +echo "configure:9401: checking for XIM" >&5 echo $ac_n "checking for XOpenIM in -lX11""... $ac_c" 1>&6 -echo "configure:9362: checking for XOpenIM in -lX11" >&5 +echo "configure:9404: checking for XOpenIM in -lX11" >&5 ac_lib_var=`echo X11'_'XOpenIM | sed 'y%./+-%__p_%'` xe_check_libs=" -lX11 " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9420: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9398,12 +9440,12 @@ fi if test "$have_motif $have_lesstif" = "yes no"; then echo $ac_n "checking for XmImMbLookupString in -lXm""... $ac_c" 1>&6 -echo "configure:9402: checking for XmImMbLookupString in -lXm" >&5 +echo "configure:9444: checking for XmImMbLookupString in -lXm" >&5 ac_lib_var=`echo Xm'_'XmImMbLookupString | sed 'y%./+-%__p_%'` xe_check_libs=" -lXm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9479,15 +9521,15 @@ EOF if test "$with_xfs" = "yes" ; then echo "checking for XFontSet" 1>&6 -echo "configure:9483: checking for XFontSet" >&5 +echo "configure:9525: checking for XFontSet" >&5 echo $ac_n "checking for XmbDrawString in -lX11""... $ac_c" 1>&6 -echo "configure:9486: checking for XmbDrawString in -lX11" >&5 +echo "configure:9528: checking for XmbDrawString in -lX11" >&5 ac_lib_var=`echo X11'_'XmbDrawString | sed 'y%./+-%__p_%'` xe_check_libs=" -lX11 " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9544: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9538,15 +9580,15 @@ EOF test "$with_wnn6" = "yes" && with_wnn=yes # wnn6 implies wnn support test -z "$with_wnn" && { ac_safe=`echo "wnn/jllib.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for wnn/jllib.h""... $ac_c" 1>&6 -echo "configure:9542: checking for wnn/jllib.h" >&5 +echo "configure:9584: checking for wnn/jllib.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9550: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9592: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9569,15 +9611,15 @@ fi } test -z "$with_wnn" && { ac_safe=`echo "wnn/commonhd.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for wnn/commonhd.h""... $ac_c" 1>&6 -echo "configure:9573: checking for wnn/commonhd.h" >&5 +echo "configure:9615: checking for wnn/commonhd.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9581: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9623: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9602,10 +9644,10 @@ fi for ac_func in crypt do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:9606: checking for $ac_func" >&5 +echo "configure:9648: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -9657,12 +9699,12 @@ done test "$ac_cv_func_crypt" != "yes" && { echo $ac_n "checking for crypt in -lcrypt""... $ac_c" 1>&6 -echo "configure:9661: checking for crypt in -lcrypt" >&5 +echo "configure:9703: checking for crypt in -lcrypt" >&5 ac_lib_var=`echo crypt'_'crypt | sed 'y%./+-%__p_%'` xe_check_libs=" -lcrypt " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9719: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9708,12 +9750,12 @@ fi if test -z "$with_wnn" -o "$with_wnn" = "yes"; then echo $ac_n "checking for jl_dic_list_e in -lwnn""... $ac_c" 1>&6 -echo "configure:9712: checking for jl_dic_list_e in -lwnn" >&5 +echo "configure:9754: checking for jl_dic_list_e in -lwnn" >&5 ac_lib_var=`echo wnn'_'jl_dic_list_e | sed 'y%./+-%__p_%'` xe_check_libs=" -lwnn " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9770: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9742,12 +9784,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for jl_dic_list_e in -lwnn4""... $ac_c" 1>&6 -echo "configure:9746: checking for jl_dic_list_e in -lwnn4" >&5 +echo "configure:9788: checking for jl_dic_list_e in -lwnn4" >&5 ac_lib_var=`echo wnn4'_'jl_dic_list_e | sed 'y%./+-%__p_%'` xe_check_libs=" -lwnn4 " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9804: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9776,12 +9818,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for jl_dic_list_e in -lwnn6""... $ac_c" 1>&6 -echo "configure:9780: checking for jl_dic_list_e in -lwnn6" >&5 +echo "configure:9822: checking for jl_dic_list_e in -lwnn6" >&5 ac_lib_var=`echo wnn6'_'jl_dic_list_e | sed 'y%./+-%__p_%'` xe_check_libs=" -lwnn6 " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9838: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9810,12 +9852,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for dic_list_e in -lwnn6_fromsrc""... $ac_c" 1>&6 -echo "configure:9814: checking for dic_list_e in -lwnn6_fromsrc" >&5 +echo "configure:9856: checking for dic_list_e in -lwnn6_fromsrc" >&5 ac_lib_var=`echo wnn6_fromsrc'_'dic_list_e | sed 'y%./+-%__p_%'` xe_check_libs=" -lwnn6_fromsrc " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9874,12 +9916,12 @@ EOF if test "$with_wnn6" != "no"; then echo $ac_n "checking for jl_fi_dic_list in -l$libwnn""... $ac_c" 1>&6 -echo "configure:9878: checking for jl_fi_dic_list in -l$libwnn" >&5 +echo "configure:9920: checking for jl_fi_dic_list in -l$libwnn" >&5 ac_lib_var=`echo $libwnn'_'jl_fi_dic_list | sed 'y%./+-%__p_%'` xe_check_libs=" -l$libwnn " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9936: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -9925,15 +9967,15 @@ EOF if test "$with_canna" != "no"; then ac_safe=`echo "canna/jrkanji.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for canna/jrkanji.h""... $ac_c" 1>&6 -echo "configure:9929: checking for canna/jrkanji.h" >&5 +echo "configure:9971: checking for canna/jrkanji.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9937: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9979: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9960,15 +10002,15 @@ fi c_switch_site="$c_switch_site -I/usr/local/canna/include" ac_safe=`echo "canna/jrkanji.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for canna/jrkanji.h""... $ac_c" 1>&6 -echo "configure:9964: checking for canna/jrkanji.h" >&5 +echo "configure:10006: checking for canna/jrkanji.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9972: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10014: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9996,15 +10038,15 @@ fi test -z "$with_canna" && { ac_safe=`echo "canna/RK.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for canna/RK.h""... $ac_c" 1>&6 -echo "configure:10000: checking for canna/RK.h" >&5 +echo "configure:10042: checking for canna/RK.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10008: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10050: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10027,12 +10069,12 @@ fi } test -z "$with_canna" && { echo $ac_n "checking for RkBgnBun in -lRKC""... $ac_c" 1>&6 -echo "configure:10031: checking for RkBgnBun in -lRKC" >&5 +echo "configure:10073: checking for RkBgnBun in -lRKC" >&5 ac_lib_var=`echo RKC'_'RkBgnBun | sed 'y%./+-%__p_%'` xe_check_libs=" -lRKC " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10089: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10066,12 +10108,12 @@ fi } test -z "$with_canna" && { echo $ac_n "checking for jrKanjiControl in -lcanna""... $ac_c" 1>&6 -echo "configure:10070: checking for jrKanjiControl in -lcanna" >&5 +echo "configure:10112: checking for jrKanjiControl in -lcanna" >&5 ac_lib_var=`echo canna'_'jrKanjiControl | sed 'y%./+-%__p_%'` xe_check_libs=" -lcanna " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10128: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10131,12 +10173,12 @@ if test "$need_motif" = "yes" ; then libs_x="-lXm $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-lXm\" to \$libs_x"; fi echo $ac_n "checking for layout_object_getvalue in -li18n""... $ac_c" 1>&6 -echo "configure:10135: checking for layout_object_getvalue in -li18n" >&5 +echo "configure:10177: checking for layout_object_getvalue in -li18n" >&5 ac_lib_var=`echo i18n'_'layout_object_getvalue | sed 'y%./+-%__p_%'` xe_check_libs=" -li18n " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10193: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10230,13 +10272,13 @@ fi fi -for ac_func in cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror tzset ulimit usleep utimes waitpid vsnprintf fsync ftruncate umask +for ac_func in cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror tzset ulimit usleep waitpid vsnprintf fsync ftruncate umask do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:10237: checking for $ac_func" >&5 +echo "configure:10279: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10305: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -10291,10 +10333,10 @@ done for ac_func in getpt _getpty grantpt unlockpt ptsname killpg tcgetpgrp do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:10295: checking for $ac_func" >&5 +echo "configure:10337: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10363: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -10346,10 +10388,10 @@ done echo $ac_n "checking for openpty""... $ac_c" 1>&6 -echo "configure:10350: checking for openpty" >&5 +echo "configure:10392: checking for openpty" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10418: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_openpty=yes" else @@ -10391,12 +10433,12 @@ else echo $ac_n "checking for openpty in -lutil""... $ac_c" 1>&6 -echo "configure:10395: checking for openpty in -lutil" >&5 +echo "configure:10437: checking for openpty in -lutil" >&5 ac_lib_var=`echo util'_'openpty | sed 'y%./+-%__p_%'` xe_check_libs=" -lutil " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10453: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10442,15 +10484,15 @@ EOF do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10446: checking for $ac_hdr" >&5 +echo "configure:10488: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10454: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10496: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10486,15 +10528,15 @@ for ac_hdr in stropts.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10490: checking for $ac_hdr" >&5 +echo "configure:10532: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10498: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10540: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10527,10 +10569,10 @@ if test "$ac_cv_header_stropts_h" = "yes"; then for ac_func in isastream do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:10531: checking for $ac_func" >&5 +echo "configure:10573: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10599: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -10584,15 +10626,15 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10588: checking for $ac_hdr" >&5 +echo "configure:10630: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10596: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10638: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10629,10 +10671,10 @@ extra_objs="$extra_objs realpath.o" && if test "$extra_verbose" = "yes"; then for ac_func in getloadavg do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:10633: checking for $ac_func" >&5 +echo "configure:10675: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10701: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -10688,15 +10730,15 @@ if test "$ac_cv_func_getloadavg" = "yes"; then do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10692: checking for $ac_hdr" >&5 +echo "configure:10734: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10700: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10742: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10732,12 +10774,12 @@ else echo $ac_n "checking for kstat_open in -lkstat""... $ac_c" 1>&6 -echo "configure:10736: checking for kstat_open in -lkstat" >&5 +echo "configure:10778: checking for kstat_open in -lkstat" >&5 ac_lib_var=`echo kstat'_'kstat_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lkstat " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10794: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10783,15 +10825,15 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10787: checking for $ac_hdr" >&5 +echo "configure:10829: checking for $ac_hdr" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10795: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10837: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10823,12 +10865,12 @@ done echo $ac_n "checking for kvm_read in -lkvm""... $ac_c" 1>&6 -echo "configure:10827: checking for kvm_read in -lkvm" >&5 +echo "configure:10869: checking for kvm_read in -lkvm" >&5 ac_lib_var=`echo kvm'_'kvm_read | sed 'y%./+-%__p_%'` xe_check_libs=" -lkvm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -10873,16 +10915,16 @@ fi fi echo $ac_n "checking whether netdb declares h_errno""... $ac_c" 1>&6 -echo "configure:10877: checking whether netdb declares h_errno" >&5 +echo "configure:10919: checking whether netdb declares h_errno" >&5 cat > conftest.$ac_ext < int main() { return h_errno; ; return 0; } EOF -if { (eval echo configure:10886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 { test "$extra_verbose" = "yes" && cat << \EOF @@ -10902,16 +10944,16 @@ fi rm -f conftest* echo $ac_n "checking for sigsetjmp""... $ac_c" 1>&6 -echo "configure:10906: checking for sigsetjmp" >&5 +echo "configure:10948: checking for sigsetjmp" >&5 cat > conftest.$ac_ext < int main() { sigjmp_buf bar; sigsetjmp (bar, 0); ; return 0; } EOF -if { (eval echo configure:10915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10957: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 { test "$extra_verbose" = "yes" && cat << \EOF @@ -10931,11 +10973,11 @@ fi rm -f conftest* echo $ac_n "checking whether localtime caches TZ""... $ac_c" 1>&6 -echo "configure:10935: checking whether localtime caches TZ" >&5 +echo "configure:10977: checking whether localtime caches TZ" >&5 if test "$ac_cv_func_tzset" = "yes"; then cat > conftest.$ac_ext < #if STDC_HEADERS @@ -10970,7 +11012,7 @@ main() exit (0); } EOF -if { (eval echo configure:10974: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:11016: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then emacs_cv_localtime_cache=no else @@ -11000,9 +11042,9 @@ fi if test "$HAVE_TIMEVAL" = "yes"; then echo $ac_n "checking whether gettimeofday accepts one or two arguments""... $ac_c" 1>&6 -echo "configure:11004: checking whether gettimeofday accepts one or two arguments" >&5 +echo "configure:11046: checking whether gettimeofday accepts one or two arguments" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11069: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""two" 1>&6 else @@ -11045,19 +11087,19 @@ fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:11049: checking for inline" >&5 +echo "configure:11091: checking for inline" >&5 ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -11098,17 +11140,17 @@ if test "$__DECC" != "yes"; then # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:11102: checking for working alloca.h" >&5 +echo "configure:11144: checking for working alloca.h" >&5 cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:11112: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11154: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -11132,10 +11174,10 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:11136: checking for alloca" >&5 +echo "configure:11178: checking for alloca" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11209: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -11202,10 +11244,10 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:11206: checking whether alloca needs Cray hooks" >&5 +echo "configure:11248: checking whether alloca needs Cray hooks" >&5 cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:11233: checking for $ac_func" >&5 +echo "configure:11275: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -11285,10 +11327,10 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:11289: checking stack direction for C alloca" >&5 +echo "configure:11331: checking stack direction for C alloca" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:11353: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_c_stack_direction=1 else @@ -11337,15 +11379,15 @@ fi ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for vfork.h""... $ac_c" 1>&6 -echo "configure:11341: checking for vfork.h" >&5 +echo "configure:11383: checking for vfork.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11349: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11391: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11373,10 +11415,10 @@ else fi echo $ac_n "checking for working vfork""... $ac_c" 1>&6 -echo "configure:11377: checking for working vfork" >&5 +echo "configure:11419: checking for working vfork" >&5 cat > conftest.$ac_ext < @@ -11471,7 +11513,7 @@ main() { } } EOF -if { (eval echo configure:11475: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:11517: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_func_vfork_works=yes else @@ -11497,10 +11539,10 @@ fi echo $ac_n "checking for working strcoll""... $ac_c" 1>&6 -echo "configure:11501: checking for working strcoll" >&5 +echo "configure:11543: checking for working strcoll" >&5 cat > conftest.$ac_ext < main () @@ -11510,7 +11552,7 @@ main () strcoll ("123", "456") >= 0); } EOF -if { (eval echo configure:11514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:11556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_func_strcoll_works=yes else @@ -11538,10 +11580,10 @@ fi for ac_func in getpgrp do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:11542: checking for $ac_func" >&5 +echo "configure:11584: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11610: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -11592,10 +11634,10 @@ fi done echo $ac_n "checking whether getpgrp takes no argument""... $ac_c" 1>&6 -echo "configure:11596: checking whether getpgrp takes no argument" >&5 +echo "configure:11638: checking whether getpgrp takes no argument" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:11696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_func_getpgrp_void=yes else @@ -11677,10 +11719,10 @@ fi echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:11681: checking for working mmap" >&5 +echo "configure:11723: checking for working mmap" >&5 case "$opsys" in ultrix* ) have_mmap=no ;; *) cat > conftest.$ac_ext < #include @@ -11713,7 +11755,7 @@ int main (int argc, char *argv[]) return 1; } EOF -if { (eval echo configure:11717: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:11759: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then have_mmap=yes else @@ -11739,9 +11781,9 @@ test "$GNU_MALLOC" != "yes" -a "$have_mmap" != "yes" && rel_alloc=no if test "$rel_alloc $have_mmap" = "default yes"; then if test "$doug_lea_malloc" = "yes"; then echo $ac_n "checking for M_MMAP_THRESHOLD""... $ac_c" 1>&6 -echo "configure:11743: checking for M_MMAP_THRESHOLD" >&5 +echo "configure:11785: checking for M_MMAP_THRESHOLD" >&5 cat > conftest.$ac_ext < int main() { @@ -11753,7 +11795,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:11757: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11799: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* rel_alloc=no; echo "$ac_t""yes" 1>&6; else @@ -11778,15 +11820,15 @@ EOF ac_safe=`echo "termios.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for termios.h""... $ac_c" 1>&6 -echo "configure:11782: checking for termios.h" >&5 +echo "configure:11824: checking for termios.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11790: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11832: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11829,15 +11871,15 @@ else echo "$ac_t""no" 1>&6 ac_safe=`echo "termio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for termio.h""... $ac_c" 1>&6 -echo "configure:11833: checking for termio.h" >&5 +echo "configure:11875: checking for termio.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11841: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11883: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11869,10 +11911,10 @@ fi echo $ac_n "checking for socket""... $ac_c" 1>&6 -echo "configure:11873: checking for socket" >&5 +echo "configure:11915: checking for socket" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11941: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_socket=yes" else @@ -11910,15 +11952,15 @@ if eval "test \"`echo '$ac_cv_func_'socket`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "netinet/in.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for netinet/in.h""... $ac_c" 1>&6 -echo "configure:11914: checking for netinet/in.h" >&5 +echo "configure:11956: checking for netinet/in.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11922: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11964: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11935,15 +11977,15 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "arpa/inet.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for arpa/inet.h""... $ac_c" 1>&6 -echo "configure:11939: checking for arpa/inet.h" >&5 +echo "configure:11981: checking for arpa/inet.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11947: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11989: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11968,9 +12010,9 @@ EOF } echo $ac_n "checking "for sun_len member in struct sockaddr_un"""... $ac_c" 1>&6 -echo "configure:11972: checking "for sun_len member in struct sockaddr_un"" >&5 +echo "configure:12014: checking "for sun_len member in struct sockaddr_un"" >&5 cat > conftest.$ac_ext < @@ -11981,7 +12023,7 @@ int main() { static struct sockaddr_un x; x.sun_len = 1; ; return 0; } EOF -if { (eval echo configure:11985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12027: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6; { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_SOCKADDR_SUN_LEN @@ -11999,9 +12041,9 @@ else fi rm -f conftest* echo $ac_n "checking "for ip_mreq struct in netinet/in.h"""... $ac_c" 1>&6 -echo "configure:12003: checking "for ip_mreq struct in netinet/in.h"" >&5 +echo "configure:12045: checking "for ip_mreq struct in netinet/in.h"" >&5 cat > conftest.$ac_ext < @@ -12011,7 +12053,7 @@ int main() { static struct ip_mreq x; ; return 0; } EOF -if { (eval echo configure:12015: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6; { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_MULTICAST @@ -12042,10 +12084,10 @@ fi echo $ac_n "checking for msgget""... $ac_c" 1>&6 -echo "configure:12046: checking for msgget" >&5 +echo "configure:12088: checking for msgget" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_msgget=yes" else @@ -12083,15 +12125,15 @@ if eval "test \"`echo '$ac_cv_func_'msgget`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "sys/ipc.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/ipc.h""... $ac_c" 1>&6 -echo "configure:12087: checking for sys/ipc.h" >&5 +echo "configure:12129: checking for sys/ipc.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12095: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12137: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12108,15 +12150,15 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "sys/msg.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/msg.h""... $ac_c" 1>&6 -echo "configure:12112: checking for sys/msg.h" >&5 +echo "configure:12154: checking for sys/msg.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12120: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12162: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12154,15 +12196,15 @@ fi ac_safe=`echo "dirent.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dirent.h""... $ac_c" 1>&6 -echo "configure:12158: checking for dirent.h" >&5 +echo "configure:12200: checking for dirent.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12166: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12208: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12189,15 +12231,15 @@ else echo "$ac_t""no" 1>&6 ac_safe=`echo "sys/dir.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/dir.h""... $ac_c" 1>&6 -echo "configure:12193: checking for sys/dir.h" >&5 +echo "configure:12235: checking for sys/dir.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12201: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12243: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12230,15 +12272,15 @@ fi ac_safe=`echo "nlist.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for nlist.h""... $ac_c" 1>&6 -echo "configure:12234: checking for nlist.h" >&5 +echo "configure:12276: checking for nlist.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12242: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12284: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12268,22 +12310,22 @@ fi echo "checking "for sound support"" 1>&6 -echo "configure:12272: checking "for sound support"" >&5 +echo "configure:12314: checking "for sound support"" >&5 test -z "$with_native_sound" -a -n "$native_sound_lib" && with_native_sound=yes if test "$with_native_sound" != "no"; then if test -n "$native_sound_lib"; then ac_safe=`echo "multimedia/audio_device.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for multimedia/audio_device.h""... $ac_c" 1>&6 -echo "configure:12279: checking for multimedia/audio_device.h" >&5 +echo "configure:12321: checking for multimedia/audio_device.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12287: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12329: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12331,12 +12373,12 @@ fi if test -z "$native_sound_lib"; then echo $ac_n "checking for ALopenport in -laudio""... $ac_c" 1>&6 -echo "configure:12335: checking for ALopenport in -laudio" >&5 +echo "configure:12377: checking for ALopenport in -laudio" >&5 ac_lib_var=`echo audio'_'ALopenport | sed 'y%./+-%__p_%'` xe_check_libs=" -laudio " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12393: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -12378,12 +12420,12 @@ fi if test -z "$native_sound_lib"; then echo $ac_n "checking for AOpenAudio in -lAlib""... $ac_c" 1>&6 -echo "configure:12382: checking for AOpenAudio in -lAlib" >&5 +echo "configure:12424: checking for AOpenAudio in -lAlib" >&5 ac_lib_var=`echo Alib'_'AOpenAudio | sed 'y%./+-%__p_%'` xe_check_libs=" -lAlib " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -12432,15 +12474,15 @@ fi for dir in "machine" "sys" "linux"; do ac_safe=`echo "${dir}/soundcard.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ${dir}/soundcard.h""... $ac_c" 1>&6 -echo "configure:12436: checking for ${dir}/soundcard.h" >&5 +echo "configure:12478: checking for ${dir}/soundcard.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12486: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12501,15 +12543,15 @@ fi if test "$with_nas_sound" != "no"; then ac_safe=`echo "audio/audiolib.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for audio/audiolib.h""... $ac_c" 1>&6 -echo "configure:12505: checking for audio/audiolib.h" >&5 +echo "configure:12547: checking for audio/audiolib.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12513: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12555: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12527,12 +12569,12 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo $ac_n "checking for AuOpenServer in -laudio""... $ac_c" 1>&6 -echo "configure:12531: checking for AuOpenServer in -laudio" >&5 +echo "configure:12573: checking for AuOpenServer in -laudio" >&5 ac_lib_var=`echo audio'_'AuOpenServer | sed 'y%./+-%__p_%'` xe_check_libs=" -laudio " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12589: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -12582,7 +12624,7 @@ EOF fi libs_x="-laudio $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-laudio\" to \$libs_x"; fi cat > conftest.$ac_ext < EOF @@ -12613,7 +12655,7 @@ if test "$with_esd_sound" != "no"; then # Extract the first word of "esd-config", so it can be a program name with args. set dummy esd-config; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:12617: checking for $ac_word" >&5 +echo "configure:12659: checking for $ac_word" >&5 if test -n "$have_esd_config"; then ac_cv_prog_have_esd_config="$have_esd_config" # Let the user override the test. @@ -12642,10 +12684,10 @@ fi c_switch_site="$c_switch_site `esd-config --cflags`" && if test "$extra_verbose" = "yes"; then echo " Appending \"`esd-config --cflags`\" to \$c_switch_site"; fi LIBS="`esd-config --libs` $LIBS" && if test "$extra_verbose" = "yes"; then echo " Prepending \"`esd-config --libs`\" to \$LIBS"; fi echo $ac_n "checking for esd_play_stream""... $ac_c" 1>&6 -echo "configure:12646: checking for esd_play_stream" >&5 +echo "configure:12688: checking for esd_play_stream" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_esd_play_stream=yes" else @@ -12719,7 +12761,7 @@ test -z "$with_tty" && with_tty=yes if test "$with_tty" = "yes" ; then echo "checking for TTY-related features" 1>&6 -echo "configure:12723: checking for TTY-related features" >&5 +echo "configure:12765: checking for TTY-related features" >&5 { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_TTY EOF @@ -12735,12 +12777,12 @@ EOF if test -z "$with_ncurses"; then echo $ac_n "checking for tgetent in -lncurses""... $ac_c" 1>&6 -echo "configure:12739: checking for tgetent in -lncurses" >&5 +echo "configure:12781: checking for tgetent in -lncurses" >&5 ac_lib_var=`echo ncurses'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -lncurses " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -12784,15 +12826,15 @@ EOF ac_safe=`echo "ncurses/curses.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ncurses/curses.h""... $ac_c" 1>&6 -echo "configure:12788: checking for ncurses/curses.h" >&5 +echo "configure:12830: checking for ncurses/curses.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12796: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12838: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12814,15 +12856,15 @@ fi ac_safe=`echo "ncurses/term.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ncurses/term.h""... $ac_c" 1>&6 -echo "configure:12818: checking for ncurses/term.h" >&5 +echo "configure:12860: checking for ncurses/term.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12826: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12868: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12852,15 +12894,15 @@ fi c_switch_site="$c_switch_site -I/usr/include/ncurses" ac_safe=`echo "ncurses/curses.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ncurses/curses.h""... $ac_c" 1>&6 -echo "configure:12856: checking for ncurses/curses.h" >&5 +echo "configure:12898: checking for ncurses/curses.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12864: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12906: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -12895,12 +12937,12 @@ fi for lib in curses termlib termcap; do echo $ac_n "checking for tgetent in -l$lib""... $ac_c" 1>&6 -echo "configure:12899: checking for tgetent in -l$lib" >&5 +echo "configure:12941: checking for tgetent in -l$lib" >&5 ac_lib_var=`echo $lib'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -l$lib " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12957: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -12942,12 +12984,12 @@ fi else echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6 -echo "configure:12946: checking for tgetent in -lcurses" >&5 +echo "configure:12988: checking for tgetent in -lcurses" >&5 ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -lcurses " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13004: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -12976,12 +13018,12 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6 -echo "configure:12980: checking for tgetent in -ltermcap" >&5 +echo "configure:13022: checking for tgetent in -ltermcap" >&5 ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -ltermcap " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13040,15 +13082,15 @@ EOF test -z "$with_gpm" && { ac_safe=`echo "gpm.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for gpm.h""... $ac_c" 1>&6 -echo "configure:13044: checking for gpm.h" >&5 +echo "configure:13086: checking for gpm.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13052: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13094: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13071,12 +13113,12 @@ fi } test -z "$with_gpm" && { echo $ac_n "checking for Gpm_Open in -lgpm""... $ac_c" 1>&6 -echo "configure:13075: checking for Gpm_Open in -lgpm" >&5 +echo "configure:13117: checking for Gpm_Open in -lgpm" >&5 ac_lib_var=`echo gpm'_'Gpm_Open | sed 'y%./+-%__p_%'` xe_check_libs=" -lgpm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13137,20 +13179,20 @@ test "$with_x11" = "yes" -o "$with_tty" = "yes" && extra_objs="$extra_objs event test "$with_database_gdbm $with_database_dbm $with_database_berkdb" \ != "no no no" && echo "checking for database support" 1>&6 -echo "configure:13141: checking for database support" >&5 +echo "configure:13183: checking for database support" >&5 if test "$with_database_gdbm $with_database_dbm" != "no no"; then ac_safe=`echo "ndbm.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ndbm.h""... $ac_c" 1>&6 -echo "configure:13146: checking for ndbm.h" >&5 +echo "configure:13188: checking for ndbm.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13154: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13196: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13180,12 +13222,12 @@ fi if test "$with_database_gdbm" != "no"; then echo $ac_n "checking for dbm_open in -lgdbm""... $ac_c" 1>&6 -echo "configure:13184: checking for dbm_open in -lgdbm" >&5 +echo "configure:13226: checking for dbm_open in -lgdbm" >&5 ac_lib_var=`echo gdbm'_'dbm_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lgdbm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13242: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13224,10 +13266,10 @@ fi if test "$with_database_dbm" != "no"; then echo $ac_n "checking for dbm_open""... $ac_c" 1>&6 -echo "configure:13228: checking for dbm_open" >&5 +echo "configure:13270: checking for dbm_open" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13296: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_dbm_open=yes" else @@ -13269,12 +13311,12 @@ else echo $ac_n "checking for dbm_open in -ldbm""... $ac_c" 1>&6 -echo "configure:13273: checking for dbm_open in -ldbm" >&5 +echo "configure:13315: checking for dbm_open in -ldbm" >&5 ac_lib_var=`echo dbm'_'dbm_open | sed 'y%./+-%__p_%'` xe_check_libs=" -ldbm " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13331: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13326,10 +13368,10 @@ EOF if test "$with_database_berkdb" != "no"; then echo $ac_n "checking for Berkeley db.h""... $ac_c" 1>&6 -echo "configure:13330: checking for Berkeley db.h" >&5 +echo "configure:13372: checking for Berkeley db.h" >&5 for header in "db/db.h" "db.h"; do cat > conftest.$ac_ext < @@ -13351,7 +13393,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13355: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13397: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* db_h_file="$header"; break else @@ -13367,9 +13409,9 @@ rm -f conftest* if test "$with_database_berkdb" != "no"; then echo $ac_n "checking for Berkeley DB version""... $ac_c" 1>&6 -echo "configure:13371: checking for Berkeley DB version" >&5 +echo "configure:13413: checking for Berkeley DB version" >&5 cat > conftest.$ac_ext < #if DB_VERSION_MAJOR > 1 @@ -13381,7 +13423,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "yes" >/dev/null 2>&1; then rm -rf conftest* cat > conftest.$ac_ext < #if DB_VERSION_MAJOR > 2 @@ -13408,10 +13450,10 @@ fi rm -f conftest* echo $ac_n "checking for $dbfunc""... $ac_c" 1>&6 -echo "configure:13412: checking for $dbfunc" >&5 +echo "configure:13454: checking for $dbfunc" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$dbfunc=yes" else @@ -13453,12 +13495,12 @@ else echo $ac_n "checking for $dbfunc in -ldb""... $ac_c" 1>&6 -echo "configure:13457: checking for $dbfunc in -ldb" >&5 +echo "configure:13499: checking for $dbfunc in -ldb" >&5 ac_lib_var=`echo db'_'$dbfunc | sed 'y%./+-%__p_%'` xe_check_libs=" -ldb " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13543,12 +13585,12 @@ fi if test "$with_socks" = "yes"; then echo $ac_n "checking for SOCKSinit in -lsocks""... $ac_c" 1>&6 -echo "configure:13547: checking for SOCKSinit in -lsocks" >&5 +echo "configure:13589: checking for SOCKSinit in -lsocks" >&5 ac_lib_var=`echo socks'_'SOCKSinit | sed 'y%./+-%__p_%'` xe_check_libs=" -lsocks " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13614,22 +13656,22 @@ fi if test "$with_modules" != "no"; then echo "checking for module support" 1>&6 -echo "configure:13618: checking for module support" >&5 +echo "configure:13660: checking for module support" >&5 if test "$with_msw" = "yes"; then have_dl=yes; else ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 -echo "configure:13625: checking for dlfcn.h" >&5 +echo "configure:13667: checking for dlfcn.h" >&5 cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13633: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13675: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13646,16 +13688,16 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for dlopen in -lc""... $ac_c" 1>&6 -echo "configure:13650: checking for dlopen in -lc" >&5 +echo "configure:13692: checking for dlopen in -lc" >&5 cat > conftest.$ac_ext < int main() { dlopen ("", 0); ; return 0; } EOF -if { (eval echo configure:13659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13701: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* have_dl=yes else @@ -13664,18 +13706,18 @@ else rm -rf conftest* echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 -echo "configure:13668: checking for dlopen in -ldl" >&5 +echo "configure:13710: checking for dlopen in -ldl" >&5 ac_save_LIBS="$LIBS" LIBS="-ldl $LIBS" cat > conftest.$ac_ext < int main() { dlopen ("", 0); ; return 0; } EOF -if { (eval echo configure:13679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13721: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* have_dl=yes else @@ -13704,12 +13746,12 @@ EOF else echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 -echo "configure:13708: checking for shl_load in -ldld" >&5 +echo "configure:13750: checking for shl_load in -ldld" >&5 ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'` xe_check_libs=" -ldld " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13766: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13747,12 +13789,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for dld_init in -ldld""... $ac_c" 1>&6 -echo "configure:13751: checking for dld_init in -ldld" >&5 +echo "configure:13793: checking for dld_init in -ldld" >&5 ac_lib_var=`echo dld'_'dld_init | sed 'y%./+-%__p_%'` xe_check_libs=" -ldld " cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13809: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13808,7 +13850,7 @@ xehost=$canonical xealias=$internal_configuration echo "checking how to build dynamic libraries for ${xehost}" 1>&6 -echo "configure:13812: checking how to build dynamic libraries for ${xehost}" >&5 +echo "configure:13854: checking how to build dynamic libraries for ${xehost}" >&5 # Transform *-*-linux* to *-*-linux-gnu*, to support old configure scripts. case "$xehost" in *-*-linux-gnu*) ;; @@ -13836,9 +13878,9 @@ if test "$GCC" = "yes"; then XEGCC=yes else echo $ac_n "checking checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:13840: checking checking whether we are using GNU C" >&5 +echo "configure:13882: checking checking whether we are using GNU C" >&5 cat > conftest.$ac_ext <&6 -echo "configure:13864: checking how to produce PIC code" >&5 +echo "configure:13906: checking how to produce PIC code" >&5 wl= can_build_shared=yes @@ -13868,11 +13910,11 @@ if test "$XEGCC" = yes; then wl='-Wl,' case "$xehost_os" in - aix3* | aix4* | irix5* | irix6* | osf3* | osf4*) + aix[3-9]* | irix[5-9]* | osf[3-9]) # PIC is the default for these OSes. ;; - aix3* | aix4* | os2*) + os2*) # We can build DLLs from non-PIC. ;; amigaos*) @@ -13897,7 +13939,7 @@ else dll_cflags='+Z' ;; - irix5* | irix6*) + irix[5-9]*) wl='-Wl,' # PIC (with -KPIC) is the default. ;; @@ -13906,11 +13948,16 @@ else # We can build DLLs from non-PIC. ;; - osf3* | osf4*) + osf[3-9]*) # All OSF/1 code is PIC. wl='-Wl,' ;; + aix[3-9]*) + # All AIX code is PIC. + wl='-Wl,' + ;; + sco3.2v5*) dll_cflags='-belf -Kpic' wl='-Wl,' @@ -13956,18 +14003,18 @@ if test -n "$dll_cflags"; then # Check to make sure the dll_cflags actually works. echo $ac_n "checking if PIC flag ${dll_cflags} really works""... $ac_c" 1>&6 -echo "configure:13960: checking if PIC flag ${dll_cflags} really works" >&5 +echo "configure:14007: checking if PIC flag ${dll_cflags} really works" >&5 save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $dll_cflags -DPIC" cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14018: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* # On HP-UX, the stripped-down bundled CC doesn't accept +Z, but also @@ -13998,13 +14045,13 @@ cc_produces_so=no xldf= xcldf= echo $ac_n "checking if C compiler can produce shared libraries""... $ac_c" 1>&6 -echo "configure:14002: checking if C compiler can produce shared libraries" >&5 +echo "configure:14049: checking if C compiler can produce shared libraries" >&5 if test "$XEGCC" = yes; then xcldf="-shared" xldf="-shared" else # Not using GCC case "$xehost_os" in - aix3* | aix4*) + aix[3-9]*) xldf="-bE:ELLSONAME.exp -H512 -T512 -bhalt:4 -bM:SRE -bnoentry -lc" xcldf="${wl}-bE:ELLSONAME.exp ${wl}-H512 ${wl}-T512 ${wl}-bhalt:4 ${wl}-bM:SRE ${wl}-bnoentry ${wl}-lc" ;; @@ -14023,7 +14070,7 @@ else # Not using GCC xcldf="${wl}-b ${wl}+s" ;; - irix5* | irix6* | osf3* | osf4*) + irix[5-9]* | osf[3-9]*) xcldf="${wl}-shared" xldf="-shared" ;; @@ -14049,14 +14096,14 @@ if test -n "$xcldf"; then xe_libs= ac_link='${CC-cc} -o conftest $CFLAGS '"$xe_cppflags $xe_ldflags"' conftest.$ac_ext '"$xe_libs"' 1>&5' cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14107: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cc_produces_so=yes else @@ -14081,7 +14128,7 @@ if test -z "$LTLD"; then if test "$XEGCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:14085: checking for ld used by GCC" >&5 +echo "configure:14132: checking for ld used by GCC" >&5 ac_prog=`($CC -print-prog-name=ld) 2>&5` case "$ac_prog" in # Accept absolute paths. @@ -14106,7 +14153,7 @@ echo "configure:14085: checking for ld used by GCC" >&5 esac else echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:14110: checking for GNU ld" >&5 +echo "configure:14157: checking for GNU ld" >&5 fi if test -z "$LTLD"; then @@ -14144,7 +14191,7 @@ ld_dynamic_link_flags= # Check to see if it really is or isn't GNU ld. echo $ac_n "checking if the linker is GNU ld""... $ac_c" 1>&6 -echo "configure:14148: checking if the linker is GNU ld" >&5 +echo "configure:14195: checking if the linker is GNU ld" >&5 # I'd rather use --version here, but apparently some GNU ld's only accept -v. if $LTLD -v 2>&1 &5; then xe_gnu_ld=yes @@ -14172,7 +14219,7 @@ else # OK - only NOW do we futz about with ld. # See if the linker supports building shared libraries. echo $ac_n "checking whether the linker supports shared libraries""... $ac_c" 1>&6 -echo "configure:14176: checking whether the linker supports shared libraries" >&5 +echo "configure:14223: checking whether the linker supports shared libraries" >&5 dll_ld=$CC dll_ldflags=$LDFLAGS ld_shlibs=yes @@ -14194,7 +14241,7 @@ echo "configure:14176: checking whether the linker supports shared libraries" >& dll_ldflags=$xldf ;; - aix4*) + aix[4-9]*) dll_ldflags=$xcldf ;; @@ -14224,7 +14271,7 @@ echo "configure:14176: checking whether the linker supports shared libraries" >& dll_ldflags=$xldf ;; - irix5* | irix6*) + irix[5-9]*) dll_ld=$LTLD dll_ldflags=$xldf ;; @@ -14297,11 +14344,7 @@ fi if test -z "$ld_dynamic_link_flags"; then case "$xehost_os" in - aix3*) - ld_dynamic_link_flags= - ;; - - aix4*) + aix[3-9]*) ld_dynamic_link_flags= ;; @@ -14321,7 +14364,7 @@ if test -z "$ld_dynamic_link_flags"; then ld_dynamic_link_flags="${wl}-E" ;; - irix5* | irix6*) + irix[5-9]*) ld_dynamic_link_flags= ;; @@ -14387,10 +14430,10 @@ EOF for ac_func in dlerror _dlerror do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:14391: checking for $ac_func" >&5 +echo "configure:14434: checking for $ac_func" >&5 cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -14452,11 +14495,11 @@ done fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:14503: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then : else diff --git a/configure.in b/configure.in index df8b701..3de01c5 100644 --- a/configure.in +++ b/configure.in @@ -3,10 +3,11 @@ define([AC_INIT_NOTICE], [#### Configuration script for XEmacs. Largely divergent from FSF. #### Guess values for system-dependent variables and create Makefiles. #### Generated automatically using autoconf version] AC_ACVERSION [ -#### Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. +#### Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. #### Copyright (C) 1993-1995 Board of Trustees, University of Illinois. #### Copyright (C) 1996, 1997 Sun Microsystems, Inc. #### Copyright (C) 1995, 1996 Ben Wing. +#### Copyright (C) 2000, 2001 Martin Buchholz. #### Copyright (C) 1998, 1999 J. Kean Johnston. ### Don't edit this script! @@ -1509,18 +1510,7 @@ case "$canonical" in *-bsdi3* ) opsys=bsdos3 ;; *-bsdi2.1* ) opsys=bsdos2-1 ;; *-bsdi2* ) opsys=bsdos2 ;; - *-sco3.2v5* ) opsys=sco5 ; - dnl This is a pain. Like the current USL cc, SCO cc -E - dnl tokenizes as it preprocesses, making configure very - dnl unhappy. Unfortunately, /lib/cpp does not understand - dnl flags like "-b elf", so we have to cheat in order to - dnl pick up the right defines for UNEXEC from the s-file. - dnl 01/05/95 robertl@dgii.com - if test "$dynamic" = "yes" ; then - NON_GNU_CPP="/lib/cpp -D_XOPEN_SOURCE -D_SCO_ELF" ; - else - NON_GNU_CPP="/lib/cpp -D_XOPEN_SOURCE" ; - fi ;; + *-sco3.2v5* ) opsys=sco5 ;; *-sysv5* ) opsys=sco7 ;; *-386bsd* ) opsys=386bsd ;; *-freebsd* ) opsys=freebsd ;; @@ -2256,9 +2246,6 @@ fi ])dnl XE_COMPUTE_RUNPATH() -dnl JKJ REMOVEME -dnl XE_SHLIB_STUFF - dnl ----------------------------------- dnl Do some misc autoconf-special tests dnl ----------------------------------- @@ -2345,31 +2332,29 @@ AC_CHECK_HEADERS(dnl sys/un.h dnl ulimit.h dnl unistd.h dnl - utime.h dnl ) AC_HEADER_SYS_WAIT AC_HEADER_STDC AC_HEADER_TIME AC_DECL_SYS_SIGLIST -dnl Some systems have utime.h but do not declare the struct anyplace. -AC_MSG_CHECKING(for struct utimbuf) -AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME -#include -#include -#else -#ifdef HAVE_SYS_TIME_H -#include -#else -#include -#endif -#endif -#ifdef HAVE_UTIME_H -#include -#endif], [static struct utimbuf x; x.actime = x.modtime;], + +dnl ---------------------------------------------------------------- +dnl Checking for utime() or utimes(). +dnl We prefer utime, since it is more standard. +dnl Some systems have utime.h but do not declare the struct anyplace, +dnl so we use a more sophisticated test for utime than AC_CHECK_FUNCS. +dnl ---------------------------------------------------------------- +AC_MSG_CHECKING(for utime) +AC_TRY_COMPILE([#include +#include ], +[struct utimbuf x; x.actime = x.modtime = 0; utime ("/", &x);], [AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_STRUCT_UTIMBUF)], - AC_MSG_RESULT(no)) + AC_DEFINE(HAVE_UTIME)], + [AC_MSG_RESULT(no) + dnl We don't have utime(); how about utimes()? + AC_CHECK_FUNCS(utimes)]) + dnl checks for typedefs AC_TYPE_SIGNAL @@ -3074,8 +3059,8 @@ if test "$window_system" != "none"; then AC_MSG_RESULT($with_xpm) fi if test "$with_xpm" = "yes"; then - dnl #### This code assumes that if AC_CHECK_LIB fails, - dnl #### then it will succeed if FOR_MSW is defined, + dnl #### This code assumes that if AC_CHECK_LIB fails, + dnl #### then it will succeed if FOR_MSW is defined, dnl #### but doesn't actually verify this assumption. AC_DEFINE(HAVE_XPM) XE_PREPEND(-lXpm, libs_x) @@ -3571,7 +3556,7 @@ if test "$need_motif" = "yes" ; then XE_COMPUTE_RUNPATH() fi -AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror tzset ulimit usleep utimes waitpid vsnprintf fsync ftruncate umask) +AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror tzset ulimit usleep waitpid vsnprintf fsync ftruncate umask) dnl ---------------------------------------------------------------- dnl Check for PTY support functions. diff --git a/etc/MACHINES b/etc/MACHINES index 0d3bbf3..78c3c21 100644 --- a/etc/MACHINES +++ b/etc/MACHINES @@ -1,1261 +1,45 @@ -This is a list of the status of GNU Emacs on various machines and systems. +This is a list of the status of XEmacs on various machines and systems. +See PROBLEMS for particular problems and possible workarounds. -For each system and machine, we give the configuration name you should -pass to the `configure' script to prepare to build Emacs for that -system/machine. +Much effort has gone into making XEmacs work on as many different +machines, configurations, and compilers as possible. -The `configure' script uses the configuration name to decide which -machine and operating system description files `src/config.h' should -include. The machine description files are all in `src/m', and have -names similar to, but not identical to, the machine names used in -configuration names. The operating system files are all in `src/s', -and are named similarly. See the `configure' script if you need to -know which configuration names use which machine and operating system -description files. +Much effort has gone into making XEmacs 64-bit clean. -If you add support for a new configuration, add a section to this -file, and then edit the `configure' script to tell it which -configuration name(s) should select your new machine description and -system description files. +Much effort has gone into removing system-specific code, and replacing +such code with autodetection at configure time. - -Here are the configurations Emacs is intended to work with, with the -corresponding configuration names. You can postpend version numbers -to operating system names (i.e. sunos4.1) or architecture names (i.e. -hppa1.1). If you leave out the version number, the `configure' script -will configure Emacs for the latest version it knows about. +The XEmacs core should build "out of the box" on most Unix-like systems. -************************************************************************* -* * -* NOTE: this file is kept in sync with the FSF version, though we * -* expect the information here to be mostly accurate for XEmacs. * -* Bear in mind that the version numbers mentioned in the text below * -* are the FSF numbers, not the Lucid numbers. For comparison, * -* FSFmacs 19.26 roughly corresponds to XEmacs 19.11. * -* * -************************************************************************* +XEmacs 21.2 was tested and `make check' succeeded on these Unix +configurations as of 2001-02-10: -Acorn RISCiX (arm-acorn-riscix1.2) +alphaev56-dec-osf4.0e (both Compaq C and gcc) +i386-unknown-freebsd4.2 +i386-unknown-netbsdelf1.5 +i586-sco-sysv5uw7.0.1 (both SCO's cc and gcc) +i686-pc-linux-gnu +hppa2.0-hp-hpux10.20 (both HP's ANSI cc and gcc) +mips-sgi-irix6.5 (both MIPSpro cc and gcc) +rs6000-ibm-aix4.3.0.0 (both IBM's xlc and gcc) +sparc-sun-solaris2.6 (both Sun's Forte C and gcc) +sparc-sun-solaris2.7 (both Sun's Forte C and gcc) +sparc-sun-sunos4.1.4 (gcc) - Emacs 19.29 has changes that ought to support RISCiX 1.2. +Some systems have a dual mode 32-bit/64-bit compiler. On most of +these, XEmacs requires the --pdump configure option to build +correctly with the 64-bit version of the compiler. - Due to a bug in the RISCiX C compiler (3.4.5), emacs must - be built with gcc (versions 2.5.8 onwards). +mips-sgi-irix6.5, CC="gcc -mabi=64" +mips-sgi-irix6.5, CC="cc -64" +rs6000-ibm-aix4.3.0.0, CC="cc -q64" - In addition, you will need GNU sed and GNU make, as the RISCiX release - versions of these utilities cannot cope with building emacs-19! +On most of these systems, XEmacs also builds with a C++ compiler, +but not "out of the box". This feature is only for use by the +maintainers. - GNU sed should be configured with: +XEmacs 21.2 is known _not_ to work on any machines with m680x0 +processors. Sorry, all you sun3 and Unix PC nostalgia buffs out there. - env 'DEFS=-Dgetopt=gnu_getopt -Dopterr=gnu_opterr -Doptind=gnu_optind \ - -Doptarg=gnu_optarg' ./configure - - GNU make (3.72+) should be configured with: - - env 'CFLAGS=-Dgetopt=gnu_getopt -Dopterr=gnu_opterr -Doptind=gnu_optind \ - -Doptarg=gnu_optarg' ./configure - - Emacs may be configured to use the X toolkit, by adding --with-x-toolkit - to the configure command. If you do this, you will need to edit the line - in src/Makefile which defines LIBW (about line 59) to read: - - LIBW= -lXaw_n - - This ensures that the non-shared widget library is used. - - It is unlikely that this version of emacs will work with RISCiX 1.1. - -Alliant (fx80-alliant-bsd): - - 18.52 worked on system version 4. Previous Emacs versions were - known to work on previous system versions. - - If you are using older versions of their operating system, you may - need to edit `src/config.h' to use `m/alliant1.h' (on version 1) or - `m/alliant.h' (on versions 2 and 3). - -Alliant FX/2800 (i860-alliant-bsd) - - Known to work with 19.26 and OS version 2.2, compiler version 1.3. - -Alpha (DEC) running OSF/1 (alpha-dec-osf1) - - Worked as of Lucid Emacs 19.8. - -Altos 3068 (m68k-altos-sysv) - - 18.52 was said to work, provided you don't compile unexec.c with -O. - -Amdahl UTS (580-amdahl-sysv) - - Small changes for 18.38 were merged in 18.39. It is mostly - working, but at last report a bug sometimes causes Emacs to - grab very large amounts of memory. No fix or explanation - has yet been reported. It may be possible to find this bug - if you find which Emacs command it happens within and then - run that command with a breakpoint set at malloc. - - The 5.2u370 compiler is so brain damaged that it is not - even worth trying to use it. Success was obtained with the - uts native C compiler on uts version 5.2.5. - -Apollo running Domain (m68k-apollo-domain) - - 19.29 has a few patches that ought to make things work. - - There are reports of bugs in cc -O on this system. - - In `lib-src/Makefile', don't expect emacsclient and emacsserver to - compile. You might want to remove them from your makefile. - - The Apollo has a bizarre operating system which does not permit - Emacs to be dumped with preloaded pure Lisp code. Therefore, each - time you start Emacs on this system, the standard Lisp code is loaded - into it. Expect it to take a long time. You can prevent loading of - the standard Lisp code by specifying the -nl switch. It must - come at the beginning of the command line; only the -t and -batch - switches may come before it. - - - Here is a design for a method of dumping and reloading the relevant - necessary impure areas of Emacs. - - On dumping, you need to dump only the array `pure' plus the - locations that contain values of forwarded Lisp variables or that are - protected for garbage collection. The former can be found by a - garbage- collection-like technique, and the latter are in the - staticprolist vector (see alloc.c for both things). - - Reloading would work in an Emacs that has just been started; except - when a switch is specified to inhibit this, it would read the dump - file and set all the appropriate locations. The data loaded must be - relocated, but that's not hard. Those locations that are of type - Lisp_Object can be found by a technique like garbage-collection, and - those of them that point to storage can be relocated. The other data - read from the file will not need to be relocated. - - The switch to inhibit loading the data base would be used when it - is time to dump a new data base. - - This would take a few seconds, which is much faster than loading - the Lisp code of Emacs from scratch. - -AT&T 3b2, 3b5, 3b15, 3b20 (we32k-att-sysv) - - Emacs will probably not work with certain kernel constants too small. - - In param.h CDLIMIT should be at least (1L << 12) in order to allow - processes to write up to 2 Mbyte files. This parameter is configurable - by normal means in /etc/master.d/kernel; examine that file for the - symbol CDLIMIT or ULIMIT, and raise it by several powers of 2. Then - do normal kernel rebuild things via "cd /boot; mkboot -k KERNEL" and so - forth. - - In seg.h NSEGP and STACKSEG should be at least 16 and 4 respectively - to allow processes with total size of up to 2Mbytes. - However, I'm told it is unlikely this would fail to be true. - - The MAXMEM may also prevent Emacs from running. The file - 3B-MAXMEM in this directory explains how to increase MAXMEM. - - On some of these machines, you may need to define IN_SCCS_ID - in config.h to make Emacs work. Supposedly you can tell whether - this is necessary by checking something in /usr/include/sys/time.h; - we do not know precisely what. - -AT&T 7300 or 3b1 (m68k-att-sysv) - - 18.52 worked. If you have strange troubles with dumping - Emacs, delete the last few lines from `src/m/7300.h' and recompile. - These lines are supposed to produce a sharable executable. - - `src/m/7300.h' defines SHORTNAMES because operating system versions - older than 3.5 did not support long symbol names. Version 3.5 does - support them, so you can remove the #define SHORTNAMES in that - version. - -Bull DPX/2 models 2nn or 3nn (m68k-bull-sysv3) - - Minor fixes merged into 19.19, which should work with CC or GCC. - - You should compile with all the POSIX stuff: undef _SYSV and define - _POSIX_SOURCE, _XOPEN_SOURCE and _BULL_SOURCE. - - On bos2.00.45 there is a bug that makes the F_SETOWN fcntl - call enters in an infinite loop. F_SETOWN_BUG has been defined to avoid - calling it. - -Bull DPX/20 (rs6000-bull-bosx) - - Version 19 works. - -Bull sps7 (m68k-bull-sysv2) - - Changes partially merged in version 19, but some fixes are probably required. - -CCI 5/32, 6/32 - - See "Tahoe". - -Celerity (celerity-celerity-bsd4.2) - - Version 18.49 worked. This configuration name is a hack, because we - don't know the processor used by Celerities. If someone - who uses a Celerity could get in touch with us, we can teach - config.sub a better name for the configuration. - -Clipper (clipper-???) - - Version 19 has support for some brand of clipper system. If you - have successfully built Emacs 19 on some sort of clipper system, let - us know so we can flesh out this entry. - - Note that the Orion 105 is also a clipper, but some system-related - parameters are different. - -Convex (c1-convex-bsd, c2-convex-bsd, c32-convex-bsd, c34-convex-bsd, - c38-convex-bsd) - - Support updated and residual bugs fixed in 19.26. - -Cubix QBx/386 (i386-cubix-sysv) - - Changes merged in 19.1. Systems before 2/A/0 may fail to compile etags.c - due to a compiler bug. - -Cydra 5 (cydra-cydrome-sysv) - - 18.51 worked in one version of their operating system but stopped - working in a newer version. This has not been fixed. - -Data General Aviion (m88k-dg-dgux) - - 19.23 works; however, the GCC provided with DGUX 5.4R3.00 fails to - compile src/emacs.c. GCC 2.5.8 does work. - The 19.26 pretest was reported to work; no word on which compiler. - - System versions other than DGUX 5.4R3.00 have not been tested. - -DECstation (mips-dec-ultrix or mips-dec-osf) - - This machine is the older Mips-based DECstation. - Emacs should now work on the Alpha CPU. - - 19.25 works on Ultrix 4.2. The 19.26 pretest was reported to work - on Ultrix 4.2a and on 4.4. - - One user reported 19.25 did not work at all with --with-x-toolkit - using X11R5 patch level 10, but worked ok with X11R5 pl26. - - See under Ultrix for problems using X windows on Ultrix. - Note that this is a MIPS machine. - - For Ultrix versions 4.1 or earlier, you may need to define - SYSTEM_MALLOC in `src/m/pmax.h', because XvmsAlloc.o in libX11.a seems - to insist on defining malloc itself. - - For Ultrix versions prior to 4.0, you may need to delete - the definition of START_FILES from `src/m/pmax.h'. - -Motorola Delta 147 (m68k-motorola-sysv) - - The EMacs 19.26 pretest was reported to work. - - Motorola Delta boxes running System V/68 release 3. - Tested on 147 board with SVR3V7, no X and gcc. - Tested on 167 board with SVR3V7, no X, cc, gnucc and gcc. - Reports say it works with X too. - - The installation script chooses the compiler itself. gnucc is - preferred. - -Motorola Delta 187 (m88k-motorola-sysv, - m88k-motorola-sysvr4, or - m88k-motorola-m88kbcs) - - The 19.26 pretest was reported to run on SVR3. However, if you - use --with-x-toolkit on svr3, you will have problems compiling some - files because time.h and sys/time.h get included twice. - One fix is to edit those files to protect against multiple inclusion. - - As of version 19.13, Emacs was reported to run under SYSVr3 and SYSVr4. - -Dual running System V (m68k-dual-sysv) - - As of 17.46, this worked except for a few changes - needed in unexec.c. - -Dual running Uniplus (m68k-dual-uniplus) - - Worked, as of 17.51. - -Elxsi 6400 (elxsi-elxsi-sysv) - - Changes for 12.0 release are in 19.1. - Dumping should work now. - -Encore machine (ns16k-encore-bsd) - - This machine bizarrely uses 4.2BSD modified to use the COFF format - for object files. Works (as of 18.40). For the APC processor you - must enable two lines at the end of `src/s/umax.h', which are commented - out in the file as distributed. - - WARNING: If you compile Emacs with the "-O" compiler switch, you - must also use the "-q enter_exits" switch so that all functions have - stack frames. Otherwise routines that call `alloca' all lose. - - A kernel bug in some system versions causes input characters to be lost - occasionally. - -GEC 63 (local-gec63-usg5.2) - - Changes are partially merged in version 18, but certainly require - more work. Let us know if you get this working, and we'll give it a - real configuration name. - -Gould Power Node (pn-gould-bsd4.2 or pn-gould-bsd4.3) - - 18.36 worked on versions 1.2 and 2.0 of the operating system. - - On UTX/32 2.0, use pn-gould-bsd4.3. - - On UTX/32 1.2 and UTX/32S 1.0, use pn-gould-bsd4.2 and note that - compiling `lib-src/sorted-doc' tickles a compiler bug: remove the -g - flag to cc in the makefile. - - UTX/32 1.3 has a bug in the bcopy library routine. Fix it by - #undef BSTRING in `src/m/gould.h'. - - Version 19 incorporates support for releases 2.1 and later of UTX/32. - A site running a pre-release of 2.1 should #define RELEASE2_1 in config.h. - -Gould NP1 (np1-gould-bsd) - - Version 19 supposedly works. - -Harris Night Hawk (m68k-harris-cxux or m88k-harris-cxux) - - This port was added in 19.23. The configuration actually tested was - a Night Hawk 4800 running CX/UX 7.0. - - If you have GCC ported and want to build with it, you probably need to - change things (like compiler switches) defined in the s/cxux.h file. - - With CX/UX 7.0 and later releases, you need to build after setting the - SDE_TARGET environment variable to COFF (a port using ELF and shared - libraries has not yet been done). - -Honeywell XPS100 (xps100-honeywell-sysv) - - Config file added in version 19. - -Hewlett-Packard 9000 series 200 or 300 (m68k-hp-bsd or m68k-hp-hpux7.) - - Version 19 works under BSD. The 19.26 pretest was reported - to work on HPUX 9. - - These machines are 68000-series CPUs running HP/UX - (a derivative of sysV with some BSD features) or BSD 4.3 ported by Utah. - The operating system suffix determines which system Emacs is built for. - - Series 200 HPUX runs Emacs only if it has the "HP/UX upgrade". - - If you are running HP/UX release 8.0 or later, you need the optional - "C/ANSI C" software in order to build Emacs (older releases of HP/UX - do not require any special software). If the file "/etc/filesets/C" - exists on your machine, you have this software, otherwise you do not. - - Note that HP has used two incompatible assembler syntaxes, - and has recently changed the format of C function frames. - `src/crt0.c' and `src/alloca.s' have been conditionalised for the new - assembler and new function-entry sequence. You may need to define - OLD_HP_ASSEMBLER if you are using an older hpux version. If you - have an official (bought from HP) series 300 machine you have - the new assembler. Kernels that are 5.+ or later have new - assembler. A Series 200 that has been upgraded to a 68010 - processor and a 5.+ kernel has the new compiler. - - Define C_SWITCH_MACHINE to be +X to make a version of Emacs that - runs on both 68010 and 68020 based HP/UX's. - - Define HPUX_68010 if you are using the new assembler, for - a system that has a 68010 without a 68881. This is to say, - a s200 (upgraded) or s310. - - Define the symbol HPUX_NET if you have the optional network features - that include the `netunam' system call. This is referred to as - Network Services (NS/9000) in HP literature. - -HP 9000 series 500: not supported. - - The series 500 has a seriously incompatible memory architecture - which relocates data in memory during execution of a program, - and support for it would be difficult to implement. - -HP 9000 series 700 or 800 (Spectrum) (hppa1.0-hp-hpux or hppa1.1-hp-hpux - or ...hpux9shr) - - 19.26 is believed to work on HPUX 9 provided you compile with GCC. - As of version 19.16, Emacs was reported to build (using GCC) and run - on HP 9000/700 series machines running HP/UX versions 8.07 and 9.01. - - Use hppa1.1 for the 700 series and hppa1.0 for the 800 - series machines. (Emacs may not actually care which one you use.) - - Use hppa1.1-hp-hpux9shr to use shared libraries on HPUX version 9. - You may need to create the X libraries libXaw.a and libXmu.a from - the MIT X distribute, and you may need to edit src/Makefile's - definition of LIBXT to look like this: - - LIBXT= $(LIBW) -lXmu -lXt $(LIBXTR6) -lXext - - Some people report trouble using the GNU memory allocator under - HP/UX version 9. The problems often manifest as lots of ^@'s in the - buffer. - - We are told that these problems go away if you obtain the latest - patches for the HP/UX C compiler. James J Dempsey - says that this set of versions works for him: - /bin/cc: - HP92453-01 A.09.28 HP C Compiler - /lib/ccom: - HP92453-01 A.09.28 HP C Compiler - HP-UX SLLIC/OPTIMIZER HP-UX.09.00.23 02/18/93 - Ucode Code Generator - HP-UX.09.00.23.5 (patch) 2/18/93 - - For 700 series machines, the HP-UX patch needed is known as - PHSS_2653. (Perhaps for 800 series machines as well; we don't - know.) If you are on the Internet, you should be able to obtain - this patch by using telnet to access the machine - support.mayfield.hp.com and logging in as "hpslreg" and following - the instructions there. Do not ask FSF for further support on - this. If you have any trouble obtaining the patch, contact HP - Software Support. - - If your buffer fills up with nulls (^@) at some point, it could well - be that problem. That problem does not happen when people use GCC - to compile Emacs. On the other hand, the HP compiler version 9.34 - was reported to work for the 19.26 pretest. 9.65 was also reported to work. - - If you turn on the DSUSP character (delayed suspend), - Emacs 19.26 does not know how to turn it off on HPUX. - You need to turn it off manually. - - If you are running HP/UX release 8.0 or later, you need the optional - "C/ANSI C" software in order to build Emacs (older releases of HP/UX - do not require any special software). If the file "/etc/filesets/C" - exists on your machine, you have this software, otherwise you do not. - -High Level Hardware Orion (orion-highlevel-bsd) - - This is the original microprogrammed hardware. - Machine description file ought to work. - -High Level Hardware Orion 1/05 (clipper-highlevel-bsd) - - Changes merged in 18.52. This is the one with the Clipper cpu. - Note that systems which lack NFS need LOAD_AVE_TYPE changed to `double'. - - C compiler has a bug; it loops compiling eval.c. - Compile it by hand without optimization. - -IBM PS/2 (i386-ibm-aix1.1 or i386-ibm-aix1.2) - - Changes merged in version 19. You may need to copy - /usr/lib/samples/hft/hftctl.c to the Emacs src directory. - - i386-ibm-aix1.1 may not work with certain new X window managers, and - may be suboptimal. - -IBM RS/6000 (rs6000-ibm-aix) - - Emacs 19.26 is believed to work; its pretest was tested. - - At last report, Emacs didn't run well on terminals. Informed - persons say that the tty VMIN and VTIME settings have been - corrupted; if you have a fix, please send it to us. - - Compiling with -O using the IBM compiler has been known - to make Emacs work incorrectly. It's reported that on - AIX 3.2.5 with an IBM compiler earlier than 1.03.00.14, - cc -O fails for some files. You need to install any - PTF containing APAR #IX42810 to bring the compiler to - the 1.03.00.14 level to allow optimized compiles. - Alternatively, recompiling just emacs.c and extents.c - without optimization seems to do the trick as well. - - There are reports that IBM compiler versions earlier than 1.03.00.02 - fail even without -O. - - As of 19.11, if you strip the Emacs executable, it ceases to work. - - If you are using AIX 3.2.3, you may get a core dump when loading - ange-ftp. You may be able to fix the problem by defining LIBS_TERMCAP - as -ltermcap -lcurses. Please tell us if this fails to work. - - If anyone can fix the above problems, or confirm that they don't happen - with certain versions of various programs, we would appreciate it. - -IBM RT/PC (romp-ibm-bsd or romp-ibm-aix) - - Use romp-ibm-bsd for the 4.2-like system and romp-ibm-aix for AIX. - 19.22 is reported to work under bsd. We don't know about AIX. - - On BSD, if you have trouble, try compiling with a different compiler. - - On AIX, the file /usr/lib/samples/hft/hftctl.c must be compiled into - hftctl.o, with this result left in the src directory (hftctl.c is - part of the standard AIX distribution). - - window.c must not be compiled with -O on AIX. - -Integrated Solutions `Optimum V' (m68k-isi-bsd4.2 or -bsd4.3) - - 18.52 said to work on some sort of ISI machine. - Version 18.45 worked (running on a Optimum V (VME bus, 68020) - BSD 4.2 (3.05e) system). 18.42 is reported to work on - a Qbus 68010 system. Has not been tried on `WorkStation' `Cluster - Compute Node' `Cluster WorkStation' or `Server Node' (Love the - StudLYCaps) - - Compilation with -O is rumored to break something. - - On recent system versions, you may need to undefine the macro UMAX - in `lib-src/loadst.c' and `src/getpagesize.h'. They stupidly defined this - in a system header file, which confuses Emacs (which thinks that UMAX - indicates the Umax operating system). - -Intel 386 (i386-*-isc, i386-*-esix, - i386-*-xenix, i386-*-linux, i386-*-freebsd, - i386-intsys-sysv, i386-*-sysv3, - i386-*-sysv4, i386-*-sysv4.2, - i386-*-sysv5.3, i386-*-bsd4.2, - i386-*-sco3.2v4, i386-*-bsd386, i386-*-386bsd - or i486... or i586...) - - In the above configurations, * means that the manufacturer's name - you specify does not matter, and you can use any name you like - (but it should not contain any dashes or stars). - - When using the ISC configurations, be sure to specify the isc - version number - for example, if you're running ISC 3.0, use - i386-unknown-isc3.0 as your configuration name. - Use i386-*-esix for Esix; Emacs runs as of version 19.6. - Use i386-*-linux for GNU/Linux systems; Emacs runs as of version 19.26. - Use i386-intsys-sysv for Integrated Solutions 386 machines. - It may also be correct for Microport systems. - Use i386-*-sco3.2v4 for SCO 3.2v4; Emacs runs as of version 19.26. - - On GNU/Linux systems, Emacs 19.23 was said to work properly with libc - version 4.5.21, but not with 4.5.19. If your system uses QMAGIC - for the executable format, you must edit config.h to define LINUX_QMAGIC. - - On GNU/Linux, configure may fail to put these definitions in config.h: - - #define HAVE_GETTIMEOFDAY - #define HAVE_MKDIR - #define HAVE_RMDIR - - To work around the problem, add those definitions by hand. - It is possible that this problem happens only with X11R6 - or that newer system versions have fixed it. - - The 19.26 pretest was reported to work on SVR4.3 and on Freebsd. - - Use i386-*-bsd386 for BSDI BSD/386; Emacs runs as of version 19.23. - Make on that system is broken; use GNU make instead. - Shell bugs in version 1.0 of BSD/386 cause configure - to do the wrong thing with --with-x-toolkit; the workaround is to edit - configure to run another shell such as bash. - - For System V release 3, use i386-*-sysv3. - For System V release 4, use i386-*-sysv4. - For System V release 4.2, use i386-*-sysv4.2. - - If you are using Xenix, see notes at end under Xenix. - If you are using Esix, see notes at end under Esix. - If you are using SCO Unix, see notes at end under SCO. - - On 386bsd, netbsd and freebsd, you should use GNU make, not the - system's make. Assuming it's installed as gmake, do `gmake install - MAKE=gmake'. - - If you are using System V release 4.2, you may find that `cc -E' - puts spurious spaces in `src/xmakefile'. If that happens, - specify CPP=/lib/cpp as an option when you run make. - There is no problem if you compile with GCC. - - Note that use of Linux with GCC 2.4 and the DLL 4.4 libraries - requires the experimental "net 2" network patches (no relation to - Berkeley Net 2). There is a report that (some version of) Linux - requires including `/usr/src/linux/include/linux' in buffer.c - but no coherent explanation of why that might be so. If it is so, - in current versions of Linux, something else should probably be changed. - - Some sysV.3 systems seem to have bugs in `opendir'; - for them, alter `config.h' to define NONSYSTEM_DIR_LIBRARY - and undefine SYSV_SYSTEM_DIR. - - If you use optimization on V.3, you may need the option -W2,'-y 0' - to prevent certain faulty optimization. - - On 386/ix, to link with shared libraries, add #define USG_SHARED_LIBRARIES - to config.h. - - On SCO, there are problems in regexp matching when Emacs is compiled - with the system compiler. The compiler version is "Microsoft C - version 6", SCO 4.2.0h Dev Sys Maintenance Supplement 01/06/93; - Quick C Compiler Version 1.00.46 (Beta). The solution is to compile - with GCC. - - On ISC systems (2.02 and more recent), don't try to use the versions - of X that come with the system; use XFree86 instead. - - There is no consistency in the handling of certain system header files - on V.3. - - Some versions have sys/sioctl.h, and require it in sysdep.c. - But some versions do not have sys/sioctl.h. - For a given version of the system, this may depend on whether you have - X Windows or TCP/IP. Define or undefine NO_SIOCTL_H in config.h - according to whether you have the file. - - Likewise, some versions have been known to need sys/ttold.h, sys/stream.h, - and sys/ptem.h included in sysdep.c. If your system has these files, - try defining NEED_PTEM_H in config.h if you have trouble without it. - - You may find that adding -I/usr/X/include or -I/usr/netinclude or both - to CFLAGS avoids compilation errors on certain systems. - - Some versions convince sysdep.c to try to use `struct tchars' - but define `struct tc' instead; add `#define tchars tc' - to config.h to solve this problem. - -Iris 2500 and Iris 2500 Turbo (m68k-sgi-iris3.5 or m68k-sgi-iris3.6) - - Version 18 was said to work; use m68k-sgi-iris3.5 for system version 2.5 - and m68k-sgi-iris3.6 for system version 3.6. - Note that the 3030 is the same as the Iris 2500 Turbo. - -Iris 4D (mips-sgi-irix[456].*) - - The 19.26 pretest was reported to work on IRIX 4.0.5 and 5.2. - 19.23 was reported to work on IRIX 5.2, but you may need to install - the "compiler_dev.hdr.internal" subsystem in order to compile unexelfsgi.c. - 19.22 was known to work on all Silicon Graphics machines running - IRIX 4.0.5 or IRIX 5.1. - - Compiling with -O using IRIX compilers prior to 3.10.1 may not work. - Don't use -O or use GCC instead. - - Most IRIX 3.3 systems do not have an ANSI C compiler, but a few do. - Compile Emacs 18 with the -cckr switch on these machines. - - There is a bug in IRIX 3.3 that can sometimes leave ptys owned by root - with a permission of 622. This causes malfunctions in use of - subprocesses of Emacs. Irix versions 4.0 and later with GNU Emacs - versions 18.59 and later fix this bug. - -Masscomp (m68k-masscomp-rtu) - - 18.36 worked on a 5500DP running RTU v3.1a and compiler version 3.2 - with minor fixes that are included in 18.37. However, bizarre behavior - was reported for 18.36 on a Masscomp (model and version unknown but probably - a 68020 system). The report sounds like a compiler bug. - - A compiler bug affecting statements like - unsigned char k; unsigned char *p;... x = p[k]; - has been reported for "C version 1.2 under RTU 3.1". We do not wish - to take the time to install the numerous workarounds required to - compensate for this bug. - - For RTU version 3.1, define FIRST_PTY_LETTER to be 'p' in `src/s/rtu.h' - (or #undef and redefine it in config.h) so that ptys will be used. - - GNU Emacs is said to have no chance of compiling on RTU versions - prior to v3.0. - -Megatest (m68k-megatest-bsd) - - Emacs 15 worked; do not have any reports about Emacs 16 or 17 - but any new bugs are probably not difficult. - -Mips (mips-mips-riscos, mips-mips-riscos4.0, or mips-mips-bsd) - - The C compiler on Riscos 4.51 dumps core trying to optimize - parts of Emacs. Try without optimization or try GCC. - - Meanwhile, the linker on that system returns success even if - there are undefined symbols; as a result, configure gets the - wrong answers to various questions. No work-around is known - except to edit src/config.h by hand to indicate which functions - don't exist. - - Use mips-mips-riscos4.0 for RISCOS version 4. - Use mips-mips-bsd with the BSD world. - - Note that the proper configuration names for DECstations are - mips-dec-ultrix and mips-dec-osf. - - If you are compiling with GCC, then you must run fixincludes; - the alternative of using -traditional won't work because - the definition of SIGN_EXTEND_CHAR uses the keyword `signed'. - - If the SYSV world is the default, then you probably need the following - line in etc/Makefile: - - CFLAGS= -g -systype bsd43 - - Some operating systems on MIPS machines give SIGTRAP for division by - zero instead of the usual signals. The only real solution is to fix - the system to give a proper signal. - - In the meantime, you can change init_data in data.c if you wish. - Change it to handle SIGTRAP as well as SIGFPE. But this will have a - great disadvantage: you will not be able to run Emacs under a - debugger. I think crashing on division by zero is a lesser problem. - - dsg@mitre.org reported needing to use --x-libraries=/bsd43/usr/lib - on a riscos4bsd site. But it is not clear whether this is needed in - general or only because of quirks on a particular site. - -National Semiconductor 32000 (ns32k-ns-genix) - - This is for a complete machine from National Semiconductor, - running Genix. Changes merged in version 19. - -NCR Tower 32 (m68k-ncr-sysv2 or m68k-ncr-sysv3) - - If you are running System V release 2, use m68k-ncr-sysv2. - If you are running System V release 3, use m68k-ncr-sysv3. - - These both worked as of 18.56. If you change `src/ymakefile' so that - CFLAGS includes C_OPTIMIZE_SWITCH rather than C_DEBUG_SWITCH, check - out the comments in `src/m/tower32.h' (for System V release 2) or - `src/m/tower32v3.h' (for System V release 3) about this. - - There is a report that compilation with -O did not work with 18.54 - under System V release 2. - -NCR Intel system (i386-ncr-sysv4.2) - - This system works in 19.31, but if you don't link it with GNU ld, - you may need to set LD_RUN_PATH at link time to specify where - to find the X libraries. - -NeXT (m68k-next-nextstep) - - Emacs 19 has not been tested extensively yet, but it seems to work - in a NeXTStep 3.0 terminal window, and under the X server called - co-Xist. You may need to specify -traditional when src/Makefile - builds xmakefile. - - NeXT users might want to implement direct operation with NeXTStep, - but from the point of view of the GNU project, that is a - distraction. - - Thanks to Thorsten Ohl for working on the NeXT port of Emacs 19. - -Nixdorf Targon 31 (m68k-nixdorf-sysv) - - Machine description file for version 17 is included in 18 - but whether it works is not known. - `src/unexec.c' bombs if compiled with -O. - Note that the "Targon 35" is really a Pyramid. - -Nu (TI or LMI) (m68k-nu-sysv) - - Version 18 is believed to work. - -Paragon OSF/1 (i860-intel-osf1) - - Changes merged in 19.29. - - There is a bug in OSF/1 make which claims there is a syntax error - in the src/xmakefile. You can successfully build emacs with: - - pmake MAKE=pmake - -Plexus (m68k-plexus-sysv) - - Worked as of 17.56. - -Pmax (DEC Mips) (mips-dec-ultrix or mips-dec-osf1) - - See under DECstation, above. - -Prime EXL (i386-prime-sysv) - - Minor changes merged in 19.1. - -Pyramid (pyramid-pyramid-bsd) - - The 19.26 pretest was observed to work on OSx 5.0, but it is necessary - to edit gmalloc.c. You must add #include at the top, - and delete the #define for size_t. - - You need to build Emacs in the Berkeley universe with - the `ucb' command, as in `ucb make' or `ucb build-install'. - - In OSx 4.0, it seems necessary to add the following two lines - to `src/m/pyramid.h': - #define _longjmp longjmp - #define _setjmp setjmp - - In Pyramid system 2.5 there has been a compiler bug making - Emacs crash just after screen-splitting with Qnil containing 0. - A compiler that fixes this is Pyramid customer number 8494, - internal number 1923. - - Some versions of the pyramid compiler get fatal - errors when the -gx compiler switch is used; if this - happens to you, change `src/m/pyramid.h' to define - C_DEBUG_SWITCH with an empty definition. - - Some old system versions may require you to define PYRAMID_OLD - in when alloca.s is preprocessed, in order to define _longjmp and _setjmp. - -Sequent Balance (ns32k-sequent-bsd4.2 or ns32k-sequent-bsd4.3) - - Emacs 18.51 worked on system version 3.0. 18.52 is said to work. - Delete some lines at the end of `src/m/sequent.h' for earlier system - versions. - -Sequent Symmetry (i386-sequent-bsd, i386-sequent-ptx) - - Emacs 19 should work on Dynix (BSD). However, if you compile with - the Sequent compiler, you may find Emacs does not restore the - terminal settings on exit. If this happens, compile with GCC. - - Emacs 19.27 contains patches that should support - DYNIX/ptx 1.4 and 2.1 with the native cc compiler. - - Gcc can't compile src/process.c due to a non-standard Sequent asm - keyword extension supported by cc and used for the network byte/word - swapping functions in the PTX /usr/include/netinet/in.h file. Gcc - 2.5.8 includes the file which can be included into - netinet/in.h to perform these byte/word swapping functions in the - same manner. Patches have been submitted to the FSF against gcc - 2.6.0 to fix this problem and allow Emacs to be built with gcc. - - If your machine does not have TCP/IP installed, you will have to edit the - src/s/ptx.h file and comment out #define TCPIP_INSTALLED. - -Siemens Nixdorf RM600 and RM400 (mips-siemens-sysv4) - - Changes merged in 19.29. This configuration should also work for - Pyramid MIS Server running DC-OSX 1.x. The version configured with - `--with-x' works without any modifications, but `--with-x-toolkit' - works only if the Athena library and the Toolkit library are linked - statically. For this, edit `src/Makefile' after the `configure' run - and modify the lines with `-lXaw' and `-lXt' as follows: - - LIBW= /usr/lib/libXaw.a - LIBXT= $(LIBW) -lXmu /usr/lib/libXt.a $(LIBXTR6) -lXext - -SONY News (m68k-sony-bsd4.2 or m68k-sony-bsd4.3) - - 18.52 worked. Use m68k-sony-bsd4.3 for system release 3. - -SONY News 3000 series (RISC NEWS) (mips-sony-bsd) - - The 19.26 pretest is reported to work. - - Some versions of the operating system give SIGTRAP for division by zero - instead of the usual signals. This causes division by zero - to make Emacs crash. The system should be fixed to give the proper signal. - Changing Emacs is not a proper solution, because it would prevent - Emacs from working under any debugger. But you can change init_data - in data.c if you wish. - -Stardent i860 (i860-stardent-sysv4.0) - - 19.26 pretest reported to work. - -Stardent 1500 or 3000 - - See Titan. - -Stride (m68k-stride-sysv) - - Works (most recent news for 18.30) on their release 2.0. - For release 2.2, see the end of `src/m/stride.h'. - It may be possible to run on their V.1 system but changes - in the s- file would be needed. - -Sun 3, Sun 4 (sparc), Sun 386 (m68k-sun-sunos, sparc-sun-sunos, i386-sun-sunos, - sparc-sun-sunos4shr, sparc-sun-solaris2.*, - i386-sun-solaris2.*) - - 19.26 is believed to work on Sparcs and Sun 3's. Some people report - that Emacs crashes immediately on startup when used with a non-X - terminal, but we think this is due to compiling with GCC and failing - to use GCC's "fixed" system header files. - - Some Sun versions of X windows use the clipboard, not the selections, - for transferring text between clients. The Cut, Paste and Copy items - in the menu bar Edit menu work with the clipboard. - - It's important to include the SunOS version number in the - configuration name. For example, for SunOS release 4.0 on a Sun 3, - use `m68k-sun-sunos4.0'; for SunOS release 4.1 on a Sparc, use - `sparc-sun-sunos4.1'. For SunOS release 4.1.3 on a Sparc, use - `sparc-sun-sunos4.1.3'. Use sunos4shr to link with shared libraries - on Sunos 4.1. - - (FSF MACHINES file says use of shared libraries does not work with - X11R5 or X11R6 on Sunos 4 as of 19.26, but I think this does not - apply to XEmacs.) - - Use `m68k' for the 68000-based Sun boxes, `sparc' for Sparcstations, - and `i386' for Sun Roadrunners. i386 calls for Sunos4.0. - - Do not define the environment variable 'KEEP_STATE' while running - `configure'. - - FSF MACHINES file says the following: (may not apply to XEmacs) - - If you compile with Sun's ANSI compiler acc, you need additional options - when linking temacs, such as - /usr/lang/SC2.0.1/values-Xt.o -L/usr/lang/SC2.0.1/cg87 -L/usr/lang/SC2.0.1 - (those should be added just before the libraries) and you need to - add -lansi just before -lc. The precise file names depend on the - compiler version, so we cannot easily arrange to supply them. - - On SunOS 4.1.1, do not use /usr/5bin/cc. You can use gcc or/usr/bin/cc. - Make sure the environment variable LD_LIBRARY_PATH is not defined. - - Some people report crashes on SunOS 4.1.3 if SYSTEM_MALLOC is defined. - Others have reported that Emacs works if SYSTEM_MALLOC is defined, and not - if it is undefined. So far we do not know why results vary in this way. - The sources are set up so that SYSTEM_MALLOC is defined; if that crashes, - or if you want the benefit of the relocating memory allocator, you can - try enabling the #undef SYSTEM_MALLOC in src/s/sunos4-1-3.h. - - On Solaris 2, you need to install patch 100947-02 to fix a system bug. - Presumably this patch comes from Sun. You must alter the definition of - LD_SWITCH_SYSTEM if your X11 libraries are not in /usr/openwin/lib. - You must make sure that /usr/ucblib is not in your LD_LIBRARY_PATH. - - On Solaris 2.2, with a multiprocessor SparcCenter 1000, Emacs 19.17 is - reported to hang sometimes if it exits while it has one or more - subprocesses (e.g. the `wakeup' subprocess used by `display-time'). - Emacs and its subprocesses become zombies, and in their zombie state - slow down their host and disable rlogin and telnet. This is most - likely due to a bug in Solaris 2.2's multiprocessor support, - rather than an Emacs bug. - - On Solaris, do not use /usr/ucb/cc. Use /opt/SUNWspro/bin/cc. Make - sure that /usr/ccs/bin and /opt/SUNWspro/bin are in your PATH before - /usr/ucb. (Most free software packages have the same requirement on - Solaris.) - - If you have trouble using open-network-stream, get the distribution - of `bind' (the BSD name-server), build libresolv.a, and link Emacs - with -lresolv, by copying the #definition of LIBS_SYSTEM in - src/s/sunos4-1.h to src/config.h. This problem is due to obsolete - software in the nonshared standard library. - - If you want to use SunWindows, define HAVE_SUN_WINDOWS - in config.h to enable a special interface called `emacstool'. - The definition must *precede* the #include "machine.h". - System version 3.2 is required for this facility to work. - - We recommend that you instead use the X window system, which - has technical advantages, is an industry standard, and is also - free software. The FSF does not support the SunWindows code; - we installed it only on the understanding we would not let it - divert our efforts from what we think is important. - - If you are compiling for X windows, and the X window library was - compiled to use the 68881, then you must edit config.h according - the comments at the end of `src/m/sun3.h'. - - Note that Emacs on a Sun is not really as big as it looks. - As dumped, it includes around 200k of zeros between the - original text section and the original data section - (now remapped as part of the text). These are never - swapped in. - - To build a single Emacs that will run on Sun 2 and Sun 3 - HARDWARE, just build it on the Sun 2. - - On Sunos 4.1.3, the word is that Emacs can loop infinitely - on startup with X due perhaps to a bug in Sunos. Installing all of - these Sun patches fixes the problem. We don't know which of them - are really relevant. - - 100075-11 100224-06 100347-03 100482-05 100557-02 100623-03 100804-03 - 101080-01 100103-12 100249-09 100496-02 100564-07 100630-02 100891-10 - 101134-01 100170-09 100296-04 100377-09 100507-04 100567-04 100650-02 - 101070-01 101145-01 100173-10 100305-15 100383-06 100513-04 100570-05 - 100689-01 101071-03 101200-02 100178-09 100338-05 100421-03 100536-02 - 100584-05 100784-01 101072-01 101207-01 - -Tadpole 68K (m68k-tadpole-sysv) - - Changes merged in 19.1. - - You may need to edit Makefile to change the variables LIBDIR and - BINDIR from /usr/local to /usr/contrib. - - To give movemail access to /usr/mail, you may need to execute - - chmod 2755 etc/movemail; chgrp mail etc/movemail - -Tahoe (tahoe-tahoe-bsd4.2 or tahoe-tahoe-bsd4.3) - - 18.52 was known to work on some Tahoes, but a compiler bug intervenes - on others. Some Emacs versions have worked in Unisys 1r4 - (not in 1r3) and CCI I.21. - - If you have trouble compiling `lib-src/loadst.c', turn off the definition - of DKSTAT_HEADER_FILE in `src/m/tahoe.h'. - -Tandem Integrity S2 (mips-tandem-sysv) - - Changes merged in 18.56 but subprocess support is turned off. - You will probably want to see if you can make subprocesses work. - - You must edit `lib-src/Makefile' to define LOADLIBES = -mld. - -Tektronix XD88 (m88k-tektronix-sysv3*) - - The 19.26 pretest was reported to work. - Minor changes merged in 19.19. - -Tektronix 16000 box (6130?) (ns16k-tektronix-bsd) - - Emacs 17.61 worked. - -Tektronix 4300 (m68k-tektronix-bsd) - - Emacs 19.26 pretest reported to work. - -Titan P2 or P3 (titan-titan-sysv) - - Changes probably merged in version 19. - -Ustation E30 (SS5E) (m68k-unisys-unipl) - - Changes merged in 18.52; don't know whether they work. - -Vaxen running Berkeley Unix (vax-dec-bsd4.1, vax-dec-bsd4.2, vax-dec-bsd4.3), - Ultrix (vax-dec-ultrix), - System V (vax-dec-sysv0, vax-dec-sysv2), or - VMS (vax-dec-vms) - - Works. - - See under Ultrix for problems using X windows on Ultrix (vax-dec-ultrix). - - 18.27 worked on System V rel 2 (vax-dec-sysv2). - - 18.36 worked on System V rel 0 (vax-dec-sysv0). - - Richard Levitte distributes a set of patches to - Emacs 18.59 to make it work nicely under VMS. Emacs 19 probably - won't work very well, or even compile. Levitte is working on a - port, so these problems should be fixed in the near future. - -Whitechapel MG1 (ns16k-whitechapel-?) - - May work. Supposedly no changes were needed except in `src/m/mg1.h' - file. I do not know what Unix version runs on them. - -Wicat (m68k-wicat-sysv) - - Changes merged as of 18.6; whether they work is unknown. - See comments in `src/m/wicat.h' for things you should change - depending on the system and compiler version you have. - -Here are notes about some of the systems supported: - -Berkeley 4.1 (bsd4.1) - - Works on vaxes. - -Berkeley 4.2 (bsd4.2) - - Works on several machines. - -Berkeley 4.3 (bsd4.3) - - Works, on Vaxes at least. - -Esix - - The following was written for Emacs 18.59 and has been - slightly adapted for Emacs 19. It may need more change to be correct. - - Use s/usg5-4.h for Esix System V 4.0.[34] systems if you also have - XFree86. If you insist on using the Esix X Window libraries, good - luck. s/esix5r4.h provides a starting point, but doesn't seem to - work consistently. The basic problems involve the need to load - -lX11 *last* in the link command, and even then some things break. - You get best results by installing XFree86 and forgetting about the - Esix stuff unless you want to run IXI xdt3, which really only needs - the Esix X11 shared libraries. - - To compile with XFree86, make sure that your LD_LIBRARY_PATH - contains /usr/X386/lib. Be careful if you also have the Esix X - Window libraries that /usr/X386/lib appears *first* in the - LD_LIBRARY_PATH. Then define C_SWITCH_X_SYSTEM -I/usr/X386/include. - -Microport - - See under "Intel 386". - -SCO Unix - If you have TCP but not X, you need to edit src/s/sco4.h - to define HAVE_SOCKETS. - - If you are using MMDF instead of sendmail, you need to remove - /usr/lib/sendmail or modify lisp/paths.el before compiling. - lisp/paths.el (which is loaded during the build) will attempt to use - sendmail if it exists. - - If you are using SMAIL, you need to define the macro - SMAIL in config.h. - -System V rel 0 (usg5.0) - - Works, on Vaxes and 3bxxx's. - There are some problems in 18.37 due to shortnames/cccp problems: - use the emacs 17 cpp if you have it. - -System V rel 2 (usg5.2) - - Works on various machines. - On some (maybe all) machines the library -lPW exists and contains - a version of `alloca'. On these machines, to use it, put - #define HAVE_ALLOCA - #define LIB_STANDARD -lPW -lc - in the `src/m/MACHINENAME.h' file for the machine. - - If you find that the character Meta-DEL makes Emacs crash, - find where function init_sys_modes in sysdep.c sets sg.c_cc[VQUIT] - and make it store 7 there. I have as yet no evidence of whether - this problem, known in HP/UX, exists in other system V versions. - -System V rel 2.2 (usg5.2.2) - - In 5.2.2 AT&T undid, incompatibly, their previous incompatible - change to the way the nlist library is called. A different s- file - is used to enable the other interface. - - They call themselves the right choice--can't they choose? - - Emacs version 18 unexec is currently not working properly - on 5.2.2. Nobody knows why yet. A workaround is to define - NO_REMAP. It is not yet known whether this applies to all - machines running 5.2.2. - -System V rel 3 (usg5.3) - - Some versions of this system support ptys and BSD-style sockets. - On such systems, you should define HAVE_PTYS and HAVE_SOCKETS in config.h. - - If you want to link Emacs with shared libraries, define - USG_SHARED_LIBRARIES. - - You may have to add ANSI idempotence #-lines to your sys/types.h - file to get Emacs to compile correctly. This may be necessary on - other pre-ANSI systems as well. - - On an AT&T 6386WGS using System V Release 3.2 and X11R3, the X support - cannot be made to work. Whether or not the GNU relocating malloc is - used, the symptom is that the first call Emacs makes to sbrk(0) returns - (char *)-1. Sorry, you're stuck with character-only mode. Try - installing Xfree86 to fix this. - -System V rel 4.0.3 and 4.0.4 (usg5.4) - - Supported, including shared libraries for ELF, but ptys do not work - because TIOCGPGRP fails to work on ptys (but Dell 2.2 seems to have - fixed this). This failure is probably due to a misunderstanding of - the consequences of the POSIX spec: many system designers mistakenly - think that POSIX requires this feature to fail. This is untrue; - ptys are an extension, and POSIX says that extensions *when used* - may change the action of standard facilities in any fashion. - - If you get compilation errors about wrong number of - arguments to getpgrp, define GETPGRP_NO_ARG. - - The standard C preprocessor may generate xmakefile incorrectly. However, - /lib/cpp will work, so use `make CPP=/lib/cpp'. Standard cpp - seems to work OK under Dell 2.2. - - Some versions 3 and earlier of V.4, on the Intel 386 and 860, had - problems in the X11 libraries. These prevent Emacs from working - with X. You can use Emacs with X provided your copy of X is based - on X11 release 4 or newer, or is Dell's 2.2 (which is a 4.0.3). - Unfortunately, the only way you can tell whether your X11 library is - new enough is to try compiling Emacs to use X. If emacs runs, your - X11 library is new enough. - - In this context, GSV4 and GSV4i are alternate names for X11R4. - OL2.* is X11R3 based. OL3 is in between X11R3 and X11R4, and may or - may not work, depending on who made the Unix system. If the library - libXol is part of the X distribution, then you have X11R3 and Emacs - won't work with X. - - Most versions of V.4 support sockets. If `/usr/lib/libsocket.so' - exists, your system supports them. If yours does not, you must add - #undef HAVE_SOCKETS in config.h, after the inclusion of s-usg5-4.h. - (Any system that supports Internet should implement sockets.) - -Ultrix (bsd4.3) - - Recent versions of Ultrix appear to support the features of Berkeley 4.3. - Ultrix was at the BSD 4.2 level for a long time after BSD 4.3 came out. - - Ultrix 3.0 has incompatibilities in its X library if you have the - Ultrix version of X (UWS version 2.0). To solve them, you need to - prevent XvmsAlloc.o in Xlib from being used. Israel Pinkas says: - - I added the following lines to config.h after the X defines: - - #if defined(ultrix) && defined(X11) - #define OBJECTS_SYSTEM calloc.o - #endif - - Then I ran the following: - - ar x /usr/lib/libc.a calloc.o - - The problem is said to be gone in UWS version 2.1. - -Uniplus 5.2 (unipl5.2) - - Works, on Dual machines at least. - -VMS (vmsM.N) - - Richard Levitte distributes a set of patches to - Emacs 18.59 to make it work nicely under VMS. Emacs 19 probably - won't work very well, or even compile. Levitte is working on a - port, so these problems should be fixed in the near future. - - Note that Emacs for VMS is usually distributed in a special VMS - distribution. See the file ../vms/VMSINSTALL for info on moving - Unix distributions to VMS, and other VMS-related topics. - -Xenix (xenix) - - Should work in 18.50, but you will need to edit the files - `lib-src/Makefile' and `src/ymakefile' - (see the comments that mention "Xenix" for what to change.) - Compiling Emacs with -O is said not to work. - - If you want Emacs to work with Smail (installed as /usr/bin/smail) - then add the line #define SMAIL to config.h. - - The file etc/XENIX suggests some useful things to do to Xenix - to make the Emacs meta key work. - -Local variables: -mode: indented-text -fill-prefix: " " -End: +VMS has never been supported by XEmacs. In fact, all the old VMS code +inherited from Emacs has been removed. Sorry, all you VMS fans out there. diff --git a/info/emodules.info b/info/emodules.info index 15eb210..c527ed0 100644 --- a/info/emodules.info +++ b/info/emodules.info @@ -1,4 +1,4 @@ -This is ../info/emodules.info, produced by makeinfo version 4.0b from +This is ../info/emodules.info, produced by makeinfo version 4.0 from emodules.texi. This file documents the module loading technology of XEmacs. @@ -937,23 +937,23 @@ Index  Tag Table: -Node: Top1537 -Node: Introduction2884 -Node: Anatomy of a Module7392 -Node: Required Header File8206 -Node: Required Functions10125 -Node: Required Variables12849 -Node: Loading other Modules15535 -Node: Using ellcc17592 -Node: Compile Mode19386 -Node: Initialization Mode20754 -Node: Link Mode25788 -Node: Other ellcc options26933 -Node: Environment Variables29512 -Node: Defining Functions31203 -Node: Using DEFUN33214 -Node: Declaring Functions34925 -Node: Defining Variables36268 -Node: Index38511 +Node: Top1536 +Node: Introduction2883 +Node: Anatomy of a Module7391 +Node: Required Header File8205 +Node: Required Functions10124 +Node: Required Variables12848 +Node: Loading other Modules15534 +Node: Using ellcc17591 +Node: Compile Mode19385 +Node: Initialization Mode20753 +Node: Link Mode25787 +Node: Other ellcc options26932 +Node: Environment Variables29511 +Node: Defining Functions31202 +Node: Using DEFUN33213 +Node: Declaring Functions34924 +Node: Defining Variables36267 +Node: Index38510  End Tag Table diff --git a/info/internals.info b/info/internals.info index d0f06ab..0446b0a 100644 --- a/info/internals.info +++ b/info/internals.info @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor @@ -39,159 +39,159 @@ Foundation instead of in the original English.  Indirect: -internals.info-1: 1777 -internals.info-2: 46638 -internals.info-3: 94563 -internals.info-4: 144260 -internals.info-5: 194153 -internals.info-6: 243743 -internals.info-7: 287810 -internals.info-8: 336677 -internals.info-9: 380671 +internals.info-1: 1776 +internals.info-2: 46637 +internals.info-3: 94562 +internals.info-4: 144259 +internals.info-5: 194152 +internals.info-6: 243742 +internals.info-7: 287809 +internals.info-8: 336676 +internals.info-9: 380670  Tag Table: (Indirect) -Node: Top1777 -Node: A History of Emacs7041 -Node: Through Version 188566 -Node: Lucid Emacs12014 -Node: GNU Emacs 1915032 -Node: GNU Emacs 2017215 -Node: XEmacs17642 -Node: XEmacs From the Outside20821 -Node: The Lisp Language22588 -Node: XEmacs From the Perspective of Building32131 -Node: XEmacs From the Inside38256 -Node: The XEmacs Object System (Abstractly Speaking)46638 -Node: How Lisp Objects Are Represented in C60724 -Node: Rules When Writing New C Code65401 -Node: General Coding Rules66205 -Node: Writing Lisp Primitives72015 -Node: Adding Global Lisp Variables83184 -Node: Coding for Mule86822 -Node: Character-Related Data Types87801 -Node: Working With Character and Byte Positions90798 -Node: Conversion to and from External Data94563 -Node: General Guidelines for Writing Mule-Aware Code100704 -Node: An Example of Mule-Aware Code103392 -Node: Techniques for XEmacs Developers105373 -Node: A Summary of the Various XEmacs Modules113320 -Node: Low-Level Modules114140 -Node: Basic Lisp Modules121601 -Node: Modules for Standard Editing Operations128195 -Node: Editor-Level Control Flow Modules134083 -Node: Modules for the Basic Displayable Lisp Objects137594 -Node: Modules for other Display-Related Lisp Objects140547 -Node: Modules for the Redisplay Mechanism141888 -Node: Modules for Interfacing with the File System144260 -Node: Modules for Other Aspects of the Lisp Interpreter and Object System147958 -Node: Modules for Interfacing with the Operating System153411 -Node: Modules for Interfacing with X Windows160967 -Node: Modules for Internationalization164450 -Node: Allocation of Objects in XEmacs Lisp167087 -Node: Introduction to Allocation167608 -Node: Garbage Collection171294 -Node: GCPROing172450 -Node: Garbage Collection - Step by Step179454 -Node: Invocation179846 -Node: garbage_collect_1182859 -Node: mark_object192341 -Node: gc_sweep194153 -Node: sweep_lcrecords_1199216 -Node: compact_string_chars200211 -Node: sweep_strings202391 -Node: sweep_bit_vectors_1203356 -Node: Integers and Characters204032 -Node: Allocation from Frob Blocks204784 -Node: lrecords206388 -Node: Low-level allocation218614 -Node: Cons222721 -Node: Vector223447 -Node: Bit Vector224024 -Node: Symbol224517 -Node: Marker224871 -Node: String225426 -Node: Compiled Function229039 -Node: Dumping229208 -Node: Overview231429 -Node: Data descriptions231999 -Node: Dumping phase234004 -Node: Object inventory234407 -Node: Address allocation237343 -Node: The header238732 -Node: Data dumping239177 -Node: Pointers dumping239838 -Node: Reloading phase241228 -Node: Remaining issues242782 -Node: Events and the Event Loop243743 -Node: Introduction to Events244193 -Node: Main Loop246142 -Node: Specifics of the Event Gathering Mechanism249717 -Node: Specifics About the Emacs Event262170 -Node: The Event Stream Callback Routines262425 -Node: Other Event Loop Functions262670 -Node: Converting Events263810 -Node: Dispatching Events; The Command Builder264419 -Node: Evaluation; Stack Frames; Bindings264654 -Node: Evaluation264996 -Node: Dynamic Binding; The specbinding Stack; Unwind-Protects271551 -Node: Simple Special Forms273935 -Node: Catch and Throw274718 -Node: Symbols and Variables277293 -Node: Introduction to Symbols277557 -Node: Obarrays278625 -Node: Symbol Values282158 -Node: Buffers and Textual Representation284446 -Node: Introduction to Buffers285104 -Node: The Text in a Buffer287810 -Node: Buffer Lists294960 -Node: Markers and Extents296911 -Node: Bufbytes and Emchars299176 -Node: The Buffer Object299391 -Node: MULE Character Sets and Encodings302871 -Node: Character Sets303933 -Node: Encodings307418 -Node: Japanese EUC (Extended Unix Code)308485 -Node: JIS7309317 -Node: Internal Mule Encodings310667 -Node: Internal String Encoding312497 -Node: Internal Character Encoding314642 -Node: CCL316366 -Node: The Lisp Reader and Compiler323119 -Node: Lstreams323332 -Node: Creating an Lstream324363 -Node: Lstream Types325590 -Node: Lstream Functions325842 -Node: Lstream Methods329408 -Node: Consoles; Devices; Frames; Windows332550 -Node: Introduction to Consoles; Devices; Frames; Windows332865 -Node: Point335398 -Node: Window Hierarchy336677 -Node: The Window Object341129 -Node: The Redisplay Mechanism344566 -Node: Critical Redisplay Sections345358 -Node: Line Start Cache346345 -Node: Redisplay Piece by Piece349581 -Node: Extents351618 -Node: Introduction to Extents352152 -Node: Extent Ordering353294 -Node: Format of the Extent Info354535 -Node: Zero-Length Extents356422 -Node: Mathematics of Extent Ordering357822 -Node: Extent Fragments362579 -Node: Faces363665 -Node: Glyphs363781 -Node: Specifiers370414 -Node: Menus370543 -Node: Subprocesses372801 -Node: Interface to the X Window System374787 -Node: Lucid Widget Library375068 -Node: Generic Widget Interface376359 -Node: Scrollbars379918 -Node: Menubars380061 -Node: Checkboxes and Radio Buttons380204 -Node: Progress Bars380390 -Node: Tab Controls380550 -Node: Index380671 +Node: Top1776 +Node: A History of Emacs7040 +Node: Through Version 188565 +Node: Lucid Emacs12013 +Node: GNU Emacs 1915031 +Node: GNU Emacs 2017214 +Node: XEmacs17641 +Node: XEmacs From the Outside20820 +Node: The Lisp Language22587 +Node: XEmacs From the Perspective of Building32130 +Node: XEmacs From the Inside38255 +Node: The XEmacs Object System (Abstractly Speaking)46637 +Node: How Lisp Objects Are Represented in C60723 +Node: Rules When Writing New C Code65400 +Node: General Coding Rules66204 +Node: Writing Lisp Primitives72014 +Node: Adding Global Lisp Variables83183 +Node: Coding for Mule86821 +Node: Character-Related Data Types87800 +Node: Working With Character and Byte Positions90797 +Node: Conversion to and from External Data94562 +Node: General Guidelines for Writing Mule-Aware Code100703 +Node: An Example of Mule-Aware Code103391 +Node: Techniques for XEmacs Developers105372 +Node: A Summary of the Various XEmacs Modules113319 +Node: Low-Level Modules114139 +Node: Basic Lisp Modules121600 +Node: Modules for Standard Editing Operations128194 +Node: Editor-Level Control Flow Modules134082 +Node: Modules for the Basic Displayable Lisp Objects137593 +Node: Modules for other Display-Related Lisp Objects140546 +Node: Modules for the Redisplay Mechanism141887 +Node: Modules for Interfacing with the File System144259 +Node: Modules for Other Aspects of the Lisp Interpreter and Object System147957 +Node: Modules for Interfacing with the Operating System153410 +Node: Modules for Interfacing with X Windows160966 +Node: Modules for Internationalization164449 +Node: Allocation of Objects in XEmacs Lisp167086 +Node: Introduction to Allocation167607 +Node: Garbage Collection171293 +Node: GCPROing172449 +Node: Garbage Collection - Step by Step179453 +Node: Invocation179845 +Node: garbage_collect_1182858 +Node: mark_object192340 +Node: gc_sweep194152 +Node: sweep_lcrecords_1199215 +Node: compact_string_chars200210 +Node: sweep_strings202390 +Node: sweep_bit_vectors_1203355 +Node: Integers and Characters204031 +Node: Allocation from Frob Blocks204783 +Node: lrecords206387 +Node: Low-level allocation218613 +Node: Cons222720 +Node: Vector223446 +Node: Bit Vector224023 +Node: Symbol224516 +Node: Marker224870 +Node: String225425 +Node: Compiled Function229038 +Node: Dumping229207 +Node: Overview231428 +Node: Data descriptions231998 +Node: Dumping phase234003 +Node: Object inventory234406 +Node: Address allocation237342 +Node: The header238731 +Node: Data dumping239176 +Node: Pointers dumping239837 +Node: Reloading phase241227 +Node: Remaining issues242781 +Node: Events and the Event Loop243742 +Node: Introduction to Events244192 +Node: Main Loop246141 +Node: Specifics of the Event Gathering Mechanism249716 +Node: Specifics About the Emacs Event262169 +Node: The Event Stream Callback Routines262424 +Node: Other Event Loop Functions262669 +Node: Converting Events263809 +Node: Dispatching Events; The Command Builder264418 +Node: Evaluation; Stack Frames; Bindings264653 +Node: Evaluation264995 +Node: Dynamic Binding; The specbinding Stack; Unwind-Protects271550 +Node: Simple Special Forms273934 +Node: Catch and Throw274717 +Node: Symbols and Variables277292 +Node: Introduction to Symbols277556 +Node: Obarrays278624 +Node: Symbol Values282157 +Node: Buffers and Textual Representation284445 +Node: Introduction to Buffers285103 +Node: The Text in a Buffer287809 +Node: Buffer Lists294959 +Node: Markers and Extents296910 +Node: Bufbytes and Emchars299175 +Node: The Buffer Object299390 +Node: MULE Character Sets and Encodings302870 +Node: Character Sets303932 +Node: Encodings307417 +Node: Japanese EUC (Extended Unix Code)308484 +Node: JIS7309316 +Node: Internal Mule Encodings310666 +Node: Internal String Encoding312496 +Node: Internal Character Encoding314641 +Node: CCL316365 +Node: The Lisp Reader and Compiler323118 +Node: Lstreams323331 +Node: Creating an Lstream324362 +Node: Lstream Types325589 +Node: Lstream Functions325841 +Node: Lstream Methods329407 +Node: Consoles; Devices; Frames; Windows332549 +Node: Introduction to Consoles; Devices; Frames; Windows332864 +Node: Point335397 +Node: Window Hierarchy336676 +Node: The Window Object341128 +Node: The Redisplay Mechanism344565 +Node: Critical Redisplay Sections345357 +Node: Line Start Cache346344 +Node: Redisplay Piece by Piece349580 +Node: Extents351617 +Node: Introduction to Extents352151 +Node: Extent Ordering353293 +Node: Format of the Extent Info354534 +Node: Zero-Length Extents356421 +Node: Mathematics of Extent Ordering357821 +Node: Extent Fragments362578 +Node: Faces363664 +Node: Glyphs363780 +Node: Specifiers370413 +Node: Menus370542 +Node: Subprocesses372800 +Node: Interface to the X Window System374786 +Node: Lucid Widget Library375067 +Node: Generic Widget Interface376358 +Node: Scrollbars379917 +Node: Menubars380060 +Node: Checkboxes and Radio Buttons380203 +Node: Progress Bars380389 +Node: Tab Controls380549 +Node: Index380670  End Tag Table diff --git a/info/internals.info-1 b/info/internals.info-1 index b357f91..880768a 100644 --- a/info/internals.info-1 +++ b/info/internals.info-1 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-2 b/info/internals.info-2 index 14bf799..0d0f625 100644 --- a/info/internals.info-2 +++ b/info/internals.info-2 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-3 b/info/internals.info-3 index 48b542a..6cc8d80 100644 --- a/info/internals.info-3 +++ b/info/internals.info-3 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-4 b/info/internals.info-4 index 7a7a4b7..c717881 100644 --- a/info/internals.info-4 +++ b/info/internals.info-4 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-5 b/info/internals.info-5 index 17671f1..af423f8 100644 --- a/info/internals.info-5 +++ b/info/internals.info-5 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-6 b/info/internals.info-6 index 9a9dbe1..5b89518 100644 --- a/info/internals.info-6 +++ b/info/internals.info-6 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-7 b/info/internals.info-7 index e000598..8f3633d 100644 --- a/info/internals.info-7 +++ b/info/internals.info-7 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-8 b/info/internals.info-8 index 36c52e9..d641579 100644 --- a/info/internals.info-8 +++ b/info/internals.info-8 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/internals.info-9 b/info/internals.info-9 index 314d717..0c91f06 100644 --- a/info/internals.info-9 +++ b/info/internals.info-9 @@ -1,4 +1,4 @@ -This is ../info/internals.info, produced by makeinfo version 4.0b from +This is ../info/internals.info, produced by makeinfo version 4.0 from internals/internals.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info b/info/lispref.info index fd2a722..2f1244d 100644 --- a/info/lispref.info +++ b/info/lispref.info @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor @@ -51,869 +51,869 @@ Foundation instead of in the original English.  Indirect: -lispref.info-1: 2367 -lispref.info-2: 49117 -lispref.info-3: 97602 -lispref.info-4: 147442 -lispref.info-5: 197181 -lispref.info-6: 245535 -lispref.info-7: 293942 -lispref.info-8: 342608 -lispref.info-9: 387690 -lispref.info-10: 436622 -lispref.info-11: 485479 -lispref.info-12: 534010 -lispref.info-13: 581562 -lispref.info-14: 629420 -lispref.info-15: 678835 -lispref.info-16: 726830 -lispref.info-17: 772167 -lispref.info-18: 819637 -lispref.info-19: 867195 -lispref.info-20: 914821 -lispref.info-21: 962848 -lispref.info-22: 1011770 -lispref.info-23: 1058033 -lispref.info-24: 1104497 -lispref.info-25: 1154157 -lispref.info-26: 1202848 -lispref.info-27: 1251703 -lispref.info-28: 1300370 -lispref.info-29: 1350321 -lispref.info-30: 1398470 -lispref.info-31: 1444125 -lispref.info-32: 1494114 -lispref.info-33: 1542684 -lispref.info-34: 1589889 -lispref.info-35: 1639715 -lispref.info-36: 1688391 -lispref.info-37: 1734124 -lispref.info-38: 1783263 -lispref.info-39: 1830705 -lispref.info-40: 1879258 -lispref.info-41: 1925811 -lispref.info-42: 1974506 -lispref.info-43: 2018881 -lispref.info-44: 2063250 -lispref.info-45: 2109744 -lispref.info-46: 2150586 -lispref.info-47: 2199804 -lispref.info-48: 2213673 +lispref.info-1: 2366 +lispref.info-2: 49116 +lispref.info-3: 97603 +lispref.info-4: 147443 +lispref.info-5: 197182 +lispref.info-6: 245536 +lispref.info-7: 293943 +lispref.info-8: 342609 +lispref.info-9: 387691 +lispref.info-10: 436623 +lispref.info-11: 485480 +lispref.info-12: 534011 +lispref.info-13: 581563 +lispref.info-14: 629421 +lispref.info-15: 678836 +lispref.info-16: 726831 +lispref.info-17: 772168 +lispref.info-18: 819638 +lispref.info-19: 867196 +lispref.info-20: 914822 +lispref.info-21: 962849 +lispref.info-22: 1011771 +lispref.info-23: 1058034 +lispref.info-24: 1104498 +lispref.info-25: 1154158 +lispref.info-26: 1202849 +lispref.info-27: 1251704 +lispref.info-28: 1300371 +lispref.info-29: 1350322 +lispref.info-30: 1398471 +lispref.info-31: 1444126 +lispref.info-32: 1494115 +lispref.info-33: 1542685 +lispref.info-34: 1589890 +lispref.info-35: 1639716 +lispref.info-36: 1688392 +lispref.info-37: 1734125 +lispref.info-38: 1783264 +lispref.info-39: 1830706 +lispref.info-40: 1879259 +lispref.info-41: 1925812 +lispref.info-42: 1974507 +lispref.info-43: 2018882 +lispref.info-44: 2063251 +lispref.info-45: 2109745 +lispref.info-46: 2150587 +lispref.info-47: 2199805 +lispref.info-48: 2213674  Tag Table: (Indirect) -Node: Top2367 -Node: Copying49117 -Node: Introduction68273 -Node: Caveats69864 -Node: Lisp History71543 -Node: Conventions72799 -Node: Some Terms73614 -Node: nil and t74335 -Node: Evaluation Notation76012 -Node: Printing Notation76925 -Node: Error Messages77799 -Node: Buffer Text Notation78240 -Node: Format of Descriptions79115 -Node: A Sample Function Description79969 -Node: A Sample Variable Description83955 -Node: Acknowledgements84863 -Node: Lisp Data Types86841 -Node: Printed Representation89396 -Node: Comments91438 -Node: Primitive Types92335 -Node: Programming Types93994 -Node: Integer Type95946 -Node: Floating Point Type96983 -Node: Character Type97602 -Node: Symbol Type105506 -Node: Sequence Type108201 -Node: Cons Cell Type109720 -Node: Dotted Pair Notation114204 -Node: Association List Type116325 -Node: Array Type117208 -Node: String Type118674 -Node: Vector Type121355 -Node: Bit Vector Type122127 -Node: Function Type122989 -Node: Macro Type124102 -Node: Primitive Function Type124799 -Node: Compiled-Function Type126325 -Node: Autoload Type126879 -Node: Char Table Type127893 -Node: Hash Table Type128067 -Node: Range Table Type129222 -Node: Weak List Type130075 -Node: Editing Types130225 -Node: Buffer Type131852 -Node: Marker Type133879 -Node: Extent Type134603 -Node: Window Type135871 -Node: Frame Type137282 -Node: Device Type138077 -Node: Console Type138903 -Node: Window Configuration Type140104 -Node: Event Type140802 -Node: Process Type140966 -Node: Stream Type142001 -Node: Keymap Type143124 -Node: Syntax Table Type143662 -Node: Display Table Type144685 -Node: Database Type145124 -Node: Charset Type145290 -Node: Coding System Type145454 -Node: ToolTalk Message Type145638 -Node: ToolTalk Pattern Type145837 -Node: Window-System Types146009 -Node: Face Type147155 -Node: Glyph Type147286 -Node: Specifier Type147442 -Node: Font Instance Type147615 -Node: Color Instance Type147805 -Node: Image Instance Type148002 -Node: Toolbar Button Type148200 -Node: Subwindow Type148393 -Node: X Resource Type148572 -Node: Type Predicates148725 -Node: Equality Predicates157854 -Node: Numbers162665 -Node: Integer Basics164120 -Node: Float Basics166469 -Node: Predicates on Numbers168211 -Node: Comparison of Numbers169844 -Node: Numeric Conversions173665 -Node: Arithmetic Operations175131 -Node: Rounding Operations181270 -Node: Bitwise Operations182383 -Node: Math Functions191429 -Node: Random Numbers193962 -Node: Strings and Characters195728 -Node: String Basics197181 -Node: Predicates for Strings199599 -Node: Creating Strings200362 -Node: Predicates for Characters205703 -Node: Character Codes206774 -Node: Text Comparison208194 -Node: String Conversion211639 -Node: Modifying Strings215309 -Node: String Properties215950 -Node: Formatting Strings216595 -Node: Character Case226213 -Node: Case Tables229767 -Node: Char Tables233738 -Node: Char Table Types235130 -Node: Working With Char Tables236715 -Node: Lists238732 -Node: Cons Cells239855 -Node: Lists as Boxes241191 -Node: List-related Predicates243833 -Node: List Elements245535 -Node: Building Lists250564 -Node: Modifying Lists256556 -Node: Setcar257368 -Node: Setcdr259799 -Node: Rearrangement262320 -Node: Sets And Lists267906 -Node: Association Lists272134 -Ref: Association Lists-Footnote-1281425 -Node: Property Lists281630 -Node: Working With Normal Plists283178 -Node: Working With Lax Plists285515 -Node: Converting Plists To/From Alists287795 -Node: Weak Lists289143 -Node: Sequences Arrays Vectors291306 -Node: Sequence Functions293942 -Node: Arrays297601 -Node: Array Functions300665 -Node: Vectors303198 -Node: Vector Functions304696 -Node: Bit Vectors307267 -Node: Bit Vector Functions308112 -Node: Symbols310411 -Node: Symbol Components311460 -Node: Definitions315643 -Node: Creating Symbols317868 -Node: Symbol Properties324902 -Node: Plists and Alists326429 -Node: Object Plists328178 -Node: Other Plists330938 -Node: Evaluation332737 -Node: Intro Eval333542 -Ref: Intro Eval-Footnote-1336895 -Node: Eval337030 -Node: Forms341449 -Node: Self-Evaluating Forms342608 -Node: Symbol Forms344121 -Node: Classifying Lists345038 -Node: Function Indirection345794 -Node: Function Forms348893 -Node: Macro Forms349890 -Node: Special Forms351490 -Node: Autoloading353799 -Node: Quoting354297 -Node: Control Structures355658 -Node: Sequencing357278 -Node: Conditionals360143 -Node: Combining Conditions363566 -Node: Iteration366836 -Node: Nonlocal Exits368615 -Node: Catch and Throw369317 -Node: Examples of Catch373156 -Node: Errors375175 -Node: Signaling Errors376664 -Node: Processing of Errors385411 -Node: Handling Errors387690 -Node: Error Symbols394931 -Node: Cleanups398887 -Node: Variables402665 -Node: Global Variables404434 -Node: Constant Variables405510 -Node: Local Variables406136 -Node: Void Variables411074 -Node: Defining Variables414590 -Node: Accessing Variables421754 -Node: Setting Variables423179 -Node: Variable Scoping427698 -Node: Scope429297 -Node: Extent430822 -Node: Impl of Scope432301 -Node: Using Scoping434264 -Node: Buffer-Local Variables435786 -Node: Intro to Buffer-Local436622 -Node: Creating Buffer-Local439165 -Node: Default Value445064 -Node: Variable Aliases448207 -Node: Functions450058 -Node: What Is a Function451152 -Node: Lambda Expressions455198 -Node: Lambda Components456108 -Node: Simple Lambda457940 -Node: Argument List459597 -Node: Function Documentation463325 -Node: Function Names465267 -Node: Defining Functions467840 -Node: Calling Functions470880 -Node: Mapping Functions474728 -Node: Anonymous Functions477416 -Node: Function Cells480661 -Node: Inline Functions485479 -Node: Related Topics487289 -Node: Macros488342 -Node: Simple Macro489626 -Node: Expansion490361 -Node: Compiling Macros493365 -Node: Defining Macros495201 -Node: Backquote496518 -Node: Problems with Macros498915 -Node: Argument Evaluation499610 -Node: Surprising Local Vars502525 -Node: Eval During Expansion504593 -Node: Repeated Expansion506286 -Node: Customization508202 -Node: Common Keywords508671 -Node: Group Definitions511516 -Node: Variable Definitions513708 -Node: Customization Types518698 -Node: Simple Types520133 -Node: Composite Types522290 -Node: Splicing into Lists526980 -Node: Type Keywords528815 -Node: Loading532335 -Node: How Programs Do Loading534010 -Node: Autoload543136 -Node: Repeated Loading549206 -Node: Named Features551319 -Node: Unloading557749 -Node: Hooks for Loading559905 -Node: Byte Compilation560622 -Node: Speed of Byte-Code562615 -Node: Compilation Functions563822 -Node: Docs and Compilation570479 -Node: Dynamic Loading573132 -Node: Eval During Compile575496 -Node: Compiled-Function Objects576761 -Node: Disassembly581562 -Node: Different Behavior588843 -Node: Debugging590188 -Node: Debugger591600 -Node: Error Debugging592745 -Node: Infinite Loops595498 -Node: Function Debugging596742 -Node: Explicit Debug599542 -Node: Using Debugger600313 -Node: Debugger Commands602175 -Node: Invoking the Debugger606492 -Node: Internals of Debugger610407 -Node: Syntax Errors615294 -Node: Excess Open616542 -Node: Excess Close618417 -Node: Compilation Errors619838 -Node: Edebug621126 -Node: Using Edebug623234 -Node: Instrumenting625931 -Node: Edebug Execution Modes629420 -Node: Jumping632530 -Node: Edebug Misc634873 -Node: Breakpoints636262 -Node: Global Break Condition639068 -Node: Embedded Breakpoints640023 -Node: Trapping Errors640978 -Node: Edebug Views643054 -Node: Edebug Eval645019 -Node: Eval List646196 -Node: Reading in Edebug649581 -Node: Printing in Edebug650380 -Node: Tracing652095 -Node: Coverage Testing653983 -Node: The Outside Context656024 -Node: Checking Whether to Stop656973 -Node: Edebug Display Update657620 -Node: Edebug Recursive Edit659643 -Node: Instrumenting Macro Calls661298 -Node: Specification List663780 -Node: Backtracking673191 -Node: Debugging Backquote675129 -Node: Specification Examples678835 -Node: Edebug Options680902 -Node: Read and Print686241 -Node: Streams Intro687218 -Node: Input Streams689236 -Node: Input Functions694137 -Node: Output Streams696197 -Node: Output Functions700248 -Node: Output Variables704548 -Node: Minibuffers709349 -Node: Intro to Minibuffers710501 -Node: Text from Minibuffer712689 -Node: Object from Minibuffer717783 -Node: Minibuffer History721876 -Node: Completion724855 -Node: Basic Completion726830 -Node: Minibuffer Completion731713 -Node: Completion Commands735290 -Node: High-Level Completion739947 -Node: Reading File Names744696 -Node: Programmed Completion748388 -Node: Yes-or-No Queries750770 -Node: Multiple Queries756507 -Node: Reading a Password760574 -Node: Minibuffer Misc761917 -Node: Command Loop766797 -Node: Command Overview768141 -Node: Defining Commands771419 -Node: Using Interactive772167 -Node: Interactive Codes776940 -Node: Interactive Examples782732 -Node: Interactive Call784046 -Node: Command Loop Info789461 -Node: Events794440 -Node: Event Types795901 -Node: Event Contents797824 -Node: Event Predicates802300 -Node: Accessing Mouse Event Positions803618 -Node: Frame-Level Event Position Info804317 -Node: Window-Level Event Position Info805357 -Node: Event Text Position Info807121 -Node: Event Glyph Position Info809613 -Node: Event Toolbar Position Info810936 -Node: Other Event Position Info811607 -Node: Accessing Other Event Info812016 -Node: Working With Events813636 -Node: Converting Events819637 -Node: Reading Input823036 -Node: Key Sequence Input824038 -Node: Reading One Event826673 -Node: Dispatching an Event829497 -Node: Quoted Character Input829948 -Node: Peeking and Discarding831296 -Node: Waiting835200 -Node: Quitting837514 -Node: Prefix Command Arguments841922 -Node: Recursive Editing847009 -Node: Disabling Commands851804 -Node: Command History853872 -Node: Keyboard Macros855609 -Node: Keymaps857826 -Node: Keymap Terminology859403 -Node: Format of Keymaps862332 -Node: Creating Keymaps862743 -Node: Inheritance and Keymaps864823 -Node: Key Sequences867195 -Node: Prefix Keys871991 -Node: Active Keymaps875576 -Node: Key Lookup884947 -Node: Functions for Key Lookup890110 -Node: Changing Key Bindings895811 -Node: Key Binding Commands902973 -Node: Scanning Keymaps905038 -Node: Other Keymap Functions913607 -Node: Menus914229 -Node: Menu Format914821 -Node: Menubar Format923467 -Node: Menubar924092 -Node: Modifying Menus927205 -Node: Menu Filters932549 -Node: Pop-Up Menus934445 -Node: Menu Accelerators936773 -Node: Creating Menu Accelerators937529 -Node: Keyboard Menu Traversal938889 -Node: Menu Accelerator Functions939616 -Node: Buffers Menu942692 -Node: Dialog Boxes943986 -Node: Dialog Box Format944153 -Node: Dialog Box Functions945578 -Node: Toolbar945975 -Node: Toolbar Intro946410 -Node: Creating Toolbar948810 -Node: Toolbar Descriptor Format949727 -Node: Specifying the Toolbar954224 -Node: Other Toolbar Variables957831 -Node: Gutter962259 -Node: Gutter Intro962848 -Node: Creating Gutter964851 -Node: Gutter Descriptor Format967738 -Node: Specifying a Gutter972195 -Node: Other Gutter Variables975730 -Node: Common Gutter Widgets980117 -Node: Buffer Tabs981109 -Node: Progress Bars981250 -Node: Scrollbars981395 -Node: Drag and Drop981530 -Node: Supported Protocols982606 -Node: OffiX DND983109 -Node: CDE dt984116 -Node: MSWindows OLE984707 -Node: Loose ends984878 -Node: Drop Interface985270 -Node: Drag Interface986292 -Node: Modes986466 -Node: Major Modes987417 -Node: Major Mode Conventions990332 -Node: Example Major Modes996287 -Node: Auto Major Mode1004320 -Node: Mode Help1011770 -Node: Derived Modes1012871 -Node: Minor Modes1015062 -Node: Minor Mode Conventions1016364 -Node: Keymaps and Minor Modes1019227 -Node: Modeline Format1020062 -Node: Modeline Data1021830 -Node: Modeline Variables1026983 -Node: %-Constructs1031699 -Node: Hooks1034686 -Node: Documentation1041446 -Node: Documentation Basics1042869 -Node: Accessing Documentation1045920 -Node: Keys in Documentation1052201 -Node: Describing Characters1055684 -Node: Help Functions1058033 -Node: Obsoleteness1064483 -Node: Files1067475 -Node: Visiting Files1069400 -Node: Visiting Functions1070905 -Node: Subroutines of Visiting1076063 -Node: Saving Buffers1078136 -Node: Reading from Files1084229 -Node: Writing to Files1086390 -Node: File Locks1089107 -Node: Information about Files1092174 -Node: Testing Accessibility1092935 -Node: Kinds of Files1096675 -Node: Truenames1098356 -Node: File Attributes1099358 -Node: Changing File Attributes1104497 -Node: File Names1109919 -Node: File Name Components1111492 -Node: Directory Names1113937 -Node: Relative File Names1117167 -Node: File Name Expansion1118137 -Node: Unique File Names1121891 -Node: File Name Completion1123506 -Node: User Name Completion1126774 -Node: Contents of Directories1128181 -Node: Create/Delete Dirs1131494 -Node: Magic File Names1132600 -Node: Partial Files1138248 -Node: Intro to Partial Files1138476 -Node: Creating a Partial File1139716 -Node: Detached Partial Files1140652 -Node: Format Conversion1141774 -Node: Files and MS-DOS1147272 -Node: Backups and Auto-Saving1149336 -Node: Backup Files1150011 -Node: Making Backups1151408 -Node: Rename or Copy1154157 -Node: Numbered Backups1156650 -Node: Backup Names1158885 -Node: Auto-Saving1162177 -Node: Reverting1170339 -Node: Buffers1173675 -Node: Buffer Basics1175091 -Node: Current Buffer1177144 -Node: Buffer Names1181848 -Node: Buffer File Name1185055 -Node: Buffer Modification1189174 -Node: Modification Time1191417 -Node: Read Only Buffers1194792 -Node: The Buffer List1198031 -Node: Creating Buffers1202848 -Node: Killing Buffers1204994 -Node: Indirect Buffers1208826 -Node: Windows1211400 -Node: Basic Windows1212878 -Node: Splitting Windows1215976 -Node: Deleting Windows1221302 -Node: Selecting Windows1225220 -Node: Cyclic Window Ordering1229443 -Node: Buffers and Windows1234598 -Node: Displaying Buffers1236376 -Node: Choosing Window1241715 -Node: Window Point1249633 -Node: Window Start1251703 -Node: Vertical Scrolling1256502 -Node: Horizontal Scrolling1262700 -Node: Size of Window1266229 -Node: Position of Window1270947 -Node: Resizing Windows1273200 -Node: Window Configurations1278638 -Node: Frames1282135 -Node: Creating Frames1284476 -Node: Frame Properties1285816 -Node: Property Access1286632 -Node: Initial Properties1287539 -Node: X Frame Properties1290025 -Node: Size and Position1294659 -Node: Frame Name1296657 -Node: Frame Titles1297571 -Node: Deleting Frames1299395 -Node: Finding All Frames1300370 -Node: Frames and Windows1303598 -Node: Minibuffers and Frames1306380 -Node: Input Focus1307298 -Node: Visibility of Frames1310403 -Node: Raising and Lowering1312393 -Node: Frame Configurations1314769 -Node: Frame Hooks1315826 -Node: Consoles and Devices1317631 -Node: Basic Console Functions1320374 -Node: Basic Device Functions1320797 -Node: Console Types and Device Classes1321643 -Node: Connecting to a Console or Device1323910 -Node: The Selected Console and Device1326094 -Node: Console and Device I/O1327120 -Node: Positions1327884 -Node: Point1328853 -Node: Motion1331943 -Node: Character Motion1332710 -Node: Word Motion1334947 -Node: Buffer End Motion1336337 -Node: Text Lines1337874 -Node: Screen Lines1342775 -Node: List Motion1346838 -Node: Skipping Characters1350321 -Node: Excursions1352540 -Node: Narrowing1355580 -Node: Markers1360911 -Node: Overview of Markers1361817 -Node: Predicates on Markers1366509 -Node: Creating Markers1367755 -Node: Information from Markers1371955 -Node: Changing Markers1373053 -Node: The Mark1374581 -Node: The Region1383084 -Node: Text1388770 -Node: Near Point1391469 -Node: Buffer Contents1395656 -Node: Comparing Text1397062 -Node: Insertion1398470 -Node: Commands for Insertion1402380 -Node: Deletion1405274 -Node: User-Level Deletion1408924 -Node: The Kill Ring1413084 -Node: Kill Ring Concepts1415258 -Node: Kill Functions1416312 -Node: Yank Commands1418235 -Node: Low-Level Kill Ring1420106 -Node: Internals of Kill Ring1423192 -Node: Undo1425972 -Node: Maintaining Undo1430309 -Node: Filling1432927 -Node: Margins1438921 -Node: Auto Filling1442944 -Node: Sorting1444125 -Node: Columns1453439 -Node: Indentation1456520 -Node: Primitive Indent1457299 -Node: Mode-Specific Indent1458624 -Node: Region Indent1461156 -Node: Relative Indent1464103 -Node: Indent Tabs1466485 -Node: Motion by Indent1467806 -Node: Case Changes1468585 -Node: Text Properties1471938 -Node: Examining Properties1473751 -Node: Changing Properties1475634 -Node: Property Search1479225 -Node: Special Properties1483944 -Node: Saving Properties1484225 -Node: Substitution1487367 -Node: Registers1490637 -Node: Transposition1493220 -Node: Change Hooks1494114 -Node: Transformations1496154 -Node: Searching and Matching1501258 -Node: String Search1502389 -Node: Regular Expressions1507370 -Node: Syntax of Regexps1508737 -Node: Regexp Example1523340 -Node: Regexp Search1525510 -Node: POSIX Regexps1531847 -Node: Search and Replace1533924 -Node: Match Data1537289 -Node: Simple Match Data1538419 -Node: Replacing Match1542684 -Node: Entire Match Data1545365 -Node: Saving Match Data1547603 -Node: Searching and Case1548991 -Node: Standard Regexps1551025 -Node: Syntax Tables1553223 -Node: Syntax Basics1554337 -Node: Syntax Descriptors1557309 -Node: Syntax Class Table1559159 -Node: Syntax Flags1565197 -Node: Syntax Table Functions1568414 -Node: Motion and Syntax1572702 -Node: Parsing Expressions1574154 -Node: Standard Syntax Tables1580252 -Node: Syntax Table Internals1581096 -Node: Abbrevs1582122 -Node: Abbrev Mode1583926 -Node: Abbrev Tables1584646 -Node: Defining Abbrevs1586185 -Node: Abbrev Files1588106 -Node: Abbrev Expansion1589889 -Node: Standard Abbrev Tables1594520 -Node: Extents1595679 -Node: Intro to Extents1596922 -Node: Creating and Modifying Extents1600914 -Node: Extent Endpoints1602495 -Node: Finding Extents1605758 -Node: Mapping Over Extents1609880 -Node: Extent Properties1616003 -Node: Detached Extents1626164 -Node: Extent Parents1628023 -Node: Duplicable Extents1629717 -Node: Extents and Events1632938 -Node: Atomic Extents1634845 -Node: Specifiers1635292 -Node: Introduction to Specifiers1637405 -Node: Specifiers In-Depth1639715 -Node: Specifier Instancing1644627 -Node: Specifier Types1647889 -Node: Adding Specifications1652963 -Node: Retrieving Specifications1662384 -Node: Specifier Tag Functions1666129 -Node: Specifier Instancing Functions1669363 -Node: Specifier Example1672770 -Node: Creating Specifiers1675926 -Node: Specifier Validation Functions1680243 -Node: Other Specification Functions1682629 -Node: Faces and Window-System Objects1686450 -Node: Faces1686774 -Node: Merging Faces1688391 -Node: Basic Face Functions1690352 -Node: Face Properties1692500 -Node: Face Convenience Functions1702773 -Node: Other Face Display Functions1705993 -Node: Fonts1706805 -Node: Font Specifiers1707506 -Node: Font Instances1708691 -Node: Font Instance Names1709658 -Node: Font Instance Size1710499 -Node: Font Instance Characteristics1711785 -Node: Font Convenience Functions1712963 -Node: Colors1714253 -Node: Color Specifiers1714693 -Node: Color Instances1717053 -Node: Color Instance Properties1717797 -Node: Color Convenience Functions1718423 -Node: Glyphs1719476 -Node: Glyph Functions1721077 -Node: Creating Glyphs1721484 -Node: Glyph Properties1734124 -Node: Glyph Convenience Functions1743291 -Node: Glyph Dimensions1747238 -Node: Images1748318 -Node: Image Specifiers1748767 -Node: Image Instantiator Conversion1764258 -Node: Image Instances1765623 -Node: Image Instance Types1766374 -Node: Image Instance Functions1769139 -Node: Glyph Types1776196 -Node: Mouse Pointer1777968 -Node: Redisplay Glyphs1780971 -Node: Subwindows1782004 -Node: Annotations1782247 -Node: Annotation Basics1783263 -Node: Annotation Primitives1787201 -Node: Annotation Properties1788540 -Node: Locating Annotations1791580 -Node: Margin Primitives1792417 -Node: Annotation Hooks1794311 -Node: Display1794971 -Node: Refresh Screen1795949 -Node: Truncation1798143 -Node: The Echo Area1800668 -Node: Warnings1807111 -Node: Invisible Text1811547 -Node: Selective Display1814126 -Node: Overlay Arrow1818252 -Node: Temporary Displays1819605 -Node: Blinking1823726 -Node: Usual Display1825910 -Node: Display Tables1828459 -Node: Display Table Format1829263 -Node: Active Display Table1830705 -Node: Character Descriptors1834700 -Node: Beeping1835457 -Node: Hash Tables1840223 -Node: Introduction to Hash Tables1840831 -Node: Working With Hash Tables1847390 -Node: Weak Hash Tables1848507 -Node: Range Tables1850524 -Node: Introduction to Range Tables1851213 -Node: Working With Range Tables1851659 -Node: Databases1852618 -Node: Connecting to a Database1852917 -Node: Working With a Database1854024 -Node: Other Database Functions1854898 -Node: Processes1855467 -Node: Subprocess Creation1857691 -Node: Synchronous Processes1861142 -Node: MS-DOS Subprocesses1867864 -Node: Asynchronous Processes1868938 -Node: Deleting Processes1873295 -Node: Process Information1875166 -Node: Input to Processes1879258 -Node: Signals to Processes1881953 -Node: Output from Processes1886768 -Node: Process Buffers1887580 -Node: Filter Functions1890459 -Node: Accepting Output1896050 -Node: Sentinels1897577 -Node: Process Window Size1901067 -Node: Transaction Queues1901416 -Node: Network1903114 -Node: System Interface1905748 -Node: Starting Up1907018 -Node: Start-up Summary1907612 -Node: Init File1911166 -Node: Terminal-Specific1913547 -Node: Command Line Arguments1916706 -Node: Getting Out1920195 -Node: Killing XEmacs1920764 -Node: Suspending XEmacs1922432 -Node: System Environment1925811 -Node: User Identification1931992 -Node: Time of Day1935521 -Node: Time Conversion1938308 -Node: Timers1943550 -Node: Terminal Input1945723 -Node: Input Modes1946226 -Node: Translating Input1948685 -Node: Recording Input1952850 -Node: Terminal Output1954950 -Node: Flow Control1958571 -Node: Batch Mode1962533 -Node: X-Windows1963915 -Node: X Selections1964786 -Node: X Server1967537 -Node: Resources1967988 -Node: Server Data1973299 -Node: Grabs1974506 -Node: X Miscellaneous1976086 -Node: ToolTalk Support1978471 -Node: XEmacs ToolTalk API Summary1978688 -Node: Sending Messages1979988 -Node: Example of Sending Messages1980239 -Node: Elisp Interface for Sending Messages1981301 -Node: Receiving Messages1987897 -Node: Example of Receiving Messages1988120 -Node: Elisp Interface for Receiving Messages1988956 -Node: LDAP Support1992813 -Node: Building XEmacs with LDAP support1993307 -Node: XEmacs LDAP API1994284 -Node: LDAP Variables1995336 -Node: The High-Level LDAP API1997936 -Node: The Low-Level LDAP API2001409 -Node: The LDAP Lisp Object2002240 -Node: Opening and Closing a LDAP Connection2002795 -Node: Low-level Operations on a LDAP Server2004601 -Node: LDAP Internationalization2007325 -Node: LDAP Internationalization Variables2008230 -Node: Encoder/Decoder Functions2009961 -Node: Syntax of Search Filters2010998 -Node: PostgreSQL Support2012296 -Node: Building XEmacs with PostgreSQL support2012691 -Node: XEmacs PostgreSQL libpq API2014038 -Node: libpq Lisp Variables2015917 -Node: libpq Lisp Symbols and DataTypes2018881 -Node: Synchronous Interface Functions2032121 -Node: Asynchronous Interface Functions2036612 -Node: Large Object Support2040117 -Node: Other libpq Functions2040744 -Node: Unimplemented libpq Functions2043779 -Node: XEmacs PostgreSQL libpq Examples2049098 -Node: Internationalization2055189 -Node: I18N Levels 1 and 22055532 -Node: I18N Level 32056238 -Node: Level 3 Basics2056519 -Node: Level 3 Primitives2057352 -Node: Dynamic Messaging2058958 -Node: Domain Specification2059421 -Node: Documentation String Extraction2061091 -Node: I18N Level 42062009 -Node: MULE2062201 -Node: Internationalization Terminology2063250 -Node: Charsets2075449 -Node: Charset Properties2076145 -Node: Basic Charset Functions2080860 -Node: Charset Property Functions2083041 -Node: Predefined Charsets2085111 -Node: MULE Characters2088031 -Node: Composite Characters2088906 -Node: Coding Systems2090173 -Node: Coding System Types2092313 -Node: ISO 20222096297 -Node: EOL Conversion2108572 -Node: Coding System Properties2109744 -Node: Basic Coding System Functions2114067 -Node: Coding System Property Functions2116101 -Node: Encoding and Decoding Text2116659 -Node: Detection of Textual Encoding2117795 -Node: Big5 and Shift-JIS Functions2119331 -Node: Predefined Coding Systems2120483 -Node: CCL2132577 -Node: CCL Syntax2135681 -Node: CCL Statements2137257 -Node: CCL Expressions2141905 -Node: Calling CCL2144444 -Node: CCL Examples2147449 -Node: Category Tables2147586 -Node: Tips2149945 -Node: Style Tips2150586 -Node: Compilation Tips2160105 -Node: Documentation Tips2162019 -Node: Comment Tips2167528 -Node: Library Headers2170531 -Node: Building XEmacs and Object Allocation2174503 -Node: Building XEmacs2175386 -Node: Pure Storage2181964 -Node: Garbage Collection2184752 -Node: Standard Errors2195595 -Node: Standard Buffer-Local Variables2199804 -Node: Standard Keymaps2202439 -Node: Standard Hooks2206173 -Node: Index2213673 +Node: Top2366 +Node: Copying49116 +Node: Introduction68274 +Node: Caveats69865 +Node: Lisp History71544 +Node: Conventions72800 +Node: Some Terms73615 +Node: nil and t74336 +Node: Evaluation Notation76013 +Node: Printing Notation76926 +Node: Error Messages77800 +Node: Buffer Text Notation78241 +Node: Format of Descriptions79116 +Node: A Sample Function Description79970 +Node: A Sample Variable Description83956 +Node: Acknowledgements84864 +Node: Lisp Data Types86842 +Node: Printed Representation89397 +Node: Comments91439 +Node: Primitive Types92336 +Node: Programming Types93995 +Node: Integer Type95947 +Node: Floating Point Type96984 +Node: Character Type97603 +Node: Symbol Type105507 +Node: Sequence Type108202 +Node: Cons Cell Type109721 +Node: Dotted Pair Notation114205 +Node: Association List Type116326 +Node: Array Type117209 +Node: String Type118675 +Node: Vector Type121356 +Node: Bit Vector Type122128 +Node: Function Type122990 +Node: Macro Type124103 +Node: Primitive Function Type124800 +Node: Compiled-Function Type126326 +Node: Autoload Type126880 +Node: Char Table Type127894 +Node: Hash Table Type128068 +Node: Range Table Type129223 +Node: Weak List Type130076 +Node: Editing Types130226 +Node: Buffer Type131853 +Node: Marker Type133880 +Node: Extent Type134604 +Node: Window Type135872 +Node: Frame Type137283 +Node: Device Type138078 +Node: Console Type138904 +Node: Window Configuration Type140105 +Node: Event Type140803 +Node: Process Type140967 +Node: Stream Type142002 +Node: Keymap Type143125 +Node: Syntax Table Type143663 +Node: Display Table Type144686 +Node: Database Type145125 +Node: Charset Type145291 +Node: Coding System Type145455 +Node: ToolTalk Message Type145639 +Node: ToolTalk Pattern Type145838 +Node: Window-System Types146010 +Node: Face Type147156 +Node: Glyph Type147287 +Node: Specifier Type147443 +Node: Font Instance Type147616 +Node: Color Instance Type147806 +Node: Image Instance Type148003 +Node: Toolbar Button Type148201 +Node: Subwindow Type148394 +Node: X Resource Type148573 +Node: Type Predicates148726 +Node: Equality Predicates157855 +Node: Numbers162666 +Node: Integer Basics164121 +Node: Float Basics166470 +Node: Predicates on Numbers168212 +Node: Comparison of Numbers169845 +Node: Numeric Conversions173666 +Node: Arithmetic Operations175132 +Node: Rounding Operations181271 +Node: Bitwise Operations182384 +Node: Math Functions191430 +Node: Random Numbers193963 +Node: Strings and Characters195729 +Node: String Basics197182 +Node: Predicates for Strings199600 +Node: Creating Strings200363 +Node: Predicates for Characters205704 +Node: Character Codes206775 +Node: Text Comparison208195 +Node: String Conversion211640 +Node: Modifying Strings215310 +Node: String Properties215951 +Node: Formatting Strings216596 +Node: Character Case226214 +Node: Case Tables229768 +Node: Char Tables233739 +Node: Char Table Types235131 +Node: Working With Char Tables236716 +Node: Lists238733 +Node: Cons Cells239856 +Node: Lists as Boxes241192 +Node: List-related Predicates243834 +Node: List Elements245536 +Node: Building Lists250565 +Node: Modifying Lists256557 +Node: Setcar257369 +Node: Setcdr259800 +Node: Rearrangement262321 +Node: Sets And Lists267907 +Node: Association Lists272135 +Ref: Association Lists-Footnote-1281426 +Node: Property Lists281631 +Node: Working With Normal Plists283179 +Node: Working With Lax Plists285516 +Node: Converting Plists To/From Alists287796 +Node: Weak Lists289144 +Node: Sequences Arrays Vectors291307 +Node: Sequence Functions293943 +Node: Arrays297602 +Node: Array Functions300666 +Node: Vectors303199 +Node: Vector Functions304697 +Node: Bit Vectors307268 +Node: Bit Vector Functions308113 +Node: Symbols310412 +Node: Symbol Components311461 +Node: Definitions315644 +Node: Creating Symbols317869 +Node: Symbol Properties324903 +Node: Plists and Alists326430 +Node: Object Plists328179 +Node: Other Plists330939 +Node: Evaluation332738 +Node: Intro Eval333543 +Ref: Intro Eval-Footnote-1336896 +Node: Eval337031 +Node: Forms341450 +Node: Self-Evaluating Forms342609 +Node: Symbol Forms344122 +Node: Classifying Lists345039 +Node: Function Indirection345795 +Node: Function Forms348894 +Node: Macro Forms349891 +Node: Special Forms351491 +Node: Autoloading353800 +Node: Quoting354298 +Node: Control Structures355659 +Node: Sequencing357279 +Node: Conditionals360144 +Node: Combining Conditions363567 +Node: Iteration366837 +Node: Nonlocal Exits368616 +Node: Catch and Throw369318 +Node: Examples of Catch373157 +Node: Errors375176 +Node: Signaling Errors376665 +Node: Processing of Errors385412 +Node: Handling Errors387691 +Node: Error Symbols394932 +Node: Cleanups398888 +Node: Variables402666 +Node: Global Variables404435 +Node: Constant Variables405511 +Node: Local Variables406137 +Node: Void Variables411075 +Node: Defining Variables414591 +Node: Accessing Variables421755 +Node: Setting Variables423180 +Node: Variable Scoping427699 +Node: Scope429298 +Node: Extent430823 +Node: Impl of Scope432302 +Node: Using Scoping434265 +Node: Buffer-Local Variables435787 +Node: Intro to Buffer-Local436623 +Node: Creating Buffer-Local439166 +Node: Default Value445065 +Node: Variable Aliases448208 +Node: Functions450059 +Node: What Is a Function451153 +Node: Lambda Expressions455199 +Node: Lambda Components456109 +Node: Simple Lambda457941 +Node: Argument List459598 +Node: Function Documentation463326 +Node: Function Names465268 +Node: Defining Functions467841 +Node: Calling Functions470881 +Node: Mapping Functions474729 +Node: Anonymous Functions477417 +Node: Function Cells480662 +Node: Inline Functions485480 +Node: Related Topics487290 +Node: Macros488343 +Node: Simple Macro489627 +Node: Expansion490362 +Node: Compiling Macros493366 +Node: Defining Macros495202 +Node: Backquote496519 +Node: Problems with Macros498916 +Node: Argument Evaluation499611 +Node: Surprising Local Vars502526 +Node: Eval During Expansion504594 +Node: Repeated Expansion506287 +Node: Customization508203 +Node: Common Keywords508672 +Node: Group Definitions511517 +Node: Variable Definitions513709 +Node: Customization Types518699 +Node: Simple Types520134 +Node: Composite Types522291 +Node: Splicing into Lists526981 +Node: Type Keywords528816 +Node: Loading532336 +Node: How Programs Do Loading534011 +Node: Autoload543137 +Node: Repeated Loading549207 +Node: Named Features551320 +Node: Unloading557750 +Node: Hooks for Loading559906 +Node: Byte Compilation560623 +Node: Speed of Byte-Code562616 +Node: Compilation Functions563823 +Node: Docs and Compilation570480 +Node: Dynamic Loading573133 +Node: Eval During Compile575497 +Node: Compiled-Function Objects576762 +Node: Disassembly581563 +Node: Different Behavior588844 +Node: Debugging590189 +Node: Debugger591601 +Node: Error Debugging592746 +Node: Infinite Loops595499 +Node: Function Debugging596743 +Node: Explicit Debug599543 +Node: Using Debugger600314 +Node: Debugger Commands602176 +Node: Invoking the Debugger606493 +Node: Internals of Debugger610408 +Node: Syntax Errors615295 +Node: Excess Open616543 +Node: Excess Close618418 +Node: Compilation Errors619839 +Node: Edebug621127 +Node: Using Edebug623235 +Node: Instrumenting625932 +Node: Edebug Execution Modes629421 +Node: Jumping632531 +Node: Edebug Misc634874 +Node: Breakpoints636263 +Node: Global Break Condition639069 +Node: Embedded Breakpoints640024 +Node: Trapping Errors640979 +Node: Edebug Views643055 +Node: Edebug Eval645020 +Node: Eval List646197 +Node: Reading in Edebug649582 +Node: Printing in Edebug650381 +Node: Tracing652096 +Node: Coverage Testing653984 +Node: The Outside Context656025 +Node: Checking Whether to Stop656974 +Node: Edebug Display Update657621 +Node: Edebug Recursive Edit659644 +Node: Instrumenting Macro Calls661299 +Node: Specification List663781 +Node: Backtracking673192 +Node: Debugging Backquote675130 +Node: Specification Examples678836 +Node: Edebug Options680903 +Node: Read and Print686242 +Node: Streams Intro687219 +Node: Input Streams689237 +Node: Input Functions694138 +Node: Output Streams696198 +Node: Output Functions700249 +Node: Output Variables704549 +Node: Minibuffers709350 +Node: Intro to Minibuffers710502 +Node: Text from Minibuffer712690 +Node: Object from Minibuffer717784 +Node: Minibuffer History721877 +Node: Completion724856 +Node: Basic Completion726831 +Node: Minibuffer Completion731714 +Node: Completion Commands735291 +Node: High-Level Completion739948 +Node: Reading File Names744697 +Node: Programmed Completion748389 +Node: Yes-or-No Queries750771 +Node: Multiple Queries756508 +Node: Reading a Password760575 +Node: Minibuffer Misc761918 +Node: Command Loop766798 +Node: Command Overview768142 +Node: Defining Commands771420 +Node: Using Interactive772168 +Node: Interactive Codes776941 +Node: Interactive Examples782733 +Node: Interactive Call784047 +Node: Command Loop Info789462 +Node: Events794441 +Node: Event Types795902 +Node: Event Contents797825 +Node: Event Predicates802301 +Node: Accessing Mouse Event Positions803619 +Node: Frame-Level Event Position Info804318 +Node: Window-Level Event Position Info805358 +Node: Event Text Position Info807122 +Node: Event Glyph Position Info809614 +Node: Event Toolbar Position Info810937 +Node: Other Event Position Info811608 +Node: Accessing Other Event Info812017 +Node: Working With Events813637 +Node: Converting Events819638 +Node: Reading Input823037 +Node: Key Sequence Input824039 +Node: Reading One Event826674 +Node: Dispatching an Event829498 +Node: Quoted Character Input829949 +Node: Peeking and Discarding831297 +Node: Waiting835201 +Node: Quitting837515 +Node: Prefix Command Arguments841923 +Node: Recursive Editing847010 +Node: Disabling Commands851805 +Node: Command History853873 +Node: Keyboard Macros855610 +Node: Keymaps857827 +Node: Keymap Terminology859404 +Node: Format of Keymaps862333 +Node: Creating Keymaps862744 +Node: Inheritance and Keymaps864824 +Node: Key Sequences867196 +Node: Prefix Keys871992 +Node: Active Keymaps875577 +Node: Key Lookup884948 +Node: Functions for Key Lookup890111 +Node: Changing Key Bindings895812 +Node: Key Binding Commands902974 +Node: Scanning Keymaps905039 +Node: Other Keymap Functions913608 +Node: Menus914230 +Node: Menu Format914822 +Node: Menubar Format923468 +Node: Menubar924093 +Node: Modifying Menus927206 +Node: Menu Filters932550 +Node: Pop-Up Menus934446 +Node: Menu Accelerators936774 +Node: Creating Menu Accelerators937530 +Node: Keyboard Menu Traversal938890 +Node: Menu Accelerator Functions939617 +Node: Buffers Menu942693 +Node: Dialog Boxes943987 +Node: Dialog Box Format944154 +Node: Dialog Box Functions945579 +Node: Toolbar945976 +Node: Toolbar Intro946411 +Node: Creating Toolbar948811 +Node: Toolbar Descriptor Format949728 +Node: Specifying the Toolbar954225 +Node: Other Toolbar Variables957832 +Node: Gutter962260 +Node: Gutter Intro962849 +Node: Creating Gutter964852 +Node: Gutter Descriptor Format967739 +Node: Specifying a Gutter972196 +Node: Other Gutter Variables975731 +Node: Common Gutter Widgets980118 +Node: Buffer Tabs981110 +Node: Progress Bars981251 +Node: Scrollbars981396 +Node: Drag and Drop981531 +Node: Supported Protocols982607 +Node: OffiX DND983110 +Node: CDE dt984117 +Node: MSWindows OLE984708 +Node: Loose ends984879 +Node: Drop Interface985271 +Node: Drag Interface986293 +Node: Modes986467 +Node: Major Modes987418 +Node: Major Mode Conventions990333 +Node: Example Major Modes996288 +Node: Auto Major Mode1004321 +Node: Mode Help1011771 +Node: Derived Modes1012872 +Node: Minor Modes1015063 +Node: Minor Mode Conventions1016365 +Node: Keymaps and Minor Modes1019228 +Node: Modeline Format1020063 +Node: Modeline Data1021831 +Node: Modeline Variables1026984 +Node: %-Constructs1031700 +Node: Hooks1034687 +Node: Documentation1041447 +Node: Documentation Basics1042870 +Node: Accessing Documentation1045921 +Node: Keys in Documentation1052202 +Node: Describing Characters1055685 +Node: Help Functions1058034 +Node: Obsoleteness1064484 +Node: Files1067476 +Node: Visiting Files1069401 +Node: Visiting Functions1070906 +Node: Subroutines of Visiting1076064 +Node: Saving Buffers1078137 +Node: Reading from Files1084230 +Node: Writing to Files1086391 +Node: File Locks1089108 +Node: Information about Files1092175 +Node: Testing Accessibility1092936 +Node: Kinds of Files1096676 +Node: Truenames1098357 +Node: File Attributes1099359 +Node: Changing File Attributes1104498 +Node: File Names1109920 +Node: File Name Components1111493 +Node: Directory Names1113938 +Node: Relative File Names1117168 +Node: File Name Expansion1118138 +Node: Unique File Names1121892 +Node: File Name Completion1123507 +Node: User Name Completion1126775 +Node: Contents of Directories1128182 +Node: Create/Delete Dirs1131495 +Node: Magic File Names1132601 +Node: Partial Files1138249 +Node: Intro to Partial Files1138477 +Node: Creating a Partial File1139717 +Node: Detached Partial Files1140653 +Node: Format Conversion1141775 +Node: Files and MS-DOS1147273 +Node: Backups and Auto-Saving1149337 +Node: Backup Files1150012 +Node: Making Backups1151409 +Node: Rename or Copy1154158 +Node: Numbered Backups1156651 +Node: Backup Names1158886 +Node: Auto-Saving1162178 +Node: Reverting1170340 +Node: Buffers1173676 +Node: Buffer Basics1175092 +Node: Current Buffer1177145 +Node: Buffer Names1181849 +Node: Buffer File Name1185056 +Node: Buffer Modification1189175 +Node: Modification Time1191418 +Node: Read Only Buffers1194793 +Node: The Buffer List1198032 +Node: Creating Buffers1202849 +Node: Killing Buffers1204995 +Node: Indirect Buffers1208827 +Node: Windows1211401 +Node: Basic Windows1212879 +Node: Splitting Windows1215977 +Node: Deleting Windows1221303 +Node: Selecting Windows1225221 +Node: Cyclic Window Ordering1229444 +Node: Buffers and Windows1234599 +Node: Displaying Buffers1236377 +Node: Choosing Window1241716 +Node: Window Point1249634 +Node: Window Start1251704 +Node: Vertical Scrolling1256503 +Node: Horizontal Scrolling1262701 +Node: Size of Window1266230 +Node: Position of Window1270948 +Node: Resizing Windows1273201 +Node: Window Configurations1278639 +Node: Frames1282136 +Node: Creating Frames1284477 +Node: Frame Properties1285817 +Node: Property Access1286633 +Node: Initial Properties1287540 +Node: X Frame Properties1290026 +Node: Size and Position1294660 +Node: Frame Name1296658 +Node: Frame Titles1297572 +Node: Deleting Frames1299396 +Node: Finding All Frames1300371 +Node: Frames and Windows1303599 +Node: Minibuffers and Frames1306381 +Node: Input Focus1307299 +Node: Visibility of Frames1310404 +Node: Raising and Lowering1312394 +Node: Frame Configurations1314770 +Node: Frame Hooks1315827 +Node: Consoles and Devices1317632 +Node: Basic Console Functions1320375 +Node: Basic Device Functions1320798 +Node: Console Types and Device Classes1321644 +Node: Connecting to a Console or Device1323911 +Node: The Selected Console and Device1326095 +Node: Console and Device I/O1327121 +Node: Positions1327885 +Node: Point1328854 +Node: Motion1331944 +Node: Character Motion1332711 +Node: Word Motion1334948 +Node: Buffer End Motion1336338 +Node: Text Lines1337875 +Node: Screen Lines1342776 +Node: List Motion1346839 +Node: Skipping Characters1350322 +Node: Excursions1352541 +Node: Narrowing1355581 +Node: Markers1360912 +Node: Overview of Markers1361818 +Node: Predicates on Markers1366510 +Node: Creating Markers1367756 +Node: Information from Markers1371956 +Node: Changing Markers1373054 +Node: The Mark1374582 +Node: The Region1383085 +Node: Text1388771 +Node: Near Point1391470 +Node: Buffer Contents1395657 +Node: Comparing Text1397063 +Node: Insertion1398471 +Node: Commands for Insertion1402381 +Node: Deletion1405275 +Node: User-Level Deletion1408925 +Node: The Kill Ring1413085 +Node: Kill Ring Concepts1415259 +Node: Kill Functions1416313 +Node: Yank Commands1418236 +Node: Low-Level Kill Ring1420107 +Node: Internals of Kill Ring1423193 +Node: Undo1425973 +Node: Maintaining Undo1430310 +Node: Filling1432928 +Node: Margins1438922 +Node: Auto Filling1442945 +Node: Sorting1444126 +Node: Columns1453440 +Node: Indentation1456521 +Node: Primitive Indent1457300 +Node: Mode-Specific Indent1458625 +Node: Region Indent1461157 +Node: Relative Indent1464104 +Node: Indent Tabs1466486 +Node: Motion by Indent1467807 +Node: Case Changes1468586 +Node: Text Properties1471939 +Node: Examining Properties1473752 +Node: Changing Properties1475635 +Node: Property Search1479226 +Node: Special Properties1483945 +Node: Saving Properties1484226 +Node: Substitution1487368 +Node: Registers1490638 +Node: Transposition1493221 +Node: Change Hooks1494115 +Node: Transformations1496155 +Node: Searching and Matching1501259 +Node: String Search1502390 +Node: Regular Expressions1507371 +Node: Syntax of Regexps1508738 +Node: Regexp Example1523341 +Node: Regexp Search1525511 +Node: POSIX Regexps1531848 +Node: Search and Replace1533925 +Node: Match Data1537290 +Node: Simple Match Data1538420 +Node: Replacing Match1542685 +Node: Entire Match Data1545366 +Node: Saving Match Data1547604 +Node: Searching and Case1548992 +Node: Standard Regexps1551026 +Node: Syntax Tables1553224 +Node: Syntax Basics1554338 +Node: Syntax Descriptors1557310 +Node: Syntax Class Table1559160 +Node: Syntax Flags1565198 +Node: Syntax Table Functions1568415 +Node: Motion and Syntax1572703 +Node: Parsing Expressions1574155 +Node: Standard Syntax Tables1580253 +Node: Syntax Table Internals1581097 +Node: Abbrevs1582123 +Node: Abbrev Mode1583927 +Node: Abbrev Tables1584647 +Node: Defining Abbrevs1586186 +Node: Abbrev Files1588107 +Node: Abbrev Expansion1589890 +Node: Standard Abbrev Tables1594521 +Node: Extents1595680 +Node: Intro to Extents1596923 +Node: Creating and Modifying Extents1600915 +Node: Extent Endpoints1602496 +Node: Finding Extents1605759 +Node: Mapping Over Extents1609881 +Node: Extent Properties1616004 +Node: Detached Extents1626165 +Node: Extent Parents1628024 +Node: Duplicable Extents1629718 +Node: Extents and Events1632939 +Node: Atomic Extents1634846 +Node: Specifiers1635293 +Node: Introduction to Specifiers1637406 +Node: Specifiers In-Depth1639716 +Node: Specifier Instancing1644628 +Node: Specifier Types1647890 +Node: Adding Specifications1652964 +Node: Retrieving Specifications1662385 +Node: Specifier Tag Functions1666130 +Node: Specifier Instancing Functions1669364 +Node: Specifier Example1672771 +Node: Creating Specifiers1675927 +Node: Specifier Validation Functions1680244 +Node: Other Specification Functions1682630 +Node: Faces and Window-System Objects1686451 +Node: Faces1686775 +Node: Merging Faces1688392 +Node: Basic Face Functions1690353 +Node: Face Properties1692501 +Node: Face Convenience Functions1702774 +Node: Other Face Display Functions1705994 +Node: Fonts1706806 +Node: Font Specifiers1707507 +Node: Font Instances1708692 +Node: Font Instance Names1709659 +Node: Font Instance Size1710500 +Node: Font Instance Characteristics1711786 +Node: Font Convenience Functions1712964 +Node: Colors1714254 +Node: Color Specifiers1714694 +Node: Color Instances1717054 +Node: Color Instance Properties1717798 +Node: Color Convenience Functions1718424 +Node: Glyphs1719477 +Node: Glyph Functions1721078 +Node: Creating Glyphs1721485 +Node: Glyph Properties1734125 +Node: Glyph Convenience Functions1743292 +Node: Glyph Dimensions1747239 +Node: Images1748319 +Node: Image Specifiers1748768 +Node: Image Instantiator Conversion1764259 +Node: Image Instances1765624 +Node: Image Instance Types1766375 +Node: Image Instance Functions1769140 +Node: Glyph Types1776197 +Node: Mouse Pointer1777969 +Node: Redisplay Glyphs1780972 +Node: Subwindows1782005 +Node: Annotations1782248 +Node: Annotation Basics1783264 +Node: Annotation Primitives1787202 +Node: Annotation Properties1788541 +Node: Locating Annotations1791581 +Node: Margin Primitives1792418 +Node: Annotation Hooks1794312 +Node: Display1794972 +Node: Refresh Screen1795950 +Node: Truncation1798144 +Node: The Echo Area1800669 +Node: Warnings1807112 +Node: Invisible Text1811548 +Node: Selective Display1814127 +Node: Overlay Arrow1818253 +Node: Temporary Displays1819606 +Node: Blinking1823727 +Node: Usual Display1825911 +Node: Display Tables1828460 +Node: Display Table Format1829264 +Node: Active Display Table1830706 +Node: Character Descriptors1834701 +Node: Beeping1835458 +Node: Hash Tables1840224 +Node: Introduction to Hash Tables1840832 +Node: Working With Hash Tables1847391 +Node: Weak Hash Tables1848508 +Node: Range Tables1850525 +Node: Introduction to Range Tables1851214 +Node: Working With Range Tables1851660 +Node: Databases1852619 +Node: Connecting to a Database1852918 +Node: Working With a Database1854025 +Node: Other Database Functions1854899 +Node: Processes1855468 +Node: Subprocess Creation1857692 +Node: Synchronous Processes1861143 +Node: MS-DOS Subprocesses1867865 +Node: Asynchronous Processes1868939 +Node: Deleting Processes1873296 +Node: Process Information1875167 +Node: Input to Processes1879259 +Node: Signals to Processes1881954 +Node: Output from Processes1886769 +Node: Process Buffers1887581 +Node: Filter Functions1890460 +Node: Accepting Output1896051 +Node: Sentinels1897578 +Node: Process Window Size1901068 +Node: Transaction Queues1901417 +Node: Network1903115 +Node: System Interface1905749 +Node: Starting Up1907019 +Node: Start-up Summary1907613 +Node: Init File1911167 +Node: Terminal-Specific1913548 +Node: Command Line Arguments1916707 +Node: Getting Out1920196 +Node: Killing XEmacs1920765 +Node: Suspending XEmacs1922433 +Node: System Environment1925812 +Node: User Identification1931993 +Node: Time of Day1935522 +Node: Time Conversion1938309 +Node: Timers1943551 +Node: Terminal Input1945724 +Node: Input Modes1946227 +Node: Translating Input1948686 +Node: Recording Input1952851 +Node: Terminal Output1954951 +Node: Flow Control1958572 +Node: Batch Mode1962534 +Node: X-Windows1963916 +Node: X Selections1964787 +Node: X Server1967538 +Node: Resources1967989 +Node: Server Data1973300 +Node: Grabs1974507 +Node: X Miscellaneous1976087 +Node: ToolTalk Support1978472 +Node: XEmacs ToolTalk API Summary1978689 +Node: Sending Messages1979989 +Node: Example of Sending Messages1980240 +Node: Elisp Interface for Sending Messages1981302 +Node: Receiving Messages1987898 +Node: Example of Receiving Messages1988121 +Node: Elisp Interface for Receiving Messages1988957 +Node: LDAP Support1992814 +Node: Building XEmacs with LDAP support1993308 +Node: XEmacs LDAP API1994285 +Node: LDAP Variables1995337 +Node: The High-Level LDAP API1997937 +Node: The Low-Level LDAP API2001410 +Node: The LDAP Lisp Object2002241 +Node: Opening and Closing a LDAP Connection2002796 +Node: Low-level Operations on a LDAP Server2004602 +Node: LDAP Internationalization2007326 +Node: LDAP Internationalization Variables2008231 +Node: Encoder/Decoder Functions2009962 +Node: Syntax of Search Filters2010999 +Node: PostgreSQL Support2012297 +Node: Building XEmacs with PostgreSQL support2012692 +Node: XEmacs PostgreSQL libpq API2014039 +Node: libpq Lisp Variables2015918 +Node: libpq Lisp Symbols and DataTypes2018882 +Node: Synchronous Interface Functions2032122 +Node: Asynchronous Interface Functions2036613 +Node: Large Object Support2040118 +Node: Other libpq Functions2040745 +Node: Unimplemented libpq Functions2043780 +Node: XEmacs PostgreSQL libpq Examples2049099 +Node: Internationalization2055190 +Node: I18N Levels 1 and 22055533 +Node: I18N Level 32056239 +Node: Level 3 Basics2056520 +Node: Level 3 Primitives2057353 +Node: Dynamic Messaging2058959 +Node: Domain Specification2059422 +Node: Documentation String Extraction2061092 +Node: I18N Level 42062010 +Node: MULE2062202 +Node: Internationalization Terminology2063251 +Node: Charsets2075450 +Node: Charset Properties2076146 +Node: Basic Charset Functions2080861 +Node: Charset Property Functions2083042 +Node: Predefined Charsets2085112 +Node: MULE Characters2088032 +Node: Composite Characters2088907 +Node: Coding Systems2090174 +Node: Coding System Types2092314 +Node: ISO 20222096298 +Node: EOL Conversion2108573 +Node: Coding System Properties2109745 +Node: Basic Coding System Functions2114068 +Node: Coding System Property Functions2116102 +Node: Encoding and Decoding Text2116660 +Node: Detection of Textual Encoding2117796 +Node: Big5 and Shift-JIS Functions2119332 +Node: Predefined Coding Systems2120484 +Node: CCL2132578 +Node: CCL Syntax2135682 +Node: CCL Statements2137258 +Node: CCL Expressions2141906 +Node: Calling CCL2144445 +Node: CCL Examples2147450 +Node: Category Tables2147587 +Node: Tips2149946 +Node: Style Tips2150587 +Node: Compilation Tips2160106 +Node: Documentation Tips2162020 +Node: Comment Tips2167529 +Node: Library Headers2170532 +Node: Building XEmacs and Object Allocation2174504 +Node: Building XEmacs2175387 +Node: Pure Storage2181965 +Node: Garbage Collection2184753 +Node: Standard Errors2195596 +Node: Standard Buffer-Local Variables2199805 +Node: Standard Keymaps2202440 +Node: Standard Hooks2206174 +Node: Index2213674  End Tag Table diff --git a/info/lispref.info-1 b/info/lispref.info-1 index 2af9170..a440030 100644 --- a/info/lispref.info-1 +++ b/info/lispref.info-1 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-10 b/info/lispref.info-10 index 1cbc307..536420b 100644 --- a/info/lispref.info-10 +++ b/info/lispref.info-10 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-11 b/info/lispref.info-11 index 5bd9c89..d276a20 100644 --- a/info/lispref.info-11 +++ b/info/lispref.info-11 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-12 b/info/lispref.info-12 index 48b8dad..f32c4f5 100644 --- a/info/lispref.info-12 +++ b/info/lispref.info-12 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-13 b/info/lispref.info-13 index 1c6cc73..3cf322d 100644 --- a/info/lispref.info-13 +++ b/info/lispref.info-13 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-14 b/info/lispref.info-14 index ea2daa4..40329bc 100644 --- a/info/lispref.info-14 +++ b/info/lispref.info-14 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-15 b/info/lispref.info-15 index e884cbd..340e0ea 100644 --- a/info/lispref.info-15 +++ b/info/lispref.info-15 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-16 b/info/lispref.info-16 index 6f8c37e..f7987c8 100644 --- a/info/lispref.info-16 +++ b/info/lispref.info-16 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-17 b/info/lispref.info-17 index 06725a1..d3a35b9 100644 --- a/info/lispref.info-17 +++ b/info/lispref.info-17 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-18 b/info/lispref.info-18 index 229eec8..79b603d 100644 --- a/info/lispref.info-18 +++ b/info/lispref.info-18 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-19 b/info/lispref.info-19 index a54ad34..58f7d19 100644 --- a/info/lispref.info-19 +++ b/info/lispref.info-19 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-2 b/info/lispref.info-2 index a3c79d2..9d40b0e 100644 --- a/info/lispref.info-2 +++ b/info/lispref.info-2 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor @@ -56,6 +56,7 @@ GNU GENERAL PUBLIC LICENSE ************************** Version 2, June 1991 + Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA @@ -114,6 +115,7 @@ patent must be licensed for everyone's free use or not licensed at all. modification follow. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", diff --git a/info/lispref.info-20 b/info/lispref.info-20 index a198451..3dbc967 100644 --- a/info/lispref.info-20 +++ b/info/lispref.info-20 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-21 b/info/lispref.info-21 index b1e4ad2..6378b5c 100644 --- a/info/lispref.info-21 +++ b/info/lispref.info-21 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-22 b/info/lispref.info-22 index 0091dd9..6d897d5 100644 --- a/info/lispref.info-22 +++ b/info/lispref.info-22 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-23 b/info/lispref.info-23 index 67be103..fa5cce6 100644 --- a/info/lispref.info-23 +++ b/info/lispref.info-23 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-24 b/info/lispref.info-24 index d71e227..a777571 100644 --- a/info/lispref.info-24 +++ b/info/lispref.info-24 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-25 b/info/lispref.info-25 index 0283377..60bd85c 100644 --- a/info/lispref.info-25 +++ b/info/lispref.info-25 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-26 b/info/lispref.info-26 index 9671984..f5f7bde 100644 --- a/info/lispref.info-26 +++ b/info/lispref.info-26 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-27 b/info/lispref.info-27 index a6cd049..2c69bce 100644 --- a/info/lispref.info-27 +++ b/info/lispref.info-27 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-28 b/info/lispref.info-28 index 88a5f6d..811de90 100644 --- a/info/lispref.info-28 +++ b/info/lispref.info-28 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-29 b/info/lispref.info-29 index 9e728eb..e0e0b52 100644 --- a/info/lispref.info-29 +++ b/info/lispref.info-29 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-3 b/info/lispref.info-3 index 63ed45f..837bb60 100644 --- a/info/lispref.info-3 +++ b/info/lispref.info-3 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-30 b/info/lispref.info-30 index 304d0e2..fbaa5f6 100644 --- a/info/lispref.info-30 +++ b/info/lispref.info-30 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-31 b/info/lispref.info-31 index ca94d67..e1a79f9 100644 --- a/info/lispref.info-31 +++ b/info/lispref.info-31 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-32 b/info/lispref.info-32 index 9f85710..0a55015 100644 --- a/info/lispref.info-32 +++ b/info/lispref.info-32 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-33 b/info/lispref.info-33 index ddf4719..20ec664 100644 --- a/info/lispref.info-33 +++ b/info/lispref.info-33 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-34 b/info/lispref.info-34 index b4b7026..9521540 100644 --- a/info/lispref.info-34 +++ b/info/lispref.info-34 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-35 b/info/lispref.info-35 index caf9fac..7b1e8fa 100644 --- a/info/lispref.info-35 +++ b/info/lispref.info-35 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-36 b/info/lispref.info-36 index a8f035c..f80845e 100644 --- a/info/lispref.info-36 +++ b/info/lispref.info-36 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-37 b/info/lispref.info-37 index d88e058..1ba7a7d 100644 --- a/info/lispref.info-37 +++ b/info/lispref.info-37 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-38 b/info/lispref.info-38 index e8bb726..b0dade8 100644 --- a/info/lispref.info-38 +++ b/info/lispref.info-38 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-39 b/info/lispref.info-39 index 89f09ed..892739d 100644 --- a/info/lispref.info-39 +++ b/info/lispref.info-39 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-4 b/info/lispref.info-4 index 1bd9455..5f78301 100644 --- a/info/lispref.info-4 +++ b/info/lispref.info-4 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-40 b/info/lispref.info-40 index 130bece..ea7b5d9 100644 --- a/info/lispref.info-40 +++ b/info/lispref.info-40 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-41 b/info/lispref.info-41 index db6a20f..62e99b6 100644 --- a/info/lispref.info-41 +++ b/info/lispref.info-41 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-42 b/info/lispref.info-42 index 615cb1f..5bebd1f 100644 --- a/info/lispref.info-42 +++ b/info/lispref.info-42 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-43 b/info/lispref.info-43 index 06f9633..18337d7 100644 --- a/info/lispref.info-43 +++ b/info/lispref.info-43 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-44 b/info/lispref.info-44 index fc9d763..e1ddc4f 100644 --- a/info/lispref.info-44 +++ b/info/lispref.info-44 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-45 b/info/lispref.info-45 index ae2a3a5..e4484ee 100644 --- a/info/lispref.info-45 +++ b/info/lispref.info-45 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-46 b/info/lispref.info-46 index 49474f7..a94d72b 100644 --- a/info/lispref.info-46 +++ b/info/lispref.info-46 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-47 b/info/lispref.info-47 index 93d0779..524e88d 100644 --- a/info/lispref.info-47 +++ b/info/lispref.info-47 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-48 b/info/lispref.info-48 index 6206a68..9a7209c 100644 --- a/info/lispref.info-48 +++ b/info/lispref.info-48 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-5 b/info/lispref.info-5 index 3e7fa59..95a8a55 100644 --- a/info/lispref.info-5 +++ b/info/lispref.info-5 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-6 b/info/lispref.info-6 index ae14b2b..4273b1d 100644 --- a/info/lispref.info-6 +++ b/info/lispref.info-6 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-7 b/info/lispref.info-7 index 1f075d3..f680a25 100644 --- a/info/lispref.info-7 +++ b/info/lispref.info-7 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-8 b/info/lispref.info-8 index ffb4b2c..333739c 100644 --- a/info/lispref.info-8 +++ b/info/lispref.info-8 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/lispref.info-9 b/info/lispref.info-9 index e4a6581..5e15da6 100644 --- a/info/lispref.info-9 +++ b/info/lispref.info-9 @@ -1,4 +1,4 @@ -This is ../info/lispref.info, produced by makeinfo version 4.0b from +This is ../info/lispref.info, produced by makeinfo version 4.0 from lispref/lispref.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/texinfo.info b/info/texinfo.info index 2064e9c..1f73e7f 100644 --- a/info/texinfo.info +++ b/info/texinfo.info @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system @@ -34,317 +34,317 @@ translation approved by the Free Software Foundation.  Indirect: -texinfo.info-1: 1485 -texinfo.info-2: 48708 -texinfo.info-3: 96682 -texinfo.info-4: 146074 -texinfo.info-5: 196056 -texinfo.info-6: 245148 -texinfo.info-7: 293747 -texinfo.info-8: 343562 -texinfo.info-9: 392875 -texinfo.info-10: 435253 -texinfo.info-11: 481369 -texinfo.info-12: 519529 +texinfo.info-1: 1484 +texinfo.info-2: 48707 +texinfo.info-3: 96681 +texinfo.info-4: 146073 +texinfo.info-5: 196055 +texinfo.info-6: 245147 +texinfo.info-7: 293746 +texinfo.info-8: 343561 +texinfo.info-9: 392874 +texinfo.info-10: 435252 +texinfo.info-11: 481368 +texinfo.info-12: 519528  Tag Table: (Indirect) -Node: Top1485 -Node: Copying23800 -Node: Overview25805 -Node: Overview-Footnotes27234 -Ref: Overview-Footnote-127298 -Node: Using Texinfo27770 -Node: Info Files30257 -Node: Info Files-Footnotes34293 -Ref: Info Files-Footnote-134361 -Node: Printed Books34540 -Node: Printed Books-Footnotes37212 -Ref: Printed Books-Footnote-137286 -Node: Formatting Commands37496 -Node: Formatting Commands-Footnotes40323 -Ref: Formatting Commands-Footnote-140409 -Node: Conventions41025 -Node: Comments43587 -Node: Minimum45010 -Node: Six Parts47196 -Node: Short Sample48708 -Node: Acknowledgements52844 -Node: Texinfo Mode53679 -Node: Texinfo Mode Overview55051 -Node: Emacs Editing55827 -Node: Inserting57957 -Node: Showing the Structure62238 -Node: Updating Nodes and Menus64765 -Node: Updating Commands65838 -Node: Updating Requirements71899 -Node: Other Updating Commands74196 -Node: Info Formatting77464 -Node: Printing78722 -Node: Texinfo Mode Summary81067 -Node: Beginning a File85821 -Node: Four Parts86712 -Node: Sample Beginning88182 -Node: Header89802 -Node: First Line91154 -Node: Start of Header92143 -Node: setfilename92856 -Node: settitle94792 -Node: setchapternewpage96682 -Node: paragraphindent99443 -Node: End of Header100925 -Node: Info Summary and Permissions101764 -Node: Titlepage & Copyright Page102783 -Node: titlepage104389 -Node: titlepage-Footnotes106671 -Ref: titlepage-Footnote-1106737 -Node: titlefont center sp107011 -Node: title subtitle author108237 -Node: Copyright & Permissions110509 -Node: end titlepage112510 -Node: headings on off114216 -Node: The Top Node116261 -Node: Title of Top Node117416 -Node: Master Menu Parts118669 -Node: Software Copying Permissions120906 -Node: Ending a File122074 -Node: Printing Indices & Menus122922 -Node: Contents125231 -Node: File End127571 -Node: Structuring128244 -Node: Tree Structuring129901 -Node: Structuring Command Types131344 -Node: makeinfo top133671 -Node: chapter134204 -Node: unnumbered & appendix135228 -Node: majorheading & chapheading136067 -Node: section136888 -Node: unnumberedsec appendixsec heading137652 -Node: subsection138641 -Node: unnumberedsubsec appendixsubsec subheading139213 -Node: subsubsection140166 -Node: Raise/lower sections141716 -Node: Nodes143851 -Node: Two Paths144788 -Node: Node Menu Illustration146074 -Node: node149769 -Node: Node Names152465 -Node: Writing a Node153541 -Node: Node Line Tips155559 -Node: Node Line Requirements156353 -Node: First Node157954 -Node: makeinfo top command159393 -Node: Top Node Summary160572 -Node: makeinfo Pointer Creation162022 -Node: Menus163269 -Node: Menus-Footnotes164208 -Ref: Menus-Footnote-1164266 -Node: Menu Location164559 -Node: Writing a Menu166236 -Node: Menu Parts167202 -Node: Less Cluttered Menu Entry168360 -Node: Menu Example168985 -Node: Other Info Files170506 -Node: Cross References172374 -Node: References173331 -Node: Cross Reference Commands175078 -Node: Cross Reference Parts176137 -Node: xref178973 -Node: Reference Syntax179772 -Node: One Argument181426 -Node: Two Arguments182438 -Node: Three Arguments183553 -Node: Four and Five Arguments185944 -Node: Top Node Naming188356 -Node: ref189366 -Node: pxref190758 -Node: inforef193140 -Node: uref194433 -Node: Marking Text195432 -Node: Indicating196056 -Node: Useful Highlighting197961 -Node: code199350 -Node: kbd202388 -Node: key204258 -Node: samp205591 -Node: var207178 -Node: file208971 -Node: dfn209578 -Node: cite210488 -Node: url210942 -Node: email211506 -Node: Emphasis212318 -Node: emph & strong213218 -Node: Smallcaps214204 -Node: Fonts215531 -Node: Customized Highlighting216619 -Node: Customized Highlighting-Footnotes219434 -Ref: Customized Highlighting-Footnote-1219528 -Node: Quotations and Examples219654 -Node: Block Enclosing Commands221276 -Node: quotation223301 -Node: example224391 -Node: noindent226446 -Node: Lisp Example227910 -Node: Lisp Example-Footnotes228612 -Ref: Lisp Example-Footnote-1228684 -Node: smallexample & smalllisp228802 -Node: display230827 -Node: format231459 -Node: exdent231920 -Node: flushleft & flushright233000 -Node: cartouche234266 -Node: Lists and Tables235033 -Node: Introducing Lists235709 -Node: itemize237374 -Node: enumerate239521 -Node: Two-column Tables242026 -Node: table242715 -Node: ftable vtable245148 -Node: itemx246249 -Node: Multi-column Tables247260 -Node: Multitable Column Widths247931 -Node: Multitable Rows249385 -Node: Indices251166 -Node: Index Entries252316 -Node: Predefined Indices253449 -Node: Indexing Commands254446 -Node: Combining Indices258986 -Node: syncodeindex260349 -Node: synindex262011 -Node: New Indices262536 -Node: Insertions264361 -Node: Braces Atsigns265545 -Node: Inserting An Atsign266097 -Node: Inserting Braces266371 -Node: Inserting Space266734 -Node: Not Ending a Sentence267238 -Node: Ending a Sentence268592 -Node: Multiple Spaces269721 -Node: dmn270940 -Node: Inserting Accents272147 -Node: Dots Bullets273904 -Node: dots274726 -Node: bullet275250 -Node: TeX and copyright275647 -Node: tex276214 -Node: copyright symbol276630 -Node: pounds276890 -Node: minus277254 -Node: math278176 -Node: Glyphs278904 -Node: Glyphs Summary280017 -Node: result280645 -Node: expansion281130 -Node: Print Glyph282086 -Node: Error Glyph282963 -Node: Equivalence283796 -Node: Point Glyph284484 -Node: Images286041 -Node: Breaks287708 -Node: Break Commands289139 -Node: Line Breaks289980 -Node: - and hyphenation290998 -Node: w292248 -Node: sp292961 -Node: page293370 -Node: group293747 -Node: need295490 -Node: Definition Commands296220 -Node: Def Cmd Template297791 -Node: Optional Arguments300788 -Node: deffnx302376 -Node: Def Cmds in Detail303331 -Node: Functions Commands304441 -Node: Variables Commands307446 -Node: Typed Functions309532 -Node: Typed Variables313074 -Node: Abstract Objects315057 -Node: Data Types320282 -Node: Def Cmd Conventions321537 -Node: Sample Function Definition322100 -Node: Footnotes324984 -Node: Footnotes-Footnotes325372 -Ref: Footnotes-Footnote-1325438 -Node: Footnote Commands325718 -Node: Footnote Commands-Footnotes327215 -Ref: Footnote Commands-Footnote-1327297 -Node: Footnote Styles327333 -Node: Conditionals329919 -Node: Conditional Commands330730 -Node: Conditional Not Commands332223 -Node: Raw Formatter Commands332968 -Node: set clear value334798 -Node: ifset ifclear335599 -Node: value338778 -Node: value Example340190 -Node: Macros341768 -Node: Defining Macros342473 -Node: Invoking Macros343562 -Node: Format/Print Hardcopy344668 -Node: Use TeX346505 -Node: Format with tex/texindex347133 -Node: Format with texi2dvi350774 -Node: Print with lpr351365 -Node: Within Emacs352219 -Node: Texinfo Mode Printing353138 -Node: Compile-Command356548 -Node: Requirements Summary357436 -Node: Preparing for TeX358749 -Node: Overfull hboxes361536 -Node: smallbook363095 -Node: A4 Paper364613 -Node: Cropmarks and Magnification365838 -Node: Create an Info File367779 -Node: makeinfo advantages369082 -Node: Invoking makeinfo369998 -Node: makeinfo options370686 -Node: Pointer Validation376170 -Node: makeinfo in Emacs377514 -Node: texinfo-format commands380072 -Node: Batch Formatting381343 -Node: Tag and Split Files382559 -Node: Install an Info File385913 -Node: Directory file386731 -Node: New Info File388599 -Node: Other Info Directories389660 -Node: Installing Dir Entries392875 -Node: Invoking install-info394868 -Node: Command List397283 -Node: Tips435253 -Node: Sample Texinfo File446663 -Node: Sample Permissions448782 -Node: Inserting Permissions449825 -Node: ifinfo Permissions452131 -Node: Titlepage Permissions453752 -Node: Include Files455014 -Node: Using Include Files456101 -Node: texinfo-multiple-files-update458056 -Node: Include File Requirements460417 -Node: Sample Include File461662 -Node: Include Files Evolution463181 -Node: Headings465152 -Node: Headings Introduced465789 -Node: Heading Format467677 -Node: Heading Choice470129 -Node: Custom Headings471501 -Node: Catching Mistakes475829 -Node: makeinfo Preferred477118 -Node: Debugging with Info478023 -Node: Debugging with TeX481369 -Node: Using texinfo-show-structure485649 -Node: Using occur488748 -Node: Running Info-Validate490285 -Node: Using Info-validate491346 -Node: Unsplit493188 -Node: Tagifying494234 -Node: Splitting495086 -Node: Refilling Paragraphs496702 -Node: Refilling Paragraphs-Footnotes498356 -Ref: Refilling Paragraphs-Footnote-1498444 -Node: Command Syntax498607 -Node: Obtaining TeX501564 -Node: Command and Variable Index503677 -Node: Concept Index519529 +Node: Top1484 +Node: Copying23799 +Node: Overview25804 +Node: Overview-Footnotes27233 +Ref: Overview-Footnote-127297 +Node: Using Texinfo27769 +Node: Info Files30256 +Node: Info Files-Footnotes34292 +Ref: Info Files-Footnote-134360 +Node: Printed Books34539 +Node: Printed Books-Footnotes37211 +Ref: Printed Books-Footnote-137285 +Node: Formatting Commands37495 +Node: Formatting Commands-Footnotes40322 +Ref: Formatting Commands-Footnote-140408 +Node: Conventions41024 +Node: Comments43586 +Node: Minimum45009 +Node: Six Parts47195 +Node: Short Sample48707 +Node: Acknowledgements52843 +Node: Texinfo Mode53678 +Node: Texinfo Mode Overview55050 +Node: Emacs Editing55826 +Node: Inserting57956 +Node: Showing the Structure62237 +Node: Updating Nodes and Menus64764 +Node: Updating Commands65837 +Node: Updating Requirements71898 +Node: Other Updating Commands74195 +Node: Info Formatting77463 +Node: Printing78721 +Node: Texinfo Mode Summary81066 +Node: Beginning a File85820 +Node: Four Parts86711 +Node: Sample Beginning88181 +Node: Header89801 +Node: First Line91153 +Node: Start of Header92142 +Node: setfilename92855 +Node: settitle94791 +Node: setchapternewpage96681 +Node: paragraphindent99442 +Node: End of Header100924 +Node: Info Summary and Permissions101763 +Node: Titlepage & Copyright Page102782 +Node: titlepage104388 +Node: titlepage-Footnotes106670 +Ref: titlepage-Footnote-1106736 +Node: titlefont center sp107010 +Node: title subtitle author108236 +Node: Copyright & Permissions110508 +Node: end titlepage112509 +Node: headings on off114215 +Node: The Top Node116260 +Node: Title of Top Node117415 +Node: Master Menu Parts118668 +Node: Software Copying Permissions120905 +Node: Ending a File122073 +Node: Printing Indices & Menus122921 +Node: Contents125230 +Node: File End127570 +Node: Structuring128243 +Node: Tree Structuring129900 +Node: Structuring Command Types131343 +Node: makeinfo top133670 +Node: chapter134203 +Node: unnumbered & appendix135227 +Node: majorheading & chapheading136066 +Node: section136887 +Node: unnumberedsec appendixsec heading137651 +Node: subsection138640 +Node: unnumberedsubsec appendixsubsec subheading139212 +Node: subsubsection140165 +Node: Raise/lower sections141715 +Node: Nodes143850 +Node: Two Paths144787 +Node: Node Menu Illustration146073 +Node: node149768 +Node: Node Names152464 +Node: Writing a Node153540 +Node: Node Line Tips155558 +Node: Node Line Requirements156352 +Node: First Node157953 +Node: makeinfo top command159392 +Node: Top Node Summary160571 +Node: makeinfo Pointer Creation162021 +Node: Menus163268 +Node: Menus-Footnotes164207 +Ref: Menus-Footnote-1164265 +Node: Menu Location164558 +Node: Writing a Menu166235 +Node: Menu Parts167201 +Node: Less Cluttered Menu Entry168359 +Node: Menu Example168984 +Node: Other Info Files170505 +Node: Cross References172373 +Node: References173330 +Node: Cross Reference Commands175077 +Node: Cross Reference Parts176136 +Node: xref178972 +Node: Reference Syntax179771 +Node: One Argument181425 +Node: Two Arguments182437 +Node: Three Arguments183552 +Node: Four and Five Arguments185943 +Node: Top Node Naming188355 +Node: ref189365 +Node: pxref190757 +Node: inforef193139 +Node: uref194432 +Node: Marking Text195431 +Node: Indicating196055 +Node: Useful Highlighting197960 +Node: code199349 +Node: kbd202387 +Node: key204257 +Node: samp205590 +Node: var207177 +Node: file208970 +Node: dfn209577 +Node: cite210487 +Node: url210941 +Node: email211505 +Node: Emphasis212317 +Node: emph & strong213217 +Node: Smallcaps214203 +Node: Fonts215530 +Node: Customized Highlighting216618 +Node: Customized Highlighting-Footnotes219433 +Ref: Customized Highlighting-Footnote-1219527 +Node: Quotations and Examples219653 +Node: Block Enclosing Commands221275 +Node: quotation223300 +Node: example224390 +Node: noindent226445 +Node: Lisp Example227909 +Node: Lisp Example-Footnotes228611 +Ref: Lisp Example-Footnote-1228683 +Node: smallexample & smalllisp228801 +Node: display230826 +Node: format231458 +Node: exdent231919 +Node: flushleft & flushright232999 +Node: cartouche234265 +Node: Lists and Tables235032 +Node: Introducing Lists235708 +Node: itemize237373 +Node: enumerate239520 +Node: Two-column Tables242025 +Node: table242714 +Node: ftable vtable245147 +Node: itemx246248 +Node: Multi-column Tables247259 +Node: Multitable Column Widths247930 +Node: Multitable Rows249384 +Node: Indices251165 +Node: Index Entries252315 +Node: Predefined Indices253448 +Node: Indexing Commands254445 +Node: Combining Indices258985 +Node: syncodeindex260348 +Node: synindex262010 +Node: New Indices262535 +Node: Insertions264360 +Node: Braces Atsigns265544 +Node: Inserting An Atsign266096 +Node: Inserting Braces266370 +Node: Inserting Space266733 +Node: Not Ending a Sentence267237 +Node: Ending a Sentence268591 +Node: Multiple Spaces269720 +Node: dmn270939 +Node: Inserting Accents272146 +Node: Dots Bullets273903 +Node: dots274725 +Node: bullet275249 +Node: TeX and copyright275646 +Node: tex276213 +Node: copyright symbol276629 +Node: pounds276889 +Node: minus277253 +Node: math278175 +Node: Glyphs278903 +Node: Glyphs Summary280016 +Node: result280644 +Node: expansion281129 +Node: Print Glyph282085 +Node: Error Glyph282962 +Node: Equivalence283795 +Node: Point Glyph284483 +Node: Images286040 +Node: Breaks287707 +Node: Break Commands289138 +Node: Line Breaks289979 +Node: - and hyphenation290997 +Node: w292247 +Node: sp292960 +Node: page293369 +Node: group293746 +Node: need295489 +Node: Definition Commands296219 +Node: Def Cmd Template297790 +Node: Optional Arguments300787 +Node: deffnx302375 +Node: Def Cmds in Detail303330 +Node: Functions Commands304440 +Node: Variables Commands307445 +Node: Typed Functions309531 +Node: Typed Variables313073 +Node: Abstract Objects315056 +Node: Data Types320281 +Node: Def Cmd Conventions321536 +Node: Sample Function Definition322099 +Node: Footnotes324983 +Node: Footnotes-Footnotes325371 +Ref: Footnotes-Footnote-1325437 +Node: Footnote Commands325717 +Node: Footnote Commands-Footnotes327214 +Ref: Footnote Commands-Footnote-1327296 +Node: Footnote Styles327332 +Node: Conditionals329918 +Node: Conditional Commands330729 +Node: Conditional Not Commands332222 +Node: Raw Formatter Commands332967 +Node: set clear value334797 +Node: ifset ifclear335598 +Node: value338777 +Node: value Example340189 +Node: Macros341767 +Node: Defining Macros342472 +Node: Invoking Macros343561 +Node: Format/Print Hardcopy344667 +Node: Use TeX346504 +Node: Format with tex/texindex347132 +Node: Format with texi2dvi350773 +Node: Print with lpr351364 +Node: Within Emacs352218 +Node: Texinfo Mode Printing353137 +Node: Compile-Command356547 +Node: Requirements Summary357435 +Node: Preparing for TeX358748 +Node: Overfull hboxes361535 +Node: smallbook363094 +Node: A4 Paper364612 +Node: Cropmarks and Magnification365837 +Node: Create an Info File367778 +Node: makeinfo advantages369081 +Node: Invoking makeinfo369997 +Node: makeinfo options370685 +Node: Pointer Validation376169 +Node: makeinfo in Emacs377513 +Node: texinfo-format commands380071 +Node: Batch Formatting381342 +Node: Tag and Split Files382558 +Node: Install an Info File385912 +Node: Directory file386730 +Node: New Info File388598 +Node: Other Info Directories389659 +Node: Installing Dir Entries392874 +Node: Invoking install-info394867 +Node: Command List397282 +Node: Tips435252 +Node: Sample Texinfo File446662 +Node: Sample Permissions448781 +Node: Inserting Permissions449824 +Node: ifinfo Permissions452130 +Node: Titlepage Permissions453751 +Node: Include Files455013 +Node: Using Include Files456100 +Node: texinfo-multiple-files-update458055 +Node: Include File Requirements460416 +Node: Sample Include File461661 +Node: Include Files Evolution463180 +Node: Headings465151 +Node: Headings Introduced465788 +Node: Heading Format467676 +Node: Heading Choice470128 +Node: Custom Headings471500 +Node: Catching Mistakes475828 +Node: makeinfo Preferred477117 +Node: Debugging with Info478022 +Node: Debugging with TeX481368 +Node: Using texinfo-show-structure485648 +Node: Using occur488747 +Node: Running Info-Validate490284 +Node: Using Info-validate491345 +Node: Unsplit493187 +Node: Tagifying494233 +Node: Splitting495085 +Node: Refilling Paragraphs496701 +Node: Refilling Paragraphs-Footnotes498355 +Ref: Refilling Paragraphs-Footnote-1498443 +Node: Command Syntax498606 +Node: Obtaining TeX501563 +Node: Command and Variable Index503676 +Node: Concept Index519528  End Tag Table diff --git a/info/texinfo.info-1 b/info/texinfo.info-1 index 8ee9a21..ffb02ba 100644 --- a/info/texinfo.info-1 +++ b/info/texinfo.info-1 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-10 b/info/texinfo.info-10 index 7ea65d1..aea9a20 100644 --- a/info/texinfo.info-10 +++ b/info/texinfo.info-10 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-11 b/info/texinfo.info-11 index 3f8c007..43fe115 100644 --- a/info/texinfo.info-11 +++ b/info/texinfo.info-11 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-12 b/info/texinfo.info-12 index 8868116..de69019 100644 --- a/info/texinfo.info-12 +++ b/info/texinfo.info-12 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-2 b/info/texinfo.info-2 index 2d9851d..fc54512 100644 --- a/info/texinfo.info-2 +++ b/info/texinfo.info-2 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-3 b/info/texinfo.info-3 index 02f4b8b..5eab100 100644 --- a/info/texinfo.info-3 +++ b/info/texinfo.info-3 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-4 b/info/texinfo.info-4 index 5d7fa08..c1e77ef 100644 --- a/info/texinfo.info-4 +++ b/info/texinfo.info-4 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-5 b/info/texinfo.info-5 index ad0ff64..f285171 100644 --- a/info/texinfo.info-5 +++ b/info/texinfo.info-5 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-6 b/info/texinfo.info-6 index 3cb8989..bbfb172 100644 --- a/info/texinfo.info-6 +++ b/info/texinfo.info-6 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-7 b/info/texinfo.info-7 index c64f1ee..10a127a 100644 --- a/info/texinfo.info-7 +++ b/info/texinfo.info-7 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-8 b/info/texinfo.info-8 index 7c39015..79ed349 100644 --- a/info/texinfo.info-8 +++ b/info/texinfo.info-8 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/texinfo.info-9 b/info/texinfo.info-9 index 97f0356..8448388 100644 --- a/info/texinfo.info-9 +++ b/info/texinfo.info-9 @@ -1,4 +1,4 @@ -This is ../info/texinfo.info, produced by makeinfo version 4.0b from +This is ../info/texinfo.info, produced by makeinfo version 4.0 from texinfo.texi. INFO-DIR-SECTION Texinfo documentation system diff --git a/info/xemacs-faq.info b/info/xemacs-faq.info index ff7548f..bd41315 100644 --- a/info/xemacs-faq.info +++ b/info/xemacs-faq.info @@ -1,4 +1,4 @@ -This is ../info/xemacs-faq.info, produced by makeinfo version 4.0b from +This is ../info/xemacs-faq.info, produced by makeinfo version 4.0 from xemacs-faq.texi. INFO-DIR-SECTION XEmacs Editor @@ -8,261 +8,261 @@ END-INFO-DIR-ENTRY  Indirect: -xemacs-faq.info-1: 206 -xemacs-faq.info-2: 50000 -xemacs-faq.info-3: 99618 -xemacs-faq.info-4: 149493 -xemacs-faq.info-5: 199355 +xemacs-faq.info-1: 205 +xemacs-faq.info-2: 49999 +xemacs-faq.info-3: 99617 +xemacs-faq.info-4: 149492 +xemacs-faq.info-5: 199354  Tag Table: (Indirect) -Node: Top206 -Node: Introduction16705 -Node: Q1.0.120147 -Node: Q1.0.220683 -Node: Q1.0.321228 -Node: Q1.0.421490 -Node: Q1.0.522940 -Node: Q1.0.623629 -Node: Q1.0.724635 -Node: Q1.0.824888 -Node: Q1.0.925103 -Node: Q1.0.1025381 -Node: Q1.0.1125624 -Node: Q1.0.1226011 -Node: Q1.0.1326379 -Node: Q1.0.1426628 -Node: Q1.1.127140 -Node: Q1.1.228182 -Node: Q1.1.328575 -Node: Q1.2.129526 -Node: Q1.2.230582 -Node: Q1.2.331016 -Node: Q1.3.132100 -Node: Q1.3.232751 -Node: Q1.3.333215 -Node: Q1.3.433456 -Node: Q1.3.534229 -Node: Q1.3.636634 -Node: Q1.3.738165 -Node: Q1.4.139100 -Node: Q1.4.239962 -Node: Q1.4.340303 -Node: Q1.4.440722 -Node: Q1.4.542262 -Node: Q1.4.642566 -Node: Installation43559 -Node: Q2.0.146134 -Node: Q2.0.246934 -Node: Q2.0.348702 -Node: Q2.0.450000 -Node: Q2.0.550592 -Node: Q2.0.650940 -Node: Q2.0.751321 -Node: Q2.0.851702 -Node: Q2.0.953279 -Node: Q2.0.1054717 -Node: Q2.0.1155561 -Node: Q2.0.1256502 -Node: Q2.0.1358025 -Node: Q2.0.1458514 -Node: Q2.1.159572 -Node: Q2.1.262314 -Node: Q2.1.363491 -Node: Q2.1.464784 -Node: Q2.1.565583 -Node: Q2.1.665945 -Node: Q2.1.766422 -Node: Q2.1.866775 -Node: Q2.1.968309 -Node: Q2.1.1068731 -Node: Q2.1.1169488 -Node: Q2.1.1270353 -Node: Q2.1.1371308 -Node: Q2.1.1472339 -Node: Q2.1.1573450 -Node: Q2.1.1680482 -Node: Q2.1.1781176 -Node: Q2.1.1881773 -Node: Q2.1.1981900 -Node: Q2.1.2082430 -Node: Q2.1.2182812 -Node: Q2.1.2283005 -Node: Q2.1.2384302 -Node: Q2.1.2484970 -Node: Q2.1.2585442 -Node: Customization86077 -Node: Q3.0.190915 -Node: Q3.0.291621 -Node: Q3.0.392185 -Node: Q3.0.492602 -Node: Q3.0.593435 -Node: Q3.0.694216 -Node: Q3.0.794796 -Node: Q3.0.895460 -Node: Q3.0.996418 -Node: Q3.1.196979 -Node: Q3.1.297716 -Node: Q3.1.398147 -Node: Q3.1.498336 -Node: Q3.1.598525 -Node: Q3.1.698909 -Node: Q3.1.799618 -Node: Q3.1.8101842 -Node: Q3.2.1102384 -Node: Q3.2.2104037 -Node: Q3.2.3104836 -Node: Q3.2.4105438 -Node: Q3.2.5106472 -Node: Q3.2.6106939 -Node: Q3.3.1107864 -Node: Q3.3.2108294 -Node: Q3.3.3108925 -Node: Q3.3.4109306 -Node: Q3.3.5110407 -Node: Q3.4.1111901 -Node: Q3.4.2112544 -Node: Q3.5.1113056 -Node: Q3.5.2114505 -Node: Q3.5.3114923 -Node: Q3.5.4115761 -Node: Q3.5.5116593 -Node: Q3.5.6117733 -Node: Q3.5.7118723 -Node: Q3.5.8120163 -Node: Q3.5.9120910 -Node: Q3.5.10121690 -Node: Q3.5.11122326 -Node: Q3.6.1122879 -Node: Q3.6.2123624 -Node: Q3.6.3124052 -Node: Q3.7.1124552 -Node: Q3.7.2125440 -Node: Q3.7.3126099 -Node: Q3.7.4126521 -Node: Q3.7.5126864 -Node: Q3.7.6127332 -Node: Q3.7.7128047 -Node: Q3.7.8129067 -Node: Q3.8.1129486 -Node: Q3.8.2129946 -Node: Q3.8.3130409 -Node: Q3.8.4131015 -Node: Q3.8.5131734 -Node: Q3.9.1132519 -Node: Q3.9.2133459 -Node: Q3.9.3134057 -Node: Q3.9.4134719 -Node: Q3.10.1135598 -Node: Q3.10.2136416 -Node: Q3.10.3137421 -Node: Q3.10.4138149 -Node: Q3.10.5138532 -Node: Subsystems139584 -Node: Q4.0.1142071 -Node: Q4.0.2142596 -Node: Q4.0.3143154 -Node: Q4.0.4143475 -Node: Q4.0.5143717 -Node: Q4.0.6143948 -Node: Q4.0.7144536 -Node: Q4.0.8144861 -Node: Q4.0.9146088 -Node: Q4.0.10148126 -Node: Q4.0.11148615 -Node: Q4.0.12149493 -Node: Q4.1.1150466 -Node: Q4.1.2150869 -Node: Q4.1.3151196 -Node: Q4.2.1151505 -Node: Q4.2.2152135 -Node: Q4.2.3152375 -Node: Q4.2.4152919 -Node: Q4.3.1153572 -Node: Q4.3.2154156 -Node: Q4.3.3155637 -Node: Q4.3.4155909 -Node: Q4.3.5156586 -Node: Q4.4.1157214 -Node: Q4.4.2158700 -Node: Q4.5.1159904 -Node: Q4.6.1160673 -Node: Q4.7.1165933 -Node: Q4.7.2166888 -Node: Q4.7.3167185 -Node: Q4.7.4167371 -Node: Q4.7.5168255 -Node: Q4.7.6169896 -Node: Miscellaneous170185 -Node: Q5.0.1173598 -Node: Q5.0.2174337 -Node: Q5.0.3175191 -Node: Q5.0.4175893 -Node: Q5.0.5176832 -Node: Q5.0.6178812 -Node: Q5.0.7179469 -Node: Q5.0.8180074 -Node: Q5.0.9180593 -Node: Q5.0.10181107 -Node: Q5.0.11181355 -Node: Q5.0.12181893 -Node: Q5.0.13182810 -Node: Q5.0.14183494 -Node: Q5.0.15184259 -Node: Q5.0.16184556 -Node: Q5.0.17185068 -Node: Q5.0.18185333 -Node: Q5.0.19185527 -Node: Q5.0.20185951 -Node: Q5.1.1186866 -Node: Q5.1.2188935 -Node: Q5.1.3189671 -Node: Q5.1.4193065 -Node: Q5.1.5193600 -Node: Q5.1.6195724 -Node: Q5.1.7197210 -Node: Q5.1.8198803 -Node: Q5.1.9199355 -Node: Q5.1.10200240 -Node: Q5.1.11201371 -Node: Q5.2.1201920 -Node: Q5.2.2202490 -Node: Q5.2.3202907 -Node: Q5.2.4203142 -Node: Q5.3.1204052 -Node: Q5.3.2205273 -Node: Q5.3.3206049 -Node: Q5.3.4206533 -Node: Q5.3.5207200 -Node: Q5.3.6208069 -Node: Q5.3.7208314 -Node: Q5.3.8210504 -Node: Q5.3.9210751 -Node: Q5.3.10211704 -Node: Q5.3.11213788 -Node: Q5.3.12215379 -Node: MS Windows216653 -Node: Q6.0.1218130 -Node: Q6.0.2218877 -Node: Q6.0.3219342 -Node: Q6.0.4219622 -Node: Q6.1.1221901 -Node: Q6.1.2222772 -Node: Q6.1.3223227 -Node: Q6.1.4223509 -Node: Q6.1.5223887 -Node: Q6.1.6224755 -Node: Q6.2.1227061 -Node: Q6.2.2227962 -Node: Q6.2.3228374 -Node: Q6.3.1228663 -Node: Q6.3.2229757 -Node: Q6.3.3232938 -Node: Q6.4.1233207 -Node: Current Events234542 -Node: Q7.0.1235196 -Node: Q7.0.2235835 -Node: Q7.0.3236908 -Node: Q7.0.4237136 +Node: Top205 +Node: Introduction16704 +Node: Q1.0.120146 +Node: Q1.0.220682 +Node: Q1.0.321227 +Node: Q1.0.421489 +Node: Q1.0.522939 +Node: Q1.0.623628 +Node: Q1.0.724634 +Node: Q1.0.824887 +Node: Q1.0.925102 +Node: Q1.0.1025380 +Node: Q1.0.1125623 +Node: Q1.0.1226010 +Node: Q1.0.1326378 +Node: Q1.0.1426627 +Node: Q1.1.127139 +Node: Q1.1.228181 +Node: Q1.1.328574 +Node: Q1.2.129525 +Node: Q1.2.230581 +Node: Q1.2.331015 +Node: Q1.3.132099 +Node: Q1.3.232750 +Node: Q1.3.333214 +Node: Q1.3.433455 +Node: Q1.3.534228 +Node: Q1.3.636633 +Node: Q1.3.738164 +Node: Q1.4.139099 +Node: Q1.4.239961 +Node: Q1.4.340302 +Node: Q1.4.440721 +Node: Q1.4.542261 +Node: Q1.4.642565 +Node: Installation43558 +Node: Q2.0.146133 +Node: Q2.0.246933 +Node: Q2.0.348701 +Node: Q2.0.449999 +Node: Q2.0.550591 +Node: Q2.0.650939 +Node: Q2.0.751320 +Node: Q2.0.851701 +Node: Q2.0.953278 +Node: Q2.0.1054716 +Node: Q2.0.1155560 +Node: Q2.0.1256501 +Node: Q2.0.1358024 +Node: Q2.0.1458513 +Node: Q2.1.159571 +Node: Q2.1.262313 +Node: Q2.1.363490 +Node: Q2.1.464783 +Node: Q2.1.565582 +Node: Q2.1.665944 +Node: Q2.1.766421 +Node: Q2.1.866774 +Node: Q2.1.968308 +Node: Q2.1.1068730 +Node: Q2.1.1169487 +Node: Q2.1.1270352 +Node: Q2.1.1371307 +Node: Q2.1.1472338 +Node: Q2.1.1573449 +Node: Q2.1.1680481 +Node: Q2.1.1781175 +Node: Q2.1.1881772 +Node: Q2.1.1981899 +Node: Q2.1.2082429 +Node: Q2.1.2182811 +Node: Q2.1.2283004 +Node: Q2.1.2384301 +Node: Q2.1.2484969 +Node: Q2.1.2585441 +Node: Customization86076 +Node: Q3.0.190914 +Node: Q3.0.291620 +Node: Q3.0.392184 +Node: Q3.0.492601 +Node: Q3.0.593434 +Node: Q3.0.694215 +Node: Q3.0.794795 +Node: Q3.0.895459 +Node: Q3.0.996417 +Node: Q3.1.196978 +Node: Q3.1.297715 +Node: Q3.1.398146 +Node: Q3.1.498335 +Node: Q3.1.598524 +Node: Q3.1.698908 +Node: Q3.1.799617 +Node: Q3.1.8101841 +Node: Q3.2.1102383 +Node: Q3.2.2104036 +Node: Q3.2.3104835 +Node: Q3.2.4105437 +Node: Q3.2.5106471 +Node: Q3.2.6106938 +Node: Q3.3.1107863 +Node: Q3.3.2108293 +Node: Q3.3.3108924 +Node: Q3.3.4109305 +Node: Q3.3.5110406 +Node: Q3.4.1111900 +Node: Q3.4.2112543 +Node: Q3.5.1113055 +Node: Q3.5.2114504 +Node: Q3.5.3114922 +Node: Q3.5.4115760 +Node: Q3.5.5116592 +Node: Q3.5.6117732 +Node: Q3.5.7118722 +Node: Q3.5.8120162 +Node: Q3.5.9120909 +Node: Q3.5.10121689 +Node: Q3.5.11122325 +Node: Q3.6.1122878 +Node: Q3.6.2123623 +Node: Q3.6.3124051 +Node: Q3.7.1124551 +Node: Q3.7.2125439 +Node: Q3.7.3126098 +Node: Q3.7.4126520 +Node: Q3.7.5126863 +Node: Q3.7.6127331 +Node: Q3.7.7128046 +Node: Q3.7.8129066 +Node: Q3.8.1129485 +Node: Q3.8.2129945 +Node: Q3.8.3130408 +Node: Q3.8.4131014 +Node: Q3.8.5131733 +Node: Q3.9.1132518 +Node: Q3.9.2133458 +Node: Q3.9.3134056 +Node: Q3.9.4134718 +Node: Q3.10.1135597 +Node: Q3.10.2136415 +Node: Q3.10.3137420 +Node: Q3.10.4138148 +Node: Q3.10.5138531 +Node: Subsystems139583 +Node: Q4.0.1142070 +Node: Q4.0.2142595 +Node: Q4.0.3143153 +Node: Q4.0.4143474 +Node: Q4.0.5143716 +Node: Q4.0.6143947 +Node: Q4.0.7144535 +Node: Q4.0.8144860 +Node: Q4.0.9146087 +Node: Q4.0.10148125 +Node: Q4.0.11148614 +Node: Q4.0.12149492 +Node: Q4.1.1150465 +Node: Q4.1.2150868 +Node: Q4.1.3151195 +Node: Q4.2.1151504 +Node: Q4.2.2152134 +Node: Q4.2.3152374 +Node: Q4.2.4152918 +Node: Q4.3.1153571 +Node: Q4.3.2154155 +Node: Q4.3.3155636 +Node: Q4.3.4155908 +Node: Q4.3.5156585 +Node: Q4.4.1157213 +Node: Q4.4.2158699 +Node: Q4.5.1159903 +Node: Q4.6.1160672 +Node: Q4.7.1165932 +Node: Q4.7.2166887 +Node: Q4.7.3167184 +Node: Q4.7.4167370 +Node: Q4.7.5168254 +Node: Q4.7.6169895 +Node: Miscellaneous170184 +Node: Q5.0.1173597 +Node: Q5.0.2174336 +Node: Q5.0.3175190 +Node: Q5.0.4175892 +Node: Q5.0.5176831 +Node: Q5.0.6178811 +Node: Q5.0.7179468 +Node: Q5.0.8180073 +Node: Q5.0.9180592 +Node: Q5.0.10181106 +Node: Q5.0.11181354 +Node: Q5.0.12181892 +Node: Q5.0.13182809 +Node: Q5.0.14183493 +Node: Q5.0.15184258 +Node: Q5.0.16184555 +Node: Q5.0.17185067 +Node: Q5.0.18185332 +Node: Q5.0.19185526 +Node: Q5.0.20185950 +Node: Q5.1.1186865 +Node: Q5.1.2188934 +Node: Q5.1.3189670 +Node: Q5.1.4193064 +Node: Q5.1.5193599 +Node: Q5.1.6195723 +Node: Q5.1.7197209 +Node: Q5.1.8198802 +Node: Q5.1.9199354 +Node: Q5.1.10200239 +Node: Q5.1.11201370 +Node: Q5.2.1201919 +Node: Q5.2.2202489 +Node: Q5.2.3202906 +Node: Q5.2.4203141 +Node: Q5.3.1204051 +Node: Q5.3.2205272 +Node: Q5.3.3206048 +Node: Q5.3.4206532 +Node: Q5.3.5207199 +Node: Q5.3.6208068 +Node: Q5.3.7208313 +Node: Q5.3.8210503 +Node: Q5.3.9210750 +Node: Q5.3.10211703 +Node: Q5.3.11213787 +Node: Q5.3.12215378 +Node: MS Windows216652 +Node: Q6.0.1218129 +Node: Q6.0.2218876 +Node: Q6.0.3219341 +Node: Q6.0.4219621 +Node: Q6.1.1221900 +Node: Q6.1.2222771 +Node: Q6.1.3223226 +Node: Q6.1.4223508 +Node: Q6.1.5223886 +Node: Q6.1.6224754 +Node: Q6.2.1227060 +Node: Q6.2.2227961 +Node: Q6.2.3228373 +Node: Q6.3.1228662 +Node: Q6.3.2229756 +Node: Q6.3.3232937 +Node: Q6.4.1233206 +Node: Current Events234541 +Node: Q7.0.1235195 +Node: Q7.0.2235834 +Node: Q7.0.3236907 +Node: Q7.0.4237135  End Tag Table diff --git a/info/xemacs-faq.info-1 b/info/xemacs-faq.info-1 index cfb98eb..6706c9f 100644 --- a/info/xemacs-faq.info-1 +++ b/info/xemacs-faq.info-1 @@ -1,4 +1,4 @@ -This is ../info/xemacs-faq.info, produced by makeinfo version 4.0b from +This is ../info/xemacs-faq.info, produced by makeinfo version 4.0 from xemacs-faq.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs-faq.info-2 b/info/xemacs-faq.info-2 index 62faa2b..66252fd 100644 --- a/info/xemacs-faq.info-2 +++ b/info/xemacs-faq.info-2 @@ -1,4 +1,4 @@ -This is ../info/xemacs-faq.info, produced by makeinfo version 4.0b from +This is ../info/xemacs-faq.info, produced by makeinfo version 4.0 from xemacs-faq.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs-faq.info-3 b/info/xemacs-faq.info-3 index 8800a07..8fa7ecf 100644 --- a/info/xemacs-faq.info-3 +++ b/info/xemacs-faq.info-3 @@ -1,4 +1,4 @@ -This is ../info/xemacs-faq.info, produced by makeinfo version 4.0b from +This is ../info/xemacs-faq.info, produced by makeinfo version 4.0 from xemacs-faq.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs-faq.info-4 b/info/xemacs-faq.info-4 index 7dc867f..7e671ec 100644 --- a/info/xemacs-faq.info-4 +++ b/info/xemacs-faq.info-4 @@ -1,4 +1,4 @@ -This is ../info/xemacs-faq.info, produced by makeinfo version 4.0b from +This is ../info/xemacs-faq.info, produced by makeinfo version 4.0 from xemacs-faq.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs-faq.info-5 b/info/xemacs-faq.info-5 index d57a66e..ccfd040 100644 --- a/info/xemacs-faq.info-5 +++ b/info/xemacs-faq.info-5 @@ -1,4 +1,4 @@ -This is ../info/xemacs-faq.info, produced by makeinfo version 4.0b from +This is ../info/xemacs-faq.info, produced by makeinfo version 4.0 from xemacs-faq.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info b/info/xemacs.info index 4797d24..459dc9d 100644 --- a/info/xemacs.info +++ b/info/xemacs.info @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor @@ -31,7 +31,7 @@ translation approved by the author instead of in the original English.  Indirect: -xemacs.info-1: 1351 +xemacs.info-1: 1350 xemacs.info-2: 49148 xemacs.info-3: 97130 xemacs.info-4: 146370 @@ -57,8 +57,8 @@ xemacs.info-23: 1015111  Tag Table: (Indirect) -Node: Top1351 -Node: License22943 +Node: Top1350 +Node: License22942 Node: Distrib36224 Node: Intro37888 Node: Frame40759 diff --git a/info/xemacs.info-1 b/info/xemacs.info-1 index 576bd61..b45fedf 100644 --- a/info/xemacs.info-1 +++ b/info/xemacs.info-1 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor @@ -602,6 +602,7 @@ authors' reputations. modification follow. TERMS AND CONDITIONS + 1. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The diff --git a/info/xemacs.info-10 b/info/xemacs.info-10 index e8f5cf6..0c68a6c 100644 --- a/info/xemacs.info-10 +++ b/info/xemacs.info-10 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-11 b/info/xemacs.info-11 index bf640bd..8e0ab08 100644 --- a/info/xemacs.info-11 +++ b/info/xemacs.info-11 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-12 b/info/xemacs.info-12 index 45c5285..74ce2c4 100644 --- a/info/xemacs.info-12 +++ b/info/xemacs.info-12 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-13 b/info/xemacs.info-13 index 7e434aa..01dace5 100644 --- a/info/xemacs.info-13 +++ b/info/xemacs.info-13 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-14 b/info/xemacs.info-14 index eca17ed..5ec9149 100644 --- a/info/xemacs.info-14 +++ b/info/xemacs.info-14 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-15 b/info/xemacs.info-15 index 82aa3f6..dc3e1ed 100644 --- a/info/xemacs.info-15 +++ b/info/xemacs.info-15 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-16 b/info/xemacs.info-16 index 60c77c2..d154ec6 100644 --- a/info/xemacs.info-16 +++ b/info/xemacs.info-16 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-17 b/info/xemacs.info-17 index 6648446..841e102 100644 --- a/info/xemacs.info-17 +++ b/info/xemacs.info-17 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-18 b/info/xemacs.info-18 index 5cadc3a..761c545 100644 --- a/info/xemacs.info-18 +++ b/info/xemacs.info-18 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-19 b/info/xemacs.info-19 index ff8b3f6..8214619 100644 --- a/info/xemacs.info-19 +++ b/info/xemacs.info-19 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-2 b/info/xemacs.info-2 index 466cf65..f2754c1 100644 --- a/info/xemacs.info-2 +++ b/info/xemacs.info-2 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-20 b/info/xemacs.info-20 index a3b119f..2ab1eed 100644 --- a/info/xemacs.info-20 +++ b/info/xemacs.info-20 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-21 b/info/xemacs.info-21 index f55fcc1..9ce962e 100644 --- a/info/xemacs.info-21 +++ b/info/xemacs.info-21 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-22 b/info/xemacs.info-22 index 62d8003..fe8b724 100644 --- a/info/xemacs.info-22 +++ b/info/xemacs.info-22 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-23 b/info/xemacs.info-23 index e85db7b..cc4a455 100644 --- a/info/xemacs.info-23 +++ b/info/xemacs.info-23 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-3 b/info/xemacs.info-3 index 1fdc4de..f3f6e3a 100644 --- a/info/xemacs.info-3 +++ b/info/xemacs.info-3 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-4 b/info/xemacs.info-4 index d8a425c..53fc1cd 100644 --- a/info/xemacs.info-4 +++ b/info/xemacs.info-4 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-5 b/info/xemacs.info-5 index 41187a8..7a27615 100644 --- a/info/xemacs.info-5 +++ b/info/xemacs.info-5 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-6 b/info/xemacs.info-6 index e6c1b6f..1637f0f 100644 --- a/info/xemacs.info-6 +++ b/info/xemacs.info-6 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-7 b/info/xemacs.info-7 index 8fcc8e1..eb360e0 100644 --- a/info/xemacs.info-7 +++ b/info/xemacs.info-7 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-8 b/info/xemacs.info-8 index 81ad49c..e72246b 100644 --- a/info/xemacs.info-8 +++ b/info/xemacs.info-8 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/info/xemacs.info-9 b/info/xemacs.info-9 index 7c95cda..0d949e6 100644 --- a/info/xemacs.info-9 +++ b/info/xemacs.info-9 @@ -1,4 +1,4 @@ -This is ../info/xemacs.info, produced by makeinfo version 4.0b from +This is ../info/xemacs.info, produced by makeinfo version 4.0 from xemacs/xemacs.texi. INFO-DIR-SECTION XEmacs Editor diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index ae5c8af..2ff3afa 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,38 @@ +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-11 Martin Buchholz + + * Makefile.in.in: Cleanup. + Fixes bug: all must depend on make-dump-id. + Don't install make-path; only used at build time. + Avoid duplicating file lists for maintainability. + (PUBLIC_INSTALLABLE_SCRIPTS): More logical naming. + (PUBLIC_INSTALLABLE_EXES): Likewise. + (PUBLIC_INSTALLABLES): Likewise. + (PRIVATE_INSTALLABLE_SCRIPTS): More logical naming. + (PRIVATE_INSTALLABLE_EXES): Likewise. + (PRIVATE_INSTALLABLES): Likewise. + (SCRIPTS): Likewise. + (EXES): New. + (PROGS): New. + (SOURCES): Remove. + (BUILD_UTILITIES): New. Non-installed utilities. + (INSTALL_GNUSERV): New. + (unlock): Remove obsolete target. + (relock): Remove obsolete target. + (aixcc.c): Remove. Obsolete. + * aixcc.lex: Remove. Obsolete. + +2001-02-12 Martin Buchholz + + * make-dump-id.c (main): No longer #include dump-id.h. + +2001-02-08 Martin Buchholz + + * gnuserv.c (permitted): Compiler warning fixes. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. @@ -45,7 +80,7 @@ (C_entries): Don't be fooled by things like XDEFUN. (consider_token): Discard asm pseudo function. -2001-01-25 Francesco Potorti` +2001-01-25 Francesco Potorti` * etags.c (struct tok): Renamed from struct token. (token): Renamed from tok. @@ -69,7 +104,7 @@ (consider_token, C_entries): Use them. (C_entries): Build proper lisp names for Emacs DEFUNs. -2001-01-15 Francesco Potorti` +2001-01-15 Francesco Potorti` * etags.c (print_language_names): Print filenames in addition to suffixes. @@ -88,7 +123,7 @@ (Makefile_targets): New function, inspired by Assar Westerlund . -2000-11-07 Francesco Potortì +2000-11-07 Francesco Potorti` * etags.c (Texinfo_nodes): Renamed from Texinfo_fuctions and made it conformant to the style of the rest of the code. @@ -100,11 +135,11 @@ potential signed char to int conversion problem. (MSDOS): #undefine befere redefining -2000-02-04 Francesco Potorti` +2000-02-04 Francesco Potorti` * etags.c (many functions): Add prototypes. -2000-01-31 Francesco Potorti` +2000-01-31 Francesco Potorti` * etags.c [MSDOS]: Set MSDOS to 1 if #defined, 0 otherwise. (get_compressor_from_suffix, process_file): Use MSDOS in if clause. diff --git a/lib-src/Makefile.in.in b/lib-src/Makefile.in.in index 33dd10c..12663b8 100644 --- a/lib-src/Makefile.in.in +++ b/lib-src/Makefile.in.in @@ -73,44 +73,65 @@ INSTALL_DATA = @INSTALL_DATA@ #define NOT_C_CODE #include "../src/config.h" -## Things that a user might actually run, -## which should be installed in bindir. -#ifdef WIN32_NATIVE -INSTALLABLES_BASE = etags ctags b2m ootags -#else -INSTALLABLES_BASE = etags ctags b2m gnuclient ootags +#ifndef WIN32_NATIVE +#define INSTALL_GNUSERV +#endif + +## ---------------------------------------------------------------- +## Things that a user might actually run directly, +## which should be installed in ${bindir}. + +PUBLIC_INSTALLABLE_EXES=\ +#ifdef INSTALL_GNUSERV + gnuclient\ #endif -INSTALLABLE_SCRIPTS = rcs-checkin gnudoit gnuattach #ifdef HAVE_SHLIB -INSTALLABLES = $(INSTALLABLES_BASE) ellcc -#else -INSTALLABLES = $(INSTALLABLES_BASE) + ellcc\ +#endif + etags ctags b2m ootags + +PUBLIC_INSTALLABLE_SCRIPTS=\ +#ifdef INSTALL_GNUSERV + gnudoit gnuattach\ #endif + rcs-checkin + +PUBLIC_INSTALLABLES = ${PUBLIC_INSTALLABLE_EXES} ${PUBLIC_INSTALLABLE_SCRIPTS} +## ---------------------------------------------------------------- +## Things that XEmacs runs internally on the user's behalf, +## which should be installed in ${archlibdir}. -## Things that Emacs runs internally, or during the build process, -## which should not be installed in bindir. +PRIVATE_INSTALLABLE_EXES=\ +#ifdef INSTALL_GNUSERV + gnuserv\ +#endif #ifdef WIN32_NATIVE -UTILITIES= make-path wakeup profile make-docfile digest-doc \ - sorted-doc movemail cvtmail yow i hexl \ - mmencode minitar + i minitar\ #else -UTILITIES= make-path wakeup profile make-docfile digest-doc \ - sorted-doc movemail cvtmail fakemail yow hexl \ - gnuserv mmencode + fakemail\ #endif -## These need to be conditional on I18N3 make-msgfile make-po + wakeup profile make-docfile digest-doc\ + sorted-doc movemail cvtmail yow hexl mmencode -## Like UTILITIES, but they are not system-dependent, and should not be -## deleted by the distclean target. GEN_SCRIPTS = rcs2log vcdiff gzip-el.sh PKG_SCRIPTS = add-big-package.sh -SCRIPTS = $(GEN_SCRIPTS) $(PKG_SCRIPTS) +PRIVATE_INSTALLABLE_SCRIPTS = $(GEN_SCRIPTS) $(PKG_SCRIPTS) + +PRIVATE_INSTALLABLES = ${PRIVATE_INSTALLABLE_EXES} ${PRIVATE_INSTALLABLE_SCRIPTS} + +## These need to be conditional on I18N3: make-msgfile make-po + +## ---------------------------------------------------------------- +## Things that XEmacs uses during the build process itself. +## Not installed. + +BUILD_UTILITIES = make-path make-dump-id -EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} +EXES = ${PUBLIC_INSTALLABLE_EXES} ${PRIVATE_INSTALLABLE_EXES} ${BUILD_UTILITIES} +SCRIPTS = ${PUBLIC_INSTALLABLE_SCRIPTS} ${PRIVATE_INSTALLABLE_SCRIPTS} +PROGS = ${EXES} ${SCRIPTS} -SOURCES = COPYING ChangeLog Makefile.in.in README aixcc.lex emacs.csh \ - makedoc.com *.[chy] $(SCRIPTS) ## Additional -D flags for movemail (add to MOVE_FLAGS if desired): ## MAIL_USE_POP Support mail retrieval from a POP mailbox. ## MAIL_USE_MMDF Support MMDF mailboxes. @@ -171,16 +192,15 @@ ldflags = $(LDFLAGS) $(ld_switch_general) $(ld_libs_general) .c.o: ${CC} -c $(cflags) $< -.PHONY : all maybe-blessmail install uninstall +.PHONY : all maybe-blessmail install uninstall check -all: ${UTILITIES} ${INSTALLABLES} srcdir-symlink.stamp +all: ${PROGS} ## Make symlinks for shell scripts if using --srcdir -srcdir-symlink.stamp: +${SCRIPTS}: for f in ${SCRIPTS}; do \ if test ! -r $$f; then ${LN_S} ${srcdir}/$$f $$f; fi; \ - done; \ - touch $@; + done #undef MOVEMAIL_NEEDS_BLESSING #if !defined (MAIL_USE_FLOCK) && ! defined (MAIL_USE_LOCKF) @@ -218,55 +238,45 @@ ${archlibdir}: all @echo; echo "Installing utilities run internally by XEmacs." ./make-path ${archlibdir} if test "`(cd ${archlibdir} && $(pwd))`" != "`$(pwd)`"; then \ - for f in ${UTILITIES}; do \ + for f in ${PRIVATE_INSTALLABLE_EXES}; do \ (cd .. && $(INSTALL_PROGRAM) lib-src/$$f ${archlibdir}/$$f) ; \ done ; \ fi if test "`(cd ${archlibdir} && $(pwd))`" \ != "`(cd ${srcdir} && $(pwd))`"; then \ - for f in ${SCRIPTS}; do \ + for f in ${PRIVATE_INSTALLABLE_SCRIPTS}; do \ (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$$f ${archlibdir}/$$f); \ done ; \ fi -## We do not need to install "wakeup" explicitly, because it will be -## copied when this whole directory is copied. install: ${archlibdir} @echo; echo "Installing utilities for users to run." - for file in ${INSTALLABLES} ; do \ + for file in ${PUBLIC_INSTALLABLE_EXES} ; do \ (cd .. && $(INSTALL_PROGRAM) lib-src/$${file} ${bindir}/$${file}) ; \ done - for file in ${INSTALLABLE_SCRIPTS} ; do \ + for file in ${PUBLIC_INSTALLABLE_SCRIPTS} ; do \ (cd .. && $(INSTALL_PROGRAM) ${srcdir}/$${file} ${bindir}/$${file}) ; \ done uninstall: - (cd ${bindir} && \ - $(RM) ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}) - (cd ${archlibdir} && \ - $(RM) ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) + cd ${bindir} && $(RM) ${PUBLIC_INSTALLABLES} + cd ${archlibdir} && $(RM) ${PRIVATE_INSTALLABLES} .PHONY: mostlyclean clean distclean realclean extraclean mostlyclean: $(RM) *.o *.i core clean: mostlyclean - $(RM) ${INSTALLABLES} ${UTILITIES} *.exe + $(RM) ${EXES} *.exe distclean: clean - $(RM) DOC *.tab.c *.tab.h aixcc.c TAGS ellcc.h + $(RM) DOC *.tab.c *.tab.h TAGS ellcc.h $(RM) GNUmakefile Makefile Makefile.in blessmail config.values realclean: distclean extraclean: distclean $(RM) *~ \#* -.PHONY: unlock relock check -unlock: - chmod u+w $(SOURCES) -relock: - chmod u-w $(SOURCES) - ## Test the contents of the directory. check: - @echo "We don't have any tests for XEmacs yet." + @echo "We don't have any tests for lib-src yet." TAGS: etags etags *.[ch] @@ -379,12 +389,3 @@ mmencode : ${srcdir}/mmencode.c make-path: ${srcdir}/make-path.c ../src/config.h $(CC) -Demacs $(cflags) ${srcdir}/make-path.c -o $@ - -## These are NOT included in INSTALLABLES or UTILITIES. -## See ../src/Makefile.in.in. -aixcc: ${srcdir}/aixcc.c - $(CC) $(cflags) ${srcdir}/aixcc.c -o $@ - -aixcc.c: ${srcdir}/aixcc.lex - lex ${srcdir}/aixcc.lex - mv lex.yy.c aixcc.c diff --git a/lib-src/aixcc.lex b/lib-src/aixcc.lex deleted file mode 100644 index b7b4470..0000000 --- a/lib-src/aixcc.lex +++ /dev/null @@ -1,301 +0,0 @@ -%Start ErrorText ErrorMessage OtherText - -EC [0-9][0-9][0-9][0-9]-[0-9][0-9][0-9] -D [0-9] -D3 [0-9 ][0-9 ][0-9] -D4 [0-9 ][0-9 ][0-9 ][0-9] -D5 [0-9 ][0-9 ][0-9 ][0-9 ][0-9] -DS [0-9 ] - -%{ -/* moore@wilma.cs.utk.edu - - * Hack to work around the AIX C compiler's brain-damaged error messages - * so that emacs can parse them. It runs /bin/cc as a subprocess, and - * tries to rearrange the error messages so that (a) each message contains - * both the filename and line number where the error occurred, and (b) - * the error message(s) for a particular line get displayed *before* the - * line itself. - * - * to compile: - * lex aixcc.lex - * cc -o aixcc lex.yy.c - * - * - * Copyright December 1991 by Keith Moore - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * - * TODO: figure out how the compiler counts file numbers for included - * files, keep track of which file corresponds to which number, and - * always output the right file name. - */ - -#include -#include - -char *current_file; -int line; -int debug = 0; -char bigbuf[10240]; -char *bufptr = bigbuf; -int last_line_was_error = 0; - -spaces (s) -char *s; -{ - while (*s++) - *bufptr++ = ' '; -} - -char * -strsave (s) -char *s; -{ - char *ptr = malloc (strlen (s) + 1); - strcpy (ptr, s); - return ptr; -} - -yywrap () -{ - *bufptr = '\0'; - bufptr = bigbuf; - while (*bufptr) - putc (*bufptr++, yyout); - return 1; -} - -%} -%% -^File\ Line\ Column\ Message\ text[^\n]* { - /* - * ignore this. don't treat it as error text - */ -} - -^{DS}{DS}{DS}\ {D5}\ \| { - /* - * (optional) nesting level, followed by line number, followed - * by the source code fragment that caused the error - */ - - /* - * save the line number for later - */ - line = atoi (yytext+4); - - if (debug) { - fprintf (yyout, "line <= %d\n", line); - fprintf (yyout, "%s\n", yytext); - } - - /* - * if the last line was an error message, to flush out all of - * the old source text before starting to save the new source text. - */ - if (last_line_was_error) { - *bufptr = '\0'; - bufptr = bigbuf; - while (*bufptr) - putc (*bufptr++, yyout); - bufptr = bigbuf; - last_line_was_error = 0; - } - /* - * stuff enough spaces in the text buffer so that the - * saved text will line up properly when displayed. - */ - spaces (yytext); - - BEGIN ErrorText; /* continue below */ -} - -[^\n]*$ { - char *ptr; - - /* - * Save the text until we see the error message(s), then print it. - * This because emacs puts the error message at the top of the - * window, and it's nice to be able to see the text below it. - */ - - ptr = yytext; - while (*ptr) - *bufptr++ = *ptr++; - *bufptr++ = '\n'; - - BEGIN 0; -} - -^Processing\ include\ file\ .*$ { - /* - * name of a new include file being processed. Increment file number - * and remember the file name corresponding to this file number. - */ - - current_file = strsave (yytext+24); - - if (debug) { - fprintf (yyout, "current_file <= %s\n", current_file); - fprintf (yyout, "%s\n", yytext); - } -} - -^([a-z]\ -)?\ *{EC}: { - /* - * error message (which we print immediately) preceded by an - * error code (which we ignore) - */ - - fprintf (yyout, "\"%s\", line %d: %c -", current_file, line, *yytext); - last_line_was_error = 1; - BEGIN ErrorMessage; -} - -^{D3}\ {D5}\ {D4}\ {EC}: { - /* - * (optional) nesting level, followed by line number, followed - * by column number, followed by error message text. - */ - - /* - * save the line number for later - */ - line = atoi (yytext+4); - - if (debug) { - fprintf (yyout, "line <= %d\n", line); - fprintf (yyout, "%s\n", yytext); - } - - /* - * if the last line was an error message, flush out all of - * the old source text before printing this error message. - */ - if (last_line_was_error) { - *bufptr = '\0'; - bufptr = bigbuf; - while (*bufptr) - putc (*bufptr++, yyout); - bufptr = bigbuf; - last_line_was_error = 0; - } - fprintf (yyout, "\"%s\", line %d:", current_file, line); - last_line_was_error = 1; - BEGIN ErrorMessage; -} - -[^\n]*$ { - fprintf (yyout, "%s\n", yytext); - BEGIN 0; -} - - -^[^ :]+".c:"\ *$ { - /* name of new source file being processed */ - - char *ptr; - - if (current_file) - free (current_file); - ptr = strchr (yytext, ':'); - *ptr = '\0'; - current_file = strsave (yytext); -} - -^[^\n] { - /* - * other text starting with a newline. We have to break it up this - * way to keep this rule from matching any of the above patterns - */ - - if (last_line_was_error) { - *bufptr = '\0'; - bufptr = bigbuf; - while (*bufptr) - putc (*bufptr++, yyout); - bufptr = bigbuf; - last_line_was_error = 0; - } - - *bufptr++ = *yytext; - BEGIN OtherText; -} - -[^\n]*$ { - char *ptr; - - ptr = yytext; - while (*ptr) - *bufptr++ = *ptr++; - *bufptr++ = '\n'; - - BEGIN 0; -} - -\n ; - -%% - -main (argc, argv) -char **argv; -{ - int pfd[2]; - int child_pid; - int i; - - current_file = strsave ("/dev/null"); - - line = 0; - - for (i = 1; i < argc; ++i) { - char *ptr = strrchr (argv[i], '.'); - if (ptr && ptr[1] == 'c' && ptr[2] == '\0') { - current_file = strsave (argv[i]); - break; - } - } - - if (pipe (pfd) < 0) { - perror ("pipe"); - exit (1); - } - if ((child_pid = fork()) > 0) { - int status; - - close (pfd[1]); - yyin = fdopen (pfd[0], "r"); - yyout = stderr; - yylex(); - - wait (&status); - exit ((status >> 8) & 0xff); - } - else if (child_pid == 0) { - dup2 (pfd[1], 2); - close (pfd[0]); - close (pfd[1]); - argv[0] = "cc"; - execv ("/bin/cc", argv); - perror ("/bin/cc"); - exit (1); - } - else { - perror ("fork"); - exit (1); - } -} diff --git a/lib-src/gnuserv.c b/lib-src/gnuserv.c index 2ba5785..3cf78c4 100644 --- a/lib-src/gnuserv.c +++ b/lib-src/gnuserv.c @@ -458,8 +458,6 @@ permitted (unsigned long host_addr, int fd) char auth_protocol[128]; char buf[1024]; int auth_data_len; - int auth_data_pos; - int auth_mismatches; if (fd > 0) { @@ -505,7 +503,8 @@ permitted (unsigned long host_addr, int fd) { /* Do a compare without comprising info about the size of the cookie */ - auth_mismatches = + int auth_data_pos; + int auth_mismatches = ( auth_data_len ^ server_xauth->data_length ); diff --git a/lib-src/make-dump-id.c b/lib-src/make-dump-id.c index 6ad213d..bfa2f7d 100644 --- a/lib-src/make-dump-id.c +++ b/lib-src/make-dump-id.c @@ -64,10 +64,7 @@ main (int argc, char *argv[]) return EXIT_FAILURE; } - fprintf (f, - "#include \n" - "unsigned int dump_id = %uU;\n", - generate_dump_id ()); + fprintf (f, "unsigned int dump_id = %uU;\n", generate_dump_id ()); if ((fclose (f)) != 0) { diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dfa0727..98db61f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,26 @@ +2002-08-13 MORIOKA Tomohiko + + * setup-paths.el (paths-find-utf-2000-lisp-directory): Use + `configure-utf-2000-lisp-directory'. + (paths-construct-load-path): Prefer `utf-2000-lisp-load-path' to + `mule-lisp-load-path'. + +2002-08-13 MORIOKA Tomohiko + + * startup.el (startup-setup-paths): Set and use + `utf-2000-lisp-directory'. + (startup-setup-paths-warning): Check `utf-2000-lisp-directory' in + UTF-2000. + +2002-08-12 MORIOKA Tomohiko + + * setup-paths.el (paths-utf-2000-load-path-depth): New variable. + (paths-find-utf-2000-lisp-directory): New function. + (paths-construct-load-path): Add new optional argument + `utf-2000-lisp-directory'. + + * dump-paths.el: Set and use `utf-2000-lisp-directory'. + 2002-08-12 MORIOKA Tomohiko * mule/mule-charset.el: Don't specify `auto-fill-chars' for @@ -674,6 +697,86 @@ * files.el (insert-file-contents-literally): Treat file as binary; call file-name-handlers. [sync with Emacs 20.3.10] +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-01-25 Jason R. Mastaler + + * about.el (xemacs-hackers): update my entry. + * about.el (about-maintainer-info): ditto. + * about.el (about-hackers): ditto. + +2001-02-20 Jan Vroonhof + + * about.el (about-maintainer-info): More vanity info about + yours truly. + +2001-02-20 Adrian Aichner + + * build-report.el (build-report-destination): xemacs-build-reports + has moved to SourceForge, where mailing list name length is + restricted, hence the name change to + xemacs-buildreports@xemacs.org. + * build-report.el (build-report-keep-regexp): Update default. + * build-report.el (build-report-delete-regexp): Ditto. + * build-report.el (build-report-make-output-files): Ditto. + +2001-02-19 Craig Lanning + + * lisp-mode.el: Add indentation specifications for following + Common Lisp forms: handler-case, handler-bind, with-slots, + with-open-file, with-open-stream, print-unreadable-object. + +2001-02-18 Matt Tucker + + * font-lock.el (font-lock-set-defaults-1): + Move initialization of `font-lock-cache-position' so that it's set + even if font-lock-keywords is already defined. + +2001-02-17 Matt Tucker + + * autoload.el (generate-file-autoloads-1): + Use `emacs-lisp-mode-syntax-table' instead of + `lisp-mode-syntax-table'. + * lisp-mode.el (lisp-mode-syntax-table): + Get rid of old checks for `parse-partial-sexp' version. + Make `|' (pipe) string delimiter instead of punctuation. + +2001-02-16 Martin Buchholz + + * window.el (save-selected-window): + Use gensym for better macro hygiene. + +2001-02-06 Mike Sperber + + * dump-paths.el: + * startup.el (startup-setup-paths): Set and use + `mule-lisp-directory'. + (startup-setup-paths-warning): Ditto. + + * setup-paths.el (paths-find-mule-lisp-directory): Added. + (paths-construct-load-path): Consider `mule-lisp-directory'. + +2001-02-07 Matt Tucker + + * font-lock.el: Syntax table improvements used. A few random + changes are not specified below. + (font-lock-fontify-string-delimiters): + (font-lock-syntactic-keywords): + (font-lock-cache-state nil): + (font-lock-cache-position): + New variables. + (font-lock-set-syntax): + (font-lock-apply-syntactic-highlight): + (font-lock-fontify-syntactic-anchored-keywords): + (font-lock-fontify-syntactic-keywords-region): + (font-lock-eval-keywords): + New functions. + (font-lock-remove-face): + (font-lock-fontify-syntactically-region): + Use syntax properties. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/lisp/about.el b/lisp/about.el index decbd08..7c3a89e 100644 --- a/lisp/about.el +++ b/lisp/about.el @@ -65,8 +65,9 @@ (dkindred "Darrell Kindred" "dkindred@cmu.edu") (dv "Didier Verna" "didier@xemacs.org") (hniksic "Hrvoje Niksic" "hniksic@xemacs.org") + (jan "Jan Vroonhof" "jan@xemacs.org") (jareth "Jareth Hein" "jareth@camelot.co.jp") - (jason "Jason Mastaler" "jason@xemacs.org") + (jason "Jason R. Mastaler" "jason@xemacs.org") (jens "Jens Lautenbacher" "jens@lemcbed.lem.uni-karlsruhe.de") (jmiller "Jeff Miller" "jmiller@smart.net") (juhp "Jens-Ulrik Holger Petersen" "petersen@kurims.kyoto-u.ac.jp") @@ -781,6 +782,27 @@ After that (and all the remaining exams) I'm looking forward to make a living out of my hobbies -- computers (and graphics). But because I have no deadline for the exams and XEmacs betas are released at a high rate this may take some time...\n")) + (jan + (widget-insert "\ +Jan Vroonhof has been using XEmacs since he needed to write .tex files +for his work as a physics and maths student at the Univerisity of Leiden. +His XEmacs hacking started when XEmacs kept freezing up under a his +window manager. He submitted a fix and has been hooked every since. + +Apart from hunting down more redisplay bugs he has worked on such +things as improvements to the package system, implementing lazy-shot, +a short stint at tracking patches and currently acts as a guardian +of the XEmacs custom subsystem and gnuserv. + +XEmacs has followed him first to Switserland where he did a maths +doctorate at the ETH in Zurich, working on a conjecture by Migdal on +the behavior of vertex corrections in Electron-Phonon theory. Finally +sharing a house with his loved one, he now lives in Oxford (UK) +working on the Jeode Java Virtual Machine, which like XEmacs is +portable, implements a language, includes a non-trivial bit of +graphics and a garbage collector, but is multithreaded to boot! +Unfortunately his XEmacs time is directly limited by the amount of +traffic on the M40.\n")) (jareth (widget-insert "\ Jareth Hein is a mountain boy who abandoned his home state of Colorado @@ -968,12 +990,12 @@ My homepage is ") (widget-insert ".\n")) (jason (widget-insert "\ -Beta tester, manager of the various XEmacs mailing lists and -binary kit manager. Also, originator and maintainer of the gnus.org -domain. +Beta tester, manager of the various XEmacs mailing lists and binary +kit manager. Also, originator and maintainer of the gnus.org domain. -Jason resides in Albuquerque, New Mexico where he keeps himself -busy with studies at the university and consulting work. +Jason resides in Northern New Mexico where he works as a Systems +Scientist(tm) in the Los Alamos National Laboratory's Advanced +Computing Group. See: ") (about-url-link 'jason "Visit Jason's homepage") @@ -1103,13 +1125,19 @@ and portability fixes. Lars is a student at the Institute of Informatics at the University of Oslo. He is currently plumbing away at his majors work at the Institute of Physics, working on an SCI project connected with CASCADE and CERN and stuff.\n") + (about-show-linked-info 'jan "\ +Apart from hunting down redisplay bugs Jan has worked on such +things as improvements to the package system, implementing lazy-shot, +a short stint at tracking patches and currently acts as a guardian +of the XEmacs custom subsystem and gnuserv. Having finished his PhD +he is now working on Java virtual machines.\n") (about-show-linked-info 'jens "\ I'm currently working at the University of Karlsruhe, Germany on getting my diploma thesis on Supersymmetry (uuh, that's physics) done. After that (and all the remaining exams) I'm looking forward to make a living out of my hobbies -- computers (and graphics). But because I have no deadline for the exams and XEmacs betas are released at a high -rate this may take some time...\n") +rate this may take some time...\n") (about-show-linked-info 'jareth "\ Jareth Hein is a mountain boy who abandoned his home state of Colorado for the perpetual state of chaos known as Tokyo in a failed attempt to @@ -1209,8 +1237,8 @@ Author of the XEmacs Drag'n'Drop API.\n") (about-show-linked-info 'juhp "\ Author of \"find-func.el\".\n") (about-show-linked-info 'jason "\ -Beta tester and manager of the various XEmacs mailing lists. -Originator and maintainer of the gnus.org domain.\n") +Beta tester, manager of the various XEmacs mailing lists and binary +kit manager. Also, originator and maintainer of the gnus.org domain.\n") (about-show-linked-info 'jmiller "\ Beta tester and last hacker of calendar.\n") (about-show-linked-info 'chr "\ @@ -1507,7 +1535,6 @@ above. We couldn't have done it without them.\n\n" (print-short "UENO Fumihiro" "7m2vej@ritp.ye.IHI.CO.JP") (print-short "Aki Vehtari" "Aki.Vehtari@hut.fi") (print-short "Juan E. Villacis" "jvillaci@cs.indiana.edu") - (print-short "Jan Vroonhof" "vroonhof@math.ethz.ch") (print-short "Vladimir Vukicevic" "vladimir@intrepid.com") (print-short "Charles G. Waldman" "cgw@fnal.gov") (print-short "David Walte" "djw18@cornell.edu") diff --git a/lisp/autoload.el b/lisp/autoload.el index f1ee483..195885d 100644 --- a/lisp/autoload.el +++ b/lisp/autoload.el @@ -167,7 +167,7 @@ are used." (let ((find-file-hooks nil) (enable-local-variables nil)) (set-buffer (or visited (find-file-noselect file))) - (set-syntax-table lisp-mode-syntax-table)) + (set-syntax-table emacs-lisp-mode-syntax-table)) (save-excursion (save-restriction (widen) diff --git a/lisp/build-report.el b/lisp/build-report.el index b3797f3..b35fd05 100644 --- a/lisp/build-report.el +++ b/lisp/build-report.el @@ -4,7 +4,7 @@ ;; Author: Adrian Aichner ;; Date: Sun., Apr. 20, 1997-2000. -;; Version: $Revision: 1.5.2.6 $ +;; Version: $Revision: 1.5.2.7 $ ;; Keywords: internal ;; This file is part of XEmacs. @@ -87,8 +87,9 @@ xemacs_codename\\s-*=\\s-*\"\\([^\"]+\\)\"" :group 'build) (defcustom build-report-destination - (quote ("XEmacs Build Reports List " - "XEmacs Beta List ")) + (list + "XEmacs Build Reports List " + "XEmacs Beta List ") "*The list of mail addresses XEmacs Build Reports should most likely go to." :type '(repeat @@ -98,12 +99,22 @@ go to." :group 'build-report) (defcustom build-report-keep-regexp - (quote ("^\\(cd\\|n?make\\)\\s-" "errors?" "warnings?" - "pure.*\\(space\\|size\\)" "hides\\b" "strange" "shadowings" - "^Compil\\(ing\\s-+in\\|ation\\)" "^Using" "not\\s-+found" - "^While\\s-+compiling.*\\(\n\\s-+.+\\)*" "^Note:" - "Installing" "[Ff]ile(s) copied" - "\\s-+tests\\s-+")) + (list + "^\\(cd\\|n?make\\)\\s-" + "errors?" + "warnings?" + "pure.*\\(space\\|size\\)" + "hides\\b" + "strange" + "shadowings" + "^Compil\\(ing\\s-+in\\|ation\\)" + "^Using" + "not\\s-+found" + "^While\\s-+compiling.*\\(\n\\s-+.+\\)*" + "^Note:" + "Installing" + "[Ff]ile(s) copied" + "\\s-+tests\\s-+") "*Regexp of make process output lines to keep in the report." :type '(repeat :custom-show t @@ -112,7 +123,10 @@ go to." :group 'build-report) (defcustom build-report-delete-regexp - (quote ("confl.*with.*auto-inlining" "^Formatting:")) + (list + "confl.*with.*auto-inlining" + "^Formatting:" + "(100%) tests successful") "*Regexp of make process output lines to delete from the report." :type '(repeat :custom-show t @@ -136,7 +150,12 @@ go to." :group 'build-report) (defcustom build-report-make-output-files - (quote ("beta.err")) + (list + "beta.err" + "xemacs-make-all.err" + "xemacs-make-check-temacs.err" + "xemacs-make-check.err" + "xemacs-make-install.err") "*List of Filenames where stdout and stderr of XEmacs make process have been stored. These are relative to `build-report-make-output-dir`. You'll have to run make with output diff --git a/lisp/dump-paths.el b/lisp/dump-paths.el index 9381a0c..d6d87c8 100644 --- a/lisp/dump-paths.el +++ b/lisp/dump-paths.el @@ -62,6 +62,26 @@ (if debug-paths (princ (format "lisp-directory:\n%S\n" lisp-directory) 'external-debugging-output)) + (if (featurep 'mule) + (progn + (setq mule-lisp-directory + (paths-find-mule-lisp-directory roots + lisp-directory)) + (if debug-paths + (princ (format "mule-lisp-directory:\n%S\n" + mule-lisp-directory) + 'external-debugging-output))) + (setq mule-lisp-directory '())) + (if (featurep 'utf-2000) + (progn + (setq utf-2000-lisp-directory + (paths-find-utf-2000-lisp-directory roots + lisp-directory)) + (if debug-paths + (princ (format "utf-2000-lisp-directory:\n%S\n" + utf-2000-lisp-directory) + 'external-debugging-output))) + (setq utf-2000-lisp-directory '())) (setq site-directory (and (null inhibit-site-lisp) (paths-find-site-lisp-directory roots))) (if (and debug-paths (null inhibit-site-lisp)) @@ -73,7 +93,9 @@ late-package-load-path '() lisp-directory - site-directory)) + site-directory + mule-lisp-directory + utf-2000-lisp-directory)) (setq module-directory (paths-find-module-directory roots)) (if debug-paths diff --git a/lisp/dumped-lisp.el b/lisp/dumped-lisp.el index 5fe7a2b..433abd8 100644 --- a/lisp/dumped-lisp.el +++ b/lisp/dumped-lisp.el @@ -1,4 +1,3 @@ - (setq preloaded-file-list (assemble-list "backquote" ; needed for defsubst etc. diff --git a/lisp/font-lock.el b/lisp/font-lock.el index edc5964..9373594 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -313,6 +313,12 @@ megabyte for buffers in `rmail-mode', and size is irrelevant otherwise." (integer :tag "size"))))) :group 'font-lock) +;;;###autoload +(defcustom font-lock-fontify-string-delimiters nil + "*If non-nil, apply font-lock-string-face to string delimiters as well as +string text when fontifying." + :type 'boolean + :group 'font-lock) ;; Fontification variables: @@ -438,6 +444,45 @@ dramatically slow things down! ;;;###autoload (make-variable-buffer-local 'font-lock-keywords) +;;;###autoload +(defvar font-lock-syntactic-keywords nil + "A list of the syntactic keywords to highlight. +Can be the list or the name of a function or variable whose value is the list. +See `font-lock-keywords' for a description of the form of this list; +the differences are listed below. MATCH-HIGHLIGHT should be of the form: + + (MATCH SYNTAX OVERRIDE LAXMATCH) + +where SYNTAX can be of the form (SYNTAX-CODE . MATCHING-CHAR), the name of a +syntax table, or an expression whose value is such a form or a syntax table. +OVERRIDE cannot be `prepend' or `append'. + +For example, an element of the form highlights syntactically: + + (\"\\\\$\\\\(#\\\\)\" 1 (1 . nil)) + + a hash character when following a dollar character, with a SYNTAX-CODE of + 1 (meaning punctuation syntax). Assuming that the buffer syntax table does + specify hash characters to have comment start syntax, the element will only + highlight hash characters that do not follow dollar characters as comments + syntactically. + + (\"\\\\('\\\\).\\\\('\\\\)\" + (1 (7 . ?')) + (2 (7 . ?'))) + + both single quotes which surround a single character, with a SYNTAX-CODE of + 7 (meaning string quote syntax) and a MATCHING-CHAR of a single quote (meaning + a single quote matches a single quote). Assuming that the buffer syntax table + does not specify single quotes to have quote syntax, the element will only + highlight single quotes of the form 'c' as strings syntactically. + Other forms, such as foo'bar or 'fubar', will not be highlighted as strings. + +This is normally set via `font-lock-defaults'." +) +;;;###autoload +(make-variable-buffer-local 'font-lock-syntactic-keywords) + (defvar font-lock-defaults nil "The defaults font Font Lock mode for the current buffer. Normally, do not set this directly. If you are writing a major mode, @@ -511,15 +556,15 @@ If this is nil, the major mode's syntax table is used. This is normally set via `font-lock-defaults'.") (make-variable-buffer-local 'font-lock-syntax-table) -;; These are used in the FSF version in syntactic font-locking. -;; We do this all in C. -;;; These record the parse state at a particular position, always the -;;; start of a line. Used to make -;;; `font-lock-fontify-syntactically-region' faster. -;(defvar font-lock-cache-position nil) -;(defvar font-lock-cache-state nil) -;(make-variable-buffer-local 'font-lock-cache-position) -;(make-variable-buffer-local 'font-lock-cache-state) +;; These record the parse state at a particular position, always the start of a +;; line. Used to make `font-lock-fontify-syntactically-region' faster. +;; Previously, `font-lock-cache-position' was just a buffer position. However, +;; under certain situations, this occasionally resulted in mis-fontification. +;; I think the "situations" were deletion with Lazy Lock mode's deferral. sm. +(defvar font-lock-cache-state nil) +(defvar font-lock-cache-position nil) +(make-variable-buffer-local 'font-lock-cache-state) +(make-variable-buffer-local 'font-lock-cache-position) ;; If this is nil, we only use the beginning of the buffer if we can't use ;; `font-lock-cache-position' and `font-lock-cache-state'. @@ -944,7 +989,14 @@ See the variable `font-lock-keywords' for customization." (defsubst font-lock-remove-face (start end) ;; Remove any syntax highlighting on the characters in the range. (put-nonduplicable-text-property start end 'face nil) - (put-nonduplicable-text-property start end 'font-lock nil)) + (put-nonduplicable-text-property start end 'font-lock nil) + (if lookup-syntax-properties + (put-nonduplicable-text-property start end 'syntax-table nil))) + +(defsubst font-lock-set-syntax (start end syntax) + ;; Set the face on the characters in the range. + (put-nonduplicable-text-property start end 'syntax-table syntax) + (put-nonduplicable-text-property start end 'font-lock t)) (defsubst font-lock-any-faces-p (start end) ;; Return non-nil if we've put any syntax highlighting on @@ -1084,8 +1136,10 @@ This can take a while for large buffers." ;; Use the fontification syntax table, if any. (if font-lock-syntax-table (set-syntax-table font-lock-syntax-table)) ;; Now do the fontification. - (if font-lock-keywords-only - (font-lock-unfontify-region beg end) + (font-lock-unfontify-region beg end) + (when font-lock-syntactic-keywords + (font-lock-fontify-syntactic-keywords-region beg end)) + (unless font-lock-keywords-only (font-lock-fontify-syntactically-region beg end loudly)) (font-lock-fontify-keywords-region beg end loudly)) ;; Clean up. @@ -1222,118 +1276,6 @@ buffer modifications are performed or a buffer is reverted.") ;; Syntactic fontification functions. -;; Note: Here is the FSF version. Our version is much faster because -;; of the C support we provide. This may be useful for reference, -;; however, and perhaps there is something useful here that should -;; be merged into our version. -;; -;(defun font-lock-fontify-syntactically-region (start end &optional loudly) -; "Put proper face on each string and comment between START and END. -;START should be at the beginning of a line." -; (let ((synstart (if comment-start-skip -; (concat "\\s\"\\|" comment-start-skip) -; "\\s\"")) -; (comstart (if comment-start-skip -; (concat "\\s<\\|" comment-start-skip) -; "\\s<")) -; state prev prevstate) -; (if loudly (message "Fontifying %s... (syntactically...)" (buffer-name))) -; (save-restriction -; (widen) -; (goto-char start) -; ;; -; ;; Find the state at the `beginning-of-line' before `start'. -; (if (eq start font-lock-cache-position) -; ;; Use the cache for the state of `start'. -; (setq state font-lock-cache-state) -; ;; Find the state of `start'. -; (if (null font-lock-beginning-of-syntax-function) -; ;; Use the state at the previous cache position, if any, or -; ;; otherwise calculate from `point-min'. -; (if (or (null font-lock-cache-position) -; (< start font-lock-cache-position)) -; (setq state (parse-partial-sexp (point-min) start)) -; (setq state (parse-partial-sexp font-lock-cache-position start -; nil nil font-lock-cache-state))) -; ;; Call the function to move outside any syntactic block. -; (funcall font-lock-beginning-of-syntax-function) -; (setq state (parse-partial-sexp (point) start))) -; ;; Cache the state and position of `start'. -; (setq font-lock-cache-state state -; font-lock-cache-position start)) -; ;; -; ;; If the region starts inside a string, show the extent of it. -; (if (nth 3 state) -; (let ((beg (point))) -; (while (and (re-search-forward "\\s\"" end 'move) -; (nth 3 (parse-partial-sexp beg (point) -; nil nil state)))) -; (put-text-property beg (point) 'face font-lock-string-face) -; (setq state (parse-partial-sexp beg (point) nil nil state)))) -; ;; -; ;; Likewise for a comment. -; (if (or (nth 4 state) (nth 7 state)) -; (let ((beg (point))) -; (save-restriction -; (narrow-to-region (point-min) end) -; (condition-case nil -; (progn -; (re-search-backward comstart (point-min) 'move) -; (forward-comment 1) -; ;; forward-comment skips all whitespace, -; ;; so go back to the real end of the comment. -; (skip-chars-backward " \t")) -; (error (goto-char end)))) -; (put-text-property beg (point) 'face font-lock-comment-face) -; (setq state (parse-partial-sexp beg (point) nil nil state)))) -; ;; -; ;; Find each interesting place between here and `end'. -; (while (and (< (point) end) -; (setq prev (point) prevstate state) -; (re-search-forward synstart end t) -; (progn -; ;; Clear out the fonts of what we skip over. -; (remove-text-properties prev (point) '(face nil)) -; ;; Verify the state at that place -; ;; so we don't get fooled by \" or \;. -; (setq state (parse-partial-sexp prev (point) -; nil nil state)))) -; (let ((here (point))) -; (if (or (nth 4 state) (nth 7 state)) -; ;; -; ;; We found a real comment start. -; (let ((beg (match-beginning 0))) -; (goto-char beg) -; (save-restriction -; (narrow-to-region (point-min) end) -; (condition-case nil -; (progn -; (forward-comment 1) -; ;; forward-comment skips all whitespace, -; ;; so go back to the real end of the comment. -; (skip-chars-backward " \t")) -; (error (goto-char end)))) -; (put-text-property beg (point) 'face -; font-lock-comment-face) -; (setq state (parse-partial-sexp here (point) nil nil state))) -; (if (nth 3 state) -; ;; -; ;; We found a real string start. -; (let ((beg (match-beginning 0))) -; (while (and (re-search-forward "\\s\"" end 'move) -; (nth 3 (parse-partial-sexp here (point) -; nil nil state)))) -; (put-text-property beg (point) 'face font-lock-string-face) -; (setq state (parse-partial-sexp here (point) -; nil nil state)))))) -; ;; -; ;; Make sure `prev' is non-nil after the loop -; ;; only if it was set on the very last iteration. -; (setq prev nil))) -; ;; -; ;; Clean up. -; (and prev (remove-text-properties prev end '(face nil))))) - (defun font-lock-lisp-like (mode) ;; Note: (or (get mode 'font-lock-lisp-like) (string-match ...)) is ;; not enough because the property needs to be able to specify a nil @@ -1344,52 +1286,77 @@ buffer modifications are performed or a buffer is reverted.") ;; in add-log, but I think this encompasses more modes. (string-match "lisp\\|scheme" (symbol-name mode)))) +;; fontify-syntactically-region used to use syntactically-sectionize, which +;; was supposedly much faster than the FSF version because it was written in +;; C. However, the FSF version uses parse-partial-sexp, which is also +;; written in C, and the benchmarking I did showed the +;; syntactically-sectionize code to be slower overall. So here's the FSF +;; version, modified to support font-lock-doc-string-face. +;; -- mct 2000-12-29 (defun font-lock-fontify-syntactically-region (start end &optional loudly) "Put proper face on each string and comment between START and END. START should be at the beginning of a line." (if font-lock-keywords-only nil + + ;; #### Shouldn't this just be using 'loudly?? (when (and font-lock-verbose (>= (- end start) font-lock-message-threshold)) (progress-feedback-with-label 'font-lock "Fontifying %s... (syntactically)" 5 (buffer-name))) - (font-lock-unfontify-region start end loudly) (goto-char start) - (if (> end (point-max)) (setq end (point-max))) - (let ((lisp-like (font-lock-lisp-like major-mode))) - (syntactically-sectionize - #'(lambda (s e context depth) - (let (face) - (cond ((eq context 'string) - (setq face - ;; #### It would be nice if we handled - ;; Python and other non-Lisp languages with - ;; docstrings correctly. - (if (and lisp-like (= depth 1)) - ;; really we should only use this if - ;; in position 3 depth 1, but that's - ;; too expensive to compute. - 'font-lock-doc-string-face - 'font-lock-string-face))) - ((or (eq context 'comment) - (eq context 'block-comment)) - (setq face 'font-lock-comment-face) -; ;; Don't fontify whitespace at the beginning of lines; -; ;; otherwise comment blocks may not line up with code. -; ;; (This is sometimes a good idea, sometimes not; in any -; ;; event it should be in C for speed --jwz) -; (save-excursion -; (goto-char s) -; (while (prog1 (search-forward "\n" (1- e) 'move) -; (setq face 'font-lock-comment-face) -; (setq e (point))) -; (skip-chars-forward " \t\n") -; (setq s (point))) - )) - (font-lock-set-face s e face))) - start end) - ))) + + (let ((lisp-like (font-lock-lisp-like major-mode)) + (cache (marker-position font-lock-cache-position)) + state string beg depth) + ;; + ;; Find the state at the `beginning-of-line' before `start'. + (if (eq start cache) + ;; Use the cache for the state of `start'. + (setq state font-lock-cache-state) + ;; Find the state of `start'. + (if (null font-lock-beginning-of-syntax-function) + ;; Use the state at the previous cache position, if any, or + ;; otherwise calculate from `point-min'. + (if (or (null cache) (< start cache)) + (setq state (parse-partial-sexp (point-min) start)) + (setq state (parse-partial-sexp cache start nil nil + font-lock-cache-state))) + ;; Call the function to move outside any syntactic block. + (funcall font-lock-beginning-of-syntax-function) + (setq state (parse-partial-sexp (point) start))) + ;; Cache the state and position of `start'. + (setq font-lock-cache-state state) + (set-marker font-lock-cache-position start)) + ;; + ;; If the region starts inside a string or comment, show the extent of it. + (when (or (nth 3 state) (nth 4 state)) + (setq string (nth 3 state) beg (point)) + (setq state (parse-partial-sexp (point) end nil nil state 'syntax-table)) + (font-lock-set-face beg (point) (if string + font-lock-string-face + font-lock-comment-face))) + ;; + ;; Find each interesting place between here and `end'. + (while (and (< (point) end) + (progn + (setq state (parse-partial-sexp (point) end nil nil state + 'syntax-table)) + (or (nth 3 state) (nth 4 state)))) + (setq depth (nth 0 state) string (nth 3 state) beg (nth 8 state)) + (setq state (parse-partial-sexp (point) end nil nil state 'syntax-table)) + (if string + ;; #### It would be nice if we handled Python and other + ;; non-Lisp languages with docstrings correctly. + (let ((face (if (and lisp-like (= depth 1)) + 'font-lock-doc-string-face + 'font-lock-string-face))) + (if font-lock-fontify-string-delimiters + (font-lock-set-face beg (point) face) + (font-lock-set-face (+ beg 1) (- (point) 1) face))) + (font-lock-set-face beg (point) + font-lock-comment-face)))))) ;;; Additional text property functions. @@ -1473,6 +1440,101 @@ Optional argument OBJECT is the string or buffer containing the text." object) (setq start next)))) +;;; Syntactic regexp fontification functions (taken from FSF Emacs 20.7.1) + +;; These syntactic keyword pass functions are identical to those keyword pass +;; functions below, with the following exceptions; (a) they operate on +;; `font-lock-syntactic-keywords' of course, (b) they are all `defun' as speed +;; is less of an issue, (c) eval of property value does not occur JIT as speed +;; is less of an issue, (d) OVERRIDE cannot be `prepend' or `append' as it +;; makes no sense for `syntax-table' property values, (e) they do not do it +;; LOUDLY as it is not likely to be intensive. + +(defun font-lock-apply-syntactic-highlight (highlight) + "Apply HIGHLIGHT following a match. + HIGHLIGHT should be of the form MATCH-HIGHLIGHT, + see `font-lock-syntactic-keywords'." + (let* ((match (nth 0 highlight)) + (start (match-beginning match)) (end (match-end match)) + (value (nth 1 highlight)) + (override (nth 2 highlight))) + (unless (numberp (car-safe value)) + (setq value (eval value))) + (cond ((not start) + ;; No match but we might not signal an error. + (or (nth 3 highlight) + (error "No match %d in highlight %S" match highlight))) + ((not override) + ;; Cannot override existing fontification. + (or (map-extents 'extent-property (current-buffer) + start end 'syntax-table) + (font-lock-set-syntax start end value))) + ((eq override t) + ;; Override existing fontification. + (font-lock-set-syntax start end value)) + ((eq override 'keep) + ;; Keep existing fontification. + (font-lock-fillin-text-property start end + 'syntax-table 'font-lock value))))) + +(defun font-lock-fontify-syntactic-anchored-keywords (keywords limit) + "Fontify according to KEYWORDS until LIMIT. + KEYWORDS should be of the form MATCH-ANCHORED, see `font-lock-keywords', + LIMIT can be modified by the value of its PRE-MATCH-FORM." + (let ((matcher (nth 0 keywords)) (lowdarks (nthcdr 3 keywords)) highlights + ;; Evaluate PRE-MATCH-FORM. + (pre-match-value (eval (nth 1 keywords)))) + ;; Set LIMIT to value of PRE-MATCH-FORM or the end of line. + (if (and (numberp pre-match-value) (> pre-match-value (point))) + (setq limit pre-match-value) + (save-excursion (end-of-line) (setq limit (point)))) + (save-match-data + ;; Find an occurrence of `matcher' before `limit'. + (while (if (stringp matcher) + (re-search-forward matcher limit t) + (funcall matcher limit)) + ;; Apply each highlight to this instance of `matcher'. + (setq highlights lowdarks) + (while highlights + (font-lock-apply-syntactic-highlight (car highlights)) + (setq highlights (cdr highlights))))) + ;; Evaluate POST-MATCH-FORM. + (eval (nth 2 keywords)))) + +(defun font-lock-fontify-syntactic-keywords-region (start end) + "Fontify according to `font-lock-syntactic-keywords' between START and END. +START should be at the beginning of a line." +;; ;; If `font-lock-syntactic-keywords' is a symbol, get the real keywords. + (when (symbolp font-lock-syntactic-keywords) + (setq font-lock-syntactic-keywords (font-lock-eval-keywords + font-lock-syntactic-keywords))) + ;; If `font-lock-syntactic-keywords' is not compiled, compile it. + (unless (eq (car font-lock-syntactic-keywords) t) + (setq font-lock-syntactic-keywords (font-lock-compile-keywords + font-lock-syntactic-keywords))) + ;; Get down to business. + (let ((case-fold-search font-lock-keywords-case-fold-search) + (keywords (cdr font-lock-syntactic-keywords)) + keyword matcher highlights) + (while keywords + ;; Find an occurrence of `matcher' from `start' to `end'. + (setq keyword (car keywords) matcher (car keyword)) + (goto-char start) + (while (if (stringp matcher) + (re-search-forward matcher end t) + (funcall matcher end)) + ;; Apply each highlight to this instance of `matcher', which may be + ;; specific highlights or more keywords anchored to `matcher'. + (setq highlights (cdr keyword)) + (while highlights + (if (numberp (car (car highlights))) + (font-lock-apply-syntactic-highlight (car highlights)) + (font-lock-fontify-syntactic-anchored-keywords (car highlights) + end)) + (setq highlights (cdr highlights))) + ) + (setq keywords (cdr keywords))))) + ;;; Regexp fontification functions. (defsubst font-lock-apply-highlight (highlight) @@ -1636,6 +1698,14 @@ START should be at the beginning of a line." (t ; Hopefully (MATCHER HIGHLIGHT ...) keyword))) +(defun font-lock-eval-keywords (keywords) + ;; Evalulate KEYWORDS if a function (funcall) or variable (eval) name. + (if (listp keywords) + keywords + (font-lock-eval-keywords (if (fboundp keywords) + (funcall keywords) + (eval keywords))))) + (defun font-lock-choose-keywords (keywords level) ;; Return LEVELth element of KEYWORDS. A LEVEL of nil is equal to a ;; LEVEL of 0, a LEVEL of t is equal to (1- (length KEYWORDS)). @@ -1713,7 +1783,7 @@ START should be at the beginning of a line." (font-lock-find-font-lock-defaults major-mode))) (keywords (font-lock-choose-keywords (nth 0 defaults) font-lock-maximum-decoration))) - + ;; Keywords? (setq font-lock-keywords (if (fboundp keywords) (funcall keywords) @@ -1779,6 +1849,7 @@ START should be at the beginning of a line." (setq font-lock-beginning-of-syntax-function 'beginning-of-defun))))) + (setq font-lock-cache-position (make-marker)) (setq font-lock-defaults-computed t))) diff --git a/lisp/lisp-mode.el b/lisp/lisp-mode.el index 8fcec45..254ad36 100644 --- a/lisp/lisp-mode.el +++ b/lisp/lisp-mode.el @@ -170,19 +170,11 @@ (if (not lisp-mode-syntax-table) (progn (setq lisp-mode-syntax-table (copy-syntax-table emacs-lisp-mode-syntax-table)) - (modify-syntax-entry ?\| "\" " lisp-mode-syntax-table) (modify-syntax-entry ?\[ "_ " lisp-mode-syntax-table) ;; XEmacs changes (modify-syntax-entry ?\] "_ " lisp-mode-syntax-table) - ;; - ;; If emacs was compiled with NEW_SYNTAX, then do - ;; CL's #| |# block comments. - (if (= 8 (length (parse-partial-sexp (point) (point)))) - (progn - (modify-syntax-entry ?# "' 58" lisp-mode-syntax-table) - (modify-syntax-entry ?| ". 67" lisp-mode-syntax-table)) - ;; else, old style - (modify-syntax-entry ?\| "\" " lisp-mode-syntax-table)))) + (modify-syntax-entry ?# "' 58" lisp-mode-syntax-table) + (modify-syntax-entry ?| "\" 67" lisp-mode-syntax-table))) (define-abbrev-table 'lisp-mode-abbrev-table ()) @@ -802,6 +794,8 @@ of the start of the containing expression." (put 'if 'lisp-indent-function 2) (put 'catch 'lisp-indent-function 1) (put 'condition-case 'lisp-indent-function 2) +(put 'handler-case 'lisp-indent-function 1) +(put 'handler-bind 'lisp-indent-function 1) (put 'call-with-condition-handler 'lisp-indent-function 2) (put 'unwind-protect 'lisp-indent-function 1) (put 'save-current-buffer 'lisp-indent-function 0) @@ -811,12 +805,16 @@ of the start of the containing expression." (put 'with-temp-buffer 'lisp-indent-function 0) (put 'with-output-to-string 'lisp-indent-function 0) (put 'with-output-to-temp-buffer 'lisp-indent-function 1) +(put 'with-slots 'lisp-indent-function 2) +(put 'with-open-file 'lisp-indent-function 1) +(put 'with-open-stream 'lisp-indent-function 1) (put 'eval-after-load 'lisp-indent-function 1) (put 'display-message 'lisp-indent-function 1) (put 'display-warning 'lisp-indent-function 1) (put 'lmessage 'lisp-indent-function 2) (put 'lwarn 'lisp-indent-function 2) (put 'global-set-key 'lisp-indent-function 1) +(put 'print-unreadable-object 'lisp-indent-function 1) (defun indent-sexp (&optional endpos) "Indent each line of the list starting just after point. diff --git a/lisp/setup-paths.el b/lisp/setup-paths.el index d22ba46..7ad409b 100644 --- a/lisp/setup-paths.el +++ b/lisp/setup-paths.el @@ -38,12 +38,18 @@ ;;; Code: -(defvar paths-core-load-path-depth 1 +(defvar paths-core-load-path-depth 0 "Depth of load-path searches in core Lisp paths.") (defvar paths-site-load-path-depth 1 "Depth of load-path searches in site Lisp paths.") +(defvar paths-mule-load-path-depth 0 + "Depth of load-path searches in Mule Lisp paths.") + +(defvar paths-utf-2000-load-path-depth 0 + "Depth of load-path searches in UTF-2000 Lisp paths.") + (defvar paths-default-info-directories (mapcar (function (lambda (dirlist) @@ -73,6 +79,32 @@ nil configure-lisp-directory)) +(defun paths-find-mule-lisp-directory (roots &optional lisp-directory) + "Find the Mule Lisp directory of the XEmacs hierarchy." + ;; #### kludge + (if lisp-directory + (let ((guess + (file-name-as-directory + (paths-construct-path (list lisp-directory "mule"))))) + (if (paths-file-readable-directory-p guess) + guess + (paths-find-version-directory roots "mule-lisp" + nil + configure-mule-lisp-directory))))) + +(defun paths-find-utf-2000-lisp-directory (roots &optional lisp-directory) + "Find the UTF-2000 Lisp directory of the XEmacs hierarchy." + ;; #### kludge + (if lisp-directory + (let ((guess + (file-name-as-directory + (paths-construct-path (list lisp-directory "utf-2000"))))) + (if (paths-file-readable-directory-p guess) + guess + (paths-find-version-directory roots "utf-2000-lisp" + nil + configure-utf-2000-lisp-directory))))) + (defun paths-find-module-directory (roots) "Find the main modules directory of the XEmacs hierarchy." (paths-find-architecture-directory roots "modules" @@ -81,7 +113,8 @@ (defun paths-construct-load-path (roots early-package-load-path late-package-load-path last-package-load-path lisp-directory - &optional site-lisp-directory) + &optional site-lisp-directory mule-lisp-directory + utf-2000-lisp-directory) "Construct the load path." (let* ((envvar-value (getenv "EMACSLOADPATH")) (env-load-path @@ -91,6 +124,14 @@ (and site-lisp-directory (paths-find-recursive-load-path (list site-lisp-directory) paths-site-load-path-depth))) + (mule-lisp-load-path + (and mule-lisp-directory + (paths-find-recursive-load-path (list mule-lisp-directory) + paths-mule-load-path-depth))) + (utf-2000-lisp-load-path + (and utf-2000-lisp-directory + (paths-find-recursive-load-path (list utf-2000-lisp-directory) + paths-utf-2000-load-path-depth))) (lisp-load-path (and lisp-directory (paths-find-recursive-load-path (list lisp-directory) @@ -99,6 +140,8 @@ early-package-load-path site-lisp-load-path late-package-load-path + utf-2000-lisp-load-path + mule-lisp-load-path lisp-load-path last-package-load-path))) diff --git a/lisp/startup.el b/lisp/startup.el index b519a9a..e7413ab 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1134,7 +1134,7 @@ Copyright (C) 1990-1994 Lucid, Inc. Copyright (C) 1993-1997 Sun Microsystems, Inc. All Rights Reserved. Copyright (C) 1994-1996 Board of Trustees, University of Illinois Copyright (C) 1995-1996 Ben Wing -Copyright (C) 1996-2000 MORIOKA Tomohiko +Copyright (C) 1996-2002 MORIOKA Tomohiko ")) ((face (blue bold underline) "\nInformation, on-line help:\n\n") @@ -1283,6 +1283,28 @@ It's idempotent, so call this as often as you like!" (princ (format "lisp-directory:\n%S\n" lisp-directory) 'external-debugging-output)) + (if (featurep 'mule) + (progn + (setq mule-lisp-directory + (paths-find-mule-lisp-directory roots + lisp-directory)) + (if debug-paths + (princ (format "mule-lisp-directory:\n%S\n" + mule-lisp-directory) + 'external-debugging-output))) + (setq mule-lisp-directory '())) + + (if (featurep 'utf-2000) + (progn + (setq utf-2000-lisp-directory + (paths-find-utf-2000-lisp-directory roots + lisp-directory)) + (if debug-paths + (princ (format "utf-2000-lisp-directory:\n%S\n" + utf-2000-lisp-directory) + 'external-debugging-output))) + (setq utf-2000-lisp-directory '())) + (setq site-directory (and (null inhibit-site-lisp) (paths-find-site-lisp-directory roots))) @@ -1295,7 +1317,9 @@ It's idempotent, so call this as often as you like!" late-package-load-path last-package-load-path lisp-directory - site-directory)) + site-directory + mule-lisp-directory + utf-2000-lisp-directory)) (setq Info-directory-list (paths-construct-info-path roots @@ -1362,6 +1386,12 @@ It's idempotent, so call this as often as you like!" (erase-buffer) (buffer-disable-undo (current-buffer)) (if (null lisp-directory) (push "lisp-directory" warnings)) + (if (and (featurep 'mule) + (null mule-lisp-directory)) + (push "mule-lisp-directory" warnings)) + (if (and (featurep 'utf-2000) + (null utf-2000-lisp-directory)) + (push "utf-2000-lisp-directory" warnings)) (if (null exec-directory) (push "exec-directory" warnings)) (if (null data-directory) (push "data-directory" warnings)) (if (null doc-directory) (push "doc-directory" warnings)) diff --git a/lisp/window.el b/lisp/window.el index cfd37e7..fbd0335 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -130,12 +130,14 @@ Any other non-nil value means search all devices." (eq window (active-minibuffer-window))) (defmacro save-selected-window (&rest body) - "Execute BODY, then select the window that was selected before BODY." - `(let ((save-selected-window-window (selected-window))) + "Execute BODY, then select the window that was selected before BODY. +The value returned is the value of the last form in BODY." + (let ((old-window (gensym "ssw"))) + `(let ((,old-window (selected-window))) (unwind-protect (progn ,@body) - (when (window-live-p save-selected-window-window) - (select-window save-selected-window-window))))) + (when (window-live-p ,old-window) + (select-window ,old-window)))))) (defmacro with-selected-window (window &rest body) "Execute forms in BODY with WINDOW as the selected window. diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index d3dad72..12f1c4e 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog @@ -1,3 +1,13 @@ +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-16 Raymond Toy + + * lwlib-Xaw.c: Always include ATHENA_AsciiText_h_ to get the + text-field widget. + (xaw_creation_table): Always include the text-field widget + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index 1bdafcd..a52b231 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c @@ -46,10 +46,8 @@ Boston, MA 02111-1307, USA. */ #include "xlwradio.h" #include "xlwcheckbox.h" #include "xlwgauge.h" -#ifndef NEED_MOTIF #include ATHENA_AsciiText_h_ #endif -#endif #include static void xaw_generic_callback (Widget, XtPointer, XtPointer); @@ -838,7 +836,7 @@ xaw_create_progress (widget_instance *instance) return scale; } -#ifndef NEED_MOTIF +#if defined(LWLIB_WIDGETS_ATHENA) #define TEXT_BUFFER_SIZE 128 static Widget xaw_create_text_field (widget_instance *instance) @@ -890,9 +888,7 @@ xaw_creation_table [] = #ifdef LWLIB_WIDGETS_ATHENA {"button", xaw_create_button }, { "label", xaw_create_label_field }, -#ifndef NEED_MOTIF {"text-field", xaw_create_text_field }, -#endif {"progress", xaw_create_progress }, #endif {NULL, NULL} diff --git a/man/ChangeLog b/man/ChangeLog index e92f405..320621f 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,11 @@ +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-10 Martin Buchholz + + * xemacs/programs.texi (Tag Syntax): Port to makeinfo 3. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/man/xemacs/programs.texi b/man/xemacs/programs.texi index 87b61c4..5ee3f5c 100644 --- a/man/xemacs/programs.texi +++ b/man/xemacs/programs.texi @@ -1084,7 +1084,7 @@ In La@TeX{} text, the argument of any of the commands @code{\chapter}, tag.@refill Other commands can make tags as well, if you specify them in the -environment variable @env{TEXTAGS} before invoking @code{etags}. The +environment variable @code{TEXTAGS} before invoking @code{etags}. The value of this environment variable should be a colon-separated list of command names. For example, diff --git a/netinstall/ChangeLog b/netinstall/ChangeLog index f5ec0e4..80895ce 100644 --- a/netinstall/ChangeLog +++ b/netinstall/ChangeLog @@ -1,3 +1,7 @@ +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. @@ -195,5 +199,5 @@ * all: port from cygwin setup. -%%% $Id: ChangeLog,v 1.1.2.16 2001/02/02 19:47:47 andyp Exp $ -$Revision: 1.1.2.16 $ +%%% $Id: ChangeLog,v 1.1.2.17 2001/02/08 07:20:42 martinb Exp $ +$Revision: 1.1.2.17 $ diff --git a/nt/ChangeLog b/nt/ChangeLog index dc6c984..ca87cd7 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,13 @@ +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-09 Martin Buchholz + + * config.h (HAVE_UTIME): New. + * config.h (HAVE_UTIME_H): Remove. + * config.h (HAVE_STRUCT_UTIMBUF): Remove. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/nt/config.h b/nt/config.h index 6dd1f1c..8d8dae2 100644 --- a/nt/config.h +++ b/nt/config.h @@ -150,7 +150,6 @@ Boston, MA 02111-1307, USA. */ #undef HAVE_MACH_MACH_H #undef HAVE_SYS_TIMEB_H #undef HAVE_UNISTD_H -#undef HAVE_UTIME_H #undef HAVE_SYS_WAIT_H #undef HAVE_LIBGEN_H #undef WORDS_BIGENDIAN @@ -175,9 +174,6 @@ Boston, MA 02111-1307, USA. */ /* Define if `sys_siglist' is declared by . */ #undef SYS_SIGLIST_DECLARED -/* Define if `struct utimbuf' is declared by . */ -#undef HAVE_STRUCT_UTIMBUF - /* Define if `struct timeval' is declared by . */ #define HAVE_TIMEVAL @@ -258,6 +254,7 @@ Boston, MA 02111-1307, USA. */ #undef HAVE_SIGSETJMP #define HAVE_STRERROR #undef HAVE_TZSET +#undef HAVE_UTIME #undef HAVE_UTIMES #undef HAVE_WAITPID #undef HAVE_VSNPRINTF diff --git a/src/ChangeLog b/src/ChangeLog index 5f44316..9977ef6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2002-08-13 MORIOKA Tomohiko + + * emacs.c (Vutf_2000_lisp_directory): New variable. + (Vconfigure_utf_2000_lisp_directory): Likewise. + (complex_vars_of_emacs): Add new variable + `utf-2000-lisp-directory' and `configure-utf-2000-lisp-directory'. + 2002-08-12 MORIOKA Tomohiko * char-ucs.h (DECODE_CHAR): Delete special code for @@ -4328,6 +4335,187 @@ (Vcharset_thai_tis620): Likewise. (Vcharset_katakana_jisx0201): Likewise. +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-21 Martin Buchholz + + * lisp-union.h (XSETINT): + (XSETCHAR): + (XSETOBJ): + Reverse previous change of 2001-02-06. + +2001-02-20 Matt Tucker + + Fix `VALID_BYTIND_P' crashes in regex.c when using narrowed + buffers. + * syntax.h (SYNTAX_CACHE_BYTE_TO_CHAR): + * syntax.h (SYNTAX_CACHE_OBJECT_BYTE_TO_CHAR): + Add `BI_BUF_BEGV' to bytepos before calculating bufpos. + * regex.c (POS_AS_IN_BUFFER): removed + * regex.c (re_search_2): + * regex.c (re_match_2): + Don't use an offset of 1 when calculating buffer positions, since + `BI_BUF_BEGV' does it already. + +2001-02-18 Wim Dumon + + * insdel.c (prepare_to_modify_buffer): Also check for + supersession when clash-detection is enabled. + +2001-02-17 Matt Tucker + + * regex.c (re_match_2_internal): + Convert temp characters from 'const unsigned char' to 're_char'. + Fix crashing bug with extended characters under mule. + * syntax.c (Qsyntax_table): Moved from vars_of_syntax to + syms_of_syntax. Use defsymbol to define. Fixes hanging bug with + font-lock, pdump, and new syntax-table code. + * syntax.c (find_start_of_comment): + (find_end_of_comment): + (forward-comment): + Fix crashing bugs involving moving beyond end of buffer. + * syntax.c (find_start_of_comment): + Fixed logic to allow proper detection of cases where the same + character is used to end both a two-char comment start and a + two-char comment end sequence. Fixes `(forward-comment -1)'. + * syntax.c (find_start_of_comment): + Return position just past last comment-end character for all cases + (previously was only done for two-char comment-end sequences). + * syntax.c (forward-comment): + Take value returned from `find_end_of_comment', rather than + incrementing it. + * syntax.h (SYNTAX_CACHE_BYTE_TO_CHAR): + Properly deal with BUFFERP (syntax_cache.object) + +2001-02-17 Martin Buchholz + + * alloc.c (Fgarbage_collect): + * alloc.c (make_bit_vector_from_byte_vector): + -Wsign-compare-correctness. + +2001-02-16 Martin Buchholz + + * lisp-union.h (XSETINT): Eliminate unnecessary temp var. + (XSETCHAR): Likewise. + (XSETOBJ): Likewise. + +2001-02-15 Martin Buchholz + + * mule-canna.c (canna-func-delete_previous): + Rename to canna-func-delete-previous. + +2001-02-14 Martin Buchholz + + * mule-ccl.c (ccl_driver): Warning suppression. Use countof. + +2001-02-13 Matt Tucker + + * font-lock.c (find_context): Fix C++ compile errors introduced by + recent patch + +2001-02-13 Martin Buchholz + + * s/aix4.h: Later versions of IBM C compiler need a bug workaround + pragma, but earlier ones barf on the same pragma. + +2001-02-06 Mike Sperber + + * emacs.c (complex_vars_of_emacs): Add `mule-lisp-directory' and + `configure-mule-lisp-directory'. + +2001-02-12 Martin Buchholz + + Make sure dump-id.c is compiled in the same way as other .c's. + Fixes pdump compilation failure with HP's cc, which defaults to K&R. + * dump-id.h: Remove. + * emacs.c: Move dump-id.h into dumper.h. + * dumper.h: Move dump-id.h into dumper.h. + * Makefile.in.in: + Use standard .c.o rule for building dump-id.o. + Remove preprocessor flags from link command. + Add dump-id.o to ${otherobjs} if PDUMP. + +2001-02-07 Matt Tucker + + Port FSF 20.7 syntax table improvements. + * syntax.c. + * syntax.h. + + Fixups for new syntax table stuff. + * dired.c: Include syntax.c. + (Fdirectory_files): Initialize regex_match_object and + regex_emacs_buffer. + * extents.h: EXFUN Fnext_extent_change, Fprevious_extent_change, + and Fget_char_property. + + Use ported FSF 20.7 syntax table improvements. + * font-lock.c. + * regex.c. + * search.c. + +2001-02-09 Martin Buchholz + + * regex.c (Boolean): Renamed to `re_bool', to avoid conflict with + Unixware's enum boolean from sys/types.h. + +2001-02-10 Martin Buchholz + + Fix support for building with latest Purify. + * Makefile.in.in (PURIFY_LIBS): Remove thread flags. + (PURIFY_FLAGS): Likewise. + +2001-02-09 Martin Buchholz + + * fileio.c (lisp_string_set_file_times): New. + * fileio.c (Fcopy_file): Use it. + Fixes bug: + (copy-file filename non-ascii-filename t t) + ==> No such file or directory, non-ascii-filename + +2001-02-10 Martin Buchholz + + * glyphs-x.c (generate_cursor_fg_bg): Avoid a warning. + USHRT_MAX seems clearer than ~0 anyways. + +2001-02-09 Martin Buchholz + + dumper improvements. Inspired by Olivier. + * dumper.c (pdump_max_align): New. + * dumper.c (pdump_add_entry): Use pdump_max_align. + * dumper.c (pdump_get_entry_list): Likewise. + * dumper.c (pdump_scan_by_alignment): Likewise. + Don't iterate through unnecessary alignments. + * dumper.c (pdump_file_get): No need to align result of malloc(). + * dumper.c (pdump_mallocadr): Remove. + The result of malloc() is guaranteed to be maximally aligned. + * dumper.c: s/elmt/elt/g; + * dumper.c (pdump_object_table): Allocate dynamically, not statically. + * dumper.c (pdump_alert_undump_object): Likewise. + * dumper.c (pdump_align_table): + Don't support alignments > 64. + Store ALIGNOF's, not shift counts, in table. + +2001-02-09 Martin Buchholz + + * s/mingw32.h (HAVE_STRUCT_UTIMBUF): Remove. + * s/windowsnt.h (HAVE_STRUCT_UTIMBUF): Remove. + * systime.h: Use HAVE_UTIME. + * sysdep.c (struct utimbuf): Remove. + * sysdep.c (set_file_times): Prefer utime() to utimes(). + * config.h.in (HAVE_UTIME): New. + * config.h.in (HAVE_UTIME_H): Remove. + * config.h.in (HAVE_STRUCT_UTIMBUF): Remove. + +2001-02-09 Martin Buchholz + + * s/aix4.h: Hide #pragmas inside #ifndef NOT_C_CODE. + +2001-02-08 Martin Buchholz + + * s/irix6-0.h: Use the standard system memmove, not bcopy. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/src/Makefile.in.in b/src/Makefile.in.in index bfc4a46..0b2c9cf 100644 --- a/src/Makefile.in.in +++ b/src/Makefile.in.in @@ -31,11 +31,10 @@ PROGNAME=@PROGNAME@ #ifdef PDUMP DUMP_TARGET = ${PROGNAME}.dmp EXE_TARGET = ${PROGNAME} -ID_FILE = dump-id.c +DUMP_ID = dump-id.o #else DUMP_TARGET = ${PROGNAME} EXE_TARGET = temacs -ID_FILE = #endif all: ${DUMP_TARGET} @@ -450,12 +449,11 @@ link_deps=\ $(start_files) ${objs} ${otherobjs}\ $(lwlib_deps) $(dynodump_deps) -temacs_deps=\ - $(link_deps) $(ID_FILE) +temacs_deps = $(link_deps) ${DUMP_ID} temacs_link_args=\ - ${start_flags} ${ldflags} -I${srcdir} \ - -o $@ ${start_files} ${objs} ${otherobjs} ${ID_FILE} ${LIBES} + ${start_flags} ${ldflags}\ + -o $@ ${start_files} ${objs} ${otherobjs} ${DUMP_ID} ${LIBES} ${EXE_TARGET}: $(temacs_deps) $(LD) $(temacs_link_args) @@ -512,14 +510,14 @@ debug-temacs: ${EXE_TARGET} ## ## Purify PURIFY_PROG = purify +PURIFY_LIBS = PURIFY_FLAGS =\ #ifdef PDUMP -search-mmaps=yes\ #endif - -chain-length=32 -ignore-signals=SIGPOLL -threads=yes\ - -cache-dir=${srcdir}/purecache -always-use-cache-dir=yes + -chain-length=32 -ignore-signals=SIGPOLL\ + -cache-dir=${blddir}/purecache -always-use-cache-dir=yes -PURIFY_LIBS = -lpthread puremacs: $(temacs_deps) $(PURIFY_PROG) $(PURIFY_FLAGS) $(LD) $(temacs_link_args) $(PURIFY_LIBS) cp $@ ${EXE_TARGET} diff --git a/src/alloc.c b/src/alloc.c index 23a6a91..a2bdb85 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1315,7 +1315,7 @@ make_bit_vector (size_t length, Lisp_Object bit) Lisp_Object make_bit_vector_from_byte_vector (unsigned char *bytevec, size_t length) { - int i; + size_t i; Lisp_Bit_Vector *p = make_bit_vector_internal (length); for (i = 0; i < length; i++) @@ -3537,7 +3537,7 @@ Garbage collection happens automatically if you cons more than ()) { Lisp_Object pl = Qnil; - int i; + unsigned int i; int gc_count_vector_total_size = 0; garbage_collect_1 (); @@ -3552,7 +3552,7 @@ Garbage collection happens automatically if you cons more than const char *name = lrecord_implementations_table[i]->name; int len = strlen (name); /* save this for the FSFmacs-compatible part of the summary */ - if (i == lrecord_vector.lrecord_type_index) + if (i == lrecord_type_vector) gc_count_vector_total_size = lcrecord_stats[i].bytes_in_use + lcrecord_stats[i].bytes_freed; diff --git a/src/config.h.in b/src/config.h.in index ca4037f..d3fbd1d 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -222,7 +222,6 @@ void *alloca (); #undef HAVE_SYS_UN_H #undef HAVE_ULIMIT_H #undef HAVE_UNISTD_H -#undef HAVE_UTIME_H #undef HAVE_SYS_WAIT_H #undef HAVE_LIBINTL_H @@ -253,9 +252,6 @@ void *alloca (); /* Is `sys_siglist' declared by ? */ #undef SYS_SIGLIST_DECLARED -/* Is `struct utimbuf' declared by ? */ -#undef HAVE_STRUCT_UTIMBUF - /* Is `struct timeval' declared by ? */ #undef HAVE_TIMEVAL @@ -329,6 +325,7 @@ void *alloca (); #undef HAVE_TZSET #undef HAVE_ULIMIT #undef HAVE_USLEEP +#undef HAVE_UTIME #undef HAVE_UTIMES #undef HAVE_WAITPID #undef HAVE_VSNPRINTF @@ -497,12 +494,12 @@ void *alloca (); determine where XEmacs' memory is going. */ #undef MEMORY_USAGE_STATS -/* Define QUANTIFY if using Quantify from Rational/Pure/Atria Software. +/* Define QUANTIFY if using Quantify from Rational Software. This adds some additional calls to control data collection. It is only intended for use by the developers. */ #undef QUANTIFY -/* Define QUANTIFY if using Purify from Rational/Pure/Atria Software. +/* Define PURIFY if using Purify from Rational Software. It is only intended for use by the developers. */ #undef PURIFY diff --git a/src/depend b/src/depend index 5bc8cc6..973c233 100644 --- a/src/depend +++ b/src/depend @@ -7,52 +7,52 @@ LISP_UNION_H=lisp-disunion.h #endif LISP_H=lisp.h config.h general-slots.h lrecord.h symeval.h symsinit.h $(LISP_UNION_H) #if defined(HAVE_MS_WINDOWS) -console-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h events.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h syscommctrl.h systime.h syswindows.h -device-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console-stream.h console.h device.h events.h faces.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysdep.h systime.h syswindows.h toolbar.h window.h winslots.h -dialog-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h syscommctrl.h syswindows.h toolbar.h window.h winslots.h -dired-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h nt.h regex.h sysdir.h sysfile.h sysproc.h systime.h syswindows.h -event-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console-tty.h console.h device.h dragdrop.h events-mod.h events.h faces.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar-msw.h menubar.h mule-charset.h multibyte.h objects-msw.h objects.h process.h redisplay.h scrollbar-msw.h scrollbar.h select.h specifier.h syscommctrl.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h syswindows.h toolbar.h window.h winslots.h -frame-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h -glyphs-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h elhash.h faces.h file-coding.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h imgproc.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h opaque.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysfile.h syswindows.h toolbar.h window.h winslots.h -gui-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h -menubar-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-msw.h console.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar-msw.h menubar.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h -objects-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h hash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h specifier.h syscommctrl.h syswindows.h -redisplay-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h debug.h device.h events.h faces.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h objects-msw.h objects.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysdep.h systime.h syswindows.h toolbar.h window.h winslots.h -scrollbar-msw.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-msw.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar-msw.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h -select-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h file-coding.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h select.h specifier.h syscommctrl.h syswindows.h toolbar.h window.h winslots.h -toolbar-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h device.h elhash.h faces.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h redisplay.h scrollbar.h specifier.h syscommctrl.h syswindows.h toolbar.h window.h winslots.h +console-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h elhash.h events.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h syscommctrl.h systime.h syswindows.h +device-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console-stream.h console.h database.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysdep.h systime.h syswindows.h toolbar.h window.h winslots.h +dialog-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h syscommctrl.h syswindows.h toolbar.h window.h winslots.h +dired-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h nt.h regex.h sysdir.h sysfile.h sysproc.h systime.h syswindows.h +event-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console-tty.h console.h database.h device.h dragdrop.h elhash.h events-mod.h events.h faces.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar-msw.h menubar.h mule-charset.h multibyte.h objects-msw.h objects.h process.h redisplay.h scrollbar-msw.h scrollbar.h select.h specifier.h syscommctrl.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h syswindows.h toolbar.h window.h winslots.h +frame-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h +glyphs-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h faces.h file-coding.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h imgproc.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h opaque.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysfile.h syswindows.h toolbar.h window.h winslots.h +gui-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h +menubar-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-msw.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar-msw.h menubar.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h +objects-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h hash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h specifier.h syscommctrl.h syswindows.h +redisplay-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h debug.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h objects-msw.h objects.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysdep.h systime.h syswindows.h toolbar.h window.h winslots.h +scrollbar-msw.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar-msw.h scrollbar.h specifier.h syscommctrl.h systime.h syswindows.h toolbar.h window.h winslots.h +select-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h file-coding.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h select.h specifier.h syscommctrl.h syswindows.h toolbar.h window.h winslots.h +toolbar-msw.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs-msw.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-msw.h objects.h redisplay.h scrollbar.h specifier.h syscommctrl.h syswindows.h toolbar.h window.h winslots.h #endif #if defined(HAVE_X_WINDOWS) -balloon-x.o: $(LISP_H) balloon_help.h char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-x.h console.h device.h mule-charset.h xintrinsic.h -console-x.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h redisplay.h xintrinsic.h -device-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h offix-types.h offix.h redisplay.h scrollbar.h specifier.h sysdep.h sysdll.h sysfile.h systime.h toolbar.h window.h winslots.h xgccache.h xintrinsic.h xintrinsicp.h xmu.h -dialog-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-x.h console.h device.h events.h frame.h frameslots.h glyphs.h gui-x.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h -frame-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h EmacsManager.h EmacsShell.h ExternalShell.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h dragdrop.h events-mod.h events.h extents.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h offix-types.h offix.h redisplay.h scrollbar-x.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h xmprimitivep.h xmu.h -glyphs-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h bitmaps.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h faces.h file-coding.h frame.h frameslots.h glyphs-x.h glyphs.h gui-x.h gui.h imgproc.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h opaque.h redisplay.h scrollbar.h specifier.h sysfile.h toolbar.h window.h winslots.h xintrinsic.h xmu.h -gui-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h events.h frame.h frameslots.h glyphs.h gui-x.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h -menubar-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-x.h console.h device.h events.h frame.h frameslots.h glyphs.h gui-x.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h -objects-x.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h specifier.h xintrinsic.h -redisplay-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h debug.h device.h faces.h file-coding.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h objects-x.h objects.h redisplay.h scrollbar.h specifier.h sysdep.h sysproc.h systime.h toolbar.h window.h winslots.h xgccache.h xintrinsic.h xintrinsicp.h xmprimitivep.h -scrollbar-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-x.h console.h device.h frame.h frameslots.h glyphs-x.h glyphs.h gui-x.h gui.h mule-charset.h redisplay.h scrollbar-x.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h -select-x.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h opaque.h redisplay.h scrollbar.h select.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h -toolbar-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h xmprimitivep.h +balloon-x.o: $(LISP_H) balloon_help.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h mule-charset.h xintrinsic.h +console-x.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h redisplay.h xintrinsic.h +device-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h offix-types.h offix.h redisplay.h scrollbar.h specifier.h sysdep.h sysdll.h sysfile.h systime.h toolbar.h window.h winslots.h xgccache.h xintrinsic.h xintrinsicp.h xmu.h +dialog-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-x.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui-x.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h +frame-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h EmacsManager.h EmacsShell.h ExternalShell.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h dragdrop.h elhash.h events-mod.h events.h extents.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h offix-types.h offix.h redisplay.h scrollbar-x.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h xmprimitivep.h xmu.h +glyphs-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h bitmaps.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h faces.h file-coding.h frame.h frameslots.h glyphs-x.h glyphs.h gui-x.h gui.h imgproc.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h opaque.h redisplay.h scrollbar.h specifier.h sysfile.h toolbar.h window.h winslots.h xintrinsic.h xmu.h +gui-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui-x.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h +menubar-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-x.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui-x.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h +objects-x.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h specifier.h xintrinsic.h +redisplay-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h debug.h device.h elhash.h faces.h file-coding.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h objects-x.h objects.h redisplay.h scrollbar.h specifier.h sysdep.h sysproc.h systime.h toolbar.h window.h winslots.h xgccache.h xintrinsic.h xintrinsicp.h xmprimitivep.h +scrollbar-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs-x.h glyphs.h gui-x.h gui.h mule-charset.h redisplay.h scrollbar-x.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h +select-x.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h opaque.h redisplay.h scrollbar.h select.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h +toolbar-x.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h xmprimitivep.h #endif #if defined(HAVE_TTY) -console-tty.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h device.h faces.h file-coding.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systty.h toolbar.h window.h winslots.h -device-tty.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h device.h events.h faces.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h -event-tty.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-tty.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h process.h redisplay.h scrollbar.h specifier.h sysproc.h syssignal.h systime.h systty.h syswait.h toolbar.h window.h winslots.h -frame-tty.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-tty.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h -objects-tty.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-tty.h console.h device.h insdel.h mule-charset.h objects-tty.h objects.h specifier.h syssignal.h systty.h -redisplay-tty.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h device.h events.h faces.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-tty.h objects.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h +console-tty.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h database.h device.h elhash.h faces.h file-coding.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systty.h toolbar.h window.h winslots.h +device-tty.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h database.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h +event-tty.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h process.h redisplay.h scrollbar.h specifier.h sysproc.h syssignal.h systime.h systty.h syswait.h toolbar.h window.h winslots.h +frame-tty.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h +objects-tty.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h database.h device.h elhash.h insdel.h mule-charset.h objects-tty.h objects.h specifier.h syssignal.h systty.h +redisplay-tty.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h database.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-tty.h objects.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h #endif #if defined(HAVE_DATABASE) -database.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfile.h +database.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfile.h #endif #if defined(MULE) -mule-canna.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h file-coding.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h -mule-ccl.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h file-coding.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h -mule-charset.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h elhash.h faces.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h -mule-wnnfns.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h sysdep.h window.h winslots.h +mule-canna.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h file-coding.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +mule-ccl.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h file-coding.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h +mule-charset.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h +mule-wnnfns.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h sysdep.h window.h winslots.h mule.o: $(LISP_H) regex.h #endif #if defined(EXTERNAL_WIDGET) @@ -62,123 +62,123 @@ ExternalShell.o: ExternalShell.h ExternalShellP.h config.h extw-Xlib.h extw-Xt.h extw-Xlib.o: config.h extw-Xlib.h extw-Xt.o: config.h extw-Xlib.h extw-Xt.h #endif -EmacsFrame.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h EmacsManager.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h xmprimitivep.h xmu.h +EmacsFrame.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h EmacsFrame.h EmacsFrameP.h EmacsManager.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs-x.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h xmprimitivep.h xmu.h EmacsManager.o: EmacsManager.h EmacsManagerP.h config.h xintrinsicp.h xmmanagerp.h EmacsShell-sub.o: EmacsShell.h EmacsShellP.h config.h xintrinsic.h xintrinsicp.h EmacsShell.o: EmacsShell.h ExternalShell.h config.h xintrinsicp.h -abbrev.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h syntax.h window.h winslots.h -alloc.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console.h device.h dumper.h elhash.h events.h extents.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h systime.h toolbar.h window.h winslots.h +abbrev.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h database.h elhash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h syntax.h window.h winslots.h +alloc.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console.h database.h device.h dumper.h elhash.h events.h extents.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h systime.h toolbar.h window.h winslots.h alloca.o: config.h balloon_help.o: balloon_help.h config.h xintrinsic.h blocktype.o: $(LISP_H) blocktype.h -buffer.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h elhash.h extents.h faces.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h redisplay.h scrollbar.h select.h specifier.h syntax.h sysdep.h sysfile.h toolbar.h window.h winslots.h -bytecode.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h syntax.h -callint.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h events.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h systime.h window.h winslots.h -callproc.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h file-coding.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h process.h redisplay.h scrollbar.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswindows.h window.h winslots.h -casefiddle.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h -casetab.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h -chartab.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h -cm.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-tty.h console.h device.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syssignal.h systty.h toolbar.h window.h winslots.h -cmdloop.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h -cmds.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h -console-stream.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-stream.h console-tty.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h -console.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h -data.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfloat.h syssignal.h +buffer.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h extents.h faces.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h redisplay.h scrollbar.h select.h specifier.h syntax.h sysdep.h sysfile.h toolbar.h window.h winslots.h +bytecode.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h syntax.h +callint.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h database.h elhash.h events.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h systime.h window.h winslots.h +callproc.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h database.h elhash.h file-coding.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h process.h redisplay.h scrollbar.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswindows.h window.h winslots.h +casefiddle.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h +casetab.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h +chartab.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h +cm.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syssignal.h systty.h toolbar.h window.h winslots.h +cmdloop.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h +cmds.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h database.h elhash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h +console-stream.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h +console.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h +data.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfloat.h syssignal.h debug.o: $(LISP_H) bytecode.h debug.h -device.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h toolbar.h window.h winslots.h +device.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events.h faces.h frame.h frameslots.h glyphs.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h syssignal.h systime.h toolbar.h window.h winslots.h dgif_lib.o: $(LISP_H) gifrlib.h sysfile.h -dialog.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console.h device.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -dired.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h opaque.h regex.h sysdep.h sysdir.h sysfile.h syspwd.h systime.h -doc.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h insdel.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfile.h -doprnt.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +dialog.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +dired.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h opaque.h regex.h syntax.h sysdep.h sysdir.h sysfile.h syspwd.h systime.h +doc.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h insdel.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfile.h +doprnt.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h dragdrop.o: $(LISP_H) dragdrop.h -dumper.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-stream.h console.h dump-id.h dumper.h elhash.h mule-charset.h nt.h specifier.h sysfile.h syswindows.h +dumper.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console.h database.h dumper.h elhash.h mule-charset.h nt.h specifier.h sysfile.h syswindows.h dynarr.o: $(LISP_H) ecrt0.o: config.h -editfns.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h events.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h line-number.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syspwd.h systime.h toolbar.h window.h winslots.h -eldap.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h eldap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h sysdep.h +editfns.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h events.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h line-number.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syspwd.h systime.h toolbar.h window.h winslots.h +eldap.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h eldap.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h sysdep.h elhash.o: $(LISP_H) bytecode.h elhash.h -emacs.o: $(LISP_H) backtrace.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h dump-id.h dumper.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h paths.h process.h redisplay.h scrollbar.h specifier.h sysdep.h sysdll.h sysfile.h syssignal.h systime.h systty.h syswindows.h toolbar.h window.h winslots.h -emodules.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h emodules.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h sysdll.h toolbar.h window.h winslots.h +emacs.o: $(LISP_H) backtrace.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h dumper.h elhash.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h paths.h process.h redisplay.h scrollbar.h specifier.h sysdep.h sysdll.h sysfile.h syssignal.h systime.h systty.h syswindows.h toolbar.h window.h winslots.h +emodules.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h emodules.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h sysdep.h sysdll.h toolbar.h window.h winslots.h esd.o: $(LISP_H) miscplay.h -eval.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h -event-Xt.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h Emacs.ad.h EmacsFrame.h blocktype.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console-x.h console.h device.h dragdrop.h elhash.h events-mod.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h offix-types.h offix.h process.h redisplay.h scrollbar.h specifier.h sysproc.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h -event-stream.o: $(LISP_H) blocktype.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h elhash.h events-mod.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h keymap.h lstream.h macros.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h process.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systime.h toolbar.h window.h winslots.h -event-unixoid.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-stream.h console-tty.h console.h device.h events.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h -events.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console-x.h console.h device.h events-mod.h events.h extents.h frame.h frameslots.h glyphs.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h xintrinsic.h -extents.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h debug.h device.h elhash.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h insdel.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h process.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -faces.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h elhash.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -file-coding.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h elhash.h file-coding.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h opaque.h -fileio.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h redisplay.h scrollbar.h specifier.h sysdep.h sysdir.h sysfile.h sysproc.h syspwd.h systime.h toolbar.h window.h winslots.h -filelock.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h paths.h sysdir.h sysfile.h syspwd.h syssignal.h +eval.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h +event-Xt.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h Emacs.ad.h EmacsFrame.h blocktype.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console-x.h console.h database.h device.h dragdrop.h elhash.h events-mod.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects-x.h objects.h offix-types.h offix.h process.h redisplay.h scrollbar.h specifier.h sysproc.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h xintrinsic.h xintrinsicp.h +event-stream.o: $(LISP_H) blocktype.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h events-mod.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h keymap.h lstream.h macros.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h process.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systime.h toolbar.h window.h winslots.h +event-unixoid.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h database.h device.h elhash.h events.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h +events.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-tty.h console-x.h console.h database.h device.h elhash.h events-mod.h events.h extents.h frame.h frameslots.h glyphs.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syssignal.h systime.h systty.h toolbar.h window.h winslots.h xintrinsic.h +extents.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h debug.h device.h elhash.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h insdel.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h process.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +faces.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +file-coding.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h file-coding.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h opaque.h +fileio.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h redisplay.h scrollbar.h specifier.h sysdep.h sysdir.h sysfile.h sysproc.h syspwd.h systime.h toolbar.h window.h winslots.h +filelock.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h paths.h sysdir.h sysfile.h syspwd.h syssignal.h filemode.o: $(LISP_H) sysfile.h floatfns.o: $(LISP_H) sysfloat.h syssignal.h -fns.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h events.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h sysfile.h systime.h toolbar.h window.h winslots.h -font-lock.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h -frame.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h events.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h +fns.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h redisplay.h scrollbar.h specifier.h sysfile.h systime.h toolbar.h window.h winslots.h +font-lock.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h +frame.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h free-hook.o: $(LISP_H) hash.h general.o: $(LISP_H) getloadavg.o: $(LISP_H) sysfile.h gif_io.o: config.h gifrlib.h sysfile.h -glyphs-eimage.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h faces.h file-coding.h frame.h frameslots.h gifrlib.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h redisplay.h scrollbar.h specifier.h sysfile.h toolbar.h window.h winslots.h -glyphs-widget.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h faces.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -glyphs.o: $(LISP_H) blocktype.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h rangetab.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +glyphs-eimage.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h file-coding.h frame.h frameslots.h gifrlib.h glyphs.h gui.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h redisplay.h scrollbar.h specifier.h sysfile.h toolbar.h window.h winslots.h +glyphs-widget.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +glyphs.o: $(LISP_H) blocktype.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h rangetab.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h gmalloc.o: config.h getpagesize.h -gpmevent.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h commands.h conslots.h console-tty.h console.h device.h events-mod.h events.h gpmevent.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h sysdep.h sysproc.h syssignal.h systime.h systty.h -gui.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h elhash.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h -gutter.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +gpmevent.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-tty.h console.h database.h device.h elhash.h events-mod.h events.h gpmevent.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h sysdep.h sysproc.h syssignal.h systime.h systty.h +gui.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +gutter.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h hash.o: $(LISP_H) hash.h hftctl.o: $(LISP_H) hpplay.o: $(LISP_H) nativesound.h imgproc.o: $(LISP_H) imgproc.h -indent.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +indent.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h extents.h faces.h frame.h frameslots.h glyphs.h gui.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h inline.o: $(LISP_H) $(LWLIB_SRCDIR)/lwlib.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h device.h eldap.h elhash.h events.h extents.h faces.h file-coding.h frame.h frameslots.h glyphs-x.h glyphs.h gui-x.h gui.h keymap.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h postgresql.h process.h rangetab.h redisplay.h scrollbar.h specifier.h syntax.h syscommctrl.h systime.h syswindows.h toolbar.h tooltalk.h window.h winslots.h xintrinsic.h -input-method-motif.o: $(LISP_H) EmacsFrame.h char-1byte.h char-lb.h char-ucs.h character.h conslots.h console-x.h console.h device.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h -input-method-xlib.o: $(LISP_H) EmacsFrame.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h -insdel.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h line-number.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -intl.o: $(LISP_H) bytecode.h char-1byte.h char-lb.h char-ucs.h character.h conslots.h console.h device.h mule-charset.h -keymap.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h elhash.h events-mod.h events.h frame.h frameslots.h glyphs.h gui.h insdel.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h +input-method-motif.o: $(LISP_H) EmacsFrame.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xintrinsic.h +input-method-xlib.o: $(LISP_H) EmacsFrame.h buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h xintrinsic.h +insdel.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h line-number.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +intl.o: $(LISP_H) bytecode.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h mule-charset.h +keymap.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events-mod.h events.h frame.h frameslots.h glyphs.h gui.h insdel.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h lastfile.o: config.h libsst.o: $(LISP_H) libsst.h -line-number.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h line-number.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +line-number.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h line-number.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h linuxplay.o: $(LISP_H) miscplay.h nativesound.h sysfile.h syssignal.h -lread.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h elhash.h file-coding.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h sysfile.h sysfloat.h -lstream.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfile.h -macros.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h keymap.h macros.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h +lread.o: $(LISP_H) buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h file-coding.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h sysfile.h sysfloat.h +lstream.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h sysfile.h +macros.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h keymap.h macros.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h malloc.o: config.h getpagesize.h -marker.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h -md5.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h file-coding.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h -menubar.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h frame.h frameslots.h glyphs.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -minibuf.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-stream.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h +marker.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +md5.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h file-coding.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +menubar.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h keymap.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +minibuf.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-stream.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h systime.h toolbar.h window.h winslots.h miscplay.o: $(LISP_H) miscplay.h sysfile.h syssignal.h nas.o: $(LISP_H) sysdep.h syssignal.h nt.o: $(LISP_H) ndir.h nt.h ntheap.h sysdir.h sysfile.h sysproc.h syspwd.h syssignal.h systime.h syswindows.h ntheap.o: $(LISP_H) ntheap.h syswindows.h ntplay.o: $(LISP_H) nativesound.h nt.h sysfile.h syswindows.h -ntproc.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h ntheap.h process.h syscommctrl.h sysfile.h sysproc.h syssignal.h systime.h syswait.h syswindows.h -objects.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +ntproc.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h ntheap.h process.h syscommctrl.h sysfile.h sysproc.h syssignal.h systime.h syswait.h syswindows.h +objects.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h offix.o: offix-cursors.h offix-types.h offix.h xintrinsic.h opaque.o: $(LISP_H) opaque.h -postgresql.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h postgresql.h sysdep.h -print.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console-stream.h console-tty.h console.h device.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysfile.h syssignal.h systty.h syswindows.h toolbar.h window.h winslots.h -process-nt.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h hash.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h process.h procimpl.h syscommctrl.h sysdep.h syswindows.h -process-unix.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h hash.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h process.h procimpl.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h toolbar.h window.h winslots.h -process.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h hash.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h process.h procimpl.h redisplay.h scrollbar.h specifier.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h toolbar.h window.h winslots.h +postgresql.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h postgresql.h sysdep.h +print.o: $(LISP_H) backtrace.h buffer.h bufslots.h bytecode.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console-stream.h console-tty.h console.h database.h device.h elhash.h extents.h frame.h frameslots.h glyphs.h gui.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h syscommctrl.h sysfile.h syssignal.h systty.h syswindows.h toolbar.h window.h winslots.h +process-nt.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-msw.h console.h database.h elhash.h hash.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nt.h process.h procimpl.h syscommctrl.h sysdep.h syswindows.h +process-unix.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h hash.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h process.h procimpl.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h toolbar.h window.h winslots.h +process.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h events.h file-coding.h frame.h frameslots.h glyphs.h gui.h hash.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h process.h procimpl.h redisplay.h scrollbar.h specifier.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h toolbar.h window.h winslots.h profile.o: $(LISP_H) backtrace.h bytecode.h elhash.h hash.h syssignal.h systime.h ralloc.o: $(LISP_H) getpagesize.h rangetab.o: $(LISP_H) rangetab.h realpath.o: $(LISP_H) syswindows.h -redisplay-output.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -redisplay.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-tty.h console.h debug.h device.h elhash.h extents.h faces.h file-coding.h frame.h frameslots.h glyphs.h gui.h gutter.h insdel.h line-number.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h objects.h process.h redisplay.h scrollbar.h specifier.h sysfile.h syssignal.h systty.h toolbar.h window.h winslots.h -regex.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h regex.h syntax.h -scrollbar.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -search.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h regex.h syntax.h -select.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h extents.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h redisplay.h scrollbar.h select.h specifier.h toolbar.h window.h winslots.h +redisplay-output.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +redisplay.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console-tty.h console.h database.h debug.h device.h elhash.h extents.h faces.h file-coding.h frame.h frameslots.h glyphs.h gui.h gutter.h insdel.h line-number.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h menubar.h mule-charset.h multibyte.h objects.h process.h redisplay.h scrollbar.h specifier.h sysfile.h syssignal.h systty.h toolbar.h window.h winslots.h +regex.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h regex.h syntax.h +scrollbar.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +search.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h insdel.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h regex.h syntax.h +select.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h extents.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h opaque.h redisplay.h scrollbar.h select.h specifier.h toolbar.h window.h winslots.h sgiplay.o: $(LISP_H) libst.h sheap.o: $(LISP_H) sheap-adjust.h -signal.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systime.h toolbar.h window.h winslots.h -sound.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h device.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nativesound.h redisplay.h sysdep.h sysfile.h sysproc.h systime.h xintrinsic.h -specifier.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h rangetab.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +signal.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mule-charset.h redisplay.h scrollbar.h specifier.h sysdep.h sysfile.h syssignal.h systime.h toolbar.h window.h winslots.h +sound.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-x.h console.h database.h device.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h nativesound.h redisplay.h sysdep.h sysfile.h sysproc.h systime.h xintrinsic.h +specifier.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h rangetab.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h strcat.o: config.h strcmp.o: config.h strcpy.o: config.h @@ -186,18 +186,18 @@ strftime.o: $(LISP_H) sunOS-fix.o: config.h sunplay.o: $(LISP_H) nativesound.h sysdep.h syssignal.h sunpro.o: $(LISP_H) -symbols.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h -syntax.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h -sysdep.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h device.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h nt.h ntheap.h process.h redisplay.h scrollbar.h specifier.h sysdep.h sysdir.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h syswindows.h toolbar.h window.h winslots.h +symbols.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +syntax.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h extents.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syntax.h +sysdep.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console-stream.h console-tty.h console.h database.h device.h elhash.h events.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h ndir.h nt.h ntheap.h process.h redisplay.h scrollbar.h specifier.h sysdep.h sysdir.h sysfile.h sysproc.h syssignal.h systime.h systty.h syswait.h syswindows.h toolbar.h window.h winslots.h sysdll.o: config.h sysdll.h -termcap.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h conslots.h console.h device.h mule-charset.h +termcap.o: $(LISP_H) char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h mule-charset.h terminfo.o: config.h -tests.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h -text-coding.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h elhash.h file-coding.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h opaque.h -toolbar.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h device.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h -tooltalk.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h syssignal.h tooltalk.h +tests.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h opaque.h +text-coding.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h file-coding.h insdel.h lstream.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-ccl.h mule-charset.h multibyte.h opaque.h +toolbar.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h conslots.h console.h database.h device.h elhash.h frame.h frameslots.h glyphs.h gui.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +tooltalk.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h process.h syssignal.h tooltalk.h tparam.o: config.h -undo.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h extents.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +undo.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h extents.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h unexaix.o: $(LISP_H) getpagesize.h unexalpha.o: config.h unexapollo.o: config.h @@ -214,8 +214,8 @@ unexmips.o: config.h getpagesize.h unexnt.o: $(LISP_H) nt.h ntheap.h syswindows.h unexsunos4.o: config.h vm-limit.o: $(LISP_H) mem-limits.h -widget.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h -win32.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syswindows.h -window.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h +widget.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h +win32.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h database.h elhash.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h syswindows.h +window.o: $(LISP_H) buffer.h bufslots.h casetab.h char-1byte.h char-lb.h char-ucs.h character.h chartab.h commands.h conslots.h console.h database.h device.h elhash.h faces.h frame.h frameslots.h glyphs.h gui.h gutter.h mb-1byte.h mb-lb.h mb-multibyte.h mb-utf-8.h mule-charset.h multibyte.h objects.h redisplay.h scrollbar.h specifier.h toolbar.h window.h winslots.h xgccache.o: $(LISP_H) hash.h xgccache.h xmu.o: config.h diff --git a/src/dired.c b/src/dired.c index 48f9a28..bfbae2d 100644 --- a/src/dired.c +++ b/src/dired.c @@ -33,6 +33,7 @@ Boston, MA 02111-1307, USA. */ #include "elhash.h" #include "regex.h" #include "opaque.h" +#include "syntax.h" Lisp_Object Vcompletion_ignored_extensions; Lisp_Object Qdirectory_files; @@ -123,6 +124,9 @@ If FILES-ONLY is the symbol t, then only the "files" in the directory if (!d) report_file_error ("Opening directory", list1 (directory)); + regex_match_object = Qt; + regex_emacs_buffer = current_buffer; + record_unwind_protect (close_directory_unwind, make_opaque_ptr ((void *)d)); /* Loop reading blocks */ diff --git a/src/dump-id.h b/src/dump-id.h deleted file mode 100644 index 45dc9c1..0000000 --- a/src/dump-id.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef INCLUDED_dump_id_h_ -#define INCLUDED_dump_id_h_ - -extern unsigned int dump_id; - -#endif diff --git a/src/dumper.c b/src/dumper.c index 8def746..570da5b 100644 --- a/src/dumper.c +++ b/src/dumper.c @@ -24,7 +24,6 @@ Boston, MA 02111-1307, USA. */ #include #include "lisp.h" -#include "dump-id.h" #include "specifier.h" #include "elhash.h" #include "sysfile.h" @@ -227,60 +226,54 @@ static HANDLE pdump_hMap = INVALID_HANDLE_VALUE; static void (*pdump_free) (void); -static const unsigned char pdump_align_table[256] = +static unsigned char pdump_align_table[] = { - 8, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, - 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0 + 64, 1, 2, 1, 4, 1, 2, 1, 8, 1, 2, 1, 4, 1, 2, 1, + 16, 1, 2, 1, 4, 1, 2, 1, 8, 1, 2, 1, 4, 1, 2, 1, + 32, 1, 2, 1, 4, 1, 2, 1, 8, 1, 2, 1, 4, 1, 2, 1, + 16, 1, 2, 1, 4, 1, 2, 1, 8, 1, 2, 1, 4, 1, 2, 1 }; -typedef struct pdump_entry_list_elmt +static inline unsigned int +pdump_size_to_align (size_t size) { - struct pdump_entry_list_elmt *next; + return pdump_align_table[size % countof (pdump_align_table)]; +} + +typedef struct pdump_entry_list_elt +{ + struct pdump_entry_list_elt *next; const void *obj; size_t size; int count; EMACS_INT save_offset; -} pdump_entry_list_elmt; +} pdump_entry_list_elt; typedef struct { - pdump_entry_list_elmt *first; + pdump_entry_list_elt *first; int align; int count; } pdump_entry_list; -typedef struct pdump_struct_list_elmt +typedef struct pdump_struct_list_elt { pdump_entry_list list; const struct struct_description *sdesc; -} pdump_struct_list_elmt; +} pdump_struct_list_elt; typedef struct { - pdump_struct_list_elmt *list; + pdump_struct_list_elt *list; int count; int size; } pdump_struct_list; -static pdump_entry_list pdump_object_table[256]; +static pdump_entry_list *pdump_object_table; static pdump_entry_list pdump_opaque_data_list; static pdump_struct_list pdump_struct_table; -static int pdump_alert_undump_object[256]; +static int *pdump_alert_undump_object; static unsigned long cur_offset; static size_t max_size; @@ -294,7 +287,7 @@ static FILE *pdump_out; #define PDUMP_HASHSIZE 200001 #endif -static pdump_entry_list_elmt **pdump_hash; +static pdump_entry_list_elt **pdump_hash; /* Since most pointers are eight bytes aligned, the >>3 allows for a better hash */ static int @@ -303,11 +296,11 @@ pdump_make_hash (const void *obj) return ((unsigned long)(obj)>>3) % PDUMP_HASHSIZE; } -static pdump_entry_list_elmt * +static pdump_entry_list_elt * pdump_get_entry (const void *obj) { int pos = pdump_make_hash (obj); - pdump_entry_list_elmt *e; + pdump_entry_list_elt *e; assert (obj != 0); @@ -327,8 +320,7 @@ static void pdump_add_entry (pdump_entry_list *list, const void *obj, size_t size, int count) { - pdump_entry_list_elmt *e; - int align; + pdump_entry_list_elt *e; int pos = pdump_make_hash (obj); while ((e = pdump_hash[pos]) != 0) @@ -341,7 +333,7 @@ pdump_add_entry (pdump_entry_list *list, const void *obj, size_t size, pos = 0; } - e = xnew (pdump_entry_list_elmt); + e = xnew (pdump_entry_list_elt); e->next = list->first; e->obj = obj; @@ -352,10 +344,12 @@ pdump_add_entry (pdump_entry_list *list, const void *obj, size_t size, list->count += count; pdump_hash[pos] = e; - align = pdump_align_table[size & 255]; + { + int align = pdump_size_to_align (size); - if (align < list->align) - list->align = align; + if (align < list->align) + list->align = align; + } } static pdump_entry_list * @@ -372,12 +366,12 @@ pdump_get_entry_list (const struct struct_description *sdesc) pdump_struct_table.size = 10; else pdump_struct_table.size = pdump_struct_table.size * 2; - pdump_struct_table.list = (pdump_struct_list_elmt *) + pdump_struct_table.list = (pdump_struct_list_elt *) xrealloc (pdump_struct_table.list, - pdump_struct_table.size * sizeof (pdump_struct_list_elmt)); + pdump_struct_table.size * sizeof (pdump_struct_list_elt)); } pdump_struct_table.list[pdump_struct_table.count].list.first = 0; - pdump_struct_table.list[pdump_struct_table.count].list.align = 8; + pdump_struct_table.list[pdump_struct_table.count].list.align = ALIGNOF (max_align_t); pdump_struct_table.list[pdump_struct_table.count].list.count = 0; pdump_struct_table.list[pdump_struct_table.count].sdesc = sdesc; @@ -632,15 +626,15 @@ pdump_register_struct (const void *data, } static void -pdump_dump_data (pdump_entry_list_elmt *elmt, +pdump_dump_data (pdump_entry_list_elt *elt, const struct lrecord_description *desc) { - size_t size = elmt->size; - int count = elmt->count; + size_t size = elt->size; + int count = elt->count; if (desc) { int pos, i; - memcpy (pdump_buf, elmt->obj, size*count); + memcpy (pdump_buf, elt->obj, size*count); for (i=0; iobj))->methods->extra_description; + desc = ((const Lisp_Specifier *)(elt->obj))->methods->extra_description; goto restart; case XD_SIZE_T: case XD_INT: @@ -663,7 +657,7 @@ pdump_dump_data (pdump_entry_list_elmt *elmt, { EMACS_INT val = desc[pos].data1; if (XD_IS_INDIRECT (val)) - val = pdump_get_indirect_count (val, desc, elmt->obj); + val = pdump_get_indirect_count (val, desc, elt->obj); *(int *)rdata = val; break; } @@ -679,15 +673,15 @@ pdump_dump_data (pdump_entry_list_elmt *elmt, case XD_LO_LINK: { Lisp_Object obj = *(Lisp_Object *)rdata; - pdump_entry_list_elmt *elmt1; + pdump_entry_list_elt *elt1; for (;;) { - elmt1 = pdump_get_entry (XRECORD_LHEADER (obj)); - if (elmt1) + elt1 = pdump_get_entry (XRECORD_LHEADER (obj)); + if (elt1) break; obj = *(Lisp_Object *)(desc[pos].offset + (char *)(XRECORD_LHEADER (obj))); } - *(EMACS_INT *)rdata = elmt1->save_offset; + *(EMACS_INT *)rdata = elt1->save_offset; break; } case XD_LISP_OBJECT: @@ -706,7 +700,7 @@ pdump_dump_data (pdump_entry_list_elmt *elmt, EMACS_INT num = desc[pos].data1; int j; if (XD_IS_INDIRECT (num)) - num = pdump_get_indirect_count (num, desc, elmt->obj); + num = pdump_get_indirect_count (num, desc, elt->obj); for (j=0; jobj, size, count, pdump_out); + fwrite (desc ? pdump_buf : elt->obj, size, count, pdump_out); } static void @@ -810,58 +804,43 @@ pdump_reloc_one (void *data, EMACS_INT delta, } static void -pdump_allocate_offset (pdump_entry_list_elmt *elmt, +pdump_allocate_offset (pdump_entry_list_elt *elt, const struct lrecord_description *desc) { - size_t size = elmt->count * elmt->size; - elmt->save_offset = cur_offset; + size_t size = elt->count * elt->size; + elt->save_offset = cur_offset; if (size>max_size) max_size = size; cur_offset += size; } static void -pdump_scan_by_alignment (void (*f)(pdump_entry_list_elmt *, +pdump_scan_by_alignment (void (*f)(pdump_entry_list_elt *, const struct lrecord_description *)) { - int align, i; - const struct lrecord_description *idesc; - pdump_entry_list_elmt *elmt; - for (align=8; align>=0; align--) + int align; + + for (align = ALIGNOF (max_align_t); align; align>>=1) { + int i; + pdump_entry_list_elt *elt; + for (i=0; idescription; - while (elmt) - { - f (elmt, idesc); - elmt = elmt->next; - } - } + for (elt = pdump_object_table[i].first; elt; elt = elt->next) + f (elt, lrecord_implementations_table[i]->description); for (i=0; idescription; - while (elmt) - { - f (elmt, idesc); - elmt = elmt->next; - } - } - - elmt = pdump_opaque_data_list.first; - while (elmt) { - if (pdump_align_table[elmt->size & 255] == align) - f (elmt, 0); - elmt = elmt->next; + pdump_struct_list_elt list = pdump_struct_table.list[i]; + if (list.list.align == align) + for (elt = list.list.first; elt; elt = elt->next) + f (elt, list.sdesc->description); } + + for (elt = pdump_opaque_data_list.first; elt; elt = elt->next) + if (pdump_size_to_align (elt->size) == align) + f (elt, 0); } } @@ -896,22 +875,22 @@ static void pdump_dump_rtables (void) { int i; - pdump_entry_list_elmt *elmt; + pdump_entry_list_elt *elt; pdump_reloc_table rt; for (i=0; idescription; rt.count = pdump_object_table[i].count; PDUMP_WRITE_ALIGNED (pdump_reloc_table, rt); - while (elmt) + while (elt) { - EMACS_INT rdata = pdump_get_entry (elmt->obj)->save_offset; + EMACS_INT rdata = pdump_get_entry (elt->obj)->save_offset; PDUMP_WRITE_ALIGNED (EMACS_INT, rdata); - elmt = elmt->next; + elt = elt->next; } } @@ -921,20 +900,20 @@ pdump_dump_rtables (void) for (i=0; idescription; rt.count = pdump_struct_table.list[i].list.count; PDUMP_WRITE_ALIGNED (pdump_reloc_table, rt); - while (elmt) + while (elt) { - EMACS_INT rdata = pdump_get_entry (elmt->obj)->save_offset; + EMACS_INT rdata = pdump_get_entry (elt->obj)->save_offset; int j; - for (j=0; jcount; j++) + for (j=0; jcount; j++) { PDUMP_WRITE_ALIGNED (EMACS_INT, rdata); - rdata += elmt->size; + rdata += elt->size; } - elmt = elmt->next; + elt = elt->next; } } rt.desc = 0; @@ -957,27 +936,27 @@ pdump_dump_root_objects (void) pdump_static_Lisp_Object obj; obj.address = Dynarr_at (pdump_root_objects, i); obj.value = * obj.address; - + if (POINTER_TYPE_P (XTYPE (obj.value))) obj.value = wrap_object ((void *) pdump_get_entry (XRECORD_LHEADER (obj.value))->save_offset); - + PDUMP_WRITE (pdump_static_Lisp_Object, obj); } for (i=0; idescription; for (pos = 0; desc[pos].type != XD_LO_LINK; pos++) @@ -985,7 +964,7 @@ pdump_dump_root_objects (void) obj.value = *(Lisp_Object *)(desc[pos].offset + (char *)(XRECORD_LHEADER (obj.value))); } - obj.value = wrap_object ((void *) elmt->save_offset); + obj.value = wrap_object ((void *) elt->save_offset); PDUMP_WRITE (pdump_static_Lisp_Object, obj); } @@ -999,6 +978,15 @@ pdump (void) int none; pdump_header header; + pdump_object_table = xnew_array (pdump_entry_list, lrecord_type_count); + pdump_alert_undump_object = xnew_array (int, lrecord_type_count); + + assert (ALIGNOF (max_align_t) <= pdump_align_table[0]); + + for (i = 0; i < countof (pdump_align_table); i++) + if (pdump_align_table[i] > ALIGNOF (max_align_t)) + pdump_align_table[i] = ALIGNOF (max_align_t); + flush_all_buffer_local_cache (); /* These appear in a DEFVAR_LISP, which does a staticpro() */ @@ -1011,12 +999,12 @@ pdump (void) dump_add_opaque (&lrecord_markers, lrecord_type_count * sizeof (lrecord_markers[0])); - pdump_hash = xnew_array_and_zero (pdump_entry_list_elmt *, PDUMP_HASHSIZE); + pdump_hash = xnew_array_and_zero (pdump_entry_list_elt *, PDUMP_HASHSIZE); for (i=0; i 1) && (BUF_FETCH_CHAR (buf, pt - 1) == '\\')); /* Note that the BOL context cache may not be at the beginning @@ -388,24 +392,24 @@ setup_context_cache (struct buffer *buf, Bufpos pt) } } -#define SYNTAX_START_STYLE(table, c1, c2) \ - (SYNTAX_STYLES_MATCH_START_P (table, c1, c2, SYNTAX_COMMENT_STYLE_A) ? \ - comment_style_a : \ - SYNTAX_STYLES_MATCH_START_P (table, c1, c2, SYNTAX_COMMENT_STYLE_B) ? \ - comment_style_b : \ - comment_style_none) - -#define SYNTAX_END_STYLE(table, c1, c2) \ - (SYNTAX_STYLES_MATCH_END_P (table, c1, c2, SYNTAX_COMMENT_STYLE_A) ? \ +#define SYNTAX_START_STYLE(c1, c2) \ + (SYNTAX_CODES_MATCH_START_P (c1, c2, SYNTAX_COMMENT_STYLE_A) ? \ comment_style_a : \ - SYNTAX_STYLES_MATCH_END_P (table, c1, c2, SYNTAX_COMMENT_STYLE_B) ? \ + SYNTAX_CODES_MATCH_START_P (c1, c2, SYNTAX_COMMENT_STYLE_B) ? \ comment_style_b : \ comment_style_none) -#define SINGLE_SYNTAX_STYLE(table, c) \ - (SYNTAX_STYLES_MATCH_1CHAR_P (table, c, SYNTAX_COMMENT_STYLE_A) ? \ +#define SYNTAX_END_STYLE(c1, c2) \ + (SYNTAX_CODES_MATCH_END_P (c1, c2, SYNTAX_COMMENT_STYLE_A) ? \ + comment_style_a : \ + SYNTAX_CODES_MATCH_END_P (c1, c2, SYNTAX_COMMENT_STYLE_B) ? \ + comment_style_b : \ + comment_style_none) + +#define SINGLE_SYNTAX_STYLE(c) \ + (SYNTAX_CODE_MATCHES_1CHAR_P (c, SYNTAX_COMMENT_STYLE_A) ? \ comment_style_a : \ - SYNTAX_STYLES_MATCH_1CHAR_P (table, c, SYNTAX_COMMENT_STYLE_B) ? \ + SYNTAX_CODE_MATCHES_1CHAR_P (c, SYNTAX_COMMENT_STYLE_B) ? \ comment_style_b : \ comment_style_none) @@ -415,21 +419,31 @@ static void find_context (struct buffer *buf, Bufpos pt) { /* This function can GC */ +#ifndef emacs #ifdef UTF2000 Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); #else Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); #endif Lisp_Object syntaxtab = buf->syntax_table; +#endif Emchar prev_c, c; + int prev_syncode, syncode; Bufpos target = pt; setup_context_cache (buf, pt); pt = context_cache.cur_point; + SETUP_SYNTAX_CACHE (pt - 1, 1); if (pt > BUF_BEGV (buf)) - c = BUF_FETCH_CHAR (buf, pt - 1); + { + c = BUF_FETCH_CHAR (buf, pt - 1); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); + } else - c = '\n'; /* to get bol_context_cache at point-min */ + { + c = '\n'; /* to get bol_context_cache at point-min */ + syncode = Swhitespace; + } for (; pt < target; pt++, context_cache.cur_point = pt) { @@ -464,8 +478,11 @@ find_context (struct buffer *buf, Bufpos pt) } } + UPDATE_SYNTAX_CACHE_FORWARD (pt); prev_c = c; + prev_syncode = syncode; c = BUF_FETCH_CHAR (buf, pt); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); if (prev_c == '\n') bol_context_cache = context_cache; @@ -476,7 +493,7 @@ find_context (struct buffer *buf, Bufpos pt) continue; } - switch (SYNTAX (mirrortab, c)) + switch (SYNTAX_FROM_CACHE (mirrortab, c)) { case Sescape: context_cache.backslash_p = 1; @@ -497,13 +514,13 @@ find_context (struct buffer *buf, Bufpos pt) { context_cache.context = context_comment; context_cache.ccontext = ccontext_none; - context_cache.style = SINGLE_SYNTAX_STYLE (mirrortab, c); + context_cache.style = SINGLE_SYNTAX_STYLE (syncode); if (context_cache.style == comment_style_none) abort (); } break; case Sendcomment: - if (context_cache.style != SINGLE_SYNTAX_STYLE (mirrortab, c)) + if (context_cache.style != SINGLE_SYNTAX_STYLE (syncode)) ; else if (context_cache.context == context_comment) { @@ -530,7 +547,8 @@ find_context (struct buffer *buf, Bufpos pt) } else if (context_cache.context == context_none) { - Lisp_Object stringtermobj = syntax_match (syntaxtab, c); + Lisp_Object stringtermobj = + syntax_match (syntax_cache.current_syntax_table, c); Emchar stringterm; if (CHARP (stringtermobj)) @@ -543,6 +561,35 @@ find_context (struct buffer *buf, Bufpos pt) } break; } + + case Scomment_fence: + { + if (context_cache.context == context_generic_comment) + { + context_cache.context = context_none; + } + else if (context_cache.context == context_none) + { + context_cache.context = context_generic_comment; + context_cache.ccontext = ccontext_none; + } + break; + } + + case Sstring_fence: + { + if (context_cache.context == context_generic_string) + { + context_cache.context = context_none; + } + else if (context_cache.context == context_none) + { + context_cache.context = context_generic_string; + context_cache.ccontext = ccontext_none; + } + break; + } + default: ; } @@ -551,18 +598,18 @@ find_context (struct buffer *buf, Bufpos pt) Now we've got to hack multi-char sequences that start and end block comments. */ - if ((SYNTAX_COMMENT_BITS (mirrortab, c) & + if ((SYNTAX_CODE_COMMENT_BITS (syncode) & SYNTAX_SECOND_CHAR_START) && context_cache.context == context_none && context_cache.ccontext == ccontext_start1 && - SYNTAX_START_P (mirrortab, prev_c, c) /* the two chars match */ + SYNTAX_CODES_START_P (prev_syncode, syncode) /* the two chars match */ ) { context_cache.ccontext = ccontext_start2; - context_cache.style = SYNTAX_START_STYLE (mirrortab, prev_c, c); + context_cache.style = SYNTAX_START_STYLE (prev_syncode, syncode); if (context_cache.style == comment_style_none) abort (); } - else if ((SYNTAX_COMMENT_BITS (mirrortab, c) & + else if ((SYNTAX_CODE_COMMENT_BITS (syncode) & SYNTAX_FIRST_CHAR_START) && context_cache.context == context_none && (context_cache.ccontext == ccontext_none || @@ -571,29 +618,30 @@ find_context (struct buffer *buf, Bufpos pt) context_cache.ccontext = ccontext_start1; context_cache.style = comment_style_none; /* should be this already*/ } - else if ((SYNTAX_COMMENT_BITS (mirrortab, c) & + else if ((SYNTAX_CODE_COMMENT_BITS (syncode) & SYNTAX_SECOND_CHAR_END) && context_cache.context == context_block_comment && context_cache.ccontext == ccontext_end1 && - SYNTAX_END_P (mirrortab, prev_c, c) && + SYNTAX_CODES_END_P (prev_syncode, syncode) && /* the two chars match */ context_cache.style == - SYNTAX_END_STYLE (mirrortab, prev_c, c) + SYNTAX_END_STYLE (prev_syncode, syncode) ) { context_cache.context = context_none; context_cache.ccontext = ccontext_none; context_cache.style = comment_style_none; } - else if ((SYNTAX_COMMENT_BITS (mirrortab, c) & + else if ((SYNTAX_CODE_COMMENT_BITS (syncode) & SYNTAX_FIRST_CHAR_END) && context_cache.context == context_block_comment && - (context_cache.style == - SYNTAX_END_STYLE (mirrortab, c, - BUF_FETCH_CHAR (buf, pt+1))) && + context_cache.style == SINGLE_SYNTAX_STYLE (syncode) && (context_cache.ccontext == ccontext_start2 || context_cache.ccontext == ccontext_end1)) - /* #### is it right to check for end1 here?? */ + /* #### is it right to check for end1 here?? + yes, because this might be a repetition of the first char + of a comment-end sequence. ie, '/xxx foo xxx/' or + '/xxx foo x/', where 'x' = '*' -- mct */ { if (context_cache.style == comment_style_none) abort (); context_cache.ccontext = ccontext_end1; @@ -632,10 +680,12 @@ context_to_symbol (enum syntactic_context context) { switch (context) { - case context_none: return Qnil; - case context_string: return Qstring; - case context_comment: return Qcomment; - case context_block_comment: return Qblock_comment; + case context_none: return Qnil; + case context_string: return Qstring; + case context_comment: return Qcomment; + case context_block_comment: return Qblock_comment; + case context_generic_comment: return Qblock_comment; + case context_generic_string: return Qstring; default: abort (); return Qnil; /* suppress compiler warning */ } } @@ -726,7 +776,9 @@ WARNING: this may alter match-data. if (this_context == context_block_comment && context_cache.ccontext == ccontext_start2) estart -= 2; - else if (this_context == context_comment) + else if (this_context == context_comment + || this_context == context_generic_comment + ) estart -= 1; edepth = context_cache.depth; @@ -742,7 +794,9 @@ WARNING: this may alter match-data. a part of the comment. */ if ((this_context == context_block_comment || - this_context == context_comment) + this_context == context_comment + || this_context == context_generic_comment + ) && pt < e) eend++; diff --git a/src/frame.c b/src/frame.c index 1f1bc83..31ec3d1 100644 --- a/src/frame.c +++ b/src/frame.c @@ -925,7 +925,7 @@ set_frame_selected_window (struct frame *f, Lisp_Object window) } DEFUN ("set-frame-selected-window", Fset_frame_selected_window, 2, 2, 0, /* -Set the selected window of frame object FRAME to WINDOW. +Set the selected window of FRAME to WINDOW. If FRAME is nil, the selected frame is used. If FRAME is the selected frame, this makes WINDOW the selected window. */ @@ -1962,7 +1962,7 @@ Return non NIL if FRAME is now "visible" (actually in use for display). A frame that is not visible is not updated, and, if it works through a window system, may not show at all. N.B. Under X "visible" means Mapped. It the window is mapped but not -actually visible on screen then frame_visible returns 'hidden. +actually visible on screen then `frame-visible-p' returns 'hidden. */ (frame)) { @@ -2001,8 +2001,8 @@ frame is iconified, it will not be visible. DEFUN ("visible-frame-list", Fvisible_frame_list, 0, 1, 0, /* Return a list of all frames now "visible" (being updated). If DEVICE is specified only frames on that device will be returned. -Note that under virtual window managers not all these frame are necessarily -really updated. +Note that under virtual window managers not all these frames are +necessarily really updated. */ (device)) { diff --git a/src/glyphs-x.c b/src/glyphs-x.c index f37d3ba..8c29839 100644 --- a/src/glyphs-x.c +++ b/src/glyphs-x.c @@ -798,7 +798,7 @@ generate_cursor_fg_bg (Lisp_Object device, Lisp_Object *foreground, else { xbg->pixel = 0; - xbg->red = xbg->green = xbg->blue = ~0; + xbg->red = xbg->green = xbg->blue = USHRT_MAX; } } diff --git a/src/insdel.c b/src/insdel.c index eeab025..d17322b 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -2352,16 +2352,15 @@ prepare_to_modify_buffer (struct buffer *buf, Bufpos start, Bufpos end, if (!NILP (buf->filename) && lockit && BUF_SAVE_MODIFF (buf) >= BUF_MODIFF (buf)) { -#ifdef CLASH_DETECTION - if (!NILP (buf->file_truename)) - /* Make binding buffer-file-name to nil effective. */ - lock_file (buf->file_truename); -#else /* At least warn if this file has changed on disk since it was visited.*/ if (NILP (Fverify_visited_file_modtime (buffer)) && !NILP (Ffile_exists_p (buf->filename))) call1_in_buffer (buf, intern ("ask-user-about-supersession-threat"), buf->filename); +#ifdef CLASH_DETECTION + if (!NILP (buf->file_truename)) + /* Make binding buffer-file-name to nil effective. */ + lock_file (buf->file_truename); #endif /* not CLASH_DETECTION */ } UNGCPRO; diff --git a/src/mule-canna.c b/src/mule-canna.c index 3525c0b..49db237 100644 --- a/src/mule-canna.c +++ b/src/mule-canna.c @@ -1445,7 +1445,7 @@ For canna */ ); canna_fn_DeleteNext = IROHA_FN_DeleteNext; - DEFVAR_INT ("canna-func-delete_previous", &canna_fn_DeletePrevious /* + DEFVAR_INT ("canna-func-delete-previous", &canna_fn_DeletePrevious /* */ ); canna_fn_DeletePrevious = IROHA_FN_DeletePrevious; diff --git a/src/mule-ccl.c b/src/mule-ccl.c index ad52fd2..514dfc9 100644 --- a/src/mule-ccl.c +++ b/src/mule-ccl.c @@ -1589,7 +1589,7 @@ ccl_driver (struct ccl_program *ccl, /* +1 is for including separator. */ point = -point + 1; if (mapping_stack_pointer - >= &mapping_stack[MAX_MAP_SET_LEVEL]) + >= mapping_stack + countof (mapping_stack)) CCL_INVALID_CMD; PUSH_MAPPING_STACK (map_set_rest_length - point, reg[rrr]); @@ -1670,7 +1670,7 @@ ccl_driver (struct ccl_program *ccl, else if (SYMBOLP (content)) { if (mapping_stack_pointer - >= &mapping_stack[MAX_MAP_SET_LEVEL]) + >= mapping_stack + countof (mapping_stack)) CCL_INVALID_CMD; PUSH_MAPPING_STACK (map_set_rest_length, reg[rrr]); PUSH_MAPPING_STACK (map_set_rest_length, op); diff --git a/src/regex.c b/src/regex.c index cece34b..cbcb40a 100644 --- a/src/regex.c +++ b/src/regex.c @@ -48,6 +48,14 @@ #define _GNU_SOURCE 1 #endif +#ifdef emacs +/* Converts the pointer to the char to BEG-based offset from the start. */ +#define PTR_TO_OFFSET(d) (MATCHING_IN_FIRST_STRING \ + ? (d) - string1 : (d) - (string2 - size1)) +#else +#define PTR_TO_OFFSET(d) 0 +#endif + /* We assume non-Mule if emacs isn't defined. */ #ifndef emacs #undef MULE @@ -180,6 +188,8 @@ init_syntax_once (void) #endif /* SYNTAX_TABLE */ #define SYNTAX_UNSAFE(ignored, c) re_syntax_table[c] +#undef SYNTAX_FROM_CACHE +#define SYNTAX_FROM_CACHE SYNTAX_UNSAFE #define RE_TRANSLATE(c) translate[(unsigned char) (c)] #define TRANSLATE_P(tr) tr @@ -369,7 +379,7 @@ void *alloca (); /* Type of source-pattern and string chars. */ typedef const unsigned char re_char; -typedef char boolean; +typedef char re_bool; #define false 0 #define true 1 @@ -1781,10 +1791,10 @@ static void insert_op1 (re_opcode_t op, unsigned char *loc, int arg, unsigned char *end); static void insert_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2, unsigned char *end); -static boolean at_begline_loc_p (re_char *pattern, re_char *p, +static re_bool at_begline_loc_p (re_char *pattern, re_char *p, reg_syntax_t syntax); -static boolean at_endline_loc_p (re_char *p, re_char *pend, int syntax); -static boolean group_in_compile_stack (compile_stack_type compile_stack, +static re_bool at_endline_loc_p (re_char *p, re_char *pend, int syntax); +static re_bool group_in_compile_stack (compile_stack_type compile_stack, regnum_t regnum); static reg_errcode_t compile_range (re_char **p_ptr, re_char *pend, RE_TRANSLATE_TYPE translate, @@ -1797,12 +1807,12 @@ static reg_errcode_t compile_extended_range (re_char **p_ptr, reg_syntax_t syntax, Lisp_Object rtab); #endif /* MULE */ -static boolean group_match_null_string_p (unsigned char **p, +static re_bool group_match_null_string_p (unsigned char **p, unsigned char *end, register_info_type *reg_info); -static boolean alt_match_null_string_p (unsigned char *p, unsigned char *end, +static re_bool alt_match_null_string_p (unsigned char *p, unsigned char *end, register_info_type *reg_info); -static boolean common_op_match_null_string_p (unsigned char **p, +static re_bool common_op_match_null_string_p (unsigned char **p, unsigned char *end, register_info_type *reg_info); static int bcmp_translate (const unsigned char *s1, const unsigned char *s2, @@ -2049,11 +2059,11 @@ regex_compile (re_char *pattern, int size, reg_syntax_t syntax, { /* true means zero/many matches are allowed. */ - boolean zero_times_ok = c != '+'; - boolean many_times_ok = c != '?'; + re_bool zero_times_ok = c != '+'; + re_bool many_times_ok = c != '?'; /* true means match shortest string possible. */ - boolean minimal = false; + re_bool minimal = false; /* If there is a sequence of repetition chars, collapse it down to just one (the right one). We can't combine @@ -2157,7 +2167,7 @@ regex_compile (re_char *pattern, int size, reg_syntax_t syntax, else { /* Are we optimizing this jump? */ - boolean keep_string_p = false; + re_bool keep_string_p = false; if (many_times_ok) { /* More than one repetition is allowed, so put in @@ -2233,9 +2243,9 @@ regex_compile (re_char *pattern, int size, reg_syntax_t syntax, case '[': { /* XEmacs change: this whole section */ - boolean had_char_class = false; + re_bool had_char_class = false; #ifdef MULE - boolean has_extended_chars = false; + re_bool has_extended_chars = false; REGISTER Lisp_Object rtab = Qnil; #endif @@ -2417,18 +2427,18 @@ regex_compile (re_char *pattern, int size, reg_syntax_t syntax, if (c == ':' && *p == ']') { int ch; - boolean is_alnum = STREQ (str, "alnum"); - boolean is_alpha = STREQ (str, "alpha"); - boolean is_blank = STREQ (str, "blank"); - boolean is_cntrl = STREQ (str, "cntrl"); - boolean is_digit = STREQ (str, "digit"); - boolean is_graph = STREQ (str, "graph"); - boolean is_lower = STREQ (str, "lower"); - boolean is_print = STREQ (str, "print"); - boolean is_punct = STREQ (str, "punct"); - boolean is_space = STREQ (str, "space"); - boolean is_upper = STREQ (str, "upper"); - boolean is_xdigit = STREQ (str, "xdigit"); + re_bool is_alnum = STREQ (str, "alnum"); + re_bool is_alpha = STREQ (str, "alpha"); + re_bool is_blank = STREQ (str, "blank"); + re_bool is_cntrl = STREQ (str, "cntrl"); + re_bool is_digit = STREQ (str, "digit"); + re_bool is_graph = STREQ (str, "graph"); + re_bool is_lower = STREQ (str, "lower"); + re_bool is_print = STREQ (str, "print"); + re_bool is_punct = STREQ (str, "punct"); + re_bool is_space = STREQ (str, "space"); + re_bool is_upper = STREQ (str, "upper"); + re_bool is_xdigit = STREQ (str, "xdigit"); if (!IS_CHAR_CLASS (str)) FREE_STACK_RETURN (REG_ECTYPE); @@ -3214,11 +3224,11 @@ insert_op2 (re_opcode_t op, unsigned char *loc, int arg1, int arg2, after an alternative or a begin-subexpression. We assume there is at least one character before the ^. */ -static boolean +static re_bool at_begline_loc_p (re_char *pattern, re_char *p, reg_syntax_t syntax) { re_char *prev = p - 2; - boolean prev_prev_backslash = prev > pattern && prev[-1] == '\\'; + re_bool prev_prev_backslash = prev > pattern && prev[-1] == '\\'; return /* After a subexpression? */ @@ -3231,11 +3241,11 @@ at_begline_loc_p (re_char *pattern, re_char *p, reg_syntax_t syntax) /* The dual of at_begline_loc_p. This one is for $. We assume there is at least one character after the $, i.e., `P < PEND'. */ -static boolean +static re_bool at_endline_loc_p (re_char *p, re_char *pend, int syntax) { re_char *next = p; - boolean next_backslash = *next == '\\'; + re_bool next_backslash = *next == '\\'; re_char *next_next = p + 1 < pend ? p + 1 : 0; return @@ -3251,7 +3261,7 @@ at_endline_loc_p (re_char *p, re_char *pend, int syntax) /* Returns true if REGNUM is in one of COMPILE_STACK's elements and false if it's not. */ -static boolean +static re_bool group_in_compile_stack (compile_stack_type compile_stack, regnum_t regnum) { int this_element; @@ -3426,10 +3436,10 @@ re_compile_fastmap (struct re_pattern_buffer *bufp) proven otherwise. We set this false at the bottom of switch statement, to which we get only if a particular path doesn't match the empty string. */ - boolean path_can_be_null = true; + re_bool path_can_be_null = true; /* We aren't doing a `succeed_n' to begin with. */ - boolean succeed_n_p = false; + re_bool succeed_n_p = false; assert (fastmap != NULL && p != NULL); @@ -3629,8 +3639,22 @@ re_compile_fastmap (struct re_pattern_buffer *bufp) } #ifdef emacs + case wordbound: + case notwordbound: + case wordbeg: + case wordend: + case notsyntaxspec: + case syntaxspec: + /* This match depends on text properties. These end with + aborting optimizations. */ + bufp->can_be_null = 1; + goto done; + +#ifdef emacs +#if 0 /* Removed during syntax-table properties patch -- 2000/12/07 mct */ case syntaxspec: k = *p++; +#endif matchsyntax: #ifdef MULE #ifdef UTF2000 @@ -3683,8 +3707,10 @@ re_compile_fastmap (struct re_pattern_buffer *bufp) break; +#if 0 /* Removed during syntax-table properties patch -- 2000/12/07 mct */ case notsyntaxspec: k = *p++; +#endif matchnotsyntax: #ifdef MULE #ifdef UTF2000 @@ -3735,6 +3761,7 @@ re_compile_fastmap (struct re_pattern_buffer *bufp) fastmap[j] = 1; #endif /* MULE */ break; +#endif /* emacs */ #ifdef MULE /* 97/2/17 jhod category patch */ @@ -3761,10 +3788,12 @@ re_compile_fastmap (struct re_pattern_buffer *bufp) case endline: case begbuf: case endbuf: +#ifndef emacs case wordbound: case notwordbound: case wordbeg: case wordend: +#endif case push_dummy_failure: continue; @@ -4005,6 +4034,18 @@ re_search_2 (struct re_pattern_buffer *bufp, const char *str1, } } +#ifdef emacs + /* In a forward search for something that starts with \=. + don't keep searching past point. */ + if (bufp->used > 0 && (re_opcode_t) bufp->buffer[0] == at_dot && range > 0) + { + range = BUF_PT (regex_emacs_buffer) - BUF_BEGV (regex_emacs_buffer) + - startpos; + if (range < 0) + return -1; + } +#endif /* emacs */ + /* Update the fastmap now if not correct already. */ if (fastmap && !bufp->fastmap_accurate) if (re_compile_fastmap (bufp) == -2) @@ -4026,6 +4067,15 @@ re_search_2 (struct re_pattern_buffer *bufp, const char *str1, } #endif +#ifdef emacs + SETUP_SYNTAX_CACHE_FOR_OBJECT (regex_match_object, + regex_emacs_buffer, + SYNTAX_CACHE_OBJECT_BYTE_TO_CHAR (regex_match_object, + regex_emacs_buffer, + startpos), + 1); +#endif + /* Loop through the string, looking for a place to start matching. */ for (;;) { @@ -4295,9 +4345,21 @@ re_match_2 (struct re_pattern_buffer *bufp, const char *string1, int size1, const char *string2, int size2, int pos, struct re_registers *regs, int stop) { - int result = re_match_2_internal (bufp, (re_char *) string1, size1, - (re_char *) string2, size2, - pos, regs, stop); + int result; + +#ifdef emacs + SETUP_SYNTAX_CACHE_FOR_OBJECT (regex_match_object, + regex_emacs_buffer, + SYNTAX_CACHE_OBJECT_BYTE_TO_CHAR (regex_match_object, + regex_emacs_buffer, + pos), + 1); +#endif + + result = re_match_2_internal (bufp, (re_char *) string1, size1, + (re_char *) string2, size2, + pos, regs, stop); + alloca (0); return result; } @@ -4432,10 +4494,10 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, /* 1 if this match ends in the same string (string1 or string2) as the best previous match. */ - boolean same_str_p; + re_bool same_str_p; /* 1 if this match is the best seen so far. */ - boolean best_match_p; + re_bool best_match_p; DEBUG_PRINT1 ("\n\nEntering re_match_2.\n"); @@ -4796,7 +4858,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, case charset_not: { REGISTER unsigned char c; - boolean not_p = (re_opcode_t) *(p - 1) == charset_not; + re_bool not_p = (re_opcode_t) *(p - 1) == charset_not; DEBUG_PRINT2 ("EXECUTING charset%s.\n", not_p ? "_not" : ""); @@ -4823,7 +4885,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, case charset_mule_not: { REGISTER Emchar c; - boolean not_p = (re_opcode_t) *(p - 1) == charset_mule_not; + re_bool not_p = (re_opcode_t) *(p - 1) == charset_mule_not; DEBUG_PRINT2 ("EXECUTING charset_mule%s.\n", not_p ? "_not" : ""); @@ -4970,7 +5032,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, || just_past_start_mem == p - 1) && (p + 2) < pend) { - boolean is_a_jump_n = false; + re_bool is_a_jump_n = false; p1 = p + 2; mcnt = 0; @@ -5515,17 +5577,34 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, result = 1; else { - const unsigned char *d_before = - (const unsigned char *) POS_BEFORE_GAP_UNSAFE (d); - const unsigned char *d_after = - (const unsigned char *) POS_AFTER_GAP_UNSAFE (d); + re_char *d_before = POS_BEFORE_GAP_UNSAFE (d); + re_char *d_after = POS_AFTER_GAP_UNSAFE (d); + + /* emch1 is the character before d, syn1 is the syntax of emch1, + emch2 is the character at d, and syn2 is the syntax of emch2. */ Emchar emch1, emch2; + int syn1, syn2; +#ifdef emacs + int pos_before; +#endif DEC_CHARPTR (d_before); emch1 = charptr_emchar (d_before); emch2 = charptr_emchar (d_after); - result = (WORDCHAR_P_UNSAFE (emch1) != - WORDCHAR_P_UNSAFE (emch2)); + +#ifdef emacs + pos_before = SYNTAX_CACHE_BYTE_TO_CHAR (PTR_TO_OFFSET (d)) - 1; + UPDATE_SYNTAX_CACHE (pos_before); +#endif + syn1 = SYNTAX_FROM_CACHE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + emch1); +#ifdef emacs + UPDATE_SYNTAX_CACHE_FORWARD (pos_before + 1); +#endif + syn2 = SYNTAX_FROM_CACHE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + emch2); + + result = ((syn1 == Sword) != (syn2 == Sword)); } if (result == should_succeed) break; @@ -5539,6 +5618,8 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, case wordbeg: DEBUG_PRINT1 ("EXECUTING wordbeg.\n"); + if (AT_STRINGS_END (d)) + goto fail; { /* XEmacs: this originally read: @@ -5546,23 +5627,33 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, break; */ - const unsigned char *dtmp = - (const unsigned char *) POS_AFTER_GAP_UNSAFE (d); + re_char *dtmp = POS_AFTER_GAP_UNSAFE (d); Emchar emch = charptr_emchar (dtmp); - if (!WORDCHAR_P_UNSAFE (emch)) +#ifdef emacs + int charpos = SYNTAX_CACHE_BYTE_TO_CHAR (PTR_TO_OFFSET (d)); + UPDATE_SYNTAX_CACHE (charpos); +#endif + if (SYNTAX_FROM_CACHE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + emch) != Sword) goto fail; if (AT_STRINGS_BEG (d)) break; - dtmp = (const unsigned char *) POS_BEFORE_GAP_UNSAFE (d); + dtmp = POS_BEFORE_GAP_UNSAFE (d); DEC_CHARPTR (dtmp); emch = charptr_emchar (dtmp); - if (!WORDCHAR_P_UNSAFE (emch)) +#ifdef emacs + UPDATE_SYNTAX_CACHE_BACKWARD (charpos - 1); +#endif + if (SYNTAX_FROM_CACHE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + emch) != Sword) break; goto fail; } case wordend: DEBUG_PRINT1 ("EXECUTING wordend.\n"); + if (AT_STRINGS_BEG (d)) + goto fail; { /* XEmacs: this originally read: @@ -5572,20 +5663,27 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, The or condition is incorrect (reversed). */ - const unsigned char *dtmp; + re_char *dtmp; Emchar emch; - if (AT_STRINGS_BEG (d)) - goto fail; - dtmp = (const unsigned char *) POS_BEFORE_GAP_UNSAFE (d); +#ifdef emacs + int charpos = SYNTAX_CACHE_BYTE_TO_CHAR (PTR_TO_OFFSET (d)) - 1; + UPDATE_SYNTAX_CACHE (charpos); +#endif + dtmp = POS_BEFORE_GAP_UNSAFE (d); DEC_CHARPTR (dtmp); emch = charptr_emchar (dtmp); - if (!WORDCHAR_P_UNSAFE (emch)) + if (SYNTAX_FROM_CACHE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + emch) != Sword) goto fail; if (AT_STRINGS_END (d)) break; - dtmp = (const unsigned char *) POS_AFTER_GAP_UNSAFE (d); + dtmp = POS_AFTER_GAP_UNSAFE (d); emch = charptr_emchar (dtmp); - if (!WORDCHAR_P_UNSAFE (emch)) +#ifdef emacs + UPDATE_SYNTAX_CACHE_FORWARD (charpos + 1); +#endif + if (SYNTAX_FROM_CACHE (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + emch) != Sword) break; goto fail; } @@ -5593,7 +5691,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, #ifdef emacs case before_dot: DEBUG_PRINT1 ("EXECUTING before_dot.\n"); - if (!regex_emacs_buffer_p + if (! (NILP (regex_match_object) || BUFFERP (regex_match_object)) || (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d) >= BUF_PT (regex_emacs_buffer))) goto fail; @@ -5601,7 +5699,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, case at_dot: DEBUG_PRINT1 ("EXECUTING at_dot.\n"); - if (!regex_emacs_buffer_p + if (! (NILP (regex_match_object) || BUFFERP (regex_match_object)) || (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d) != BUF_PT (regex_emacs_buffer))) goto fail; @@ -5609,7 +5707,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, case after_dot: DEBUG_PRINT1 ("EXECUTING after_dot.\n"); - if (!regex_emacs_buffer_p + if (! (NILP (regex_match_object) || BUFFERP (regex_match_object)) || (BUF_PTR_BYTE_POS (regex_emacs_buffer, (unsigned char *) d) <= BUF_PT (regex_emacs_buffer))) goto fail; @@ -5639,14 +5737,19 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, Emchar emch; REGEX_PREFETCH (); +#ifdef emacs + { + int charpos = SYNTAX_CACHE_BYTE_TO_CHAR (PTR_TO_OFFSET (d)); + UPDATE_SYNTAX_CACHE (charpos); + } +#endif + emch = charptr_emchar ((const Bufbyte *) d); #ifdef UTF2000 - matches = (SYNTAX_UNSAFE - (XCHAR_TABLE (regex_emacs_buffer->syntax_table), + matches = (SYNTAX_FROM_CACHE (regex_emacs_buffer->syntax_table, emch) == (enum syntaxcode) mcnt); #else - matches = (SYNTAX_UNSAFE - (XCHAR_TABLE (regex_emacs_buffer->mirror_syntax_table), + matches = (SYNTAX_FROM_CACHE (regex_emacs_buffer->mirror_syntax_table, emch) == (enum syntaxcode) mcnt); #endif INC_CHARPTR (d); @@ -5735,7 +5838,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, assert (p <= pend); if (p < pend) { - boolean is_a_jump_n = false; + re_bool is_a_jump_n = false; /* If failed to a backwards jump that's part of a repetition loop, need to pop this failure point and use the next one. */ @@ -5788,7 +5891,7 @@ re_match_2_internal (struct re_pattern_buffer *bufp, re_char *string1, We don't handle duplicates properly (yet). */ -static boolean +static re_bool group_match_null_string_p (unsigned char **p, unsigned char *end, register_info_type *reg_info) { @@ -5896,7 +5999,7 @@ group_match_null_string_p (unsigned char **p, unsigned char *end, It expects P to be the first byte of a single alternative and END one byte past the last. The alternative can contain groups. */ -static boolean +static re_bool alt_match_null_string_p (unsigned char *p, unsigned char *end, register_info_type *reg_info) { @@ -5932,12 +6035,12 @@ alt_match_null_string_p (unsigned char *p, unsigned char *end, Sets P to one after the op and its arguments, if any. */ -static boolean +static re_bool common_op_match_null_string_p (unsigned char **p, unsigned char *end, register_info_type *reg_info) { int mcnt; - boolean ret; + re_bool ret; int reg_no; unsigned char *p1 = *p; @@ -6263,7 +6366,7 @@ regexec (const regex_t *preg, const char *string, size_t nmatch, struct re_registers regs; regex_t private_preg; int len = strlen (string); - boolean want_reg_info = !preg->no_sub && nmatch > 0; + re_bool want_reg_info = !preg->no_sub && nmatch > 0; private_preg = *preg; diff --git a/src/s/aix4.h b/src/s/aix4.h index adf3195..fe19cda 100644 --- a/src/s/aix4.h +++ b/src/s/aix4.h @@ -14,19 +14,24 @@ /* Forward declarations for xlc warning suppressions */ struct ether_addr; struct sockaddr_dl; -#endif /* C code */ -/* getaddrinfo is broken in AIX 4.3 as per IY04165. - At this time (2/21/2000), there's no PTF available. - -- Mike Sperber */ +#ifdef __xlC__ /* "eXceLlent C compiler" ?! */ +#if __xlC__ >= 1200 +/* IBM's C compiler miscompiles bytecount_to_charcount at high levels + of optimization. From IBM's docs: -#undef HAVE_GETADDRINFO - -#ifdef __xlC__ -/* IBM's C compiler miscompiles this function. From IBM's docs: -qstrict turns off the following optimizations: Performing code motion and scheduling on computations such as loads and floating-point computations that may trigger an exception. */ #pragma option_override (bytecount_to_charcount, "opt(strict,yes)") +#endif /* recent IBM C compiler */ #endif /* IBM's C compiler */ + +#endif /* C code */ + +/* getaddrinfo is broken in AIX 4.3 as per IY04165. + At this time (2/21/2000), there's no PTF available. + -- Mike Sperber */ + +#undef HAVE_GETADDRINFO diff --git a/src/s/irix6-0.h b/src/s/irix6-0.h index 920f67f..afcbe2d 100644 --- a/src/s/irix6-0.h +++ b/src/s/irix6-0.h @@ -4,3 +4,5 @@ /* Irix 6.2 doesn't need -lw */ #undef NEED_LIBW + +#undef memmove /* Use the standard system memmove() */ diff --git a/src/s/mingw32.h b/src/s/mingw32.h index c0e8b0c..ef6c2ac 100644 --- a/src/s/mingw32.h +++ b/src/s/mingw32.h @@ -205,7 +205,6 @@ gid_t getegid (void); #define HAVE_TIMEVAL #define HAVE_GETPAGESIZE #define getpagesize() 4096 -/*#define HAVE_STRUCT_UTIMBUF*/ #ifndef HAVE_H_ERRNO #define HAVE_H_ERRNO #endif diff --git a/src/s/windowsnt.h b/src/s/windowsnt.h index 985dbe3..184da5e 100644 --- a/src/s/windowsnt.h +++ b/src/s/windowsnt.h @@ -226,7 +226,6 @@ typedef int pid_t; #define HAVE_MOUSE #define HAVE_H_ERRNO -#define HAVE_STRUCT_UTIMBUF /* Compatibility macros. Some used to be routines in nt.c */ #define strcasecmp(x,y) _stricmp(x,y) diff --git a/src/search.c b/src/search.c index b5ac56d..d8cca5c 100644 --- a/src/search.c +++ b/src/search.c @@ -313,8 +313,8 @@ looking_at_1 (Lisp_Object string, struct buffer *buf, int posix) s1 = p2 - p1; s2 = BI_BUF_ZV (buf) - p2; + regex_match_object = Qnil; regex_emacs_buffer = buf; - regex_emacs_buffer_p = 1; i = re_match_2 (bufp, (char *) BI_BUF_BYTE_ADDRESS (buf, p1), s1, (char *) BI_BUF_BYTE_ADDRESS (buf, p2), s2, BI_BUF_PT (buf) - BI_BUF_BEGV (buf), &search_regs, @@ -404,8 +404,8 @@ string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, QUIT; { Bytecount bis = charcount_to_bytecount (XSTRING_DATA (string), s); + regex_match_object = string; regex_emacs_buffer = buf; - regex_emacs_buffer_p = 0; val = re_search (bufp, (char *) XSTRING_DATA (string), XSTRING_LENGTH (string), bis, XSTRING_LENGTH (string) - bis, @@ -496,8 +496,8 @@ fast_string_match (Lisp_Object regexp, const Bufbyte *nonreloc, } /* #### evil current-buffer dependency */ + regex_match_object = reloc; regex_emacs_buffer = current_buffer; - regex_emacs_buffer_p = 0; val = re_search (bufp, (char *) newnonreloc + offset, length, 0, length, 0); @@ -785,11 +785,13 @@ skip_chars (struct buffer *buf, int forwardp, int syntaxp, unsigned char fastmap[0400]; int negate = 0; REGISTER int i; +#ifndef emacs #ifdef UTF2000 Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->syntax_table); #else Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table); #endif +#endif Bufpos limit; if (NILP (lim)) @@ -885,6 +887,7 @@ skip_chars (struct buffer *buf, int forwardp, int syntaxp, if (syntaxp) { + SETUP_SYNTAX_CACHE_FOR_BUFFER (buf, BUF_PT (buf), forwardp ? 1 : -1); /* All syntax designators are normal chars so nothing strange to worry about */ if (forwardp) @@ -892,20 +895,26 @@ skip_chars (struct buffer *buf, int forwardp, int syntaxp, while (BUF_PT (buf) < limit && fastmap[(unsigned char) syntax_code_spec - [(int) SYNTAX (syntax_table, - BUF_FETCH_CHAR - (buf, BUF_PT (buf)))]]) - BUF_SET_PT (buf, BUF_PT (buf) + 1); + [(int) SYNTAX_FROM_CACHE (syntax_table, + BUF_FETCH_CHAR + (buf, BUF_PT (buf)))]]) + { + BUF_SET_PT (buf, BUF_PT (buf) + 1); + UPDATE_SYNTAX_CACHE_FORWARD (BUF_PT (buf)); + } } else { while (BUF_PT (buf) > limit && fastmap[(unsigned char) syntax_code_spec - [(int) SYNTAX (syntax_table, - BUF_FETCH_CHAR - (buf, BUF_PT (buf) - 1))]]) - BUF_SET_PT (buf, BUF_PT (buf) - 1); + [(int) SYNTAX_FROM_CACHE (syntax_table, + BUF_FETCH_CHAR + (buf, BUF_PT (buf) - 1))]]) + { + BUF_SET_PT (buf, BUF_PT (buf) - 1); + UPDATE_SYNTAX_CACHE_BACKWARD (BUF_PT (buf) - 1); + } } } else @@ -1165,13 +1174,13 @@ search_buffer (struct buffer *buf, Lisp_Object string, Bufpos bufpos, p2 = BI_BUF_CEILING_OF (buf, p1); s1 = p2 - p1; s2 = BI_BUF_ZV (buf) - p2; + regex_match_object = Qnil; while (n < 0) { Bytecount val; QUIT; regex_emacs_buffer = buf; - regex_emacs_buffer_p = 1; val = re_search_2 (bufp, (char *) BI_BUF_BYTE_ADDRESS (buf, p1), s1, (char *) BI_BUF_BYTE_ADDRESS (buf, p2), s2, @@ -1210,7 +1219,6 @@ search_buffer (struct buffer *buf, Lisp_Object string, Bufpos bufpos, Bytecount val; QUIT; regex_emacs_buffer = buf; - regex_emacs_buffer_p = 1; val = re_search_2 (bufp, (char *) BI_BUF_BYTE_ADDRESS (buf, p1), s1, (char *) BI_BUF_BYTE_ADDRESS (buf, p2), s2, diff --git a/src/syntax.c b/src/syntax.c index 6b580a0..5bc68dc 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */ #include "buffer.h" #include "syntax.h" +#include "extents.h" /* Here is a comment from Ken'ichi HANDA explaining the purpose of the Sextword syntax category: @@ -56,6 +57,12 @@ two such characters. */ /* Mule 2.4 doesn't seem to have Sextword - I'm removing it -- mrb */ /* Recovered by tomo */ +#define ST_COMMENT_STYLE 0x101 +#define ST_STRING_STYLE 0x102 + +Lisp_Object Qsyntax_table; +int lookup_syntax_properties; + Lisp_Object Qsyntax_table_p; int words_include_escapes; @@ -75,8 +82,9 @@ int no_quit_in_re_search; and the like. */ struct buffer *regex_emacs_buffer; -/* Tell the regex routines whether buffer is used or not. */ -int regex_emacs_buffer_p; +/* In Emacs, this is the string or buffer in which we + are matching. It is used for looking up syntax properties. */ +Lisp_Object regex_match_object; Lisp_Object Vstandard_syntax_table; @@ -89,7 +97,7 @@ struct lisp_parse_state int depth; /* Depth at end of parsing */ Emchar instring; /* -1 if not within string, else desired terminator */ int incomment; /* Nonzero if within a comment at end of parsing */ - int comstyle; /* comment style a=0, or b=1 */ + int comstyle; /* comment style a=0, or b=1, or ST_COMMENT_STYLE */ int quoted; /* Nonzero if just after an escape char at end of parsing */ Bufpos thislevelstart;/* Char number of most recent start-of-expression @@ -97,7 +105,9 @@ struct lisp_parse_state Bufpos prevlevelstart;/* Char number of start of containing expression */ Bufpos location; /* Char number at which parsing stopped */ int mindepth; /* Minimum depth seen while scanning */ - Bufpos comstart; /* Position just after last comment starter */ + Bufpos comstr_start; /* Position just after last comment/string starter */ + Lisp_Object levelstarts; /* Char numbers of starts-of-expression + of levels (starting from outermost). */ }; /* These variables are a cache for finding the start of a defun. @@ -121,11 +131,6 @@ static Bufpos find_defun_start (struct buffer *buf, Bufpos pos) { Bufpos tem; -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif /* Use previous finding, if it's valid and applies to this inquiry. */ if (buf == find_start_buffer @@ -141,10 +146,13 @@ find_defun_start (struct buffer *buf, Bufpos pos) /* Back up to start of line. */ tem = find_next_newline (buf, pos, -1); + SETUP_SYNTAX_CACHE (tem, 1); while (tem > BUF_BEGV (buf)) { + UPDATE_SYNTAX_CACHE_BACKWARD(tem); + /* Open-paren at start of line means we found our defun-start. */ - if (SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, tem)) == Sopen) + if (SYNTAX_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, tem)) == Sopen) break; /* Move to beg of previous line. */ tem = find_next_newline (buf, tem, -2); @@ -230,6 +238,113 @@ BUFFER defaults to the current buffer if omitted. return syntax_table; } +/* The current syntax state */ +struct syntax_cache syntax_cache; + + +/* + Update syntax_cache to an appropriate setting for position POS + + The sign of COUNT gives the relative position of POS wrt the + previously valid interval. (not currently used) + + `syntax_cache.*_change' are the next and previous positions at + which syntax_code and c_s_t will need to be recalculated. + + #### Currently this code uses 'get-char-property', which will + return the "last smallest" extent at a given position. In cases + where overlapping extents are defined, this code will simply use + whatever is returned by get-char-property. + + It might be worth it at some point to merge provided syntax tables + outward to the current buffer. */ + +void +update_syntax_cache (int pos, int count, int init) +{ + Lisp_Object tmp_table; + + if (init) + { + syntax_cache.prev_change = -1; + syntax_cache.next_change = -1; + } + + if (pos > syntax_cache.prev_change && + pos < syntax_cache.next_change) + { + /* do nothing */ + } + else + { + if (NILP (syntax_cache.object) || EQ (syntax_cache.object, Qt)) + { + int get_change_before = pos + 1; + + tmp_table = Fget_char_property (make_int(pos), Qsyntax_table, + make_buffer (syntax_cache.buffer), Qnil); + syntax_cache.next_change = + XINT (Fnext_extent_change (make_int (pos > 0 ? pos : 1), + make_buffer (syntax_cache.buffer))); + + if (get_change_before < 1) + get_change_before = 1; + else if (get_change_before > BUF_ZV (syntax_cache.buffer)) + get_change_before = BUF_ZV (syntax_cache.buffer); + + syntax_cache.prev_change = + XINT (Fprevious_extent_change (make_int (get_change_before), + make_buffer (syntax_cache.buffer))); + } + else + { + int get_change_before = pos + 1; + + tmp_table = Fget_char_property (make_int(pos), Qsyntax_table, + syntax_cache.object, Qnil); + syntax_cache.next_change = + XINT (Fnext_extent_change (make_int (pos >= 0 ? pos : 0), + syntax_cache.object)); + + if (get_change_before < 0) + get_change_before = 0; + else if (get_change_before > XSTRING_LENGTH(syntax_cache.object)) + get_change_before = XSTRING_LENGTH(syntax_cache.object); + + syntax_cache.prev_change = + XINT (Fprevious_extent_change (make_int (pos >= 0 ? pos : 0), + syntax_cache.object)); + } + + if (EQ (Fsyntax_table_p (tmp_table), Qt)) + { + syntax_cache.use_code = 0; +#ifdef UTF2000 + syntax_cache.current_syntax_table = tmp_table; +#else + syntax_cache.current_syntax_table = + XCHAR_TABLE (tmp_table)->mirror_table; +#endif + } + else if (CONSP (tmp_table) && INTP (XCAR (tmp_table))) + { + syntax_cache.use_code = 1; + syntax_cache.syntax_code = XINT (XCAR(tmp_table)); + } + else + { + syntax_cache.use_code = 0; +#ifdef UTF2000 + syntax_cache.current_syntax_table = + syntax_cache.buffer->syntax_table; +#else + syntax_cache.current_syntax_table = + syntax_cache.buffer->mirror_syntax_table; +#endif + } + } +} + /* Convert a letter which signifies a syntax code into the code it signifies. This is used by modify-syntax-entry, and other things. */ @@ -253,10 +368,10 @@ const unsigned char syntax_spec_code[0400] = 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, /* `, a, ... */ 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377, (char) Sword, - 0377, 0377, 0377, 0377, 0377, 0377, 0377, 0377 + 0377, 0377, 0377, 0377, (char) Sstring_fence, 0377, 0377, 0377 }; -const unsigned char syntax_code_spec[] = " .w_()'\"$\\/<>@"; +const unsigned char syntax_code_spec[] = " .w_()'\"$\\/<>@!|"; DEFUN ("syntax-designator-chars", Fsyntax_designator_chars, 0, 0, 0, /* Return a string of the recognized syntax designator chars. @@ -371,14 +486,11 @@ Bufpos scan_words (struct buffer *buf, Bufpos from, int count) { Bufpos limit = count > 0 ? BUF_ZV (buf) : BUF_BEGV (buf); -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif Emchar ch0, ch1; enum syntaxcode code; + SETUP_SYNTAX_CACHE_FOR_BUFFER (buf, from, count); + /* #### is it really worth it to hand expand both cases? JV */ while (count > 0) { @@ -389,8 +501,9 @@ scan_words (struct buffer *buf, Bufpos from, int count) if (from == limit) return 0; + UPDATE_SYNTAX_CACHE_FORWARD (from); ch0 = BUF_FETCH_CHAR (buf, from); - code = SYNTAX_UNSAFE (mirrortab, ch0); + code = SYNTAX_FROM_CACHE (mirrortab, ch0); from++; if (words_include_escapes @@ -404,8 +517,9 @@ scan_words (struct buffer *buf, Bufpos from, int count) while (from != limit) { + UPDATE_SYNTAX_CACHE_FORWARD (from); ch1 = BUF_FETCH_CHAR (buf, from); - code = SYNTAX_UNSAFE (mirrortab, ch1); + code = SYNTAX_FROM_CACHE (mirrortab, ch1); if (!(words_include_escapes && (code == Sescape || code == Scharquote))) if (code != Sword @@ -431,10 +545,11 @@ scan_words (struct buffer *buf, Bufpos from, int count) if (from == limit) return 0; + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); ch1 = BUF_FETCH_CHAR (buf, from - 1); - code = SYNTAX_UNSAFE (mirrortab, ch1); - + code = SYNTAX_FROM_CACHE (mirrortab, ch1); from--; + if (words_include_escapes && (code == Sescape || code == Scharquote)) break; @@ -446,8 +561,10 @@ scan_words (struct buffer *buf, Bufpos from, int count) while (from != limit) { + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); ch0 = BUF_FETCH_CHAR (buf, from - 1); - code = SYNTAX_UNSAFE (mirrortab, ch0); + code = SYNTAX_FROM_CACHE (mirrortab, ch0); + if (!(words_include_escapes && (code == Sescape || code == Scharquote))) if (code != Sword @@ -509,15 +626,11 @@ static void scan_sexps_forward (struct buffer *buf, int commentstop); static int -find_start_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask) +find_start_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, + int comstyle) { Emchar c; enum syntaxcode code; -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif /* Look back, counting the parity of string-quotes, and recording the comment-starters seen. @@ -535,52 +648,86 @@ find_start_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask) Bufpos comstart_pos = 0; int comstart_parity = 0; int styles_match_p = 0; + /* mask to match comment styles against; for ST_COMMENT_STYLE, this + will get set to SYNTAX_COMMENT_STYLE_B, but never get checked */ + int mask = comstyle ? SYNTAX_COMMENT_STYLE_B : SYNTAX_COMMENT_STYLE_A; /* At beginning of range to scan, we're outside of strings; that determines quote parity to the comment-end. */ while (from != stop) { + int syncode; + /* Move back and examine a character. */ from--; + UPDATE_SYNTAX_CACHE_BACKWARD (from); c = BUF_FETCH_CHAR (buf, from); - code = SYNTAX_UNSAFE (mirrortab, c); + code = SYNTAX_FROM_CACHE (mirrortab, c); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); /* is this a 1-char comment end sequence? if so, try to see if style matches previously extracted mask */ if (code == Sendcomment) { - styles_match_p = SYNTAX_STYLES_MATCH_1CHAR_P (mirrortab, c, mask); - } - - /* otherwise, is this a 2-char comment end sequence? */ - else if (from >= stop - && SYNTAX_END_P (mirrortab, c, BUF_FETCH_CHAR (buf, from+1))) - { - code = Sendcomment; styles_match_p = - SYNTAX_STYLES_MATCH_END_P (mirrortab, c, - BUF_FETCH_CHAR (buf, from+1), - mask); + SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) & mask; } /* or are we looking at a 1-char comment start sequence of the style matching mask? */ - else if (code == Scomment - && SYNTAX_STYLES_MATCH_1CHAR_P (mirrortab, c, mask)) + else if (code == Scomment) { - styles_match_p = 1; + styles_match_p = + SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) & mask; } - /* or possibly, a 2-char comment start sequence */ - else if (from >= stop - && SYNTAX_STYLES_MATCH_START_P (mirrortab, c, - BUF_FETCH_CHAR (buf, from+1), - mask)) - { - code = Scomment; - styles_match_p = 1; - } + /* otherwise, is this a 2-char comment end or start sequence? */ + else if (from > stop) + do + { + /* 2-char comment end sequence? */ + if (SYNTAX_CODE_END_SECOND_P (syncode)) + { + int prev_syncode; + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); + prev_syncode = + SYNTAX_CODE_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, from - 1)); + + if (SYNTAX_CODES_END_P (prev_syncode, syncode)) + { + code = Sendcomment; + styles_match_p = + SYNTAX_CODES_COMMENT_MASK_END (prev_syncode, syncode); + from--; + UPDATE_SYNTAX_CACHE_BACKWARD (from); + c = BUF_FETCH_CHAR (buf, from); + + /* Found a comment-end sequence, so skip past the + check for a comment-start */ + break; + } + } + + /* 2-char comment start sequence? */ + if (SYNTAX_CODE_START_SECOND_P (syncode)) + { + int prev_syncode; + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); + prev_syncode = + SYNTAX_CODE_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, from - 1)); + + if (SYNTAX_CODES_START_P (prev_syncode, syncode)) + { + code = Scomment; + styles_match_p = + SYNTAX_CODES_COMMENT_MASK_START (prev_syncode, syncode); + from--; + UPDATE_SYNTAX_CACHE_BACKWARD (from); + c = BUF_FETCH_CHAR (buf, from); + } + } + } while (0); /* Ignore escaped characters. */ if (char_quoted (buf, from)) @@ -598,6 +745,19 @@ find_start_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask) string_lossage = 1; } + if (code == Sstring_fence || code == Scomment_fence) + { + parity ^= 1; + if (my_stringend == 0) + my_stringend = + code == Sstring_fence ? ST_STRING_STYLE : ST_COMMENT_STYLE; + /* If we have two kinds of string delimiters. + There's no way to grok this scanning backwards. */ + else if (my_stringend != (code == Sstring_fence + ? ST_STRING_STYLE : ST_COMMENT_STYLE)) + string_lossage = 1; + } + /* Record comment-starters according to that quote-parity to the comment-end. */ if (code == Scomment && styles_match_p) @@ -639,46 +799,81 @@ find_start_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask) scan_sexps_forward (buf, &state, find_defun_start (buf, comment_end), comment_end - 1, -10000, 0, Qnil, 0); if (state.incomment) - from = state.comstart; + from = state.comstr_start; else /* We can't grok this as a comment; scan it normally. */ from = comment_end; + UPDATE_SYNTAX_CACHE_FORWARD (from - 1); } return from; } static Bufpos -find_end_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int mask) +find_end_of_comment (struct buffer *buf, Bufpos from, Bufpos stop, int comstyle) { int c; -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif + int prev_code; + /* mask to match comment styles against; for ST_COMMENT_STYLE, this + will get set to SYNTAX_COMMENT_STYLE_B, but never get checked */ + int mask = comstyle ? SYNTAX_COMMENT_STYLE_B : SYNTAX_COMMENT_STYLE_A; + /* This is only called by functions which have already set up the + syntax_cache and are keeping it up-to-date */ while (1) { if (from == stop) { return -1; } + + UPDATE_SYNTAX_CACHE_FORWARD (from); c = BUF_FETCH_CHAR (buf, from); - if (SYNTAX_UNSAFE (mirrortab, c) == Sendcomment - && SYNTAX_STYLES_MATCH_1CHAR_P (mirrortab, c, mask)) + + /* Test for generic comments */ + if (comstyle == ST_COMMENT_STYLE) + { + if (SYNTAX_FROM_CACHE (mirrortab, c) == Scomment_fence) + { + from++; + UPDATE_SYNTAX_CACHE_FORWARD (from); + break; + } + from++; + continue; /* No need to test other comment styles in a + generic comment */ + } + else + + if (SYNTAX_FROM_CACHE (mirrortab, c) == Sendcomment + && SYNTAX_CODE_MATCHES_1CHAR_P + (SYNTAX_CODE_FROM_CACHE (mirrortab, c), mask)) /* we have encountered a comment end of the same style as the comment sequence which began this comment section */ - break; + { + from++; + UPDATE_SYNTAX_CACHE_FORWARD (from); + break; + } + prev_code = SYNTAX_CODE_FROM_CACHE (mirrortab, c); from++; + UPDATE_SYNTAX_CACHE_FORWARD (from); if (from < stop - && SYNTAX_STYLES_MATCH_END_P (mirrortab, c, - BUF_FETCH_CHAR (buf, from), mask)) + && SYNTAX_CODES_MATCH_END_P + (prev_code, + SYNTAX_CODE_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, from)), + mask) + + ) /* we have encountered a comment end of the same style as the comment sequence which began this comment section */ - { from++; break; } + { + from++; + UPDATE_SYNTAX_CACHE_FORWARD (from); + break; + } } return from; } @@ -706,13 +901,9 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. Bufpos stop; Emchar c; enum syntaxcode code; + int syncode; EMACS_INT n; struct buffer *buf = decode_buffer (buffer, 0); -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif if (NILP (count)) n = 1; @@ -724,6 +915,7 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. from = BUF_PT (buf); + SETUP_SYNTAX_CACHE (from, n); while (n > 0) { QUIT; @@ -731,7 +923,7 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. stop = BUF_ZV (buf); while (from < stop) { - int mask = 0; /* mask for finding matching comment style */ + int comstyle = 0; /* mask for finding matching comment style */ if (char_quoted (buf, from)) { @@ -739,8 +931,10 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. continue; } + UPDATE_SYNTAX_CACHE_FORWARD (from); c = BUF_FETCH_CHAR (buf, from); - code = SYNTAX (mirrortab, c); + code = SYNTAX_FROM_CACHE (mirrortab, c); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); if (code == Scomment) { @@ -749,28 +943,44 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. we must record the comment style this character begins so that later, only a comment end of the same style actually ends the comment section */ - mask = SYNTAX_COMMENT_1CHAR_MASK (mirrortab, c); + comstyle = SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) + == SYNTAX_COMMENT_STYLE_A ? 0 : 1; } - else if (from < stop - && SYNTAX_START_P (mirrortab, c, BUF_FETCH_CHAR (buf, from+1))) + else if (code == Scomment_fence) { - /* we have encountered a 2char comment start sequence and we - are ignoring all text inside comments. we must record - the comment style this sequence begins so that later, - only a comment end of the same style actually ends - the comment section */ - code = Scomment; - mask = SYNTAX_COMMENT_MASK_START (mirrortab, c, - BUF_FETCH_CHAR (buf, from+1)); from++; + code = Scomment; + comstyle = ST_COMMENT_STYLE; + } + + else if (from < stop + && SYNTAX_CODE_START_FIRST_P (syncode)) + { + int next_syncode; + UPDATE_SYNTAX_CACHE_FORWARD (from + 1); + next_syncode = + SYNTAX_CODE_FROM_CACHE (mirrortab, + BUF_FETCH_CHAR (buf, from + 1)); + + if (SYNTAX_CODES_START_P (syncode, next_syncode)) + { + /* we have encountered a 2char comment start sequence and we + are ignoring all text inside comments. we must record + the comment style this sequence begins so that later, + only a comment end of the same style actually ends + the comment section */ + code = Scomment; + comstyle = + SYNTAX_CODES_COMMENT_MASK_START (syncode, next_syncode) + == SYNTAX_COMMENT_STYLE_A ? 0 : 1; + from++; + } } if (code == Scomment) { - Bufpos newfrom; - - newfrom = find_end_of_comment (buf, from, stop, mask); + Bufpos newfrom = find_end_of_comment (buf, from, stop, comstyle); if (newfrom < 0) { /* we stopped because from==stop */ @@ -803,7 +1013,7 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. stop = BUF_BEGV (buf); while (from > stop) { - int mask = 0; /* mask for finding matching comment style */ + int comstyle = 0; /* mask for finding matching comment style */ from--; if (char_quoted (buf, from)) @@ -813,39 +1023,53 @@ COUNT defaults to 1, and BUFFER defaults to the current buffer. } c = BUF_FETCH_CHAR (buf, from); - code = SYNTAX (mirrortab, c); + code = SYNTAX_FROM_CACHE (mirrortab, c); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); if (code == Sendcomment) { /* we have found a single char end comment. we must record the comment style encountered so that later, we can match only the proper comment begin sequence of the same style */ - mask = SYNTAX_COMMENT_1CHAR_MASK (mirrortab, c); + comstyle = SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) + == SYNTAX_COMMENT_STYLE_A ? 0 : 1; } - else if (from > stop - && SYNTAX_END_P (mirrortab, BUF_FETCH_CHAR (buf, from - 1), c) - && !char_quoted (buf, from - 1)) + else if (code == Scomment_fence) { - /* We must record the comment style encountered so that - later, we can match only the proper comment begin - sequence of the same style. */ code = Sendcomment; - mask = SYNTAX_COMMENT_MASK_END (mirrortab, - BUF_FETCH_CHAR (buf, from - 1), - c); - from--; + comstyle = ST_COMMENT_STYLE; + } + + else if (from > stop + && SYNTAX_CODE_END_SECOND_P (syncode)) + { + int prev_syncode; + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); + prev_syncode = + SYNTAX_CODE_FROM_CACHE (mirrortab, + BUF_FETCH_CHAR (buf, from - 1)); + if (SYNTAX_CODES_END_P (prev_syncode, syncode)) + { + /* We must record the comment style encountered so that + later, we can match only the proper comment begin + sequence of the same style. */ + code = Sendcomment; + comstyle = SYNTAX_CODES_COMMENT_MASK_END + (prev_syncode, syncode) == SYNTAX_COMMENT_STYLE_A ? 0 : 1; + from--; + } } if (code == Sendcomment) { - from = find_start_of_comment (buf, from, stop, mask); + from = find_start_of_comment (buf, from, stop, comstyle); break; } else if (code != Swhitespace - && SYNTAX (mirrortab, c) != Scomment - && SYNTAX (mirrortab, c) != Sendcomment) + && code != Scomment + && code != Sendcomment) { BUF_SET_PT (buf, from + 1); return Qnil; @@ -869,16 +1093,12 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, int quoted; int mathexit = 0; enum syntaxcode code; + int syncode; int min_depth = depth; /* Err out if depth gets less than this. */ - Lisp_Object syntaxtab = buf->syntax_table; -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif if (depth > 0) min_depth = 0; + SETUP_SYNTAX_CACHE_FOR_BUFFER (buf, from, count); while (count > 0) { QUIT; @@ -886,35 +1106,47 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, stop = BUF_ZV (buf); while (from < stop) { - int mask = 0; /* mask for finding matching comment style */ + int comstyle = 0; /* mask for finding matching comment style */ + UPDATE_SYNTAX_CACHE_FORWARD (from); c = BUF_FETCH_CHAR (buf, from); - code = SYNTAX_UNSAFE (mirrortab, c); + code = SYNTAX_FROM_CACHE (mirrortab, c); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); from++; /* a 1-char comment start sequence */ if (code == Scomment && parse_sexp_ignore_comments) { - mask = SYNTAX_COMMENT_1CHAR_MASK (mirrortab, c); + comstyle = SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) == + SYNTAX_COMMENT_STYLE_A ? 0 : 1; } /* else, a 2-char comment start sequence? */ else if (from < stop - && SYNTAX_START_P (mirrortab, c, BUF_FETCH_CHAR (buf, from)) + && SYNTAX_CODE_START_FIRST_P (syncode) && parse_sexp_ignore_comments) { + int next_syncode; + UPDATE_SYNTAX_CACHE_FORWARD (from); + next_syncode = + SYNTAX_CODE_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, from)); + + if (SYNTAX_CODES_START_P (syncode, next_syncode)) + { /* we have encountered a comment start sequence and we are ignoring all text inside comments. we must record the comment style this sequence begins so that later, only a comment end of the same style actually ends the comment section */ code = Scomment; - mask = SYNTAX_COMMENT_MASK_START (mirrortab, c, - BUF_FETCH_CHAR (buf, from)); + comstyle = SYNTAX_CODES_COMMENT_MASK_START + (syncode, next_syncode) == SYNTAX_COMMENT_STYLE_A ? 0 : 1; from++; } + } + UPDATE_SYNTAX_CACHE_FORWARD (from); - if (SYNTAX_PREFIX_UNSAFE (mirrortab, c)) + if (SYNTAX_CODE_PREFIX (syncode)) continue; switch (code) @@ -930,7 +1162,9 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, /* This word counts as a sexp; return at end of it. */ while (from < stop) { - switch (SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, from))) + UPDATE_SYNTAX_CACHE_FORWARD (from); + switch (SYNTAX_FROM_CACHE (mirrortab, + BUF_FETCH_CHAR (buf, from))) { case Scharquote: case Sescape: @@ -948,11 +1182,15 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, } goto done; + case Scomment_fence: + comstyle = ST_COMMENT_STYLE; case Scomment: if (!parse_sexp_ignore_comments) break; + UPDATE_SYNTAX_CACHE_FORWARD (from); { - Bufpos newfrom = find_end_of_comment (buf, from, stop, mask); + Bufpos newfrom = + find_end_of_comment (buf, from, stop, comstyle); if (newfrom < 0) { /* we stopped because from == stop in search forward */ @@ -992,25 +1230,38 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, } break; + case Sstring_fence: case Sstring: { + Emchar stringterm; + + if (code != Sstring_fence) + { /* XEmacs change: call syntax_match on character */ Emchar ch = BUF_FETCH_CHAR (buf, from - 1); - Lisp_Object stermobj = syntax_match (syntaxtab, ch); - Emchar stringterm; + Lisp_Object stermobj = + syntax_match (syntax_cache.current_syntax_table, ch); if (CHARP (stermobj)) stringterm = XCHAR (stermobj); else stringterm = ch; + } + else + stringterm = '\0'; /* avoid compiler warnings */ while (1) { if (from >= stop) goto lose; - if (BUF_FETCH_CHAR (buf, from) == stringterm) + UPDATE_SYNTAX_CACHE_FORWARD (from); + c = BUF_FETCH_CHAR (buf, from); + if (code == Sstring + ? c == stringterm + : SYNTAX_FROM_CACHE (mirrortab, c) == Sstring_fence) break; - switch (SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, from))) + + switch (SYNTAX_FROM_CACHE (mirrortab, c)) { case Scharquote: case Sescape: @@ -1049,40 +1300,53 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, stop = BUF_BEGV (buf); while (from > stop) { - int mask = 0; /* mask for finding matching comment style */ + int comstyle = 0; /* mask for finding matching comment style */ from--; + UPDATE_SYNTAX_CACHE_BACKWARD (from); quoted = char_quoted (buf, from); if (quoted) + { from--; + UPDATE_SYNTAX_CACHE_BACKWARD (from); + } c = BUF_FETCH_CHAR (buf, from); - code = SYNTAX_UNSAFE (mirrortab, c); + code = SYNTAX_FROM_CACHE (mirrortab, c); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); if (code == Sendcomment && parse_sexp_ignore_comments) { /* we have found a single char end comment. we must record the comment style encountered so that later, we can match only the proper comment begin sequence of the same style */ - mask = SYNTAX_COMMENT_1CHAR_MASK (mirrortab, c); + comstyle = SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) + == SYNTAX_COMMENT_STYLE_A ? 0 : 1; } else if (from > stop - && SYNTAX_END_P (mirrortab, BUF_FETCH_CHAR (buf, from-1), c) + && SYNTAX_CODE_END_SECOND_P (syncode) && !char_quoted (buf, from - 1) && parse_sexp_ignore_comments) { + int prev_syncode; + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); + prev_syncode = SYNTAX_CODE_FROM_CACHE + (mirrortab, BUF_FETCH_CHAR (buf, from - 1)); + + if (SYNTAX_CODES_END_P (prev_syncode, syncode)) + { /* we must record the comment style encountered so that later, we can match only the proper comment begin sequence of the same style */ code = Sendcomment; - mask = SYNTAX_COMMENT_MASK_END (mirrortab, - BUF_FETCH_CHAR (buf, from - 1), - c); + comstyle = SYNTAX_CODES_COMMENT_MASK_END + (prev_syncode, syncode) == SYNTAX_COMMENT_STYLE_A ? 0 : 1; from--; } + } - if (SYNTAX_PREFIX_UNSAFE (mirrortab, c)) + if (SYNTAX_CODE_PREFIX (syncode)) continue; switch (quoted ? Sword : code) @@ -1094,14 +1358,15 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, passing it. */ while (from > stop) { - enum syntaxcode syncode; + UPDATE_SYNTAX_CACHE_BACKWARD (from); quoted = char_quoted (buf, from - 1); if (quoted) from--; if (! (quoted || (syncode = - SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, from - 1))) + SYNTAX_FROM_CACHE (mirrortab, + BUF_FETCH_CHAR (buf, from - 1))) == Sword || syncode == Ssymbol || syncode == Squote)) @@ -1137,29 +1402,48 @@ scan_lists (struct buffer *buf, Bufpos from, int count, int depth, } break; + case Scomment_fence: + comstyle = ST_COMMENT_STYLE; case Sendcomment: if (parse_sexp_ignore_comments) - from = find_start_of_comment (buf, from, stop, mask); + from = find_start_of_comment (buf, from, stop, comstyle); break; + case Sstring_fence: case Sstring: { + Emchar stringterm; + + if (code != Sstring_fence) + { /* XEmacs change: call syntax_match() on character */ Emchar ch = BUF_FETCH_CHAR (buf, from); - Lisp_Object stermobj = syntax_match (syntaxtab, ch); - Emchar stringterm; + Lisp_Object stermobj = + syntax_match (syntax_cache.current_syntax_table, ch); if (CHARP (stermobj)) stringterm = XCHAR (stermobj); else stringterm = ch; + } + else + stringterm = '\0'; /* avoid compiler warnings */ while (1) { if (from == stop) goto lose; - if (!char_quoted (buf, from - 1) - && stringterm == BUF_FETCH_CHAR (buf, from - 1)) + + UPDATE_SYNTAX_CACHE_BACKWARD (from - 1); + c = BUF_FETCH_CHAR (buf, from - 1); + + if ((code == Sstring + ? c == stringterm + : SYNTAX_FROM_CACHE (mirrortab, c) == Sstring_fence) + && !char_quoted (buf, from - 1)) + { break; + } + from--; } from--; @@ -1194,17 +1478,20 @@ char_quoted (struct buffer *buf, Bufpos pos) enum syntaxcode code; Bufpos beg = BUF_BEGV (buf); int quoted = 0; -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif + Bufpos startpos = pos; + + while (pos > beg) + { + UPDATE_SYNTAX_CACHE_BACKWARD (pos - 1); + code = SYNTAX_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, pos - 1)); - while (pos > beg - && ((code = SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, pos - 1))) - == Scharquote - || code == Sescape)) - pos--, quoted = !quoted; + if (code != Scharquote && code != Sescape) + break; + pos--; + quoted = !quoted; + } + + UPDATE_SYNTAX_CACHE (startpos); return quoted; } @@ -1280,15 +1567,22 @@ Optional arg BUFFER defaults to the current buffer. struct buffer *buf = decode_buffer (buffer, 0); Bufpos beg = BUF_BEGV (buf); Bufpos pos = BUF_PT (buf); +#ifndef emacs #ifdef UTF2000 Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); #else Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); #endif +#endif + Emchar c = '\0'; /* initialize to avoid compiler warnings */ + + + SETUP_SYNTAX_CACHE_FOR_BUFFER (buf, pos, -1); while (pos > beg && !char_quoted (buf, pos - 1) - && (SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, pos - 1)) == Squote - || SYNTAX_PREFIX (mirrortab, BUF_FETCH_CHAR (buf, pos - 1)))) + /* Previous statement updates syntax table. */ + && (SYNTAX_FROM_CACHE (mirrortab, c = BUF_FETCH_CHAR (buf, pos - 1)) == Squote + || SYNTAX_CODE_PREFIX (SYNTAX_CODE_FROM_CACHE (mirrortab, c)))) pos--; BUF_SET_PT (buf, pos); @@ -1321,22 +1615,17 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, when the depth becomes negative. */ int mindepth; /* Lowest DEPTH value seen. */ int start_quoted = 0; /* Nonzero means starting after a char quote */ + int boundary_stop = commentstop == -1; Lisp_Object tem; - int mask; /* comment mask */ - Lisp_Object syntaxtab = buf->syntax_table; -#ifdef UTF2000 - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->syntax_table); -#else - Lisp_Char_Table *mirrortab = XCHAR_TABLE (buf->mirror_syntax_table); -#endif + SETUP_SYNTAX_CACHE (from, 1); if (NILP (oldstate)) { depth = 0; state.instring = -1; state.incomment = 0; state.comstyle = 0; /* comment style a by default */ - mask = SYNTAX_COMMENT_STYLE_A; + state.comstr_start = -1; /* no comment/string seen. */ } else { @@ -1350,10 +1639,12 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, oldstate = Fcdr (oldstate); oldstate = Fcdr (oldstate); tem = Fcar (oldstate); /* elt 3, instring */ - state.instring = !NILP (tem) ? XINT (tem) : -1; + state.instring = ( !NILP (tem) + ? ( INTP (tem) ? XINT (tem) : ST_STRING_STYLE) + : -1); - oldstate = Fcdr (oldstate); /* elt 4, incomment */ - tem = Fcar (oldstate); + oldstate = Fcdr (oldstate); + tem = Fcar (oldstate); /* elt 4, incomment */ state.incomment = !NILP (tem); oldstate = Fcdr (oldstate); @@ -1361,13 +1652,33 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, start_quoted = !NILP (tem); /* if the eighth element of the list is nil, we are in comment style - a. if it is non-nil, we are in comment style b */ + a; if it is t, we are in comment style b; if it is 'syntax-table, + we are in a generic comment */ oldstate = Fcdr (oldstate); oldstate = Fcdr (oldstate); + tem = Fcar (oldstate); /* elt 7, comment style a/b/fence */ + state.comstyle = NILP (tem) ? 0 : ( EQ (tem, Qsyntax_table) + ? ST_COMMENT_STYLE : 1 ); + + oldstate = Fcdr (oldstate); /* elt 8, start of last comment/string */ + tem = Fcar (oldstate); + state.comstr_start = NILP (tem) ? -1 : XINT (tem); + + /* elt 9, char numbers of starts-of-expression of levels + (starting from outermost). */ oldstate = Fcdr (oldstate); - tem = Fcar (oldstate); /* elt 8, comment style a */ - state.comstyle = !NILP (tem); - mask = state.comstyle ? SYNTAX_COMMENT_STYLE_B : SYNTAX_COMMENT_STYLE_A; + tem = Fcar (oldstate); /* elt 9, intermediate data for + continuation of parsing (subject + to change). */ + while (!NILP (tem)) /* >= second enclosing sexps. */ + { + curlevel->last = XINT (Fcar (tem)); + if (++curlevel == endlevel) + error ("Nesting too deep for parser"); + curlevel->prev = -1; + curlevel->last = -1; + tem = Fcdr (tem); + } } state.quoted = 0; mindepth = depth; @@ -1387,39 +1698,56 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, while (from < end) { + Emchar c; + int syncode; + QUIT; - code = SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, from)); + UPDATE_SYNTAX_CACHE_FORWARD (from); + c = BUF_FETCH_CHAR (buf, from); + code = SYNTAX_FROM_CACHE (mirrortab, c); + syncode = SYNTAX_CODE_FROM_CACHE (mirrortab, c); from++; - if (code == Scomment) - { /* record the comment style we have entered so that only the comment-ender sequence (or single char) of the same style actually terminates the comment section. */ - mask = SYNTAX_COMMENT_1CHAR_MASK (mirrortab, - BUF_FETCH_CHAR (buf, from-1)); - state.comstyle = (mask == SYNTAX_COMMENT_STYLE_B); - state.comstart = from - 1; + if (code == Scomment) + { + state.comstyle = + SYNTAX_CODE_COMMENT_1CHAR_MASK (syncode) + == SYNTAX_COMMENT_STYLE_A ? 0 : 1; + state.comstr_start = from - 1; + } + + /* a generic comment delimiter? */ + else if (code == Scomment_fence) + { + state.comstyle = ST_COMMENT_STYLE; + state.comstr_start = from - 1; + code = Scomment; } else if (from < end && - SYNTAX_START_P (mirrortab, BUF_FETCH_CHAR (buf, from-1), - BUF_FETCH_CHAR (buf, from))) + SYNTAX_CODE_START_FIRST_P (syncode)) + { + int next_syncode; + UPDATE_SYNTAX_CACHE_FORWARD (from); + next_syncode = + SYNTAX_CODE_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, from)); + + if (SYNTAX_CODES_START_P (syncode, next_syncode)) { - /* Record the comment style we have entered so that only - the comment-end sequence of the same style actually - terminates the comment section. */ code = Scomment; - mask = SYNTAX_COMMENT_MASK_START (mirrortab, - BUF_FETCH_CHAR (buf, from-1), - BUF_FETCH_CHAR (buf, from)); - state.comstyle = (mask == SYNTAX_COMMENT_STYLE_B); - state.comstart = from-1; + state.comstyle = SYNTAX_CODES_COMMENT_MASK_START + (syncode, next_syncode) == SYNTAX_COMMENT_STYLE_A ? 0 : 1; + state.comstr_start = from - 1; from++; + UPDATE_SYNTAX_CACHE_FORWARD (from); + } } - if (SYNTAX_PREFIX (mirrortab, BUF_FETCH_CHAR (buf, from - 1))) + if (SYNTAX_CODE_PREFIX (syncode)) continue; switch (code) { @@ -1439,7 +1767,8 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, symstarted: while (from < end) { - switch (SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, from))) + UPDATE_SYNTAX_CACHE_FORWARD (from); + switch (SYNTAX_FROM_CACHE (mirrortab, BUF_FETCH_CHAR (buf, from))) { case Scharquote: case Sescape: @@ -1461,11 +1790,13 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, case Scomment: state.incomment = 1; + if (commentstop || boundary_stop) goto done; startincomment: - if (commentstop) + if (commentstop == 1) goto done; + UPDATE_SYNTAX_CACHE_FORWARD (from); { - Bufpos newfrom = find_end_of_comment (buf, from, end, mask); + Bufpos newfrom = find_end_of_comment (buf, from, end, state.comstyle); if (newfrom < 0) { /* we terminated search because from == end */ @@ -1476,7 +1807,7 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, } state.incomment = 0; state.comstyle = 0; /* reset the comment style */ - mask = 0; + if (boundary_stop) goto done; break; case Sopen: @@ -1502,28 +1833,49 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, break; case Sstring: - { - Emchar ch; + case Sstring_fence: + state.comstr_start = from - 1; if (stopbefore) goto stop; /* this arg means stop at sexp start */ curlevel->last = from - 1; - /* XEmacs change: call syntax_match() on character */ - ch = BUF_FETCH_CHAR (buf, from - 1); + if (code == Sstring_fence) { - Lisp_Object stermobj = syntax_match (syntaxtab, ch); + state.instring = ST_STRING_STYLE; + } + else + { + /* XEmacs change: call syntax_match() on character */ + Emchar ch = BUF_FETCH_CHAR (buf, from - 1); + Lisp_Object stermobj = + syntax_match (syntax_cache.current_syntax_table, ch); if (CHARP (stermobj)) state.instring = XCHAR (stermobj); else state.instring = ch; - } } + if (boundary_stop) goto done; startinstring: while (1) { + enum syntaxcode temp_code; + if (from >= end) goto done; - if (BUF_FETCH_CHAR (buf, from) == state.instring) break; - switch (SYNTAX (mirrortab, BUF_FETCH_CHAR (buf, from))) + + UPDATE_SYNTAX_CACHE_FORWARD (from); + c = BUF_FETCH_CHAR (buf, from); + temp_code = SYNTAX_FROM_CACHE (mirrortab, c); + + if ( + state.instring != ST_STRING_STYLE && + temp_code == Sstring && + c == state.instring) break; + + switch (temp_code) { + case Sstring_fence: + if (state.instring == ST_STRING_STYLE) + goto string_end; + break; case Scharquote: case Sescape: { @@ -1537,9 +1889,11 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, } from++; } + string_end: state.instring = -1; curlevel->prev = curlevel->last; from++; + if (boundary_stop) goto done; break; case Smath: @@ -1549,6 +1903,7 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, case Spunct: case Squote: case Sendcomment: + case Scomment_fence: case Sinherit: case Smax: break; @@ -1569,6 +1924,10 @@ scan_sexps_forward (struct buffer *buf, struct lisp_parse_state *stateptr, state.prevlevelstart = (curlevel == levelstart) ? -1 : (curlevel - 1)->last; state.location = from; + state.levelstarts = Qnil; + while (--curlevel >= levelstart) + state.levelstarts = Fcons (make_int (curlevel->last), + state.levelstarts); *stateptr = state; } @@ -1579,24 +1938,31 @@ Parsing stops at TO or when certain criteria are met; point is set to where parsing stops. If fifth arg OLDSTATE is omitted or nil, parsing assumes that FROM is the beginning of a function. -Value is a list of eight elements describing final state of parsing: +Value is a list of nine elements describing final state of parsing: 0. depth in parens. 1. character address of start of innermost containing list; nil if none. 2. character address of start of last complete sexp terminated. 3. non-nil if inside a string. - (It is the character that will terminate the string.) + (It is the character that will terminate the string, + or t if the string should be terminated by an explicit + `syntax-table' property.) 4. t if inside a comment. 5. t if following a quote character. 6. the minimum paren-depth encountered during this scan. - 7. nil if in comment style a, or not in a comment; t if in comment style b + 7. nil if in comment style a, or not in a comment; t if in comment style b; + `syntax-table' if given by an explicit `syntax-table' property. + 8. character address of start of last comment or string; nil if none. + 9. Intermediate data for continuation of parsing (subject to change). If third arg TARGETDEPTH is non-nil, parsing stops if the depth in parentheses becomes equal to TARGETDEPTH. Fourth arg STOPBEFORE non-nil means stop when come to any character that starts a sexp. -Fifth arg OLDSTATE is an eight-element list like what this function returns. +Fifth arg OLDSTATE is a nine-element list like what this function returns. It is used to initialize the state of the parse. Its second and third elements are ignored. -Sixth arg COMMENTSTOP non-nil means stop at the start of a comment. +Sixth arg COMMENTSTOP non-nil means stop at the start of a comment. If it +is `syntax-table', stop after the start of a comment or a string, or after +the end of a comment or string. */ (from, to, targetdepth, stopbefore, oldstate, commentstop, buffer)) { @@ -1617,17 +1983,24 @@ Sixth arg COMMENTSTOP non-nil means stop at the start of a comment. get_buffer_range_char (buf, from, to, &start, &end, 0); scan_sexps_forward (buf, &state, start, end, target, !NILP (stopbefore), oldstate, - !NILP (commentstop)); - + (NILP (commentstop) + ? 0 : (EQ (commentstop, Qsyntax_table) ? -1 : 1))); BUF_SET_PT (buf, state.location); /* reverse order */ val = Qnil; - val = Fcons (state.comstyle ? Qt : Qnil, val); + val = Fcons (state.levelstarts, val); + val = Fcons ((state.incomment || (state.instring >= 0)) + ? make_int (state.comstr_start) : Qnil, val); + val = Fcons (state.comstyle ? (state.comstyle == ST_COMMENT_STYLE + ? Qsyntax_table : Qt) : Qnil, val); val = Fcons (make_int (state.mindepth), val); val = Fcons (state.quoted ? Qt : Qnil, val); val = Fcons (state.incomment ? Qt : Qnil, val); - val = Fcons (state.instring < 0 ? Qnil : make_int (state.instring), val); + val = Fcons (state.instring < 0 + ? Qnil + : (state.instring == ST_STRING_STYLE + ? Qt : make_int (state.instring)), val); val = Fcons (state.thislevelstart < 0 ? Qnil : make_int (state.thislevelstart), val); val = Fcons (state.prevlevelstart < 0 ? Qnil : make_int (state.prevlevelstart), val); val = Fcons (make_int (state.depth), val); @@ -1726,6 +2099,7 @@ void syms_of_syntax (void) { defsymbol (&Qsyntax_table_p, "syntax-table-p"); + defsymbol (&Qsyntax_table, "syntax-table"); DEFSUBR (Fsyntax_table_p); DEFSUBR (Fsyntax_table); @@ -1755,6 +2129,15 @@ Non-nil means `forward-sexp', etc., should treat comments as whitespace. */ ); parse_sexp_ignore_comments = 0; + DEFVAR_BOOL ("lookup-syntax-properties", &lookup_syntax_properties /* +Non-nil means `forward-sexp', etc., grant `syntax-table' property. +The value of this property should be either a syntax table, or a cons +of the form (SYNTAXCODE . MATCHCHAR), SYNTAXCODE being the numeric +syntax code, MATCHCHAR being nil or the character to match (which is +relevant only for open/close type. +*/ ); + lookup_syntax_properties = 1; + DEFVAR_BOOL ("words-include-escapes", &words_include_escapes /* Non-nil means `forward-word', etc., should treat escape chars part of words. */ ); diff --git a/src/syntax.h b/src/syntax.h index 76301cf..a6526ae 100644 --- a/src/syntax.h +++ b/src/syntax.h @@ -66,6 +66,10 @@ enum syntaxcode Scomment, /* a comment-starting character */ Sendcomment, /* a comment-ending character */ Sinherit, /* use the standard syntax table for this character */ + Scomment_fence, /* Starts/ends comment which is delimited on the + other side by a char with the same syntaxcode. */ + Sstring_fence, /* Starts/ends string which is delimited on the + other side by a char with the same syntaxcode. */ Smax /* Upper bound on codes that are meaningful */ }; @@ -280,10 +284,284 @@ Lisp_Object syntax_match (Lisp_Object table, Emchar ch); extern int no_quit_in_re_search; extern struct buffer *regex_emacs_buffer; -extern int regex_emacs_buffer_p; + +/* This is the string or buffer in which we are matching. It is used + for looking up syntax properties. */ +extern Lisp_Object regex_match_object; #ifndef UTF2000 void update_syntax_table (Lisp_Char_Table *ct); #endif +#ifdef emacs + +extern int lookup_syntax_properties; + +struct syntax_cache +{ + int use_code; /* Whether to use syntax_code + or current_syntax_table. */ + struct buffer* buffer; /* The buffer the current syntax cache + applies to. */ + Lisp_Object object; /* The buffer or string the current + syntax cache applies to. */ + int syntax_code; /* Syntax code of current char. */ + Lisp_Object current_syntax_table; /* Syntax table for current pos. */ + Lisp_Object old_prop; /* Syntax-table prop at prev pos. */ + + Bufpos next_change; /* Position of the next extent + change. */ + Bufpos prev_change; /* Position of the previous + extent change. */ +}; +extern struct syntax_cache syntax_cache; + +void update_syntax_cache (int pos, int count, int init); + +/* Make syntax cache state good for CHARPOS, assuming it is + currently good for a position before CHARPOS. */ +#define UPDATE_SYNTAX_CACHE_FORWARD(pos) \ + (lookup_syntax_properties \ + ? (update_syntax_cache ((pos), 1, 0), 1) \ + : 0) + +/* Make syntax cache state good for CHARPOS, assuming it is + currently good for a position after CHARPOS. */ +#define UPDATE_SYNTAX_CACHE_BACKWARD(pos) \ + (lookup_syntax_properties \ + ? (update_syntax_cache ((pos), -1, 0), 1) \ + : 0) + +/* Make syntax cache state good for CHARPOS */ +#define UPDATE_SYNTAX_CACHE(pos) \ + (lookup_syntax_properties \ + ? (update_syntax_cache ((pos), 0, 0), 1) \ + : 0) + +#define SYNTAX_FROM_CACHE(table, c) \ + SYNTAX_FROM_CODE (SYNTAX_CODE_FROM_CACHE (table, c)) + +#define SYNTAX_CODE_FROM_CACHE(table, c) \ + ( syntax_cache.use_code \ + ? syntax_cache.syntax_code \ + : SYNTAX_CODE (XCHAR_TABLE (syntax_cache.current_syntax_table), \ + c) \ + ) + +/* Convert the byte offset BYTEPOS into a character position, + for the object recorded in syntax_cache with SETUP_SYNTAX_TABLE_FOR_OBJECT. + + The value is meant for use in the UPDATE_SYNTAX_TABLE... macros. + These macros do nothing when parse_sexp_lookup_properties is 0, + so we return 0 in that case, for speed. */ +#define SYNTAX_CACHE_BYTE_TO_CHAR(bytepos) \ + (! lookup_syntax_properties \ + ? 0 \ + : STRINGP (syntax_cache.object) \ + ? bytecount_to_charcount (XSTRING_DATA (syntax_cache.object), bytepos) \ + : (BUFFERP (syntax_cache.object) || NILP (syntax_cache.object)) \ + ? bytind_to_bufpos (syntax_cache.buffer, \ + bytepos + BI_BUF_BEGV (syntax_cache.buffer)) \ + : (bytepos)) + +#define SYNTAX_CACHE_OBJECT_BYTE_TO_CHAR(obj, buf, bytepos) \ + (! lookup_syntax_properties \ + ? 0 \ + : STRINGP (obj) \ + ? bytecount_to_charcount (XSTRING_DATA (obj), bytepos) \ + : (BUFFERP (obj) || NILP (obj)) \ + ? bytind_to_bufpos (buf, bytepos + BI_BUF_BEGV (buf)) \ + : (bytepos)) + +#else /* not emacs */ + +#define update_syntax_cache(pos, count, init) +#define UPDATE_SYNTAX_CACHE_FORWARD(pos) +#define UPDATE_SYNTAX_CACHE_BACKWARD(pos) +#define UPDATE_SYNTAX_CACHE(pos) +#define SYNTAX_FROM_CACHE SYNTAX +#define SYNTAX_CODE_FROM_CACHE SYNTAX_CODE + +#endif /* emacs */ + +#ifdef UTF2000 +#define SETUP_SYNTAX_CACHE(FROM, COUNT) \ + do { \ + syntax_cache.buffer = current_buffer; \ + syntax_cache.object = Qnil; \ + syntax_cache.current_syntax_table \ + = current_buffer->syntax_table; \ + syntax_cache.use_code = 0; \ + if (lookup_syntax_properties) \ + update_syntax_cache ((COUNT) > 0 ? (FROM) : (FROM) - 1, \ + (COUNT), 1); \ + } while (0) +#else +#define SETUP_SYNTAX_CACHE(FROM, COUNT) \ + do { \ + syntax_cache.buffer = current_buffer; \ + syntax_cache.object = Qnil; \ + syntax_cache.current_syntax_table \ + = current_buffer->mirror_syntax_table; \ + syntax_cache.use_code = 0; \ + if (lookup_syntax_properties) \ + update_syntax_cache ((COUNT) > 0 ? (FROM) : (FROM) - 1, \ + (COUNT), 1); \ + } while (0) +#endif + +#ifdef UTF2000 +#define SETUP_SYNTAX_CACHE_FOR_BUFFER(BUFFER, FROM, COUNT) \ + do { \ + syntax_cache.buffer = (BUFFER); \ + syntax_cache.object = Qnil; \ + syntax_cache.current_syntax_table = \ + syntax_cache.buffer->syntax_table; \ + syntax_cache.use_code = 0; \ + if (lookup_syntax_properties) \ + update_syntax_cache ((FROM) + ((COUNT) > 0 ? 0 : -1), \ + (COUNT), 1); \ + } while (0) +#else +#define SETUP_SYNTAX_CACHE_FOR_BUFFER(BUFFER, FROM, COUNT) \ + do { \ + syntax_cache.buffer = (BUFFER); \ + syntax_cache.object = Qnil; \ + syntax_cache.current_syntax_table = \ + syntax_cache.buffer->mirror_syntax_table; \ + syntax_cache.use_code = 0; \ + if (lookup_syntax_properties) \ + update_syntax_cache ((FROM) + ((COUNT) > 0 ? 0 : -1), \ + (COUNT), 1); \ + } while (0) +#endif + +#ifdef UTF2000 +#define SETUP_SYNTAX_CACHE_FOR_OBJECT(OBJECT, BUFFER, FROM, COUNT) \ + do { \ + syntax_cache.buffer = (BUFFER); \ + syntax_cache.object = (OBJECT); \ + if (NILP (syntax_cache.object)) \ + { \ + /* do nothing */; \ + } \ + else if (EQ (syntax_cache.object, Qt)) \ + { \ + /* do nothing */; \ + } \ + else if (STRINGP (syntax_cache.object)) \ + { \ + /* do nothing */; \ + } \ + else if (BUFFERP (syntax_cache.object)) \ + { \ + syntax_cache.buffer = XBUFFER (syntax_cache.object); \ + } \ + else \ + { \ + /* OBJECT must be buffer/string/t/nil */ \ + assert(0); \ + } \ + syntax_cache.current_syntax_table \ + = syntax_cache.buffer->syntax_table; \ + syntax_cache.use_code = 0; \ + if (lookup_syntax_properties) \ + update_syntax_cache ((FROM) + ((COUNT) > 0 ? 0 : -1), \ + (COUNT), 1); \ + } while (0) +#else +#define SETUP_SYNTAX_CACHE_FOR_OBJECT(OBJECT, BUFFER, FROM, COUNT) \ + do { \ + syntax_cache.buffer = (BUFFER); \ + syntax_cache.object = (OBJECT); \ + if (NILP (syntax_cache.object)) \ + { \ + /* do nothing */; \ + } \ + else if (EQ (syntax_cache.object, Qt)) \ + { \ + /* do nothing */; \ + } \ + else if (STRINGP (syntax_cache.object)) \ + { \ + /* do nothing */; \ + } \ + else if (BUFFERP (syntax_cache.object)) \ + { \ + syntax_cache.buffer = XBUFFER (syntax_cache.object); \ + } \ + else \ + { \ + /* OBJECT must be buffer/string/t/nil */ \ + assert(0); \ + } \ + syntax_cache.current_syntax_table \ + = syntax_cache.buffer->mirror_syntax_table; \ + syntax_cache.use_code = 0; \ + if (lookup_syntax_properties) \ + update_syntax_cache ((FROM) + ((COUNT) > 0 ? 0 : -1), \ + (COUNT), 1); \ + } while (0) +#endif + +#define SYNTAX_CODE_PREFIX(c) \ + ((c >> 7) & 1) + +#define SYNTAX_CODE_COMMENT_BITS(c) \ + ((c >> 16) &0xff) + +#define SYNTAX_CODES_START_P(a, b) \ + (((SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_FIRST_CHAR_START) >> 2) \ + & (SYNTAX_CODE_COMMENT_BITS (b) & SYNTAX_SECOND_CHAR_START)) + +#define SYNTAX_CODES_END_P(a, b) \ + (((SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_FIRST_CHAR_END) >> 2) \ + & (SYNTAX_CODE_COMMENT_BITS (b) & SYNTAX_SECOND_CHAR_END)) + +#define SYNTAX_CODES_COMMENT_MASK_START(a, b) \ + (SYNTAX_CODES_MATCH_START_P (a, b, SYNTAX_COMMENT_STYLE_A) \ + ? SYNTAX_COMMENT_STYLE_A \ + : (SYNTAX_CODES_MATCH_START_P (a, b, SYNTAX_COMMENT_STYLE_B) \ + ? SYNTAX_COMMENT_STYLE_B \ + : 0)) +#define SYNTAX_CODES_COMMENT_MASK_END(a, b) \ + (SYNTAX_CODES_MATCH_END_P (a, b, SYNTAX_COMMENT_STYLE_A) \ + ? SYNTAX_COMMENT_STYLE_A \ + : (SYNTAX_CODES_MATCH_END_P (a, b, SYNTAX_COMMENT_STYLE_B) \ + ? SYNTAX_COMMENT_STYLE_B \ + : 0)) + +#define SYNTAX_CODE_START_FIRST_P(a) \ + (SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_FIRST_CHAR_START) + +#define SYNTAX_CODE_START_SECOND_P(a) \ + (SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_SECOND_CHAR_START) + +#define SYNTAX_CODE_END_FIRST_P(a) \ + (SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_FIRST_CHAR_END) + +#define SYNTAX_CODE_END_SECOND_P(a) \ + (SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_SECOND_CHAR_END) + + +#define SYNTAX_CODES_MATCH_START_P(a, b, mask) \ + ((SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_FIRST_CHAR_START & (mask)) \ + && (SYNTAX_CODE_COMMENT_BITS (b) \ + & SYNTAX_SECOND_CHAR_START & (mask))) + +#define SYNTAX_CODES_MATCH_END_P(a, b, mask) \ + ((SYNTAX_CODE_COMMENT_BITS (a) & SYNTAX_FIRST_CHAR_END & (mask)) \ + && (SYNTAX_CODE_COMMENT_BITS (b) & SYNTAX_SECOND_CHAR_END & (mask))) + +#define SYNTAX_CODE_MATCHES_1CHAR_P(a, mask) \ + ((SYNTAX_CODE_COMMENT_BITS (a) & (mask))) + +#define SYNTAX_CODE_COMMENT_1CHAR_MASK(a) \ + ((SYNTAX_CODE_MATCHES_1CHAR_P (a, SYNTAX_COMMENT_STYLE_A) \ + ? SYNTAX_COMMENT_STYLE_A \ + : (SYNTAX_CODE_MATCHES_1CHAR_P (a, SYNTAX_COMMENT_STYLE_B) \ + ? SYNTAX_COMMENT_STYLE_B \ + : 0))) + + #endif /* INCLUDED_syntax_h_ */ diff --git a/src/sysdep.c b/src/sysdep.c index 12cd3de..e327cff 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -140,22 +140,6 @@ static void hft_reset (struct console *c); #include #endif -/* ------------------------------- */ -/* miscellaneous */ -/* ------------------------------- */ - -#ifndef HAVE_UTIMES -#ifndef HAVE_STRUCT_UTIMBUF -/* We want to use utime rather than utimes, but we couldn't find the - structure declaration. We'll use the traditional one. */ -struct utimbuf -{ - long actime; - long modtime; -}; -#endif -#endif - /************************************************************************/ /* subprocess control */ @@ -3364,17 +3348,20 @@ gettimeofday (struct timeval *tp, struct timezone *tzp) int set_file_times (char *filename, EMACS_TIME atime, EMACS_TIME mtime) { -#ifdef HAVE_UTIMES - struct timeval tv[2]; - tv[0] = atime; - tv[1] = mtime; - return utimes (filename, tv); -#else /* not HAVE_UTIMES */ +#if defined (HAVE_UTIME) struct utimbuf utb; utb.actime = EMACS_SECS (atime); utb.modtime = EMACS_SECS (mtime); return utime (filename, &utb); -#endif /* not HAVE_UTIMES */ +#elif defined (HAVE_UTIMES) + struct timeval tv[2]; + tv[0] = atime; + tv[1] = mtime; + return utimes (filename, tv); +#else + /* No file times setting function available. */ + return -1; +#endif } /* */ diff --git a/src/systime.h b/src/systime.h index e51ac51..2a56a89 100644 --- a/src/systime.h +++ b/src/systime.h @@ -63,7 +63,7 @@ void gettimeofday (struct timeval *, struct timezone *); #endif /* WIN32_NATIVE */ -#ifdef HAVE_UTIME_H +#ifdef HAVE_UTIME # include #endif diff --git a/tests/ChangeLog b/tests/ChangeLog index 7a7f6da..c6a3000 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,18 @@ +2001-02-23 Martin Buchholz + + * XEmacs 21.2.45 "Thelxepeia" is released. + +2001-02-20 Matt Tucker + + * automated/syntax-tests.el: remove debug message + +2001-02-17 Matt Tucker + + * automated/syntax-tests.el: + Added tests for syntax-table extents. + Added regression tests for fencepost bugs with + `find_start_of_comment' and `find_end_of_comment'. + 2001-02-08 Martin Buchholz * XEmacs 21.2.44 "Thalia" is released. diff --git a/tests/automated/syntax-tests.el b/tests/automated/syntax-tests.el index e848e11..f5a063c 100644 --- a/tests/automated/syntax-tests.el +++ b/tests/automated/syntax-tests.el @@ -100,3 +100,43 @@ (test-backward-word "WO " 3) (test-backward-word "W !" 3) (test-backward-word "WO !" 4)) + +;; Works like test-forward-word, except for the following: +;; after is inserted, the syntax-table +;; is applied to position . +;; can be in the form (start . end), or can be a +;; character position. +(defun test-syntax-table (string apply-pos apply-syntax stop) + (goto-char (point-max)) + (unless (consp apply-pos) + (setq apply-pos `(,apply-pos . ,(+ 1 apply-pos)))) + (let ((point (point))) + (insert string) + (put-text-property (+ point (car apply-pos)) (+ point (cdr apply-pos)) + 'syntax-table apply-syntax) + (goto-char point) + (forward-word 1) + (Assert (eq (point) (+ point stop))))) + +;; test syntax-table extents +(with-temp-buffer + ;; Apply punctuation to word + (test-syntax-table "WO" 1 `(,(syntax-string-to-code ".")) 1) + ;; Apply word to punctuation + (test-syntax-table "W." 1 `(,(syntax-string-to-code "w")) 2)) + +;; Test forward-comment at buffer boundaries +(with-temp-buffer + (c-mode) + (insert "// comment\n") + (forward-comment -2) + (Assert (eq (point) (point-min))) + + (let ((point (point))) + (insert "/* comment */") + (goto-char point) + (forward-comment 2) + (Assert (eq (point) (point-max))) + + ;; this last used to crash + (parse-partial-sexp point (point-max)))) diff --git a/version.sh b/version.sh index 336189a..c6601fc 100644 --- a/version.sh +++ b/version.sh @@ -2,8 +2,8 @@ emacs_is_beta=t emacs_major_version=21 emacs_minor_version=2 -emacs_beta_version=44 -xemacs_codename="Thalia" +emacs_beta_version=45 +xemacs_codename="Thelxepeia" infodock_major_version=4 infodock_minor_version=0 infodock_build_version=8