* Still cannot build native windows version of emacs 23.* @ 2008-02-03 15:52 Eric Lilja 2008-02-03 19:50 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-03 15:52 UTC (permalink / raw) To: emacs-devel Hi, I just performed a fresh cvs checkout and tried to build a native windows version, using --enable-font-backend. I'm using a cygwin bash shell, with latest mingw make and cygwin's gcc in mingw mode (using -mno-cygwin). I've been building cvs versions of emacs this way for a few years now. The bootstrap fails with: mingw32-make[1]: *** No rule to make target `../lisp/international/charprop.el', needed by `DOC'. Stop. mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lib-src' mingw32-make: *** [all-other-dirs-gmake] Error 2 Still getting alot of these warnings (for all lisp files maybe): Compiling url/url-ns.elWarning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. How do I avoid those in the build environment I briefly described above? Noticed several warnings in syntax.c relating to comparison always true or false (can't remember which) due to limited range of data types or something like that. You probably know what I'm talking about. Also noticed this: In toplevel form: term/mac-win.el:1146:1:Error: Invalid read syntax: "?" Doesn't sound like an elisp package I use but might be of interest to a maintainer anyway. Going to see if I can robustify my script now so it doesn't try to doing anything else if the bootstrap fails... - Eric Lilja ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-03 15:52 Still cannot build native windows version of emacs 23.* Eric Lilja @ 2008-02-03 19:50 ` Eli Zaretskii 2008-02-03 20:01 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-03 19:50 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Sun, 03 Feb 2008 16:52:46 +0100 > > Hi, I just performed a fresh cvs checkout and tried to build a native > windows version, using --enable-font-backend. I'm using a cygwin bash > shell, with latest mingw make and cygwin's gcc in mingw mode (using > -mno-cygwin). I've been building cvs versions of emacs this way for a > few years now. > > The bootstrap fails with: > mingw32-make[1]: *** No rule to make target > `../lisp/international/charprop.el', needed by `DOC'. Stop. Are you sure there were no stale files in the tree where you bootstrapped? If the above does not help, please post here the full transcript of "configure --enable-font-backend" and "make bootstrap". This problem should have been solved since yesterday. > Still getting alot of these warnings (for all lisp files maybe): > Compiling url/url-ns.elWarning: Default coding system `iso-latin-1' > disagrees with system codeset `cp1252' for this locale. > How do I avoid those in the build environment I briefly described above? > > Noticed several warnings in syntax.c relating to comparison always true > or false (can't remember which) due to limited range of data types or > something like that. You probably know what I'm talking about. > > Also noticed this: > In toplevel form: > term/mac-win.el:1146:1:Error: Invalid read syntax: "?" I see these as well. Please wait patiently until these are resolved. The Windows port currently needs quite a few fixes, and it will take time to make them. If you need a stable Emacs, I don't recommend the trunk right now. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-03 19:50 ` Eli Zaretskii @ 2008-02-03 20:01 ` Eric Lilja 2008-02-04 4:06 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-03 20:01 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Sun, 03 Feb 2008 16:52:46 +0100 >> >> Hi, I just performed a fresh cvs checkout and tried to build a native >> windows version, using --enable-font-backend. I'm using a cygwin bash >> shell, with latest mingw make and cygwin's gcc in mingw mode (using >> -mno-cygwin). I've been building cvs versions of emacs this way for a >> few years now. >> >> The bootstrap fails with: >> mingw32-make[1]: *** No rule to make target >> `../lisp/international/charprop.el', needed by `DOC'. Stop. > > Are you sure there were no stale files in the tree where you > bootstrapped? Yes, I removed the old checkout completely. > > If the above does not help, please post here the full transcript of > "configure --enable-font-backend" and "make bootstrap". This problem > should have been solved since yesterday. I will post again with them attached as text files. Do you have any tips on how I should get the output into text files in the best possible way? Just use > or something else? > >> Still getting alot of these warnings (for all lisp files maybe): >> Compiling url/url-ns.elWarning: Default coding system `iso-latin-1' >> disagrees with system codeset `cp1252' for this locale. >> How do I avoid those in the build environment I briefly described above? >> >> Noticed several warnings in syntax.c relating to comparison always true >> or false (can't remember which) due to limited range of data types or >> something like that. You probably know what I'm talking about. >> >> Also noticed this: >> In toplevel form: >> term/mac-win.el:1146:1:Error: Invalid read syntax: "?" > > I see these as well. Please wait patiently until these are resolved. > The Windows port currently needs quite a few fixes, and it will take > time to make them. If you need a stable Emacs, I don't recommend the > trunk right now. > > > I wish I could help. =/ ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-03 20:01 ` Eric Lilja @ 2008-02-04 4:06 ` Eli Zaretskii 2008-02-04 9:41 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-04 4:06 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Sun, 03 Feb 2008 21:01:33 +0100 > > > If the above does not help, please post here the full transcript of > > "configure --enable-font-backend" and "make bootstrap". This problem > > should have been solved since yesterday. > > I will post again with them attached as text files. Do you have any tips > on how I should get the output into text files in the best possible way? > Just use > or something else? Yes, but with a twist: configure --enable-font-backend 2>&1 | tee session.log make bootstrap 2>&1 | tee -a session.log This has the advantage of showing you the output and at the same time logging it to the file session.log. You will need a port of `tee' (I use the one from the ported Coreutils available on the GnuWin32 site). The "2>&1" construct assumes you have Windows 2000 or later; it will not work in Windows 9x, I think. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 4:06 ` Eli Zaretskii @ 2008-02-04 9:41 ` Eric Lilja 2008-02-04 11:02 ` Jason Rumney 2008-02-04 20:47 ` Eli Zaretskii 0 siblings, 2 replies; 49+ messages in thread From: Eric Lilja @ 2008-02-04 9:41 UTC (permalink / raw) To: emacs-devel [-- Attachment #1: Type: text/plain, Size: 1570 bytes --] Eli Zaretskii wrote: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Sun, 03 Feb 2008 21:01:33 +0100 >> >>> If the above does not help, please post here the full transcript of >>> "configure --enable-font-backend" and "make bootstrap". This problem >>> should have been solved since yesterday. >> I will post again with them attached as text files. Do you have any tips >> on how I should get the output into text files in the best possible way? >> Just use > or something else? > > Yes, but with a twist: > > configure --enable-font-backend 2>&1 | tee session.log > make bootstrap 2>&1 | tee -a session.log > > This has the advantage of showing you the output and at the same time > logging it to the file session.log. You will need a port of `tee' (I > use the one from the ported Coreutils available on the GnuWin32 site). > The "2>&1" construct assumes you have Windows 2000 or later; it will > not work in Windows 9x, I think. > > > Here's the full session log performed on fresh cvs checkout (old files removed first). Hope attaching it works (posting through gmane, it's rather big), I can host it if it doesn't work. A side question you might be able to answer: I put this in my build script (a bash script) after make bootstrap: if test $? = 0 then echo "Bootstrap succeeded, proceeding with build script..." else echo "Bootstrap failed, halting build script!" exit fi but the script thinks the bootstrap succeeded and attempts to build info, install etc...how do can I detect bootstrap errors and halt the script? - Eric [-- Attachment #2: session.log --] [-- Type: text/plain, Size: 398080 bytes --] Checking for 'cp'... Checking for 'rm'... The system cannot find the file specified. Checking whether W32 API headers are too old... c:\blandat\editors\emacs\cvsemacs\emacs\nt>gcc -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -mno-cygwin -c junk.c Using 'gcc' Checking for libXpm... ...XPM header available, building with XPM support. Generating makefiles 1 file(s) copied. 1 file(s) copied. 1 file(s) copied. config.settings gmake.defs ..\nt\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\admin\unidata\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\lib-src\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\src\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\doc\emacs\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\doc\misc\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\doc\lispref\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\doc\lispintro\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\lisp\makefile.w32-in 1 file(s) copied. config.settings gmake.defs ..\leim\makefile.w32-in 1 file(s) copied. 1 file(s) copied. Emacs successfully configured. Run `gmake' to build, then run `gmake install' to install. [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mkdir "oo-spd" mkdir "oo-spd/i386" echo oo-spd/i386 > stamp_BLD gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -o oo-spd/i386/addsection.o addsection.c gcc -o oo-spd/i386/addsection.exe \ -mno-cygwin -L../../xpm-3.5.1-1/lib oo-spd/i386/addsection.o -luser32 gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -o oo-spd/i386/cmdproxy.o cmdproxy.c gcc -o oo-spd/i386/cmdproxy.exe \ -mno-cygwin -L../../xpm-3.5.1-1/lib oo-spd/i386/cmdproxy.o -luser32 c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../lisp bootstrap-clean [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' c:/devtools/mingw_make_version_3.81-2/mingw32-make -w loaddefs.el-SH [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' echo ";;; loaddefs.el --- automatically extracted autoloads" > loaddefs.el-SH echo ";;" >> loaddefs.el-SH; echo ";;; Code:" >> loaddefs.el-SH echo "(autoload 'define-minor-mode \"easy-mmode\")" >>loaddefs.el-SH echo "(autoload 'define-ccl-program \"ccl\")" >>loaddefs.el-SH echo "(autoload 'regexp-opt \"regexp-opt\")" >>loaddefs.el-SH echo "(autoload 'string-to-list \"mule-util\")" >>loaddefs.el-SH echo "(autoload 'define-derived-mode \"derived\")" >>loaddefs.el-SH echo "(autoload 'encoded-kbd-mode \"encoded-kb\")" >>loaddefs.el-SH echo "(defvar cvs-global-menu nil)" >>loaddefs.el-SH echo "\f" >> loaddefs.el-SH echo ";;; Local Variables:" >> loaddefs.el-SH echo ";;; version-control: never" >> loaddefs.el-SH echo ";;; no-byte-compile: t" >> loaddefs.el-SH echo ";;; no-update-autoloads: t" >> loaddefs.el-SH echo ";;; End:" >> loaddefs.el-SH echo ";;; loaddefs.el ends here" >> loaddefs.el-SH mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' cp loaddefs.el-SH c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el rm loaddefs.el-SH c:/devtools/mingw_make_version_3.81-2/mingw32-make -w bootstrap-clean-SH [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' cp c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ldefs-boot.el c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el for dir in . calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete; do rm -f $dir/*.elc; done mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../src clean [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' rm "s/*.h~" "m/*.h~" rm: cannot remove `s/*.h~': No such file or directory rm: cannot remove `m/*.h~': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) rm rm: missing operand Try `rm --help' for more information. mingw32-make[1]: [clean] Error 1 (ignored) rm -r oo-spd rm: cannot remove `oo-spd': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) rm stamp_BLD rm: cannot remove `stamp_BLD': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' c:/devtools/mingw_make_version_3.81-2/mingw32-make unidatagen-clean-SH [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/nt' test -f ../admin/unidata/UnicodeData.txt && \ c:/devtools/mingw_make_version_3.81-2/mingw32-make -w -C ../admin/unidata clean [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' rm unidata-gen.elc unidata.txt rm: cannot remove `unidata-gen.elc': No such file or directory rm: cannot remove `unidata.txt': No such file or directory mingw32-make[2]: [clean] Error 1 (ignored) mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/nt' c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../lib-src clean [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lib-src' rm DOC* rm: cannot remove `DOC*': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) rm ctags.c rm: cannot remove `ctags.c': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) rm getopt.h rm: cannot remove `getopt.h': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) rm -r oo-spd rm: cannot remove `oo-spd': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) rm stamp_BLD rm: cannot remove `stamp_BLD': No such file or directory mingw32-make[1]: [clean] Error 1 (ignored) mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lib-src' c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../src bootstrap [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' c:/devtools/mingw_make_version_3.81-2/mingw32-make -w temacs CFLAGS='-I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000' [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' mkdir "oo-spd" mkdir "oo-spd/i386" echo oo-spd/i386 > stamp_BLD gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/emacs.o emacs.c rm oo-spd/i386/temacs0.a rm: cannot remove `oo-spd/i386/temacs0.a': No such file or directory mingw32-make[2]: [oo-spd/i386/temacs0.a] Error 1 (ignored) ar -rsc oo-spd/i386/temacs0.a oo-spd/i386/emacs.o gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/alloc.o alloc.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/atimer.o atimer.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/buffer.o buffer.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/bytecode.o bytecode.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/callint.o callint.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/callproc.o callproc.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/casefiddle.o casefiddle.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/cm.o cm.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/cmds.o cmds.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/data.o data.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/dired.o dired.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/dispnew.o dispnew.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/doc.o doc.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/doprnt.o doprnt.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/editfns.o editfns.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/eval.o eval.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/fileio.o fileio.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/filelock.o filelock.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/filemode.o filemode.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/fns.o fns.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/indent.o indent.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/insdel.o insdel.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/keyboard.o keyboard.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/keymap.o keymap.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/lread.o lread.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/macros.o macros.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/marker.o marker.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/md5.o md5.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/minibuf.o minibuf.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32.o w32.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32heap.o w32heap.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32inevt.o w32inevt.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32proc.o w32proc.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32console.o w32console.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/print.o print.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/process.o process.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/regex.o regex.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/scroll.o scroll.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/search.o search.c search.c: In function `Freplace_match': search.c:2456: warning: comparison is always true due to limited range of data type gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/sound.o sound.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/syntax.o syntax.c syntax.c: In function `char_quoted': syntax.c:310: warning: comparison is always true due to limited range of data type syntax.c: In function `find_defun_start': syntax.c:402: warning: comparison is always true due to limited range of data type syntax.c:406: warning: comparison is always true due to limited range of data type syntax.c: In function `back_comment': syntax.c:527: warning: comparison is always true due to limited range of data type syntax.c:556: warning: comparison is always true due to limited range of data type syntax.c: In function `scan_words': syntax.c:1225: warning: comparison is always true due to limited range of data type syntax.c:1253: warning: comparison is always true due to limited range of data type syntax.c:1277: warning: comparison is always true due to limited range of data type syntax.c:1306: warning: comparison is always true due to limited range of data type syntax.c: In function `forw_comment': syntax.c:2145: warning: comparison is always true due to limited range of data type syntax.c:2175: warning: comparison is always true due to limited range of data type syntax.c:2194: warning: comparison is always true due to limited range of data type syntax.c: In function `Fforward_comment': syntax.c:2258: warning: comparison is always true due to limited range of data type syntax.c:2266: warning: comparison is always true due to limited range of data type syntax.c:2324: warning: comparison is always true due to limited range of data type syntax.c:2341: warning: comparison is always true due to limited range of data type syntax.c:2355: warning: comparison is always true due to limited range of data type syntax.c: In function `scan_lists': syntax.c:2469: warning: comparison is always true due to limited range of data type syntax.c:2480: warning: comparison is always true due to limited range of data type syntax.c:2490: warning: comparison is always true due to limited range of data type syntax.c:2516: warning: comparison is always true due to limited range of data type syntax.c:2559: warning: comparison is always true due to limited range of data type syntax.c:2586: warning: comparison is always true due to limited range of data type syntax.c:2591: warning: comparison is always true due to limited range of data type syntax.c:2634: warning: comparison is always true due to limited range of data type syntax.c:2652: warning: comparison is always true due to limited range of data type syntax.c:2685: warning: comparison is always true due to limited range of data type syntax.c:2697: warning: comparison is always true due to limited range of data type syntax.c:2712: warning: comparison is always true due to limited range of data type syntax.c:2757: warning: comparison is always true due to limited range of data type syntax.c:2765: warning: comparison is always true due to limited range of data type syntax.c:2773: warning: comparison is always true due to limited range of data type syntax.c: In function `Fbackward_prefix_chars': syntax.c:2876: warning: comparison is always true due to limited range of data type syntax.c: In function `scan_sexps_forward': syntax.c:3038: warning: comparison is always true due to limited range of data type syntax.c:3056: warning: comparison is always true due to limited range of data type syntax.c:3087: warning: comparison is always true due to limited range of data type syntax.c:3098: warning: comparison is always true due to limited range of data type syntax.c:3104: warning: comparison is always true due to limited range of data type syntax.c:3114: warning: comparison is always true due to limited range of data type syntax.c:3138: warning: comparison is always true due to limited range of data type syntax.c:3172: warning: comparison is always true due to limited range of data type syntax.c:3184: warning: comparison is always true due to limited range of data type syntax.c:3201: warning: comparison is always true due to limited range of data type syntax.c:3205: warning: comparison is always true due to limited range of data type syntax.c:3211: warning: comparison is always true due to limited range of data type gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/sysdep.o sysdep.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/term.o term.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/termcap.o termcap.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/tparam.o tparam.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/undo.o undo.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/unexw32.o unexw32.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/window.o window.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/xdisp.o xdisp.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/casetab.o casetab.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/floatfns.o floatfns.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/frame.o frame.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/gmalloc.o gmalloc.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/intervals.o intervals.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/composite.o composite.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/ralloc.o ralloc.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/textprop.o textprop.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/vm-limit.o vm-limit.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/region-cache.o region-cache.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/strftime.o strftime.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/charset.o charset.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/character.o character.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/chartab.o chartab.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/coding.o coding.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/category.o category.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/ccl.o ccl.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/font.o font.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/fontset.o fontset.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/fringe.o fringe.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/image.o image.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/terminal.o terminal.c rm oo-spd/i386/temacs1.a rm: cannot remove `oo-spd/i386/temacs1.a': No such file or directory mingw32-make[2]: [oo-spd/i386/temacs1.a] Error 1 (ignored) ar -rsc oo-spd/i386/temacs1.a oo-spd/i386/alloc.o oo-spd/i386/atimer.o oo-spd/i386/buffer.o oo-spd/i386/bytecode.o oo-spd/i386/callint.o oo-spd/i386/callproc.o oo-spd/i386/casefiddle.o oo-spd/i386/cm.o oo-spd/i386/cmds.o oo-spd/i386/data.o oo-spd/i386/dired.o oo-spd/i386/dispnew.o oo-spd/i386/doc.o oo-spd/i386/doprnt.o oo-spd/i386/editfns.o oo-spd/i386/eval.o oo-spd/i386/fileio.o oo-spd/i386/filelock.o oo-spd/i386/filemode.o oo-spd/i386/fns.o oo-spd/i386/indent.o oo-spd/i386/insdel.o oo-spd/i386/keyboard.o oo-spd/i386/keymap.o oo-spd/i386/lread.o oo-spd/i386/macros.o oo-spd/i386/marker.o oo-spd/i386/md5.o oo-spd/i386/minibuf.o oo-spd/i386/w32.o oo-spd/i386/w32heap.o oo-spd/i386/w32inevt.o oo-spd/i386/w32proc.o oo-spd/i386/w32console.o oo-spd/i386/print.o oo-spd/i386/process.o oo-spd/i386/regex.o oo-spd/i386/scroll.o oo-spd/i386/search.o oo-spd/i386/sound.o oo-spd/i386/syntax.o oo-spd/i386/sysdep.o oo-spd/i386/term.o oo-spd/i386/termcap.o oo-spd/i386/tparam.o oo-spd/i386/undo.o oo-spd/i386/unexw32.o oo-spd/i386/window.o oo-spd/i386/xdisp.o oo-spd/i386/casetab.o oo-spd/i386/floatfns.o oo-spd/i386/frame.o oo-spd/i386/gmalloc.o oo-spd/i386/intervals.o oo-spd/i386/composite.o oo-spd/i386/ralloc.o oo-spd/i386/textprop.o oo-spd/i386/vm-limit.o oo-spd/i386/region-cache.o oo-spd/i386/strftime.o oo-spd/i386/charset.o oo-spd/i386/character.o oo-spd/i386/chartab.o oo-spd/i386/coding.o oo-spd/i386/category.o oo-spd/i386/ccl.o oo-spd/i386/font.o oo-spd/i386/fontset.o oo-spd/i386/fringe.o oo-spd/i386/image.o oo-spd/i386/terminal.o gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32term.o w32term.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32xfns.o w32xfns.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32fns.o w32fns.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/xfaces.o xfaces.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32select.o w32select.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32menu.o w32menu.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32reg.o w32reg.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32bdf.o w32bdf.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/w32font.o w32font.c rm oo-spd/i386/temacw32.a rm: cannot remove `oo-spd/i386/temacw32.a': No such file or directory mingw32-make[2]: [oo-spd/i386/temacw32.a] Error 1 (ignored) ar -rsc oo-spd/i386/temacw32.a oo-spd/i386/w32term.o oo-spd/i386/w32xfns.o oo-spd/i386/w32fns.o oo-spd/i386/xfaces.o oo-spd/i386/w32select.o oo-spd/i386/w32menu.o oo-spd/i386/w32reg.o oo-spd/i386/w32bdf.o oo-spd/i386/w32font.o gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/lastfile.o lastfile.c rm oo-spd/i386/lastfile.a rm: cannot remove `oo-spd/i386/lastfile.a': No such file or directory mingw32-make[2]: [oo-spd/i386/lastfile.a] Error 1 (ignored) ar -rsc oo-spd/i386/lastfile.a oo-spd/i386/lastfile.o gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I../nt/inc -D_UCHAR_T -DHAVE_NTGUI=1 -DUSE_CRT_DLL=1 -DPURESIZE=5000000 -o oo-spd/i386/firstfile.o firstfile.c windres -O coff --include-dir ../nt -o oo-spd/i386/emacs.res ../nt/emacs.rc gcc -o oo-spd/i386/temacs.bin -mno-cygwin -L../../xpm-3.5.1-1/lib -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -Wl,-subsystem,console -Wl,-entry,__start -Wl,-Map,oo-spd/i386/temacs.map oo-spd/i386/firstfile.o oo-spd/i386/emacs.res oo-spd/i386/temacs0.a oo-spd/i386/temacs1.a oo-spd/i386/temacw32.a oo-spd/i386/lastfile.a -lwinmm -ladvapi32 -lgdi32 -lcomdlg32 -luser32 -lmpr -lshell32 -lwinspool -lole32 -lcomctl32 "../nt/oo-spd/i386/addsection" "oo-spd/i386/temacs.bin" "oo-spd/i386/temacs.exe" EMHEAP 21 Dumping from oo-spd/i386/temacs.bin to oo-spd/i386/temacs.exe echo oo-spd/i386/emacs.o > oo-spd/i386/buildobj.lst echo oo-spd/i386/alloc.o oo-spd/i386/atimer.o oo-spd/i386/buffer.o oo-spd/i386/bytecode.o oo-spd/i386/callint.o oo-spd/i386/callproc.o oo-spd/i386/casefiddle.o oo-spd/i386/cm.o oo-spd/i386/cmds.o oo-spd/i386/data.o oo-spd/i386/dired.o oo-spd/i386/dispnew.o oo-spd/i386/doc.o oo-spd/i386/doprnt.o oo-spd/i386/editfns.o oo-spd/i386/eval.o oo-spd/i386/fileio.o oo-spd/i386/filelock.o oo-spd/i386/filemode.o oo-spd/i386/fns.o oo-spd/i386/indent.o oo-spd/i386/insdel.o oo-spd/i386/keyboard.o oo-spd/i386/keymap.o oo-spd/i386/lread.o oo-spd/i386/macros.o oo-spd/i386/marker.o oo-spd/i386/md5.o oo-spd/i386/minibuf.o oo-spd/i386/w32.o oo-spd/i386/w32heap.o oo-spd/i386/w32inevt.o oo-spd/i386/w32proc.o oo-spd/i386/w32console.o oo-spd/i386/print.o oo-spd/i386/process.o oo-spd/i386/regex.o oo-spd/i386/scroll.o oo-spd/i386/search.o oo-spd/i386/sound.o oo-spd/i386/syntax.o oo-spd/i386/sysdep.o oo-spd/i386/term.o oo-spd/i386/termcap.o oo-spd/i386/tparam.o oo-spd/i386/undo.o oo-spd/i386/unexw32.o oo-spd/i386/window.o oo-spd/i386/xdisp.o oo-spd/i386/casetab.o oo-spd/i386/floatfns.o oo-spd/i386/frame.o oo-spd/i386/gmalloc.o oo-spd/i386/intervals.o oo-spd/i386/composite.o oo-spd/i386/ralloc.o oo-spd/i386/textprop.o oo-spd/i386/vm-limit.o oo-spd/i386/region-cache.o oo-spd/i386/strftime.o oo-spd/i386/charset.o oo-spd/i386/character.o oo-spd/i386/chartab.o oo-spd/i386/coding.o oo-spd/i386/category.o oo-spd/i386/ccl.o oo-spd/i386/font.o oo-spd/i386/fontset.o oo-spd/i386/fringe.o oo-spd/i386/image.o oo-spd/i386/terminal.o >> oo-spd/i386/buildobj.lst echo oo-spd/i386/w32term.o oo-spd/i386/w32xfns.o oo-spd/i386/w32fns.o oo-spd/i386/xfaces.o oo-spd/i386/w32select.o oo-spd/i386/w32menu.o oo-spd/i386/w32reg.o oo-spd/i386/w32bdf.o >> oo-spd/i386/buildobj.lst echo oo-spd/i386/w32font.o >> oo-spd/i386/buildobj.lst mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' "./oo-spd/i386/temacs.exe" -batch -l loadup bootstrap Loading loadup.el (source)... Using load-path (../lisp c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes) Loading emacs-lisp/byte-run (source)... Loading emacs-lisp/backquote (source)... Loading subr (source)... Loading version.el (source)... Loading widget (source)... Loading custom (source)... Loading emacs-lisp/map-ynp (source)... Loading cus-start (source)... Loading international/mule (source)... Loading international/mule-conf.el (source)... Loading env (source)... Loading format (source)... Loading bindings (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/files.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-face.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/faces.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/button.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/startup.el (source)... Lists of integers (garbage collection statistics) are normal output while building Emacs; they do not indicate a problem. ((107092 . 28045) (6236 . 60) (619 . 67) 442321 1029626 (25 . 1) (19 . 0) (8958 . 7233)) Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el (source)... ((128876 . 9216) (8963 . 0) (627 . 59) 1355884 1029626 (51 . 33) (19 . 0) (17228 . 3247)) Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/simple.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jka-cmpr-hook.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/mule-cmds.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/case-table.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/characters.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/composite.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/chinese.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/cyrillic.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/indian.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/devanagari.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/malayalam.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tamil.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/kannada.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/english.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/ethiopic.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/european.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/czech.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/slovak.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/romanian.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/greek.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/hebrew.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/japanese.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/cp51932.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/eucjp-ms.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/korean.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/lao.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tai-viet.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/thai.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tibetan.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/vietnamese.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/misc-lang.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/utf-8-lang.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/georgian.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/khmer.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/burmese.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/cham.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/indent.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/window.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/frame.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/tty-colors.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/font-core.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/facemenu.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/syntax.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/font-lock.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jit-lock.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-bar.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/select.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/timer.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearch.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rfn-eshadow.el (source)... ((222305 . 20516) (12053 . 6) (665 . 134) 1762747 1258299 (75 . 9) (20 . 21) (25291 . 10682)) Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/menu-bar.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/paths.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lisp.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/page.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/register.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/paragraphs.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/abbrev.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lisp-mode.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/text-mode.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/fill.el (source)... ((247274 . 17895) (12663 . 3) (668 . 131) 1855226 1262929 (75 . 9) (20 . 21) (27181 . 10745)) Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/replace.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/buff-menu.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/fringe.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/fontset.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dnd.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mwheel.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tool-bar.el (source)... ((261768 . 12025) (13129 . 7) (669 . 130) 1919177 1263420 (84 . 1) (20 . 21) (28426 . 9500)) Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/w32-vars.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/w32-win.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ls-lisp.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/disp-table.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-w32.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/w32-fns.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/float-sup.el (source)... ((268490 . 5303) (13296 . 0) (669 . 130) 1950924 1263511 (96 . 4) (20 . 21) (29796 . 8130)) Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-hooks.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-hook.el (source)... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tooltip.el (source)... ((272940 . 5204) (13455 . 2) (670 . 129) 1973127 1263564 (98 . 2) (20 . 21) (30243 . 7683)) Finding pointers to doc strings... Finding pointers to doc strings...done Dumping under the name emacs 73854 pure bytes used Dumping from c:/blandat/editors/emacs/cvsemacs/emacs/src/oo-spd/i386/temacs.exe to c:/blandat/editors/emacs/cvsemacs/emacs/src/oo-spd/i386/emacs.exe mkdir "../bin" cp -f oo-spd/i386/emacs.exe ../bin mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' c:/devtools/mingw_make_version_3.81-2/mingw32-make unidatagen-SH [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/nt' test -f ../admin/unidata/UnicodeData.txt && \ c:/devtools/mingw_make_version_3.81-2/mingw32-make -w -C ../admin/unidata [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el Cannot open load file: encoded-kb mingw32-make[2]: *** [unidata-gen.elc] Error 255 mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' mingw32-make[1]: [unidatagen-SH] Error 2 (ignored) mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/nt' c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../src bootstrap-clean [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' rm oo-spd/i386/alloc.o rm oo-spd/i386/data.o rm oo-spd/i386/intervals.o rm oo-spd/i386/keyboard.o rm oo-spd/i386/keymap.o mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/src' cp -f oo-spd/i386/cmdproxy.exe ../bin c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../lisp bootstrap [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' c:/blandat/editors/emacs/cvsemacs/emacs/lisp/../update-subdirs c:/blandat/editors/emacs/cvsemacs/emacs/lisp; \ for file in calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete; do \ c:/blandat/editors/emacs/cvsemacs/emacs/lisp/../update-subdirs $file; \ done; Directories: . calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l autoload \ --eval '(setq find-file-hook nil find-file-suppress-same-file-warnings t)' \ -f w32-batch-update-autoloads "c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el" . calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Generating autoloads for play/5x5.el... Generating autoloads for play/5x5.el...done Generating autoloads for abbrev.el... Generating autoloads for abbrev.el...done Generating autoloads for abbrevlist.el... Generating autoloads for abbrevlist.el...done Generating autoloads for progmodes/ada-mode.el... Generating autoloads for progmodes/ada-mode.el...done Generating autoloads for progmodes/ada-stmt.el... Generating autoloads for progmodes/ada-stmt.el...done Generating autoloads for progmodes/ada-xref.el... Generating autoloads for progmodes/ada-xref.el...done Generating autoloads for add-log.el... Generating autoloads for add-log.el...done Generating autoloads for emacs-lisp/advice.el... Generating autoloads for emacs-lisp/advice.el...done Generating autoloads for align.el... Generating autoloads for align.el...done Generating autoloads for allout.el... Generating autoloads for allout.el...done Generating autoloads for net/ange-ftp.el... Generating autoloads for net/ange-ftp.el...done Generating autoloads for play/animate.el... Generating autoloads for play/animate.el...done Generating autoloads for ansi-color.el... Generating autoloads for ansi-color.el...done Generating autoloads for progmodes/antlr-mode.el... Generating autoloads for progmodes/antlr-mode.el...done Generating autoloads for calendar/appt.el... Generating autoloads for calendar/appt.el...done Generating autoloads for apropos.el... Generating autoloads for apropos.el...done Generating autoloads for arc-mode.el... Generating autoloads for arc-mode.el...done Generating autoloads for array.el... Generating autoloads for array.el...done Generating autoloads for textmodes/artist.el... Generating autoloads for textmodes/artist.el...done Generating autoloads for progmodes/asm-mode.el... Generating autoloads for progmodes/asm-mode.el...done Generating autoloads for autoarg.el... Generating autoloads for autoarg.el...done Generating autoloads for progmodes/autoconf.el... Generating autoloads for progmodes/autoconf.el...done Generating autoloads for autoinsert.el... Generating autoloads for autoinsert.el...done Generating autoloads for emacs-lisp/autoload.el... Generating autoloads for emacs-lisp/autoload.el...done Generating autoloads for autorevert.el... Generating autoloads for autorevert.el...done Generating autoloads for avoid.el... Generating autoloads for avoid.el...done Generating autoloads for emacs-lisp/backquote.el... Generating autoloads for emacs-lisp/backquote.el...done Generating autoloads for battery.el... Generating autoloads for battery.el...done Generating autoloads for emacs-lisp/benchmark.el... Generating autoloads for emacs-lisp/benchmark.el...done Generating autoloads for textmodes/bibtex.el... Generating autoloads for textmodes/bibtex.el...done Generating autoloads for textmodes/bibtex-style.el... Generating autoloads for textmodes/bibtex-style.el...done Generating autoloads for play/blackbox.el... Generating autoloads for play/blackbox.el...done Generating autoloads for bookmark.el... Generating autoloads for bookmark.el...done Generating autoloads for net/browse-url.el... Generating autoloads for net/browse-url.el...done Generating autoloads for play/bruce.el... Generating autoloads for play/bruce.el...done Generating autoloads for bs.el... Generating autoloads for bs.el...done Generating autoloads for play/bubbles.el... Generating autoloads for play/bubbles.el...done Generating autoloads for button.el... Generating autoloads for button.el...done Generating autoloads for emacs-lisp/bytecomp.el... Generating autoloads for emacs-lisp/bytecomp.el...done Generating autoloads for calendar/cal-dst.el... Generating autoloads for calendar/cal-dst.el...done Generating autoloads for calendar/cal-hebrew.el... Generating autoloads for calendar/cal-hebrew.el...done Generating autoloads for calc/calc.el... Generating autoloads for calc/calc.el...done Generating autoloads for calculator.el... Generating autoloads for calculator.el...done Generating autoloads for calendar/calendar.el... Generating autoloads for calendar/calendar.el...done Generating autoloads for gnus/canlock.el... Generating autoloads for gnus/canlock.el...done Generating autoloads for progmodes/cap-words.el... Generating autoloads for progmodes/cap-words.el...done Generating autoloads for progmodes/cc-compat.el... Generating autoloads for progmodes/cc-compat.el...done Generating autoloads for progmodes/cc-engine.el... Generating autoloads for progmodes/cc-engine.el...done Generating autoloads for progmodes/cc-mode.el... Generating autoloads for progmodes/cc-mode.el...done Generating autoloads for progmodes/cc-styles.el... Generating autoloads for progmodes/cc-styles.el...done Generating autoloads for progmodes/cc-subword.el... Generating autoloads for progmodes/cc-subword.el...done Generating autoloads for progmodes/cc-vars.el... Generating autoloads for progmodes/cc-vars.el...done Generating autoloads for international/ccl.el... Generating autoloads for international/ccl.el...done Generating autoloads for progmodes/cfengine.el... Generating autoloads for progmodes/cfengine.el...done Generating autoloads for emacs-lisp/check-declare.el... Generating autoloads for emacs-lisp/check-declare.el...done Generating autoloads for emacs-lisp/checkdoc.el... Generating autoloads for emacs-lisp/checkdoc.el...done Generating autoloads for language/china-util.el... Generating autoloads for language/china-util.el...done Generating autoloads for chistory.el... Generating autoloads for chistory.el...done Generating autoloads for emacs-lisp/cl.el... Generating autoloads for emacs-lisp/cl.el...done Generating autoloads for emacs-lisp/cl-indent.el... Generating autoloads for emacs-lisp/cl-indent.el...done Generating autoloads for progmodes/cmacexp.el... Generating autoloads for progmodes/cmacexp.el...done Generating autoloads for cmuscheme.el... Generating autoloads for cmuscheme.el...done Generating autoloads for international/codepage.el... Generating autoloads for international/codepage.el...done Generating autoloads for comint.el... Generating autoloads for comint.el...done Generating autoloads for compare-w.el... Generating autoloads for compare-w.el...done Generating autoloads for progmodes/compile.el... Generating autoloads for progmodes/compile.el...done Generating autoloads for complete.el... Generating autoloads for complete.el...done Generating autoloads for completion.el... Generating autoloads for completion.el...done Generating autoloads for composite.el... Generating autoloads for composite.el...done Generating autoloads for textmodes/conf-mode.el... Generating autoloads for textmodes/conf-mode.el...done Generating autoloads for play/cookie1.el... Generating autoloads for play/cookie1.el...done Generating autoloads for emacs-lisp/copyright.el... Generating autoloads for emacs-lisp/copyright.el...done Generating autoloads for progmodes/cperl-mode.el... Generating autoloads for progmodes/cperl-mode.el...done Generating autoloads for progmodes/cpp.el... Generating autoloads for progmodes/cpp.el...done Generating autoloads for emulation/crisp.el... Generating autoloads for emulation/crisp.el...done Generating autoloads for emacs-lisp/crm.el... Generating autoloads for emacs-lisp/crm.el...done Generating autoloads for textmodes/css-mode.el... Generating autoloads for textmodes/css-mode.el...done Generating autoloads for emulation/cua-base.el... Generating autoloads for emulation/cua-base.el...done Generating autoloads for cus-edit.el... Generating autoloads for cus-edit.el...done Generating autoloads for cus-face.el... Generating autoloads for cus-face.el...done Generating autoloads for cus-theme.el... Generating autoloads for cus-theme.el...done Generating autoloads for cvs-status.el... Generating autoloads for cvs-status.el...done Generating autoloads for progmodes/cwarn.el... Generating autoloads for progmodes/cwarn.el...done Generating autoloads for language/cyril-util.el... Generating autoloads for language/cyril-util.el...done Generating autoloads for dabbrev.el... Generating autoloads for dabbrev.el...done Generating autoloads for progmodes/dcl-mode.el... Generating autoloads for progmodes/dcl-mode.el...done Generating autoloads for emacs-lisp/debug.el... Generating autoloads for emacs-lisp/debug.el...done Generating autoloads for play/decipher.el... Generating autoloads for play/decipher.el...done Generating autoloads for delim-col.el... Generating autoloads for delim-col.el...done Generating autoloads for progmodes/delphi.el... Generating autoloads for progmodes/delphi.el...done Generating autoloads for delsel.el... Generating autoloads for delsel.el...done Generating autoloads for emacs-lisp/derived.el... Generating autoloads for emacs-lisp/derived.el...done Generating autoloads for descr-text.el... Generating autoloads for descr-text.el...done Generating autoloads for desktop.el... Generating autoloads for desktop.el...done Generating autoloads for gnus/deuglify.el... Generating autoloads for gnus/deuglify.el...done Generating autoloads for language/devan-util.el... Generating autoloads for language/devan-util.el...done Generating autoloads for calendar/diary-lib.el... Generating autoloads for calendar/diary-lib.el...done Generating autoloads for diff.el... Generating autoloads for diff.el...done Generating autoloads for diff-mode.el... Generating autoloads for diff-mode.el...done Generating autoloads for dired.el... Generating autoloads for dired.el...done Generating autoloads for dired-aux.el... Generating autoloads for dired-aux.el...done Generating autoloads for dired-x.el... Generating autoloads for dired-x.el...done Generating autoloads for dirtrack.el... Generating autoloads for dirtrack.el...done Generating autoloads for emacs-lisp/disass.el... Generating autoloads for emacs-lisp/disass.el...done Generating autoloads for disp-table.el... Generating autoloads for disp-table.el...done Generating autoloads for play/dissociate.el... Generating autoloads for play/dissociate.el...done Generating autoloads for dnd.el... Generating autoloads for dnd.el...done Generating autoloads for textmodes/dns-mode.el... Generating autoloads for textmodes/dns-mode.el...done Generating autoloads for doc-view.el... Generating autoloads for doc-view.el...done Generating autoloads for play/doctor.el... Generating autoloads for play/doctor.el...done Generating autoloads for double.el... Generating autoloads for double.el...done Generating autoloads for play/dunnet.el... Generating autoloads for play/dunnet.el...done Generating autoloads for gnus/earcon.el... Generating autoloads for gnus/earcon.el...done Generating autoloads for emacs-lisp/easy-mmode.el... Generating autoloads for emacs-lisp/easy-mmode.el...done Generating autoloads for emacs-lisp/easymenu.el... Generating autoloads for emacs-lisp/easymenu.el...done Generating autoloads for progmodes/ebnf2ps.el... Generating autoloads for progmodes/ebnf2ps.el...done Generating autoloads for progmodes/ebrowse.el... Generating autoloads for progmodes/ebrowse.el...done Generating autoloads for ebuff-menu.el... Generating autoloads for ebuff-menu.el...done Generating autoloads for echistory.el... Generating autoloads for echistory.el...done Generating autoloads for gnus/ecomplete.el... Generating autoloads for gnus/ecomplete.el...done Generating autoloads for emacs-lisp/edebug.el... Generating autoloads for emacs-lisp/edebug.el...done Generating autoloads for ediff.el... Generating autoloads for ediff.el...done Generating autoloads for ediff-help.el... Generating autoloads for ediff-help.el...done Generating autoloads for ediff-hook.el... Generating autoloads for ediff-hook.el...done Generating autoloads for ediff-mult.el... Generating autoloads for ediff-mult.el...done Generating autoloads for ediff-util.el... Generating autoloads for ediff-util.el...done Generating autoloads for edmacro.el... Generating autoloads for edmacro.el...done Generating autoloads for emulation/edt.el... Generating autoloads for emulation/edt.el...done Generating autoloads for ehelp.el... Generating autoloads for ehelp.el...done Generating autoloads for emacs-lisp/eldoc.el... Generating autoloads for emacs-lisp/eldoc.el...done Generating autoloads for elide-head.el... Generating autoloads for elide-head.el...done Generating autoloads for emacs-lisp/elint.el... Generating autoloads for emacs-lisp/elint.el...done Generating autoloads for emacs-lisp/elp.el... Generating autoloads for emacs-lisp/elp.el...done Generating autoloads for mail/emacsbug.el... Generating autoloads for mail/emacsbug.el...done Generating autoloads for international/encoded-kb.el... Generating autoloads for international/encoded-kb.el...done Generating autoloads for textmodes/enriched.el... Generating autoloads for textmodes/enriched.el...done Generating autoloads for erc/erc.el... Generating autoloads for erc/erc.el...done Generating autoloads for erc/erc-autoaway.el... Generating autoloads for erc/erc-autoaway.el...done Generating autoloads for erc/erc-button.el... Generating autoloads for erc/erc-button.el...done Generating autoloads for erc/erc-capab.el... Generating autoloads for erc/erc-capab.el...done Generating autoloads for erc/erc-compat.el... Generating autoloads for erc/erc-compat.el...done Generating autoloads for erc/erc-dcc.el... Generating autoloads for erc/erc-dcc.el...done Generating autoloads for erc/erc-ezbounce.el... Generating autoloads for erc/erc-ezbounce.el...done Generating autoloads for erc/erc-fill.el... Generating autoloads for erc/erc-fill.el...done Generating autoloads for erc/erc-hecomplete.el... Generating autoloads for erc/erc-hecomplete.el...done Generating autoloads for erc/erc-identd.el... Generating autoloads for erc/erc-identd.el...done Generating autoloads for erc/erc-imenu.el... Generating autoloads for erc/erc-imenu.el...done Generating autoloads for erc/erc-join.el... Generating autoloads for erc/erc-join.el...done Generating autoloads for erc/erc-log.el... Generating autoloads for erc/erc-log.el...done Generating autoloads for erc/erc-match.el... Generating autoloads for erc/erc-match.el...done Generating autoloads for erc/erc-menu.el... Generating autoloads for erc/erc-menu.el...done Generating autoloads for erc/erc-netsplit.el... Generating autoloads for erc/erc-netsplit.el...done Generating autoloads for erc/erc-networks.el... Generating autoloads for erc/erc-networks.el...done Generating autoloads for erc/erc-notify.el... Generating autoloads for erc/erc-notify.el...done Generating autoloads for erc/erc-page.el... Generating autoloads for erc/erc-page.el...done Generating autoloads for erc/erc-pcomplete.el... Generating autoloads for erc/erc-pcomplete.el...done Generating autoloads for erc/erc-replace.el... Generating autoloads for erc/erc-replace.el...done Generating autoloads for erc/erc-ring.el... Generating autoloads for erc/erc-ring.el...done Generating autoloads for erc/erc-services.el... Generating autoloads for erc/erc-services.el...done Generating autoloads for erc/erc-sound.el... Generating autoloads for erc/erc-sound.el...done Generating autoloads for erc/erc-speedbar.el... Generating autoloads for erc/erc-speedbar.el...done Generating autoloads for erc/erc-spelling.el... Generating autoloads for erc/erc-spelling.el...done Generating autoloads for erc/erc-stamp.el... Generating autoloads for erc/erc-stamp.el...done Generating autoloads for erc/erc-track.el... Generating autoloads for erc/erc-track.el...done Generating autoloads for erc/erc-truncate.el... Generating autoloads for erc/erc-truncate.el...done Generating autoloads for erc/erc-xdcc.el... Generating autoloads for erc/erc-xdcc.el...done Generating autoloads for eshell/esh-mode.el... Generating autoloads for eshell/esh-mode.el...done Generating autoloads for eshell/esh-test.el... Generating autoloads for eshell/esh-test.el...done Generating autoloads for eshell/eshell.el... Generating autoloads for eshell/eshell.el...done Generating autoloads for progmodes/etags.el... Generating autoloads for progmodes/etags.el...done Generating autoloads for language/ethio-util.el... Generating autoloads for language/ethio-util.el...done Generating autoloads for net/eudc.el... Generating autoloads for net/eudc.el...done Generating autoloads for net/eudc-bob.el... Generating autoloads for net/eudc-bob.el...done Generating autoloads for net/eudc-export.el... Generating autoloads for net/eudc-export.el...done Generating autoloads for net/eudc-hotlist.el... Generating autoloads for net/eudc-hotlist.el...done Generating autoloads for emacs-lisp/ewoc.el... Generating autoloads for emacs-lisp/ewoc.el...done Generating autoloads for progmodes/executable.el... Generating autoloads for progmodes/executable.el...done Generating autoloads for expand.el... Generating autoloads for expand.el...done Generating autoloads for progmodes/f90.el... Generating autoloads for progmodes/f90.el...done Generating autoloads for facemenu.el... Generating autoloads for facemenu.el...done Generating autoloads for obsolete/fast-lock.el... Generating autoloads for obsolete/fast-lock.el...done Generating autoloads for mail/feedmail.el... Generating autoloads for mail/feedmail.el...done Generating autoloads for ffap.el... Generating autoloads for ffap.el...done Generating autoloads for filecache.el... Generating autoloads for filecache.el...done Generating autoloads for filesets.el... Generating autoloads for filesets.el...done Generating autoloads for textmodes/fill.el... Generating autoloads for textmodes/fill.el...done Generating autoloads for find-dired.el... Generating autoloads for find-dired.el...done Generating autoloads for find-file.el... Generating autoloads for find-file.el...done Generating autoloads for emacs-lisp/find-func.el... Generating autoloads for emacs-lisp/find-func.el...done Generating autoloads for find-lisp.el... Generating autoloads for find-lisp.el...done Generating autoloads for finder.el... Generating autoloads for finder.el...done Generating autoloads for flow-ctrl.el... Generating autoloads for flow-ctrl.el...done Generating autoloads for gnus/flow-fill.el... Generating autoloads for gnus/flow-fill.el...done Generating autoloads for progmodes/flymake.el... Generating autoloads for progmodes/flymake.el...done Generating autoloads for textmodes/flyspell.el... Generating autoloads for textmodes/flyspell.el...done Generating autoloads for follow.el... Generating autoloads for follow.el...done Generating autoloads for mail/footnote.el... Generating autoloads for mail/footnote.el...done Generating autoloads for forms.el... Generating autoloads for forms.el...done Generating autoloads for progmodes/fortran.el... Generating autoloads for progmodes/fortran.el...done Generating autoloads for play/fortune.el... Generating autoloads for play/fortune.el...done Generating autoloads for progmodes/gdb-ui.el... Generating autoloads for progmodes/gdb-ui.el...done Generating autoloads for emacs-lisp/generic.el... Generating autoloads for emacs-lisp/generic.el...done Generating autoloads for progmodes/glasses.el... Generating autoloads for progmodes/glasses.el...done Generating autoloads for gnus/gmm-utils.el... Generating autoloads for gnus/gmm-utils.el...done Generating autoloads for gnus/gnus.el... Generating autoloads for gnus/gnus.el...done Generating autoloads for gnus/gnus-agent.el... Generating autoloads for gnus/gnus-agent.el...done Generating autoloads for gnus/gnus-art.el... Generating autoloads for gnus/gnus-art.el...done Generating autoloads for gnus/gnus-audio.el... Generating autoloads for gnus/gnus-audio.el...done Generating autoloads for gnus/gnus-bookmark.el... Generating autoloads for gnus/gnus-bookmark.el...done Generating autoloads for gnus/gnus-cache.el... Generating autoloads for gnus/gnus-cache.el...done Generating autoloads for gnus/gnus-delay.el... Generating autoloads for gnus/gnus-delay.el...done Generating autoloads for gnus/gnus-diary.el... Generating autoloads for gnus/gnus-diary.el...done Generating autoloads for gnus/gnus-dired.el... Generating autoloads for gnus/gnus-dired.el...done Generating autoloads for gnus/gnus-draft.el... Generating autoloads for gnus/gnus-draft.el...done Generating autoloads for gnus/gnus-fun.el... Generating autoloads for gnus/gnus-fun.el...done Generating autoloads for gnus/gnus-group.el... Generating autoloads for gnus/gnus-group.el...done Generating autoloads for gnus/gnus-kill.el... Generating autoloads for gnus/gnus-kill.el...done Generating autoloads for gnus/gnus-ml.el... Generating autoloads for gnus/gnus-ml.el...done Generating autoloads for gnus/gnus-mlspl.el... Generating autoloads for gnus/gnus-mlspl.el...done Generating autoloads for gnus/gnus-move.el... Generating autoloads for gnus/gnus-move.el...done Generating autoloads for gnus/gnus-msg.el... Generating autoloads for gnus/gnus-msg.el...done Generating autoloads for gnus/gnus-nocem.el... Generating autoloads for gnus/gnus-nocem.el...done Generating autoloads for gnus/gnus-picon.el... Generating autoloads for gnus/gnus-picon.el...done Generating autoloads for gnus/gnus-range.el... Generating autoloads for gnus/gnus-range.el...done Generating autoloads for gnus/gnus-registry.el... Generating autoloads for gnus/gnus-registry.el...done Generating autoloads for gnus/gnus-sieve.el... Generating autoloads for gnus/gnus-sieve.el...done Generating autoloads for gnus/gnus-soup.el... Generating autoloads for gnus/gnus-soup.el...done Generating autoloads for gnus/gnus-spec.el... Generating autoloads for gnus/gnus-spec.el...done Generating autoloads for gnus/gnus-start.el... Generating autoloads for gnus/gnus-start.el...done Generating autoloads for gnus/gnus-win.el... Generating autoloads for gnus/gnus-win.el...done Generating autoloads for play/gomoku.el... Generating autoloads for play/gomoku.el...done Generating autoloads for net/goto-addr.el... Generating autoloads for net/goto-addr.el...done Generating autoloads for progmodes/grep.el... Generating autoloads for progmodes/grep.el...done Generating autoloads for gs.el... Generating autoloads for gs.el...done Generating autoloads for progmodes/gud.el... Generating autoloads for progmodes/gud.el...done Generating autoloads for play/handwrite.el... Generating autoloads for play/handwrite.el...done Generating autoloads for help-at-pt.el... Generating autoloads for help-at-pt.el...done Generating autoloads for help-fns.el... Generating autoloads for help-fns.el...done Generating autoloads for help-macro.el... Generating autoloads for help-macro.el...done Generating autoloads for help-mode.el... Generating autoloads for help-mode.el...done Generating autoloads for emacs-lisp/helper.el... Generating autoloads for emacs-lisp/helper.el...done Generating autoloads for hexl.el... Generating autoloads for hexl.el...done Generating autoloads for hi-lock.el... Generating autoloads for hi-lock.el...done Generating autoloads for progmodes/hideif.el... Generating autoloads for progmodes/hideif.el...done Generating autoloads for progmodes/hideshow.el... Generating autoloads for progmodes/hideshow.el...done Generating autoloads for hilit-chg.el... Generating autoloads for hilit-chg.el...done Generating autoloads for hippie-exp.el... Generating autoloads for hippie-exp.el...done Generating autoloads for hl-line.el... Generating autoloads for hl-line.el...done Generating autoloads for calendar/holidays.el... Generating autoloads for calendar/holidays.el...done Generating autoloads for gnus/html2text.el... Generating autoloads for gnus/html2text.el...done Generating autoloads for ibuf-ext.el... Generating autoloads for ibuf-ext.el...done Generating autoloads for ibuf-macs.el... Generating autoloads for ibuf-macs.el...done Generating autoloads for ibuffer.el... Generating autoloads for ibuffer.el...done Generating autoloads for calendar/icalendar.el... Generating autoloads for calendar/icalendar.el...done Generating autoloads for icomplete.el... Generating autoloads for icomplete.el...done Generating autoloads for progmodes/icon.el... Generating autoloads for progmodes/icon.el...done Generating autoloads for progmodes/idlw-shell.el... Generating autoloads for progmodes/idlw-shell.el...done Generating autoloads for progmodes/idlwave.el... Generating autoloads for progmodes/idlwave.el...done Generating autoloads for ido.el... Generating autoloads for ido.el...done Generating autoloads for ielm.el... Generating autoloads for ielm.el...done Generating autoloads for iimage.el... Generating autoloads for iimage.el...done Generating autoloads for image.el... Generating autoloads for image.el...done Generating autoloads for image-dired.el... Generating autoloads for image-dired.el...done Generating autoloads for image-file.el... Generating autoloads for image-file.el...done Generating autoloads for image-mode.el... Generating autoloads for image-mode.el...done Generating autoloads for imenu.el... Generating autoloads for imenu.el...done Generating autoloads for language/ind-util.el... Generating autoloads for language/ind-util.el...done Generating autoloads for progmodes/inf-lisp.el... Generating autoloads for progmodes/inf-lisp.el...done Generating autoloads for info.el... Generating autoloads for info.el...done Generating autoloads for info-look.el... Generating autoloads for info-look.el...done Generating autoloads for info-xref.el... Generating autoloads for info-xref.el...done Generating autoloads for informat.el... Generating autoloads for informat.el...done Generating autoloads for isearch-multi.el... Generating autoloads for isearch-multi.el...done Generating autoloads for international/isearch-x.el... Generating autoloads for international/isearch-x.el...done Generating autoloads for isearchb.el... Generating autoloads for isearchb.el...done Generating autoloads for obsolete/iso-acc.el... Generating autoloads for obsolete/iso-acc.el...done Generating autoloads for international/iso-cvt.el... Generating autoloads for international/iso-cvt.el...done Generating autoloads for international/iso-transl.el... Generating autoloads for international/iso-transl.el...done Generating autoloads for textmodes/ispell.el... Generating autoloads for textmodes/ispell.el...done Generating autoloads for iswitchb.el... Generating autoloads for iswitchb.el...done Generating autoloads for language/japan-util.el... Generating autoloads for language/japan-util.el...done Generating autoloads for jka-compr.el... Generating autoloads for jka-compr.el...done Generating autoloads for emulation/keypad.el... Generating autoloads for emulation/keypad.el...done Generating autoloads for international/kinsoku.el... Generating autoloads for international/kinsoku.el...done Generating autoloads for international/kkc.el... Generating autoloads for international/kkc.el...done Generating autoloads for kmacro.el... Generating autoloads for kmacro.el...done Generating autoloads for language/knd-util.el... Generating autoloads for language/knd-util.el...done Generating autoloads for language/korea-util.el... Generating autoloads for language/korea-util.el...done Generating autoloads for play/landmark.el... Generating autoloads for play/landmark.el...done Generating autoloads for language/lao-util.el... Generating autoloads for language/lao-util.el...done Generating autoloads for international/latexenc.el... Generating autoloads for international/latexenc.el...done Generating autoloads for international/latin1-disp.el... Generating autoloads for international/latin1-disp.el...done Generating autoloads for obsolete/lazy-lock.el... Generating autoloads for obsolete/lazy-lock.el...done Generating autoloads for progmodes/ld-script.el... Generating autoloads for progmodes/ld-script.el...done Generating autoloads for ledit.el... Generating autoloads for ledit.el...done Generating autoloads for play/life.el... Generating autoloads for play/life.el...done Generating autoloads for loadhist.el... Generating autoloads for loadhist.el...done Generating autoloads for locate.el... Generating autoloads for locate.el...done Generating autoloads for log-edit.el... Generating autoloads for log-edit.el...done Generating autoloads for log-view.el... Generating autoloads for log-view.el...done Generating autoloads for longlines.el... Generating autoloads for longlines.el...done Generating autoloads for lpr.el... Generating autoloads for lpr.el...done Generating autoloads for ls-lisp.el... Generating autoloads for ls-lisp.el...done Generating autoloads for calendar/lunar.el... Generating autoloads for calendar/lunar.el...done Generating autoloads for progmodes/m4-mode.el... Generating autoloads for progmodes/m4-mode.el...done Generating autoloads for emacs-lisp/macroexp.el... Generating autoloads for emacs-lisp/macroexp.el...done Generating autoloads for macros.el... Generating autoloads for macros.el...done Generating autoloads for mail/mail-extr.el... Generating autoloads for mail/mail-extr.el...done Generating autoloads for mail/mail-hist.el... Generating autoloads for mail/mail-hist.el...done Generating autoloads for mail/mail-utils.el... Generating autoloads for mail/mail-utils.el...done Generating autoloads for mail/mailabbrev.el... Generating autoloads for mail/mailabbrev.el...done Generating autoloads for mail/mailalias.el... Generating autoloads for mail/mailalias.el...done Generating autoloads for mail/mailclient.el... Generating autoloads for mail/mailclient.el...done Generating autoloads for progmodes/make-mode.el... Generating autoloads for progmodes/make-mode.el...done Generating autoloads for makesum.el... Generating autoloads for makesum.el...done Generating autoloads for man.el... Generating autoloads for man.el...done Generating autoloads for master.el... Generating autoloads for master.el...done Generating autoloads for mb-depth.el... Generating autoloads for mb-depth.el...done Generating autoloads for menu-bar.el... Generating autoloads for menu-bar.el...done Generating autoloads for gnus/message.el... Generating autoloads for gnus/message.el...done Generating autoloads for progmodes/meta-mode.el... Generating autoloads for progmodes/meta-mode.el...done Generating autoloads for mail/metamail.el... Generating autoloads for mail/metamail.el...done Generating autoloads for mh-e/mh-comp.el... Generating autoloads for mh-e/mh-comp.el...done Generating autoloads for mh-e/mh-e.el... Generating autoloads for mh-e/mh-e.el...done Generating autoloads for mh-e/mh-folder.el... Generating autoloads for mh-e/mh-folder.el...done Generating autoloads for midnight.el... Generating autoloads for midnight.el...done Generating autoloads for minibuf-eldef.el... Generating autoloads for minibuf-eldef.el...done Generating autoloads for progmodes/mixal-mode.el... Generating autoloads for progmodes/mixal-mode.el...done Generating autoloads for language/mlm-util.el... Generating autoloads for language/mlm-util.el...done Generating autoloads for gnus/mm-extern.el... Generating autoloads for gnus/mm-extern.el...done Generating autoloads for gnus/mm-partial.el... Generating autoloads for gnus/mm-partial.el...done Generating autoloads for gnus/mm-url.el... Generating autoloads for gnus/mm-url.el...done Generating autoloads for gnus/mm-uu.el... Generating autoloads for gnus/mm-uu.el...done Generating autoloads for gnus/mml1991.el... Generating autoloads for gnus/mml1991.el...done Generating autoloads for gnus/mml2015.el... Generating autoloads for gnus/mml2015.el...done Generating autoloads for play/morse.el... Generating autoloads for play/morse.el...done Generating autoloads for mouse-sel.el... Generating autoloads for mouse-sel.el...done Generating autoloads for play/mpuz.el... Generating autoloads for play/mpuz.el...done Generating autoloads for msb.el... Generating autoloads for msb.el...done Generating autoloads for international/mule-diag.el... Generating autoloads for international/mule-diag.el...done Generating autoloads for international/mule-util.el... Generating autoloads for international/mule-util.el...done Generating autoloads for mwheel.el... Generating autoloads for mwheel.el...done Generating autoloads for net/net-utils.el... Generating autoloads for net/net-utils.el...done Generating autoloads for newcomment.el... Generating autoloads for newcomment.el...done Generating autoloads for net/newsticker.el... Generating autoloads for net/newsticker.el...done Generating autoloads for gnus/nndiary.el... Generating autoloads for gnus/nndiary.el...done Generating autoloads for gnus/nndoc.el... Generating autoloads for gnus/nndoc.el...done Generating autoloads for gnus/nnfolder.el... Generating autoloads for gnus/nnfolder.el...done Generating autoloads for gnus/nnkiboze.el... Generating autoloads for gnus/nnkiboze.el...done Generating autoloads for gnus/nnml.el... Generating autoloads for gnus/nnml.el...done Generating autoloads for gnus/nnsoup.el... Generating autoloads for gnus/nnsoup.el...done Generating autoloads for novice.el... Generating autoloads for novice.el...done Generating autoloads for textmodes/nroff-mode.el... Generating autoloads for textmodes/nroff-mode.el...done Generating autoloads for nxml/nxml-mode.el... Generating autoloads for nxml/nxml-mode.el...done Generating autoloads for progmodes/octave-hlp.el... Generating autoloads for progmodes/octave-hlp.el...done Generating autoloads for progmodes/octave-inf.el... Generating autoloads for progmodes/octave-inf.el...done Generating autoloads for progmodes/octave-mod.el... Generating autoloads for progmodes/octave-mod.el...done Generating autoloads for obsolete/options.el... Generating autoloads for obsolete/options.el...done Generating autoloads for textmodes/org.el... Generating autoloads for textmodes/org.el...done Generating autoloads for textmodes/org-export-latex.el... Generating autoloads for textmodes/org-export-latex.el...done Generating autoloads for textmodes/org-publish.el... Generating autoloads for textmodes/org-publish.el...done Generating autoloads for outline.el... Generating autoloads for outline.el...done Generating autoloads for textmodes/paragraphs.el... Generating autoloads for textmodes/paragraphs.el...done Generating autoloads for paren.el... Generating autoloads for paren.el...done Generating autoloads for calendar/parse-time.el... Generating autoloads for calendar/parse-time.el...done Generating autoloads for progmodes/pascal.el... Generating autoloads for progmodes/pascal.el...done Generating autoloads for emulation/pc-mode.el... Generating autoloads for emulation/pc-mode.el...done Generating autoloads for emulation/pc-select.el... Generating autoloads for emulation/pc-select.el...done Generating autoloads for pcmpl-cvs.el... Generating autoloads for pcmpl-cvs.el...done Generating autoloads for pcmpl-gnu.el... Generating autoloads for pcmpl-gnu.el...done Generating autoloads for pcmpl-linux.el... Generating autoloads for pcmpl-linux.el...done Generating autoloads for pcmpl-rpm.el... Generating autoloads for pcmpl-rpm.el...done Generating autoloads for pcmpl-unix.el... Generating autoloads for pcmpl-unix.el...done Generating autoloads for pcomplete.el... Generating autoloads for pcomplete.el...done Generating autoloads for pcvs.el... Generating autoloads for pcvs.el...done Generating autoloads for pcvs-defs.el... Generating autoloads for pcvs-defs.el...done Generating autoloads for progmodes/perl-mode.el... Generating autoloads for progmodes/perl-mode.el...done Generating autoloads for pgg.el... Generating autoloads for pgg.el...done Generating autoloads for pgg-gpg.el... Generating autoloads for pgg-gpg.el...done Generating autoloads for textmodes/picture.el... Generating autoloads for textmodes/picture.el...done Generating autoloads for textmodes/po.el... Generating autoloads for textmodes/po.el...done Generating autoloads for play/pong.el... Generating autoloads for play/pong.el...done Generating autoloads for emacs-lisp/pp.el... Generating autoloads for emacs-lisp/pp.el...done Generating autoloads for printing.el... Generating autoloads for printing.el...done Generating autoloads for progmodes/prolog.el... Generating autoloads for progmodes/prolog.el...done Generating autoloads for ps-bdf.el... Generating autoloads for ps-bdf.el...done Generating autoloads for progmodes/ps-mode.el... Generating autoloads for progmodes/ps-mode.el...done Generating autoloads for ps-print.el... Generating autoloads for ps-print.el...done Generating autoloads for progmodes/python.el... Generating autoloads for progmodes/python.el...done Generating autoloads for gnus/qp.el... Generating autoloads for gnus/qp.el...done Generating autoloads for international/quail.el... Generating autoloads for international/quail.el...done Generating autoloads for net/quickurl.el... Generating autoloads for net/quickurl.el...done Generating autoloads for net/rcirc.el... Generating autoloads for net/rcirc.el...done Generating autoloads for net/rcompile.el... Generating autoloads for net/rcompile.el...done Generating autoloads for emacs-lisp/re-builder.el... Generating autoloads for emacs-lisp/re-builder.el...done Generating autoloads for recentf.el... Generating autoloads for recentf.el...done Generating autoloads for rect.el... Generating autoloads for rect.el...done Generating autoloads for textmodes/refill.el... Generating autoloads for textmodes/refill.el...done Generating autoloads for textmodes/reftex.el... Generating autoloads for textmodes/reftex.el...done Generating autoloads for textmodes/reftex-cite.el... Generating autoloads for textmodes/reftex-cite.el...done Generating autoloads for textmodes/reftex-global.el... Generating autoloads for textmodes/reftex-global.el...done Generating autoloads for textmodes/reftex-index.el... Generating autoloads for textmodes/reftex-index.el...done Generating autoloads for textmodes/reftex-parse.el... Generating autoloads for textmodes/reftex-parse.el...done Generating autoloads for textmodes/reftex-vars.el... Generating autoloads for textmodes/reftex-vars.el...done Generating autoloads for emacs-lisp/regexp-opt.el... Generating autoloads for emacs-lisp/regexp-opt.el...done Generating autoloads for textmodes/remember.el... Generating autoloads for textmodes/remember.el...done Generating autoloads for repeat.el... Generating autoloads for repeat.el...done Generating autoloads for mail/reporter.el... Generating autoloads for mail/reporter.el...done Generating autoloads for reposition.el... Generating autoloads for reposition.el...done Generating autoloads for resume.el... Generating autoloads for resume.el...done Generating autoloads for reveal.el... Generating autoloads for reveal.el...done Generating autoloads for emacs-lisp/ring.el... Generating autoloads for emacs-lisp/ring.el...done Generating autoloads for net/rlogin.el... Generating autoloads for net/rlogin.el...done Generating autoloads for mail/rmail.el... Generating autoloads for mail/rmail.el...done Generating autoloads for mail/rmailedit.el... Generating autoloads for mail/rmailedit.el...done Generating autoloads for mail/rmailkwd.el... Generating autoloads for mail/rmailkwd.el...done Generating autoloads for mail/rmailmsc.el... Generating autoloads for mail/rmailmsc.el...done Generating autoloads for mail/rmailout.el... Generating autoloads for mail/rmailout.el...done Generating autoloads for mail/rmailsort.el... Generating autoloads for mail/rmailsort.el...done Generating autoloads for mail/rmailsum.el... Generating autoloads for mail/rmailsum.el...done Generating autoloads for obsolete/rnewspost.el... Generating autoloads for obsolete/rnewspost.el...done Generating autoloads for international/robin.el... Generating autoloads for international/robin.el...done Generating autoloads for rot13.el... Generating autoloads for rot13.el...done Generating autoloads for ruler-mode.el... Generating autoloads for ruler-mode.el...done Generating autoloads for emacs-lisp/rx.el... Generating autoloads for emacs-lisp/rx.el...done Generating autoloads for savehist.el... Generating autoloads for savehist.el...done Generating autoloads for progmodes/scheme.el... Generating autoloads for progmodes/scheme.el...done Generating autoloads for gnus/score-mode.el... Generating autoloads for gnus/score-mode.el...done Generating autoloads for obsolete/scribe.el... Generating autoloads for obsolete/scribe.el...done Generating autoloads for scroll-all.el... Generating autoloads for scroll-all.el...done Generating autoloads for scroll-lock.el... Generating autoloads for scroll-lock.el...done Generating autoloads for mail/sendmail.el... Generating autoloads for mail/sendmail.el...done Generating autoloads for server.el... Generating autoloads for server.el...done Generating autoloads for ses.el... Generating autoloads for ses.el...done Generating autoloads for textmodes/sgml-mode.el... Generating autoloads for textmodes/sgml-mode.el...done Generating autoloads for progmodes/sh-script.el... Generating autoloads for progmodes/sh-script.el...done Generating autoloads for emacs-lisp/shadow.el... Generating autoloads for emacs-lisp/shadow.el...done Generating autoloads for shadowfile.el... Generating autoloads for shadowfile.el...done Generating autoloads for shell.el... Generating autoloads for shell.el...done Generating autoloads for gnus/sieve.el... Generating autoloads for gnus/sieve.el...done Generating autoloads for gnus/sieve-mode.el... Generating autoloads for gnus/sieve-mode.el...done Generating autoloads for simple.el... Generating autoloads for simple.el...done Generating autoloads for progmodes/simula.el... Generating autoloads for progmodes/simula.el...done Generating autoloads for skeleton.el... Generating autoloads for skeleton.el...done Generating autoloads for smerge-mode.el... Generating autoloads for smerge-mode.el...done Generating autoloads for gnus/smiley.el... Generating autoloads for gnus/smiley.el...done Generating autoloads for mail/smtpmail.el... Generating autoloads for mail/smtpmail.el...done Generating autoloads for play/snake.el... Generating autoloads for play/snake.el...done Generating autoloads for net/snmp-mode.el... Generating autoloads for net/snmp-mode.el...done Generating autoloads for calendar/solar.el... Generating autoloads for calendar/solar.el...done Generating autoloads for play/solitaire.el... Generating autoloads for play/solitaire.el...done Generating autoloads for sort.el... Generating autoloads for sort.el...done Generating autoloads for gnus/spam.el... Generating autoloads for gnus/spam.el...done Generating autoloads for gnus/spam-report.el... Generating autoloads for gnus/spam-report.el...done Generating autoloads for speedbar.el... Generating autoloads for speedbar.el...done Generating autoloads for textmodes/spell.el... Generating autoloads for textmodes/spell.el...done Generating autoloads for play/spook.el... Generating autoloads for play/spook.el...done Generating autoloads for progmodes/sql.el... Generating autoloads for progmodes/sql.el...done Generating autoloads for strokes.el... Generating autoloads for strokes.el...done Generating autoloads for subr.el... Generating autoloads for subr.el...done Generating autoloads for mail/supercite.el... Generating autoloads for mail/supercite.el...done Generating autoloads for t-mouse.el... Generating autoloads for t-mouse.el...done Generating autoloads for tabify.el... Generating autoloads for tabify.el...done Generating autoloads for textmodes/table.el... Generating autoloads for textmodes/table.el...done Generating autoloads for talk.el... Generating autoloads for talk.el...done Generating autoloads for tar-mode.el... Generating autoloads for tar-mode.el...done Generating autoloads for progmodes/tcl.el... Generating autoloads for progmodes/tcl.el...done Generating autoloads for net/telnet.el... Generating autoloads for net/telnet.el...done Generating autoloads for term.el... Generating autoloads for term.el...done Generating autoloads for terminal.el... Generating autoloads for terminal.el...done Generating autoloads for emacs-lisp/testcover.el... Generating autoloads for emacs-lisp/testcover.el...done Generating autoloads for play/tetris.el... Generating autoloads for play/tetris.el...done Generating autoloads for textmodes/tex-mode.el... Generating autoloads for textmodes/tex-mode.el...done Generating autoloads for textmodes/texinfmt.el... Generating autoloads for textmodes/texinfmt.el...done Generating autoloads for textmodes/texinfo.el... Generating autoloads for textmodes/texinfo.el...done Generating autoloads for language/thai-util.el... Generating autoloads for language/thai-util.el...done Generating autoloads for thingatpt.el... Generating autoloads for thingatpt.el...done Generating autoloads for thumbs.el... Generating autoloads for thumbs.el...done Generating autoloads for language/tibet-util.el... Generating autoloads for language/tibet-util.el...done Generating autoloads for textmodes/tildify.el... Generating autoloads for textmodes/tildify.el...done Generating autoloads for time.el... Generating autoloads for time.el...done Generating autoloads for calendar/time-date.el... Generating autoloads for calendar/time-date.el...done Generating autoloads for time-stamp.el... Generating autoloads for time-stamp.el...done Generating autoloads for calendar/timeclock.el... Generating autoloads for calendar/timeclock.el...done Generating autoloads for emacs-lisp/timer.el... Generating autoloads for emacs-lisp/timer.el...done Generating autoloads for international/titdic-cnv.el... Generating autoloads for international/titdic-cnv.el...done Generating autoloads for language/tml-util.el... Generating autoloads for language/tml-util.el...done Generating autoloads for tmm.el... Generating autoloads for tmm.el...done Generating autoloads for calendar/todo-mode.el... Generating autoloads for calendar/todo-mode.el...done Generating autoloads for tool-bar.el... Generating autoloads for tool-bar.el...done Generating autoloads for emulation/tpu-edt.el... Generating autoloads for emulation/tpu-edt.el...done Generating autoloads for emacs-lisp/tq.el... Generating autoloads for emacs-lisp/tq.el...done Generating autoloads for emacs-lisp/trace.el... Generating autoloads for emacs-lisp/trace.el...done Generating autoloads for net/tramp.el... Generating autoloads for net/tramp.el...done Generating autoloads for net/tramp-ftp.el... Generating autoloads for net/tramp-ftp.el...done Generating autoloads for tutorial.el... Generating autoloads for tutorial.el...done Generating autoloads for language/tv-util.el... Generating autoloads for language/tv-util.el...done Generating autoloads for textmodes/two-column.el... Generating autoloads for textmodes/two-column.el...done Generating autoloads for type-break.el... Generating autoloads for type-break.el...done Generating autoloads for textmodes/underline.el... Generating autoloads for textmodes/underline.el...done Generating autoloads for mail/undigest.el... Generating autoloads for mail/undigest.el...done Generating autoloads for mail/unrmail.el... Generating autoloads for mail/unrmail.el...done Generating autoloads for emacs-lisp/unsafep.el... Generating autoloads for emacs-lisp/unsafep.el...done Generating autoloads for url/url.el... Generating autoloads for url/url.el...done Generating autoloads for url/url-auth.el... Generating autoloads for url/url-auth.el...done Generating autoloads for url/url-cache.el... Generating autoloads for url/url-cache.el...done Generating autoloads for url/url-cid.el... Generating autoloads for url/url-cid.el...done Generating autoloads for url/url-dav.el... Generating autoloads for url/url-dav.el...done Generating autoloads for url/url-file.el... Generating autoloads for url/url-file.el...done Generating autoloads for url/url-gw.el... Generating autoloads for url/url-gw.el...done Generating autoloads for url/url-handlers.el... Generating autoloads for url/url-handlers.el...done Generating autoloads for url/url-http.el... Generating autoloads for url/url-http.el...done Generating autoloads for url/url-irc.el... Generating autoloads for url/url-irc.el...done Generating autoloads for url/url-ldap.el... Generating autoloads for url/url-ldap.el...done Generating autoloads for url/url-mailto.el... Generating autoloads for url/url-mailto.el...done Generating autoloads for url/url-misc.el... Generating autoloads for url/url-misc.el...done Generating autoloads for url/url-news.el... Generating autoloads for url/url-news.el...done Generating autoloads for url/url-ns.el... Generating autoloads for url/url-ns.el...done Generating autoloads for url/url-parse.el... Generating autoloads for url/url-parse.el...done Generating autoloads for url/url-privacy.el... Generating autoloads for url/url-privacy.el...done Generating autoloads for url/url-util.el... Generating autoloads for url/url-util.el...done Generating autoloads for userlock.el... Generating autoloads for userlock.el...done Generating autoloads for international/utf-7.el... Generating autoloads for international/utf-7.el...done Generating autoloads for vc.el... Generating autoloads for vc.el...done Generating autoloads for vc-arch.el... Generating autoloads for vc-arch.el...done Generating autoloads for vc-bzr.el... Generating autoloads for vc-bzr.el...done Generating autoloads for vc-cvs.el... Generating autoloads for vc-cvs.el...done Generating autoloads for vc-git.el... Generating autoloads for vc-git.el...done Generating autoloads for vc-hg.el... Generating autoloads for vc-hg.el...done Generating autoloads for vc-mcvs.el... Generating autoloads for vc-mcvs.el...done Generating autoloads for vc-mtn.el... Generating autoloads for vc-mtn.el...done Generating autoloads for vc-rcs.el... Generating autoloads for vc-rcs.el...done Generating autoloads for vc-sccs.el... Generating autoloads for vc-sccs.el...done Generating autoloads for vc-svn.el... Generating autoloads for vc-svn.el...done Generating autoloads for progmodes/vera-mode.el... Generating autoloads for progmodes/vera-mode.el...done Generating autoloads for progmodes/verilog-mode.el... Generating autoloads for progmodes/verilog-mode.el...done Generating autoloads for progmodes/vhdl-mode.el... Generating autoloads for progmodes/vhdl-mode.el...done Generating autoloads for emulation/vi.el... Generating autoloads for emulation/vi.el...done Generating autoloads for language/viet-util.el... Generating autoloads for language/viet-util.el...done Generating autoloads for view.el... Generating autoloads for view.el...done Generating autoloads for emulation/vip.el... Generating autoloads for emulation/vip.el...done Generating autoloads for emulation/viper.el... Generating autoloads for emulation/viper.el...done Generating autoloads for emacs-lisp/warnings.el... Generating autoloads for emacs-lisp/warnings.el...done Generating autoloads for wdired.el... Generating autoloads for wdired.el...done Generating autoloads for net/webjump.el... Generating autoloads for net/webjump.el...done Generating autoloads for progmodes/which-func.el... Generating autoloads for progmodes/which-func.el...done Generating autoloads for whitespace.el... Generating autoloads for whitespace.el...done Generating autoloads for wid-browse.el... Generating autoloads for wid-browse.el...done Generating autoloads for wid-edit.el... Generating autoloads for wid-edit.el...done Generating autoloads for windmove.el... Generating autoloads for windmove.el...done Generating autoloads for winner.el... Generating autoloads for winner.el...done Generating autoloads for woman.el... Generating autoloads for woman.el...done Generating autoloads for emulation/ws-mode.el... Generating autoloads for emulation/ws-mode.el...done Generating autoloads for xml.el... Generating autoloads for xml.el...done Generating autoloads for xt-mouse.el... Generating autoloads for xt-mouse.el...done Generating autoloads for gnus/yenc.el... Generating autoloads for gnus/yenc.el...done Generating autoloads for play/yow.el... Generating autoloads for play/yow.el...done Generating autoloads for play/zone.el... Generating autoloads for play/zone.el...done Generating autoloads for buff-menu.el... Generating autoloads for buff-menu.el...done Generating autoloads for case-table.el... Generating autoloads for case-table.el...done Generating autoloads for cdl.el... Generating autoloads for cdl.el...done Generating autoloads for cus-dep.el... Generating autoloads for cus-dep.el...done Generating autoloads for cus-start.el... Generating autoloads for cus-start.el...done Generating autoloads for custom.el... Generating autoloads for custom.el...done Generating autoloads for dframe.el... Generating autoloads for dframe.el...done Generating autoloads for dos-fns.el... Generating autoloads for dos-fns.el...done Generating autoloads for dos-vars.el... Generating autoloads for dos-vars.el...done Generating autoloads for dos-w32.el... Generating autoloads for dos-w32.el...done Generating autoloads for ediff-diff.el... Generating autoloads for ediff-diff.el...done Generating autoloads for ediff-init.el... Generating autoloads for ediff-init.el...done Generating autoloads for ediff-merg.el... Generating autoloads for ediff-merg.el...done Generating autoloads for ediff-ptch.el... Generating autoloads for ediff-ptch.el...done Generating autoloads for ediff-vers.el... Generating autoloads for ediff-vers.el...done Generating autoloads for ediff-wind.el... Generating autoloads for ediff-wind.el...done Generating autoloads for electric.el... Generating autoloads for electric.el...done Generating autoloads for emacs-lock.el... Generating autoloads for emacs-lock.el...done Generating autoloads for env.el... Generating autoloads for env.el...done Generating autoloads for ezimage.el... Generating autoloads for ezimage.el...done Generating autoloads for faces.el... Generating autoloads for faces.el...done Generating autoloads for files.el... Generating autoloads for files.el...done Generating autoloads for foldout.el... Generating autoloads for foldout.el...done Generating autoloads for font-core.el... Generating autoloads for font-core.el...done Generating autoloads for font-lock.el... Generating autoloads for font-lock.el...done Generating autoloads for format-spec.el... Generating autoloads for format-spec.el...done Generating autoloads for format.el... Generating autoloads for format.el...done Generating autoloads for forms-d2.el... Generating autoloads for forms-d2.el...done Generating autoloads for frame.el... Generating autoloads for frame.el...done Generating autoloads for fringe.el... Generating autoloads for fringe.el...done Generating autoloads for generic-x.el... Generating autoloads for generic-x.el...done Generating autoloads for help.el... Generating autoloads for help.el...done Generating autoloads for hex-util.el... Generating autoloads for hex-util.el...done Generating autoloads for indent.el... Generating autoloads for indent.el...done Generating autoloads for isearch.el... Generating autoloads for isearch.el...done Generating autoloads for jit-lock.el... Generating autoloads for jit-lock.el...done Generating autoloads for jka-cmpr-hook.el... Generating autoloads for jka-cmpr-hook.el...done Generating autoloads for kermit.el... Generating autoloads for kermit.el...done Generating autoloads for linum.el... Generating autoloads for linum.el...done Generating autoloads for md4.el... Generating autoloads for md4.el...done Generating autoloads for misc.el... Generating autoloads for misc.el...done Generating autoloads for mouse-copy.el... Generating autoloads for mouse-copy.el...done Generating autoloads for mouse-drag.el... Generating autoloads for mouse-drag.el...done Generating autoloads for mouse.el... Generating autoloads for mouse.el...done Generating autoloads for password-cache.el... Generating autoloads for password-cache.el...done Generating autoloads for paths.el... Generating autoloads for paths.el...done Generating autoloads for pcvs-info.el... Generating autoloads for pcvs-info.el...done Generating autoloads for pcvs-parse.el... Generating autoloads for pcvs-parse.el...done Generating autoloads for pcvs-util.el... Generating autoloads for pcvs-util.el...done Generating autoloads for pgg-def.el... Generating autoloads for pgg-def.el...done Generating autoloads for pgg-parse.el... Generating autoloads for pgg-parse.el...done Generating autoloads for pgg-pgp.el... Generating autoloads for pgg-pgp.el...done Generating autoloads for pgg-pgp5.el... Generating autoloads for pgg-pgp5.el...done Generating autoloads for ps-def.el... Generating autoloads for ps-def.el...done Generating autoloads for ps-mule.el... Generating autoloads for ps-samp.el... Generating autoloads for ps-samp.el...done Generating autoloads for register.el... Generating autoloads for register.el...done Generating autoloads for replace.el... Generating autoloads for replace.el...done Generating autoloads for rfn-eshadow.el... Generating autoloads for rfn-eshadow.el...done Generating autoloads for s-region.el... Generating autoloads for s-region.el...done Generating autoloads for saveplace.el... Generating autoloads for saveplace.el...done Generating autoloads for sb-image.el... Generating autoloads for sb-image.el...done Generating autoloads for scroll-bar.el... Generating autoloads for scroll-bar.el...done Generating autoloads for select.el... Generating autoloads for select.el...done Generating autoloads for sha1.el... Generating autoloads for sha1.el...done Generating autoloads for soundex.el... Generating autoloads for soundex.el...done Generating autoloads for startup.el... Generating autoloads for startup.el...done Generating autoloads for subdirs.el... Generating autoloads for subdirs.el...done Generating autoloads for tempo.el... Generating autoloads for tempo.el...done Generating autoloads for timezone.el... Generating autoloads for timezone.el...done Generating autoloads for tooltip.el... Generating autoloads for tooltip.el...done Generating autoloads for tree-widget.el... Generating autoloads for tree-widget.el...done Generating autoloads for uniquify.el... Generating autoloads for uniquify.el...done Generating autoloads for vc-hooks.el... Generating autoloads for vc-hooks.el...done Generating autoloads for vcursor.el... Generating autoloads for vcursor.el...done Generating autoloads for version.el... Generating autoloads for version.el...done Generating autoloads for vms-patch.el... Generating autoloads for vms-patch.el...done Generating autoloads for vmsproc.el... Generating autoloads for vmsproc.el...done Generating autoloads for vt-control.el... Generating autoloads for vt-control.el...done Generating autoloads for vt100-led.el... Generating autoloads for vt100-led.el...done Generating autoloads for w32-fns.el... Generating autoloads for w32-fns.el...done Generating autoloads for w32-vars.el... Generating autoloads for w32-vars.el...done Generating autoloads for widget.el... Generating autoloads for widget.el...done Generating autoloads for window.el... Generating autoloads for window.el...done Generating autoloads for x-dnd.el... Generating autoloads for x-dnd.el...done Generating autoloads for calc/calc-aent.el... Generating autoloads for calc/calc-aent.el...done Generating autoloads for calc/calc-alg.el... Generating autoloads for calc/calc-alg.el...done Generating autoloads for calc/calc-arith.el... Generating autoloads for calc/calc-arith.el...done Generating autoloads for calc/calc-bin.el... Generating autoloads for calc/calc-bin.el...done Generating autoloads for calc/calc-comb.el... Generating autoloads for calc/calc-comb.el...done Generating autoloads for calc/calc-cplx.el... Generating autoloads for calc/calc-cplx.el...done Generating autoloads for calc/calc-embed.el... Generating autoloads for calc/calc-embed.el...done Generating autoloads for calc/calc-ext.el... Generating autoloads for calc/calc-ext.el...done Generating autoloads for calc/calc-fin.el... Generating autoloads for calc/calc-fin.el...done Generating autoloads for calc/calc-forms.el... Generating autoloads for calc/calc-forms.el...done Generating autoloads for calc/calc-frac.el... Generating autoloads for calc/calc-frac.el...done Generating autoloads for calc/calc-funcs.el... Generating autoloads for calc/calc-funcs.el...done Generating autoloads for calc/calc-graph.el... Generating autoloads for calc/calc-graph.el...done Generating autoloads for calc/calc-help.el... Generating autoloads for calc/calc-help.el...done Generating autoloads for calc/calc-incom.el... Generating autoloads for calc/calc-incom.el...done Generating autoloads for calc/calc-keypd.el... Generating autoloads for calc/calc-keypd.el...done Generating autoloads for calc/calc-lang.el... Generating autoloads for calc/calc-lang.el...done Generating autoloads for calc/calc-macs.el... Generating autoloads for calc/calc-macs.el...done Generating autoloads for calc/calc-map.el... Generating autoloads for calc/calc-map.el...done Generating autoloads for calc/calc-math.el... Generating autoloads for calc/calc-math.el...done Generating autoloads for calc/calc-menu.el... Generating autoloads for calc/calc-menu.el...done Generating autoloads for calc/calc-misc.el... Generating autoloads for calc/calc-misc.el...done Generating autoloads for calc/calc-mode.el... Generating autoloads for calc/calc-mode.el...done Generating autoloads for calc/calc-mtx.el... Generating autoloads for calc/calc-mtx.el...done Generating autoloads for calc/calc-nlfit.el... Generating autoloads for calc/calc-nlfit.el...done Generating autoloads for calc/calc-poly.el... Generating autoloads for calc/calc-poly.el...done Generating autoloads for calc/calc-prog.el... Generating autoloads for calc/calc-prog.el...done Generating autoloads for calc/calc-rewr.el... Generating autoloads for calc/calc-rewr.el...done Generating autoloads for calc/calc-rules.el... Generating autoloads for calc/calc-rules.el...done Generating autoloads for calc/calc-sel.el... Generating autoloads for calc/calc-sel.el...done Generating autoloads for calc/calc-stat.el... Generating autoloads for calc/calc-stat.el...done Generating autoloads for calc/calc-store.el... Generating autoloads for calc/calc-store.el...done Generating autoloads for calc/calc-stuff.el... Generating autoloads for calc/calc-stuff.el...done Generating autoloads for calc/calc-trail.el... Generating autoloads for calc/calc-trail.el...done Generating autoloads for calc/calc-undo.el... Generating autoloads for calc/calc-undo.el...done Generating autoloads for calc/calc-units.el... Generating autoloads for calc/calc-units.el...done Generating autoloads for calc/calc-vec.el... Generating autoloads for calc/calc-vec.el...done Generating autoloads for calc/calc-yank.el... Generating autoloads for calc/calc-yank.el...done Generating autoloads for calc/calcalg2.el... Generating autoloads for calc/calcalg2.el...done Generating autoloads for calc/calcalg3.el... Generating autoloads for calc/calcalg3.el...done Generating autoloads for calc/calccomp.el... Generating autoloads for calc/calccomp.el...done Generating autoloads for calc/calcsel2.el... Generating autoloads for calc/calcsel2.el...done Generating autoloads for calendar/cal-bahai.el... Generating autoloads for calendar/cal-bahai.el...done Generating autoloads for calendar/cal-china.el... Generating autoloads for calendar/cal-china.el...done Generating autoloads for calendar/cal-coptic.el... Generating autoloads for calendar/cal-coptic.el...done Generating autoloads for calendar/cal-french.el... Generating autoloads for calendar/cal-french.el...done Generating autoloads for calendar/cal-html.el... Generating autoloads for calendar/cal-html.el...done Generating autoloads for calendar/cal-islam.el... Generating autoloads for calendar/cal-islam.el...done Generating autoloads for calendar/cal-iso.el... Generating autoloads for calendar/cal-iso.el...done Generating autoloads for calendar/cal-julian.el... Generating autoloads for calendar/cal-julian.el...done Generating autoloads for calendar/cal-mayan.el... Generating autoloads for calendar/cal-mayan.el...done Generating autoloads for calendar/cal-menu.el... Generating autoloads for calendar/cal-menu.el...done Generating autoloads for calendar/cal-move.el... Generating autoloads for calendar/cal-move.el...done Generating autoloads for calendar/cal-persia.el... Generating autoloads for calendar/cal-persia.el...done Generating autoloads for calendar/cal-tex.el... Generating autoloads for calendar/cal-tex.el...done Generating autoloads for calendar/cal-x.el... Generating autoloads for calendar/cal-x.el...done Generating autoloads for emacs-lisp/assoc.el... Generating autoloads for emacs-lisp/assoc.el...done Generating autoloads for emacs-lisp/authors.el... Generating autoloads for emacs-lisp/authors.el...done Generating autoloads for emacs-lisp/avl-tree.el... Generating autoloads for emacs-lisp/avl-tree.el...done Generating autoloads for emacs-lisp/bindat.el... Generating autoloads for emacs-lisp/bindat.el...done Generating autoloads for emacs-lisp/byte-opt.el... Generating autoloads for emacs-lisp/byte-opt.el...done Generating autoloads for emacs-lisp/byte-run.el... Generating autoloads for emacs-lisp/byte-run.el...done Generating autoloads for emacs-lisp/cl-compat.el... Generating autoloads for emacs-lisp/cl-compat.el...done Generating autoloads for emacs-lisp/cl-extra.el... Generating autoloads for emacs-lisp/cl-macs.el... Generating autoloads for emacs-lisp/cl-seq.el... Generating autoloads for emacs-lisp/cl-specs.el... Generating autoloads for emacs-lisp/cl-specs.el...done Generating autoloads for emacs-lisp/cust-print.el... Generating autoloads for emacs-lisp/cust-print.el...done Generating autoloads for emacs-lisp/find-gc.el... Generating autoloads for emacs-lisp/find-gc.el...done Generating autoloads for emacs-lisp/float-sup.el... Generating autoloads for emacs-lisp/float-sup.el...done Generating autoloads for emacs-lisp/gulp.el... Generating autoloads for emacs-lisp/gulp.el...done Generating autoloads for emacs-lisp/levents.el... Generating autoloads for emacs-lisp/levents.el...done Generating autoloads for emacs-lisp/lisp-mnt.el... Generating autoloads for emacs-lisp/lisp-mnt.el...done Generating autoloads for emacs-lisp/lisp-mode.el... Generating autoloads for emacs-lisp/lisp-mode.el...done Generating autoloads for emacs-lisp/lisp.el... Generating autoloads for emacs-lisp/lisp.el...done Generating autoloads for emacs-lisp/lmenu.el... Generating autoloads for emacs-lisp/lmenu.el...done Generating autoloads for emacs-lisp/lucid.el... Generating autoloads for emacs-lisp/lucid.el...done Generating autoloads for emacs-lisp/map-ynp.el... Generating autoloads for emacs-lisp/map-ynp.el...done Generating autoloads for emacs-lisp/regi.el... Generating autoloads for emacs-lisp/regi.el...done Generating autoloads for emacs-lisp/sregex.el... Generating autoloads for emacs-lisp/sregex.el...done Generating autoloads for emacs-lisp/syntax.el... Generating autoloads for emacs-lisp/syntax.el...done Generating autoloads for emacs-lisp/tcover-ses.el... Generating autoloads for emacs-lisp/tcover-ses.el...done Generating autoloads for emacs-lisp/tcover-unsafep.el... Generating autoloads for emacs-lisp/tcover-unsafep.el...done Generating autoloads for emulation/cua-gmrk.el... Generating autoloads for emulation/cua-gmrk.el...done Generating autoloads for emulation/cua-rect.el... Generating autoloads for emulation/cua-rect.el...done Generating autoloads for emulation/edt-lk201.el... Generating autoloads for emulation/edt-lk201.el...done Generating autoloads for emulation/edt-mapper.el... Generating autoloads for emulation/edt-mapper.el...done Generating autoloads for emulation/edt-pc.el... Generating autoloads for emulation/edt-pc.el...done Generating autoloads for emulation/edt-vt100.el... Generating autoloads for emulation/edt-vt100.el...done Generating autoloads for emulation/tpu-extras.el... Generating autoloads for emulation/tpu-mapper.el... Generating autoloads for emulation/tpu-mapper.el...done Generating autoloads for emulation/viper-cmd.el... Generating autoloads for emulation/viper-cmd.el...done Generating autoloads for emulation/viper-ex.el... Generating autoloads for emulation/viper-ex.el...done Generating autoloads for emulation/viper-init.el... Generating autoloads for emulation/viper-init.el...done Generating autoloads for emulation/viper-keym.el... Generating autoloads for emulation/viper-keym.el...done Generating autoloads for emulation/viper-macs.el... Generating autoloads for emulation/viper-macs.el...done Generating autoloads for emulation/viper-mous.el... Generating autoloads for emulation/viper-mous.el...done Generating autoloads for emulation/viper-util.el... Generating autoloads for emulation/viper-util.el...done Generating autoloads for erc/erc-backend.el... Generating autoloads for erc/erc-backend.el...done Generating autoloads for erc/erc-goodies.el... Generating autoloads for erc/erc-goodies.el...done Generating autoloads for erc/erc-ibuffer.el... Generating autoloads for erc/erc-ibuffer.el...done Generating autoloads for erc/erc-lang.el... Generating autoloads for erc/erc-lang.el...done Generating autoloads for erc/erc-list.el... Generating autoloads for erc/erc-list.el...done Generating autoloads for eshell/em-alias.el... Generating autoloads for eshell/em-alias.el...done Generating autoloads for eshell/em-banner.el... Generating autoloads for eshell/em-banner.el...done Generating autoloads for eshell/em-basic.el... Generating autoloads for eshell/em-basic.el...done Generating autoloads for eshell/em-cmpl.el... Generating autoloads for eshell/em-cmpl.el...done Generating autoloads for eshell/em-dirs.el... Generating autoloads for eshell/em-dirs.el...done Generating autoloads for eshell/em-glob.el... Generating autoloads for eshell/em-glob.el...done Generating autoloads for eshell/em-hist.el... Generating autoloads for eshell/em-hist.el...done Generating autoloads for eshell/em-ls.el... Generating autoloads for eshell/em-ls.el...done Generating autoloads for eshell/em-pred.el... Generating autoloads for eshell/em-pred.el...done Generating autoloads for eshell/em-prompt.el... Generating autoloads for eshell/em-prompt.el...done Generating autoloads for eshell/em-rebind.el... Generating autoloads for eshell/em-rebind.el...done Generating autoloads for eshell/em-script.el... Generating autoloads for eshell/em-script.el...done Generating autoloads for eshell/em-smart.el... Generating autoloads for eshell/em-smart.el...done Generating autoloads for eshell/em-term.el... Generating autoloads for eshell/em-term.el...done Generating autoloads for eshell/em-unix.el... Generating autoloads for eshell/em-unix.el...done Generating autoloads for eshell/em-xtra.el... Generating autoloads for eshell/em-xtra.el...done Generating autoloads for eshell/esh-arg.el... Generating autoloads for eshell/esh-arg.el...done Generating autoloads for eshell/esh-cmd.el... Generating autoloads for eshell/esh-cmd.el...done Generating autoloads for eshell/esh-ext.el... Generating autoloads for eshell/esh-ext.el...done Generating autoloads for eshell/esh-io.el... Generating autoloads for eshell/esh-io.el...done Generating autoloads for eshell/esh-maint.el... Generating autoloads for eshell/esh-maint.el...done Generating autoloads for eshell/esh-module.el... Generating autoloads for eshell/esh-module.el...done Generating autoloads for eshell/esh-opt.el... Generating autoloads for eshell/esh-opt.el...done Generating autoloads for eshell/esh-proc.el... Generating autoloads for eshell/esh-proc.el...done Generating autoloads for eshell/esh-util.el... Generating autoloads for eshell/esh-util.el...done Generating autoloads for eshell/esh-var.el... Generating autoloads for eshell/esh-var.el...done Generating autoloads for gnus/compface.el... Generating autoloads for gnus/compface.el...done Generating autoloads for gnus/gnus-async.el... Generating autoloads for gnus/gnus-async.el...done Generating autoloads for gnus/gnus-bcklg.el... Generating autoloads for gnus/gnus-bcklg.el...done Generating autoloads for gnus/gnus-cite.el... Generating autoloads for gnus/gnus-cite.el...done Generating autoloads for gnus/gnus-cus.el... Generating autoloads for gnus/gnus-cus.el...done Generating autoloads for gnus/gnus-demon.el... Generating autoloads for gnus/gnus-demon.el...done Generating autoloads for gnus/gnus-dup.el... Generating autoloads for gnus/gnus-dup.el...done Generating autoloads for gnus/gnus-eform.el... Generating autoloads for gnus/gnus-eform.el...done Generating autoloads for gnus/gnus-ems.el... Generating autoloads for gnus/gnus-ems.el...done Generating autoloads for gnus/gnus-int.el... Generating autoloads for gnus/gnus-int.el...done Generating autoloads for gnus/gnus-logic.el... Generating autoloads for gnus/gnus-logic.el...done Generating autoloads for gnus/gnus-mh.el... Generating autoloads for gnus/gnus-mh.el...done Generating autoloads for gnus/gnus-salt.el... Generating autoloads for gnus/gnus-salt.el...done Generating autoloads for gnus/gnus-score.el... Generating autoloads for gnus/gnus-score.el...done Generating autoloads for gnus/gnus-setup.el... Generating autoloads for gnus/gnus-setup.el...done Generating autoloads for gnus/gnus-srvr.el... Generating autoloads for gnus/gnus-srvr.el...done Generating autoloads for gnus/gnus-sum.el... Generating autoloads for gnus/gnus-sum.el...done Generating autoloads for gnus/gnus-topic.el... Generating autoloads for gnus/gnus-topic.el...done Generating autoloads for gnus/gnus-undo.el... Generating autoloads for gnus/gnus-undo.el...done Generating autoloads for gnus/gnus-util.el... Generating autoloads for gnus/gnus-util.el...done Generating autoloads for gnus/gnus-uu.el... Generating autoloads for gnus/gnus-uu.el...done Generating autoloads for gnus/gnus-vm.el... Generating autoloads for gnus/gnus-vm.el...done Generating autoloads for gnus/ietf-drums.el... Generating autoloads for gnus/ietf-drums.el...done Generating autoloads for gnus/legacy-gnus-agent.el... Generating autoloads for gnus/legacy-gnus-agent.el...done Generating autoloads for gnus/mail-parse.el... Generating autoloads for gnus/mail-parse.el...done Generating autoloads for gnus/mail-prsvr.el... Generating autoloads for gnus/mail-prsvr.el...done Generating autoloads for gnus/mail-source.el... Generating autoloads for gnus/mail-source.el...done Generating autoloads for gnus/mailcap.el... Generating autoloads for gnus/mailcap.el...done Generating autoloads for gnus/messcompat.el... Generating autoloads for gnus/messcompat.el...done Generating autoloads for gnus/mm-bodies.el... Generating autoloads for gnus/mm-bodies.el...done Generating autoloads for gnus/mm-decode.el... Generating autoloads for gnus/mm-decode.el...done Generating autoloads for gnus/mm-encode.el... Generating autoloads for gnus/mm-encode.el...done Generating autoloads for gnus/mm-util.el... Generating autoloads for gnus/mm-util.el...done Generating autoloads for gnus/mm-view.el... Generating autoloads for gnus/mm-view.el...done Generating autoloads for gnus/mml-sec.el... Generating autoloads for gnus/mml-sec.el...done Generating autoloads for gnus/mml-smime.el... Generating autoloads for gnus/mml-smime.el...done Generating autoloads for gnus/mml.el... Generating autoloads for gnus/mml.el...done Generating autoloads for gnus/nnagent.el... Generating autoloads for gnus/nnagent.el...done Generating autoloads for gnus/nnbabyl.el... Generating autoloads for gnus/nnbabyl.el...done Generating autoloads for gnus/nndb.el... Generating autoloads for gnus/nndb.el...done Generating autoloads for gnus/nndir.el... Generating autoloads for gnus/nndir.el...done Generating autoloads for gnus/nndraft.el... Generating autoloads for gnus/nndraft.el...done Generating autoloads for gnus/nneething.el... Generating autoloads for gnus/nneething.el...done Generating autoloads for gnus/nngateway.el... Generating autoloads for gnus/nngateway.el...done Generating autoloads for gnus/nnheader.el... Generating autoloads for gnus/nnheader.el...done Generating autoloads for gnus/nnimap.el... Generating autoloads for gnus/nnimap.el...done Generating autoloads for gnus/nnlistserv.el... Generating autoloads for gnus/nnlistserv.el...done Generating autoloads for gnus/nnmail.el... Generating autoloads for gnus/nnmail.el...done Generating autoloads for gnus/nnmaildir.el... Generating autoloads for gnus/nnmaildir.el...done Generating autoloads for gnus/nnmbox.el... Generating autoloads for gnus/nnmbox.el...done Generating autoloads for gnus/nnmh.el... Generating autoloads for gnus/nnmh.el...done Generating autoloads for gnus/nnnil.el... Generating autoloads for gnus/nnnil.el...done Generating autoloads for gnus/nnoo.el... Generating autoloads for gnus/nnoo.el...done Generating autoloads for gnus/nnrss.el... Generating autoloads for gnus/nnrss.el...done Generating autoloads for gnus/nnslashdot.el... Generating autoloads for gnus/nnslashdot.el...done Generating autoloads for gnus/nnspool.el... Generating autoloads for gnus/nnspool.el...done Generating autoloads for gnus/nntp.el... Generating autoloads for gnus/nntp.el...done Generating autoloads for gnus/nnultimate.el... Generating autoloads for gnus/nnultimate.el...done Generating autoloads for gnus/nnvirtual.el... Generating autoloads for gnus/nnvirtual.el...done Generating autoloads for gnus/nnwarchive.el... Generating autoloads for gnus/nnwarchive.el...done Generating autoloads for gnus/nnweb.el... Generating autoloads for gnus/nnweb.el...done Generating autoloads for gnus/nnwfm.el... Generating autoloads for gnus/nnwfm.el...done Generating autoloads for gnus/pop3.el... Generating autoloads for gnus/pop3.el...done Generating autoloads for gnus/rfc1843.el... Generating autoloads for gnus/rfc1843.el...done Generating autoloads for gnus/rfc2045.el... Generating autoloads for gnus/rfc2045.el...done Generating autoloads for gnus/rfc2047.el... Generating autoloads for gnus/rfc2047.el...done Generating autoloads for gnus/rfc2104.el... Generating autoloads for gnus/rfc2104.el...done Generating autoloads for gnus/rfc2231.el... Generating autoloads for gnus/rfc2231.el...done Generating autoloads for gnus/sieve-manage.el... Generating autoloads for gnus/sieve-manage.el...done Generating autoloads for gnus/smime.el... Generating autoloads for gnus/smime.el...done Generating autoloads for gnus/spam-stat.el... Generating autoloads for gnus/spam-stat.el...done Generating autoloads for gnus/spam-wash.el... Generating autoloads for gnus/spam-wash.el...done Generating autoloads for gnus/starttls.el... Generating autoloads for gnus/starttls.el...done Generating autoloads for gnus/utf7.el... Generating autoloads for gnus/utf7.el...done Generating autoloads for gnus/webmail.el... Generating autoloads for gnus/webmail.el...done Generating autoloads for international/characters.el... Generating autoloads for international/characters.el...done Generating autoloads for international/cp51932.el... Generating autoloads for international/cp51932.el...done Generating autoloads for international/eucjp-ms.el... Generating autoloads for international/eucjp-ms.el...done Generating autoloads for international/fontset.el... Generating autoloads for international/fontset.el...done Generating autoloads for international/iso-ascii.el... Generating autoloads for international/iso-ascii.el...done Generating autoloads for international/ja-dic-cnv.el... Generating autoloads for international/ja-dic-cnv.el...done Generating autoloads for international/ja-dic-utl.el... Generating autoloads for international/ja-dic-utl.el...done Generating autoloads for international/mule-cmds.el... Generating autoloads for international/mule-cmds.el...done Generating autoloads for international/mule-conf.el... Generating autoloads for international/mule-conf.el...done Generating autoloads for international/mule.el... Generating autoloads for international/mule.el...done Generating autoloads for international/ogonek.el... Generating autoloads for international/ogonek.el...done Generating autoloads for language/burmese.el... Generating autoloads for language/burmese.el...done Generating autoloads for language/cham.el... Generating autoloads for language/cham.el...done Generating autoloads for language/chinese.el... Generating autoloads for language/chinese.el...done Generating autoloads for language/cyrillic.el... Generating autoloads for language/cyrillic.el...done Generating autoloads for language/czech.el... Generating autoloads for language/czech.el...done Generating autoloads for language/devanagari.el... Generating autoloads for language/devanagari.el...done Generating autoloads for language/english.el... Generating autoloads for language/english.el...done Generating autoloads for language/ethiopic.el... Generating autoloads for language/ethiopic.el...done Generating autoloads for language/european.el... Generating autoloads for language/european.el...done Generating autoloads for language/georgian.el... Generating autoloads for language/georgian.el...done Generating autoloads for language/greek.el... Generating autoloads for language/greek.el...done Generating autoloads for language/hebrew.el... Generating autoloads for language/hebrew.el...done Generating autoloads for language/indian.el... Generating autoloads for language/indian.el...done Generating autoloads for language/japanese.el... Generating autoloads for language/japanese.el...done Generating autoloads for language/kannada.el... Generating autoloads for language/kannada.el...done Generating autoloads for language/khmer.el... Generating autoloads for language/khmer.el...done Generating autoloads for language/korean.el... Generating autoloads for language/korean.el...done Generating autoloads for language/lao.el... Generating autoloads for language/lao.el...done Generating autoloads for language/malayalam.el... Generating autoloads for language/malayalam.el...done Generating autoloads for language/misc-lang.el... Generating autoloads for language/misc-lang.el...done Generating autoloads for language/romanian.el... Generating autoloads for language/romanian.el...done Generating autoloads for language/slovak.el... Generating autoloads for language/slovak.el...done Generating autoloads for language/tai-viet.el... Generating autoloads for language/tai-viet.el...done Generating autoloads for language/tamil.el... Generating autoloads for language/tamil.el...done Generating autoloads for language/thai-word.el... Generating autoloads for language/thai-word.el...done Generating autoloads for language/thai.el... Generating autoloads for language/thai.el...done Generating autoloads for language/tibetan.el... Generating autoloads for language/tibetan.el...done Generating autoloads for language/utf-8-lang.el... Generating autoloads for language/utf-8-lang.el...done Generating autoloads for language/vietnamese.el... Generating autoloads for language/vietnamese.el...done Generating autoloads for mail/binhex.el... Generating autoloads for mail/binhex.el...done Generating autoloads for mail/blessmail.el... Generating autoloads for mail/blessmail.el...done Generating autoloads for mail/hashcash.el... Generating autoloads for mail/hashcash.el...done Generating autoloads for mail/mailheader.el... Generating autoloads for mail/mailheader.el...done Generating autoloads for mail/mspools.el... Generating autoloads for mail/mspools.el...done Generating autoloads for mail/rfc2368.el... Generating autoloads for mail/rfc2368.el...done Generating autoloads for mail/rfc822.el... Generating autoloads for mail/rfc822.el...done Generating autoloads for mail/rmail-spam-filter.el... Generating autoloads for mail/rmail-spam-filter.el...done Generating autoloads for mail/uce.el... Generating autoloads for mail/uce.el...done Generating autoloads for mail/uudecode.el... Generating autoloads for mail/uudecode.el...done Generating autoloads for mail/vms-pmail.el... Generating autoloads for mail/vms-pmail.el...done Generating autoloads for mh-e/mh-acros.el... Generating autoloads for mh-e/mh-acros.el...done Generating autoloads for mh-e/mh-alias.el... Generating autoloads for mh-e/mh-alias.el...done Generating autoloads for mh-e/mh-buffers.el... Generating autoloads for mh-e/mh-buffers.el...done Generating autoloads for mh-e/mh-compat.el... Generating autoloads for mh-e/mh-compat.el...done Generating autoloads for mh-e/mh-funcs.el... Generating autoloads for mh-e/mh-funcs.el...done Generating autoloads for mh-e/mh-identity.el... Generating autoloads for mh-e/mh-identity.el...done Generating autoloads for mh-e/mh-inc.el... Generating autoloads for mh-e/mh-inc.el...done Generating autoloads for mh-e/mh-junk.el... Generating autoloads for mh-e/mh-junk.el...done Generating autoloads for mh-e/mh-letter.el... Generating autoloads for mh-e/mh-letter.el...done Generating autoloads for mh-e/mh-limit.el... Generating autoloads for mh-e/mh-limit.el...done Generating autoloads for mh-e/mh-mime.el... Generating autoloads for mh-e/mh-mime.el...done Generating autoloads for mh-e/mh-print.el... Generating autoloads for mh-e/mh-print.el...done Generating autoloads for mh-e/mh-scan.el... Generating autoloads for mh-e/mh-scan.el...done Generating autoloads for mh-e/mh-search.el... Generating autoloads for mh-e/mh-search.el...done Generating autoloads for mh-e/mh-seq.el... Generating autoloads for mh-e/mh-seq.el...done Generating autoloads for mh-e/mh-show.el... Generating autoloads for mh-e/mh-show.el...done Generating autoloads for mh-e/mh-speed.el... Generating autoloads for mh-e/mh-speed.el...done Generating autoloads for mh-e/mh-thread.el... Generating autoloads for mh-e/mh-thread.el...done Generating autoloads for mh-e/mh-tool-bar.el... Generating autoloads for mh-e/mh-tool-bar.el...done Generating autoloads for mh-e/mh-utils.el... Generating autoloads for mh-e/mh-utils.el...done Generating autoloads for mh-e/mh-xface.el... Generating autoloads for mh-e/mh-xface.el...done Generating autoloads for net/dbus.el... Generating autoloads for net/dbus.el...done Generating autoloads for net/dig.el... Generating autoloads for net/dig.el...done Generating autoloads for net/dns.el... Generating autoloads for net/dns.el...done Generating autoloads for net/eudc-vars.el... Generating autoloads for net/eudc-vars.el...done Generating autoloads for net/eudcb-bbdb.el... Generating autoloads for net/eudcb-bbdb.el...done Generating autoloads for net/eudcb-ldap.el... Generating autoloads for net/eudcb-ldap.el...done Generating autoloads for net/eudcb-mab.el... Generating autoloads for net/eudcb-mab.el...done Generating autoloads for net/eudcb-ph.el... Generating autoloads for net/eudcb-ph.el...done Generating autoloads for net/hmac-def.el... Generating autoloads for net/hmac-def.el...done Generating autoloads for net/hmac-md5.el... Generating autoloads for net/hmac-md5.el...done Generating autoloads for net/imap.el... Generating autoloads for net/imap.el...done Generating autoloads for net/ldap.el... Generating autoloads for net/ldap.el...done Generating autoloads for net/netrc.el... Generating autoloads for net/netrc.el...done Generating autoloads for net/ntlm.el... Generating autoloads for net/ntlm.el...done Generating autoloads for net/sasl-cram.el... Generating autoloads for net/sasl-cram.el...done Generating autoloads for net/sasl-digest.el... Generating autoloads for net/sasl-digest.el...done Generating autoloads for net/sasl-ntlm.el... Generating autoloads for net/sasl-ntlm.el...done Generating autoloads for net/sasl.el... Generating autoloads for net/sasl.el...done Generating autoloads for net/socks.el... Generating autoloads for net/socks.el...done Generating autoloads for net/tls.el... Generating autoloads for net/tls.el...done Generating autoloads for net/tramp-cache.el... Generating autoloads for net/tramp-cache.el...done Generating autoloads for net/tramp-cmds.el... Generating autoloads for net/tramp-cmds.el...done Generating autoloads for net/tramp-compat.el... Generating autoloads for net/tramp-compat.el...done Generating autoloads for net/tramp-fish.el... Generating autoloads for net/tramp-fish.el...done Generating autoloads for net/tramp-gw.el... Generating autoloads for net/tramp-gw.el...done Generating autoloads for net/tramp-smb.el... Generating autoloads for net/tramp-smb.el...done Generating autoloads for net/tramp-uu.el... Generating autoloads for net/tramp-uu.el...done Generating autoloads for net/trampver.el... Generating autoloads for net/trampver.el...done Generating autoloads for nxml/nxml-enc.el... Generating autoloads for nxml/nxml-enc.el...done Generating autoloads for nxml/nxml-maint.el... Generating autoloads for nxml/nxml-maint.el...done Generating autoloads for nxml/nxml-ns.el... Generating autoloads for nxml/nxml-ns.el...done Generating autoloads for nxml/nxml-outln.el... Generating autoloads for nxml/nxml-outln.el...done Generating autoloads for nxml/nxml-parse.el... Generating autoloads for nxml/nxml-parse.el...done Generating autoloads for nxml/nxml-rap.el... Generating autoloads for nxml/nxml-rap.el...done Generating autoloads for nxml/nxml-util.el... Generating autoloads for nxml/nxml-util.el...done Generating autoloads for nxml/rng-cmpct.el... Generating autoloads for nxml/rng-cmpct.el...done Generating autoloads for nxml/rng-dt.el... Generating autoloads for nxml/rng-dt.el...done Generating autoloads for nxml/rng-loc.el... Generating autoloads for nxml/rng-loc.el...done Generating autoloads for nxml/rng-maint.el... Generating autoloads for nxml/rng-maint.el...done Generating autoloads for nxml/rng-match.el... Generating autoloads for nxml/rng-match.el...done Generating autoloads for nxml/rng-nxml.el... Generating autoloads for nxml/rng-nxml.el...done Generating autoloads for nxml/rng-parse.el... Generating autoloads for nxml/rng-parse.el...done Generating autoloads for nxml/rng-pttrn.el... Generating autoloads for nxml/rng-pttrn.el...done Generating autoloads for nxml/rng-uri.el... Generating autoloads for nxml/rng-uri.el...done Generating autoloads for nxml/rng-util.el... Generating autoloads for nxml/rng-util.el...done Generating autoloads for nxml/rng-valid.el... Generating autoloads for nxml/rng-valid.el...done Generating autoloads for nxml/rng-xsd.el... Generating autoloads for nxml/rng-xsd.el...done Generating autoloads for nxml/subdirs.el... Generating autoloads for nxml/subdirs.el...done Generating autoloads for nxml/xmltok.el... Generating autoloads for nxml/xmltok.el...done Generating autoloads for nxml/xsd-regexp.el... Generating autoloads for nxml/xsd-regexp.el...done Generating autoloads for play/gamegrid.el... Generating autoloads for play/gamegrid.el...done Generating autoloads for play/gametree.el... Generating autoloads for play/gametree.el...done Generating autoloads for progmodes/ada-prj.el... Generating autoloads for progmodes/ada-prj.el...done Generating autoloads for progmodes/cc-align.el... Generating autoloads for progmodes/cc-align.el...done Generating autoloads for progmodes/cc-awk.el... Generating autoloads for progmodes/cc-awk.el...done Generating autoloads for progmodes/cc-bytecomp.el... Generating autoloads for progmodes/cc-bytecomp.el...done Generating autoloads for progmodes/cc-cmds.el... Generating autoloads for progmodes/cc-cmds.el...done Generating autoloads for progmodes/cc-defs.el... Generating autoloads for progmodes/cc-defs.el...done Generating autoloads for progmodes/cc-fonts.el... Generating autoloads for progmodes/cc-fonts.el...done Generating autoloads for progmodes/cc-langs.el... Generating autoloads for progmodes/cc-langs.el...done Generating autoloads for progmodes/cc-menus.el... Generating autoloads for progmodes/cc-menus.el...done Generating autoloads for progmodes/ebnf-abn.el... Generating autoloads for progmodes/ebnf-abn.el...done Generating autoloads for progmodes/ebnf-bnf.el... Generating autoloads for progmodes/ebnf-bnf.el...done Generating autoloads for progmodes/ebnf-dtd.el... Generating autoloads for progmodes/ebnf-dtd.el...done Generating autoloads for progmodes/ebnf-ebx.el... Generating autoloads for progmodes/ebnf-ebx.el...done Generating autoloads for progmodes/ebnf-iso.el... Generating autoloads for progmodes/ebnf-iso.el...done Generating autoloads for progmodes/ebnf-otz.el... Generating autoloads for progmodes/ebnf-otz.el...done Generating autoloads for progmodes/ebnf-yac.el... Generating autoloads for progmodes/ebnf-yac.el...done Generating autoloads for progmodes/idlw-complete-structtag.el... Generating autoloads for progmodes/idlw-complete-structtag.el...done Generating autoloads for progmodes/idlw-help.el... Generating autoloads for progmodes/idlw-help.el...done Generating autoloads for progmodes/idlw-toolbar.el... Generating autoloads for progmodes/idlw-toolbar.el...done Generating autoloads for progmodes/mantemp.el... Generating autoloads for progmodes/mantemp.el...done Generating autoloads for progmodes/xscheme.el... Generating autoloads for progmodes/xscheme.el...done Generating autoloads for term/AT386.el... Generating autoloads for term/AT386.el...done Generating autoloads for term/apollo.el... Generating autoloads for term/apollo.el...done Generating autoloads for term/bobcat.el... Generating autoloads for term/bobcat.el...done Generating autoloads for term/cygwin.el... Generating autoloads for term/cygwin.el...done Generating autoloads for term/internal.el... Generating autoloads for term/internal.el...done Generating autoloads for term/iris-ansi.el... Generating autoloads for term/iris-ansi.el...done Generating autoloads for term/linux.el... Generating autoloads for term/linux.el...done Generating autoloads for term/lk201.el... Generating autoloads for term/lk201.el...done Generating autoloads for term/mac-win.el... Generating autoloads for term/mac-win.el...done Generating autoloads for term/news.el... Generating autoloads for term/news.el...done Generating autoloads for term/pc-win.el... Generating autoloads for term/pc-win.el...done Generating autoloads for term/rxvt.el... Generating autoloads for term/rxvt.el...done Generating autoloads for term/sun.el... Generating autoloads for term/sun.el...done Generating autoloads for term/sup-mouse.el... Generating autoloads for term/sup-mouse.el...done Generating autoloads for term/tty-colors.el... Generating autoloads for term/tty-colors.el...done Generating autoloads for term/tvi970.el... Generating autoloads for term/tvi970.el...done Generating autoloads for term/vt100.el... Generating autoloads for term/vt100.el...done Generating autoloads for term/vt102.el... Generating autoloads for term/vt102.el...done Generating autoloads for term/vt125.el... Generating autoloads for term/vt125.el...done Generating autoloads for term/vt200.el... Generating autoloads for term/vt200.el...done Generating autoloads for term/vt201.el... Generating autoloads for term/vt201.el...done Generating autoloads for term/vt220.el... Generating autoloads for term/vt220.el...done Generating autoloads for term/vt240.el... Generating autoloads for term/vt240.el...done Generating autoloads for term/vt300.el... Generating autoloads for term/vt300.el...done Generating autoloads for term/vt320.el... Generating autoloads for term/vt320.el...done Generating autoloads for term/vt400.el... Generating autoloads for term/vt400.el...done Generating autoloads for term/vt420.el... Generating autoloads for term/vt420.el...done Generating autoloads for term/w32-win.el... Generating autoloads for term/w32-win.el...done Generating autoloads for term/w32console.el... Generating autoloads for term/w32console.el...done Generating autoloads for term/wyse50.el... Generating autoloads for term/wyse50.el...done Generating autoloads for term/x-win.el... Generating autoloads for term/x-win.el...done Generating autoloads for term/xterm.el... Generating autoloads for term/xterm.el...done Generating autoloads for textmodes/bib-mode.el... Generating autoloads for textmodes/bib-mode.el...done Generating autoloads for textmodes/makeinfo.el... Generating autoloads for textmodes/makeinfo.el...done Generating autoloads for textmodes/org-mouse.el... Generating autoloads for textmodes/org-mouse.el...done Generating autoloads for textmodes/page-ext.el... Generating autoloads for textmodes/page-ext.el...done Generating autoloads for textmodes/page.el... Generating autoloads for textmodes/page.el...done Generating autoloads for textmodes/refbib.el... Generating autoloads for textmodes/refbib.el...done Generating autoloads for textmodes/refer.el... Generating autoloads for textmodes/refer.el...done Generating autoloads for textmodes/reftex-auc.el... Generating autoloads for textmodes/reftex-auc.el...done Generating autoloads for textmodes/reftex-dcr.el... Generating autoloads for textmodes/reftex-dcr.el...done Generating autoloads for textmodes/reftex-ref.el... Generating autoloads for textmodes/reftex-ref.el...done Generating autoloads for textmodes/reftex-sel.el... Generating autoloads for textmodes/reftex-sel.el...done Generating autoloads for textmodes/reftex-toc.el... Generating autoloads for textmodes/reftex-toc.el...done Generating autoloads for textmodes/texnfo-upd.el... Generating autoloads for textmodes/texnfo-upd.el...done Generating autoloads for textmodes/text-mode.el... Generating autoloads for textmodes/text-mode.el...done Generating autoloads for url/url-about.el... Generating autoloads for url/url-about.el...done Generating autoloads for url/url-cookie.el... Generating autoloads for url/url-cookie.el...done Generating autoloads for url/url-dired.el... Generating autoloads for url/url-dired.el...done Generating autoloads for url/url-expand.el... Generating autoloads for url/url-expand.el...done Generating autoloads for url/url-ftp.el... Generating autoloads for url/url-ftp.el...done Generating autoloads for url/url-history.el... Generating autoloads for url/url-history.el...done Generating autoloads for url/url-imap.el... Generating autoloads for url/url-imap.el...done Generating autoloads for url/url-methods.el... Generating autoloads for url/url-methods.el...done Generating autoloads for url/url-nfs.el... Generating autoloads for url/url-nfs.el...done Generating autoloads for url/url-proxy.el... Generating autoloads for url/url-proxy.el...done Generating autoloads for url/url-vars.el... Generating autoloads for url/url-vars.el...done Generating autoloads for url/vc-dav.el... Generating autoloads for url/vc-dav.el...done Saving file c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el... Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-cvs.el (source)... Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el (No changes need to be saved) c:/devtools/mingw_make_version_3.81-2/mingw32-make -w pre-mh-loaddefs.el-SH [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > pre-mh-loaddefs.el-SH echo ";;" >> pre-mh-loaddefs.el-SH echo ";; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc." >> pre-mh-loaddefs.el-SH echo ";; Author: Bill Wohler <wohler@newt.com>" >> pre-mh-loaddefs.el-SH echo ";; Keywords: mail" >> pre-mh-loaddefs.el-SH echo ";;; Commentary:" >> pre-mh-loaddefs.el-SH echo ";;; Change Log:" >> pre-mh-loaddefs.el-SH echo ";;; Code:" >> pre-mh-loaddefs.el-SH echo "\f" >> pre-mh-loaddefs.el-SH echo "(provide 'mh-loaddefs)" >> pre-mh-loaddefs.el-SH echo ";; Local Variables:" >> pre-mh-loaddefs.el-SH echo ";; version-control: never" >> pre-mh-loaddefs.el-SH echo ";; no-byte-compile: t" >> pre-mh-loaddefs.el-SH echo ";; no-update-autoloads: t" >> pre-mh-loaddefs.el-SH echo ";; End:" >> pre-mh-loaddefs.el-SH echo ";;; mh-loaddefs.el ends here" >> pre-mh-loaddefs.el-SH mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' cp pre-mh-loaddefs.el-SH c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-loaddefs.el rm pre-mh-loaddefs.el-SH "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte \ -l autoload \ --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \ --eval "(setq find-file-suppress-same-file-warnings t)" \ --eval "(setq make-backup-files nil)" \ -f w32-batch-update-autoloads \ "c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-loaddefs.el" ./mh-e Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Loading c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-cvs.el (source)... Generating autoloads for mh-acros.el... Generating autoloads for mh-acros.el...done Generating autoloads for mh-alias.el... Generating autoloads for mh-alias.el...done Generating autoloads for mh-buffers.el... Generating autoloads for mh-buffers.el...done Generating autoloads for mh-comp.el... Generating autoloads for mh-comp.el...done Generating autoloads for mh-compat.el... Generating autoloads for mh-compat.el...done Generating autoloads for mh-e.el... Generating autoloads for mh-e.el...done Generating autoloads for mh-folder.el... Generating autoloads for mh-folder.el...done Generating autoloads for mh-funcs.el... Generating autoloads for mh-funcs.el...done Generating autoloads for mh-identity.el... Generating autoloads for mh-identity.el...done Generating autoloads for mh-inc.el... Generating autoloads for mh-inc.el...done Generating autoloads for mh-junk.el... Generating autoloads for mh-junk.el...done Generating autoloads for mh-letter.el... Generating autoloads for mh-letter.el...done Generating autoloads for mh-limit.el... Generating autoloads for mh-limit.el...done Generating autoloads for mh-mime.el... Generating autoloads for mh-mime.el...done Generating autoloads for mh-print.el... Generating autoloads for mh-print.el...done Generating autoloads for mh-scan.el... Generating autoloads for mh-scan.el...done Generating autoloads for mh-search.el... Generating autoloads for mh-search.el...done Generating autoloads for mh-seq.el... Generating autoloads for mh-seq.el...done Generating autoloads for mh-show.el... Generating autoloads for mh-show.el...done Generating autoloads for mh-speed.el... Generating autoloads for mh-speed.el...done Generating autoloads for mh-thread.el... Generating autoloads for mh-thread.el...done Generating autoloads for mh-tool-bar.el... Generating autoloads for mh-tool-bar.el...done Generating autoloads for mh-utils.el... Generating autoloads for mh-utils.el...done Generating autoloads for mh-xface.el... Generating autoloads for mh-xface.el...done Saving file c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-loaddefs.el... Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-loaddefs.el (No changes need to be saved) for el in c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/byte-opt.el c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/bytecomp.el c:/blandat/editors/emacs/cvsemacs/emacs/lisp/subr.el c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-mode.el c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-vars.el; do \ echo Compiling $el; \ "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l loaddefs -f batch-byte-compile-if-not-done $el; \ done Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/byte-opt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/byte-opt.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/bytecomp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/bytecomp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/subr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/subr.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-vars.elc for dir in c:/blandat/editors/emacs/cvsemacs/emacs/lisp calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete; do \ for el in $dir/*.el; do \ if test -f $el; \ then \ echo Compiling $el; \ "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l loaddefs -f batch-byte-compile-if-not-done $el; \ fi \ done; \ done Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/abbrev.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/abbrev.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/abbrevlist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/abbrevlist.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/add-log.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/add-log.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/align.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/align.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/allout.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/allout.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ansi-color.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ansi-color.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/apropos.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/apropos.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/arc-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/arc-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/array.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/array.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/autoarg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/autoarg.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/autoinsert.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/autoinsert.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/autorevert.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/autorevert.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/avoid.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/avoid.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/battery.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/battery.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/bindings.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/bindings.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/bookmark.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/bookmark.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/bs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/bs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/buff-menu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/buff-menu.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/button.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/button.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calculator.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calculator.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/case-table.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/case-table.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cdl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cdl.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/chistory.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/chistory.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cmuscheme.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cmuscheme.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/comint.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/comint.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/compare-w.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/compare-w.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/complete.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/complete.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/completion.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/completion.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/composite.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/composite.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-dep.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-dep.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-edit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-edit.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-face.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-face.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-start.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-start.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-theme.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-theme.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/custom.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/custom.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cvs-status.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cvs-status.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dabbrev.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dabbrev.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/delim-col.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/delim-col.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/delsel.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/delsel.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/descr-text.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/descr-text.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/desktop.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/desktop.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dframe.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dframe.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/diff-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/diff-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/diff.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/diff.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dired-aux.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dired-aux.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dired-x.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dired-x.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dired.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dired.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dirtrack.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dirtrack.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/disp-table.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/disp-table.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dnd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dnd.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/doc-view.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/doc-view.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-fns.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-fns.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-vars.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-w32.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/dos-w32.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/double.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/double.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ebuff-menu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ebuff-menu.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/echistory.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/echistory.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-diff.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-diff.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-help.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-help.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-hook.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-hook.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-init.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-init.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-merg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-merg.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-mult.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-mult.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-ptch.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-ptch.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-util.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-vers.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-vers.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-wind.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff-wind.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ediff.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/edmacro.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/edmacro.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ehelp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ehelp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/electric.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/electric.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/elide-head.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/elide-head.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lock.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emerge.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emerge.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/env.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/env.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/expand.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/expand.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ezimage.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ezimage.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/facemenu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/facemenu.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/faces.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/faces.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ffap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ffap.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/filecache.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/filecache.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/files.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/files.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/filesets.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/filesets.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/find-dired.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/find-dired.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/find-file.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/find-file.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/find-lisp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/find-lisp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/finder.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/finder.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/flow-ctrl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/flow-ctrl.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/foldout.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/foldout.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/follow.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/follow.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/font-core.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/font-core.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/font-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/font-lock.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/format-spec.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/format-spec.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/format.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/format.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/forms-d2.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/forms-pass.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/forms.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/forms.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/frame.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/frame.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/fringe.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/fringe.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/generic-x.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/generic-x.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: gs.el:219:1:Warning: the following functions are not known to be defined: x-change-window-property, x-window-property Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-at-pt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-at-pt.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-fns.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-fns.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-macro.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-macro.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/help.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hex-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hex-util.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hexl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hexl.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hi-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hi-lock.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hilit-chg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hilit-chg.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hippie-exp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hippie-exp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hl-line.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/hl-line.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ibuf-ext.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ibuf-ext.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ibuf-macs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ibuf-macs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ibuffer.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ibuffer.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/icomplete.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/icomplete.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ido.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ido.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ielm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ielm.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/iimage.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/iimage.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image-dired.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image-dired.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image-file.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image-file.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/image.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/imenu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/imenu.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/indent.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/indent.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/info-look.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/info-look.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/info-xref.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/info-xref.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/info.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/info.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/informat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/informat.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearch-multi.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearch-multi.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearch.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearch.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearchb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/isearchb.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/iswitchb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/iswitchb.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jit-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jit-lock.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jka-cmpr-hook.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jka-cmpr-hook.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jka-compr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/jka-compr.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/kermit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/kermit.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/kmacro.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/kmacro.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ldefs-boot.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ledit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ledit.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/linum.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/linum.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loaddefs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loadhist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loadhist.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/loadup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/locate.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/locate.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/log-edit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/log-edit.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/log-view.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/log-view.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/longlines.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/longlines.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/lpr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/lpr.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ls-lisp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ls-lisp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/macros.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/macros.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/makesum.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/makesum.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/man.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/man.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/master.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/master.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mb-depth.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mb-depth.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/md4.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/md4.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/menu-bar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/menu-bar.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/midnight.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/midnight.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/minibuf-eldef.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/minibuf-eldef.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/misc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/misc.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse-copy.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse-copy.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse-drag.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse-drag.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse-sel.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse-sel.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mouse.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/msb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/msb.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mwheel.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mwheel.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/newcomment.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/newcomment.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/novice.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/novice.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/outline.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/outline.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/paren.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/paren.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/password-cache.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/password-cache.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/patcomp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/paths.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-cvs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-cvs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-gnu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-gnu.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-linux.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-linux.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-rpm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-rpm.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-unix.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcmpl-unix.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcomplete.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcomplete.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-defs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-defs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-info.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-info.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-parse.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs-util.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pcvs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-def.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-def.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-gpg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-gpg.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-parse.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-pgp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-pgp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-pgp5.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg-pgp5.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/pgg.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/printing.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/printing.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-bdf.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-bdf.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-def.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-def.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-mule.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-mule.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-print.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-print.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-samp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ps-samp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/recentf.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/recentf.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rect.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rect.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/register.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/register.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/repeat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/repeat.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/replace.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/replace.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/reposition.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/reposition.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/resume.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/resume.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/reveal.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/reveal.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rfn-eshadow.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rfn-eshadow.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rot13.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/rot13.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ruler-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ruler-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/s-region.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/s-region.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/savehist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/savehist.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/saveplace.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/saveplace.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/sb-image.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/sb-image.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-all.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-all.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-bar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-bar.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/scroll-lock.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/select.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: select.el:455:1:Warning: the following functions are not known to be defined: x-get-selection-internal, x-own-selection-internal, x-disown-selection-internal Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/select.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/server.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/server.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ses.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/ses.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/sha1.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/sha1.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/shadowfile.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/shadowfile.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/shell.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/shell.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/simple.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/simple.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/skeleton.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/skeleton.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/smerge-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/smerge-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/sort.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/sort.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/soundex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/soundex.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/speedbar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/speedbar.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/startup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/startup.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/strokes.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/strokes.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/subdirs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/subr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/t-mouse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/t-mouse.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tabify.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tabify.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/talk.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/talk.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tar-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tar-mode.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tempo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tempo.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/terminal.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/terminal.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/thingatpt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/thingatpt.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/thumbs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/thumbs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/time-stamp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/time-stamp.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/time.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/time.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/timezone.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/timezone.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tmm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tmm.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tool-bar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tool-bar.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tooltip.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tooltip.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tree-widget.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tree-widget.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tutorial.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/tutorial.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/type-break.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/type-break.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/uniquify.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/uniquify.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/userlock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/userlock.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-arch.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-arch.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-bzr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-bzr.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-cvs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-cvs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-git.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-git.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-hg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-hg.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-hooks.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-hooks.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-mcvs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-mcvs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-mtn.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-mtn.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-rcs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-rcs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-sccs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-sccs.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-svn.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc-svn.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vc.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vcursor.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vcursor.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/version.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/view.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/view.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vms-patch.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vmsproc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vt-control.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vt-control.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vt100-led.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/vt100-led.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/w32-fns.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/w32-fns.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/w32-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/w32-vars.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/wdired.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/wdired.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/whitespace.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/whitespace.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/wid-browse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/wid-browse.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/wid-edit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/wid-edit.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/widget.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/widget.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/windmove.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/windmove.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/window.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/window.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/winner.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/winner.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/woman.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/woman.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/x-dnd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: x-dnd.el:761:1:Warning: the following functions are not known to be defined: x-window-property, x-change-window-property, x-get-selection-internal Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/x-dnd.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/xml.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/xml.elc Compiling c:/blandat/editors/emacs/cvsemacs/emacs/lisp/xt-mouse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/xt-mouse.elc Compiling calc/calc-aent.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-aent.elc Compiling calc/calc-alg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-alg.elc Compiling calc/calc-arith.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-arith.elc Compiling calc/calc-bin.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-bin.elc Compiling calc/calc-comb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-comb.elc Compiling calc/calc-cplx.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-cplx.elc Compiling calc/calc-embed.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-embed.elc Compiling calc/calc-ext.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-ext.elc Compiling calc/calc-fin.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-fin.elc Compiling calc/calc-forms.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-forms.elc Compiling calc/calc-frac.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-frac.elc Compiling calc/calc-funcs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-funcs.elc Compiling calc/calc-graph.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-graph.elc Compiling calc/calc-help.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-help.elc Compiling calc/calc-incom.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-incom.elc Compiling calc/calc-keypd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-keypd.elc Compiling calc/calc-lang.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-lang.elc Compiling calc/calc-macs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-macs.elc Compiling calc/calc-map.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-map.elc Compiling calc/calc-math.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-math.elc Compiling calc/calc-menu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-menu.elc Compiling calc/calc-misc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-misc.elc Compiling calc/calc-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-mode.elc Compiling calc/calc-mtx.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-mtx.elc Compiling calc/calc-nlfit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-nlfit.elc Compiling calc/calc-poly.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-poly.elc Compiling calc/calc-prog.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-prog.elc Compiling calc/calc-rewr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-rewr.elc Compiling calc/calc-rules.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-rules.elc Compiling calc/calc-sel.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-sel.elc Compiling calc/calc-stat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-stat.elc Compiling calc/calc-store.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-store.elc Compiling calc/calc-stuff.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-stuff.elc Compiling calc/calc-trail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-trail.elc Compiling calc/calc-undo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-undo.elc Compiling calc/calc-units.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-units.elc Compiling calc/calc-vec.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-vec.elc Compiling calc/calc-yank.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc-yank.elc Compiling calc/calc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calc.elc Compiling calc/calcalg2.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calcalg2.elc Compiling calc/calcalg3.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calcalg3.elc Compiling calc/calccomp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calccomp.elc Compiling calc/calcsel2.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calc/calcsel2.elc Compiling calendar/appt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/appt.elc Compiling calendar/cal-bahai.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-bahai.elc Compiling calendar/cal-china.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-china.elc Compiling calendar/cal-coptic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-coptic.elc Compiling calendar/cal-dst.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-dst.elc Compiling calendar/cal-french.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-french.elc Compiling calendar/cal-hebrew.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-hebrew.elc Compiling calendar/cal-html.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-html.elc Compiling calendar/cal-islam.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-islam.elc Compiling calendar/cal-iso.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-iso.elc Compiling calendar/cal-julian.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-julian.elc Compiling calendar/cal-mayan.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-mayan.elc Compiling calendar/cal-menu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-menu.elc Compiling calendar/cal-move.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-move.elc Compiling calendar/cal-persia.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-persia.elc Compiling calendar/cal-tex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-tex.elc Compiling calendar/cal-x.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/cal-x.elc Compiling calendar/calendar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/calendar.elc Compiling calendar/diary-lib.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/diary-lib.elc Compiling calendar/holidays.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/holidays.elc Compiling calendar/icalendar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/icalendar.elc Compiling calendar/lunar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/lunar.elc Compiling calendar/parse-time.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/parse-time.elc Compiling calendar/solar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/solar.elc Compiling calendar/time-date.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/time-date.elc Compiling calendar/timeclock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/timeclock.elc Compiling calendar/todo-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/calendar/todo-mode.elc Compiling emacs-lisp/advice.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/advice.elc Compiling emacs-lisp/assoc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/assoc.elc Compiling emacs-lisp/authors.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/authors.elc Compiling emacs-lisp/autoload.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/autoload.elc Compiling emacs-lisp/avl-tree.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/avl-tree.elc Compiling emacs-lisp/backquote.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/backquote.elc Compiling emacs-lisp/benchmark.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/benchmark.elc Compiling emacs-lisp/bindat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/bindat.elc Compiling emacs-lisp/byte-opt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling emacs-lisp/byte-run.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/byte-run.elc Compiling emacs-lisp/bytecomp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling emacs-lisp/check-declare.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/check-declare.elc Compiling emacs-lisp/checkdoc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/checkdoc.elc Compiling emacs-lisp/cl-compat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cl-compat.elc Compiling emacs-lisp/cl-extra.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cl-extra.elc Compiling emacs-lisp/cl-indent.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cl-indent.elc Compiling emacs-lisp/cl-loaddefs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling emacs-lisp/cl-macs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cl-macs.elc Compiling emacs-lisp/cl-seq.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cl-seq.elc Compiling emacs-lisp/cl-specs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling emacs-lisp/cl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cl.elc Compiling emacs-lisp/copyright.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/copyright.elc Compiling emacs-lisp/crm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/crm.elc Compiling emacs-lisp/cust-print.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/cust-print.elc Compiling emacs-lisp/debug.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/debug.elc Compiling emacs-lisp/derived.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/derived.elc Compiling emacs-lisp/disass.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/disass.elc Compiling emacs-lisp/easy-mmode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/easy-mmode.elc Compiling emacs-lisp/easymenu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/easymenu.elc Compiling emacs-lisp/edebug.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/edebug.elc Compiling emacs-lisp/eldoc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/eldoc.elc Compiling emacs-lisp/elint.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/elint.elc Compiling emacs-lisp/elp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/elp.elc Compiling emacs-lisp/ewoc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/ewoc.elc Compiling emacs-lisp/find-func.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/find-func.elc Compiling emacs-lisp/find-gc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/find-gc.elc Compiling emacs-lisp/float-sup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/float-sup.elc Compiling emacs-lisp/generic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/generic.elc Compiling emacs-lisp/gulp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/gulp.elc Compiling emacs-lisp/helper.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/helper.elc Compiling emacs-lisp/levents.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/levents.elc Compiling emacs-lisp/lisp-mnt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lisp-mnt.elc Compiling emacs-lisp/lisp-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lisp-mode.elc Compiling emacs-lisp/lisp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lisp.elc Compiling emacs-lisp/lmenu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lmenu.elc Compiling emacs-lisp/lucid.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/lucid.elc Compiling emacs-lisp/macroexp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/macroexp.elc Compiling emacs-lisp/map-ynp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/map-ynp.elc Compiling emacs-lisp/pp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/pp.elc Compiling emacs-lisp/re-builder.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/re-builder.elc Compiling emacs-lisp/regexp-opt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/regexp-opt.elc Compiling emacs-lisp/regi.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/regi.elc Compiling emacs-lisp/ring.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/ring.elc Compiling emacs-lisp/rx.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/rx.elc Compiling emacs-lisp/shadow.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/shadow.elc Compiling emacs-lisp/sregex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/sregex.elc Compiling emacs-lisp/syntax.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/syntax.elc Compiling emacs-lisp/tcover-ses.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/tcover-ses.elc Compiling emacs-lisp/tcover-unsafep.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/tcover-unsafep.elc Compiling emacs-lisp/testcover.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/testcover.elc Compiling emacs-lisp/timer.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/timer.elc Compiling emacs-lisp/tq.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/tq.elc Compiling emacs-lisp/trace.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/trace.elc Compiling emacs-lisp/unsafep.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/unsafep.elc Compiling emacs-lisp/warnings.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emacs-lisp/warnings.elc Compiling emulation/crisp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/crisp.elc Compiling emulation/cua-base.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/cua-base.elc Compiling emulation/cua-gmrk.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/cua-gmrk.elc Compiling emulation/cua-rect.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/cua-rect.elc Compiling emulation/edt-lk201.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/edt-lk201.elc Compiling emulation/edt-mapper.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/edt-mapper.elc Compiling emulation/edt-pc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/edt-pc.elc Compiling emulation/edt-vt100.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/edt-vt100.elc Compiling emulation/edt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/edt.elc Compiling emulation/keypad.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/keypad.elc Compiling emulation/pc-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/pc-mode.elc Compiling emulation/pc-select.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/pc-select.elc Compiling emulation/tpu-edt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/tpu-edt.elc Compiling emulation/tpu-extras.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/tpu-extras.elc Compiling emulation/tpu-mapper.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/tpu-mapper.elc Compiling emulation/vi.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/vi.elc Compiling emulation/vip.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/vip.elc Compiling emulation/viper-cmd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-cmd.elc Compiling emulation/viper-ex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-ex.elc Compiling emulation/viper-init.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In toplevel form: viper-init.el:451:8:Warning: `make-variable-frame-local' is an obsolete function (as of Emacs 22.2); use a frame-parameter instead. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-init.elc Compiling emulation/viper-keym.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-keym.elc Compiling emulation/viper-macs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-macs.elc Compiling emulation/viper-mous.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-mous.elc Compiling emulation/viper-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper-util.elc Compiling emulation/viper.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/viper.elc Compiling emulation/ws-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/emulation/ws-mode.elc Compiling erc/erc-autoaway.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-autoaway.elc Compiling erc/erc-backend.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-backend.elc Compiling erc/erc-button.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-button.elc Compiling erc/erc-capab.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-capab.elc Compiling erc/erc-compat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-compat.elc Compiling erc/erc-dcc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-dcc.elc Compiling erc/erc-ezbounce.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-ezbounce.elc Compiling erc/erc-fill.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-fill.elc Compiling erc/erc-goodies.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-goodies.elc Compiling erc/erc-hecomplete.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-hecomplete.elc Compiling erc/erc-ibuffer.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-ibuffer.elc Compiling erc/erc-identd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-identd.elc Compiling erc/erc-imenu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-imenu.elc Compiling erc/erc-join.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-join.elc Compiling erc/erc-lang.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-lang.elc Compiling erc/erc-list.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-list.elc Compiling erc/erc-log.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-log.elc Compiling erc/erc-match.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-match.elc Compiling erc/erc-menu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-menu.elc Compiling erc/erc-netsplit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-netsplit.elc Compiling erc/erc-networks.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-networks.elc Compiling erc/erc-notify.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-notify.elc Compiling erc/erc-page.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-page.elc Compiling erc/erc-pcomplete.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-pcomplete.elc Compiling erc/erc-replace.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-replace.elc Compiling erc/erc-ring.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-ring.elc Compiling erc/erc-services.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-services.elc Compiling erc/erc-sound.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-sound.elc Compiling erc/erc-speedbar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-speedbar.elc Compiling erc/erc-spelling.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-spelling.elc Compiling erc/erc-stamp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-stamp.elc Compiling erc/erc-track.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-track.elc Compiling erc/erc-truncate.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-truncate.elc Compiling erc/erc-xdcc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc-xdcc.elc Compiling erc/erc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/erc/erc.elc Compiling eshell/em-alias.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-alias.elc Compiling eshell/em-banner.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-banner.elc Compiling eshell/em-basic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-basic.elc Compiling eshell/em-cmpl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-cmpl.elc Compiling eshell/em-dirs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-dirs.elc Compiling eshell/em-glob.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-glob.elc Compiling eshell/em-hist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-hist.elc Compiling eshell/em-ls.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-ls.elc Compiling eshell/em-pred.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-pred.elc Compiling eshell/em-prompt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-prompt.elc Compiling eshell/em-rebind.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-rebind.elc Compiling eshell/em-script.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-script.elc Compiling eshell/em-smart.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-smart.elc Compiling eshell/em-term.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-term.elc Compiling eshell/em-unix.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-unix.elc Compiling eshell/em-xtra.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/em-xtra.elc Compiling eshell/esh-arg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-arg.elc Compiling eshell/esh-cmd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-cmd.elc Compiling eshell/esh-ext.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-ext.elc Compiling eshell/esh-io.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-io.elc Compiling eshell/esh-maint.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling eshell/esh-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-mode.elc Compiling eshell/esh-module.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Loading defgroup from `em-alias.el' Loading defgroup from `em-banner.el' Loading defgroup from `em-basic.el' Loading defgroup from `em-cmpl.el' Loading defgroup from `em-dirs.el' Loading defgroup from `em-glob.el' Loading defgroup from `em-hist.el' Loading defgroup from `em-ls.el' Loading defgroup from `em-pred.el' Loading defgroup from `em-prompt.el' Loading defgroup from `em-rebind.el' Loading defgroup from `em-script.el' Loading defgroup from `em-smart.el' Loading defgroup from `em-term.el' Loading defgroup from `em-unix.el' Loading defgroup from `em-xtra.el' Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-groups.el Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-module.elc Compiling eshell/esh-opt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-opt.elc Compiling eshell/esh-proc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-proc.elc Compiling eshell/esh-test.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-test.elc Compiling eshell/esh-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-util.elc Compiling eshell/esh-var.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/esh-var.elc Compiling eshell/eshell.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/eshell/eshell.elc Compiling gnus/canlock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/canlock.elc Compiling gnus/compface.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/compface.elc Compiling gnus/deuglify.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/deuglify.elc Compiling gnus/earcon.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/earcon.elc Compiling gnus/ecomplete.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/ecomplete.elc Compiling gnus/flow-fill.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/flow-fill.elc Compiling gnus/gmm-utils.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gmm-utils.elc Compiling gnus/gnus-agent.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-agent.elc Compiling gnus/gnus-art.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-art.elc Compiling gnus/gnus-async.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-async.elc Compiling gnus/gnus-audio.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-audio.elc Compiling gnus/gnus-bcklg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-bcklg.elc Compiling gnus/gnus-bookmark.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-bookmark.elc Compiling gnus/gnus-cache.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-cache.elc Compiling gnus/gnus-cite.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-cite.elc Compiling gnus/gnus-cus.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-cus.elc Compiling gnus/gnus-delay.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-delay.elc Compiling gnus/gnus-demon.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-demon.elc Compiling gnus/gnus-diary.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-diary.elc Compiling gnus/gnus-dired.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-dired.elc Compiling gnus/gnus-draft.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-draft.elc Compiling gnus/gnus-dup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-dup.elc Compiling gnus/gnus-eform.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-eform.elc Compiling gnus/gnus-ems.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-ems.elc Compiling gnus/gnus-fun.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-fun.elc Compiling gnus/gnus-group.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-group.elc Compiling gnus/gnus-int.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Loading gnus-agent... Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-int.elc Compiling gnus/gnus-kill.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-kill.elc Compiling gnus/gnus-logic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-logic.elc Compiling gnus/gnus-mh.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-mh.elc Compiling gnus/gnus-ml.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-ml.elc Compiling gnus/gnus-mlspl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-mlspl.elc Compiling gnus/gnus-move.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-move.elc Compiling gnus/gnus-msg.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-msg.elc Compiling gnus/gnus-nocem.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-nocem.elc Compiling gnus/gnus-picon.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-picon.elc Compiling gnus/gnus-range.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-range.elc Compiling gnus/gnus-registry.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-registry.elc Compiling gnus/gnus-salt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-salt.elc Compiling gnus/gnus-score.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-score.elc Compiling gnus/gnus-setup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-setup.elc Compiling gnus/gnus-sieve.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-sieve.elc Compiling gnus/gnus-soup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-soup.elc Compiling gnus/gnus-spec.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-spec.elc Compiling gnus/gnus-srvr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-srvr.elc Compiling gnus/gnus-start.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-start.elc Compiling gnus/gnus-sum.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: gnus-sum.el:12512:1:Warning: the following functions might not be defined at runtime: gnus-build-sparse-threads, gnus-dead-summary-mode, gnus-summary-mark-below Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-sum.elc Compiling gnus/gnus-topic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-topic.elc Compiling gnus/gnus-undo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-undo.elc Compiling gnus/gnus-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In gnus-select-frame-set-input-focus: gnus-util.el:1576:18:Warning: `w32-focus-frame' is an obsolete function (as of Emacs 23.1); use `x-focus-frame' instead. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-util.elc Compiling gnus/gnus-uu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: gnus-uu.el:2177:1:Warning: the function `make-symbolic-link' is not known to be defined. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-uu.elc Compiling gnus/gnus-vm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-vm.elc Compiling gnus/gnus-win.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus-win.elc Compiling gnus/gnus.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/gnus.elc Compiling gnus/html2text.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/html2text.elc Compiling gnus/ietf-drums.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/ietf-drums.elc Compiling gnus/legacy-gnus-agent.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/legacy-gnus-agent.elc Compiling gnus/mail-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mail-parse.elc Compiling gnus/mail-prsvr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mail-prsvr.elc Compiling gnus/mail-source.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mail-source.elc Compiling gnus/mailcap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mailcap.elc Compiling gnus/message.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/message.elc Compiling gnus/messcompat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/messcompat.elc Compiling gnus/mm-bodies.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-bodies.elc Compiling gnus/mm-decode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-decode.elc Compiling gnus/mm-encode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-encode.elc Compiling gnus/mm-extern.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-extern.elc Compiling gnus/mm-partial.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-partial.elc Compiling gnus/mm-url.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-url.elc Compiling gnus/mm-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: mm-util.el:1446:1:Warning: the function `cp-supported-codepages' is not known to be defined. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-util.elc Compiling gnus/mm-uu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-uu.elc Compiling gnus/mm-view.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mm-view.elc Compiling gnus/mml-sec.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mml-sec.elc Compiling gnus/mml-smime.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mml-smime.elc Compiling gnus/mml.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mml.elc Compiling gnus/mml1991.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mml1991.elc Compiling gnus/mml2015.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/mml2015.elc Compiling gnus/nnagent.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnagent.elc Compiling gnus/nnbabyl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnbabyl.elc Compiling gnus/nndb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nndb.elc Compiling gnus/nndiary.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nndiary.elc Compiling gnus/nndir.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nndir.elc Compiling gnus/nndoc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nndoc.elc Compiling gnus/nndraft.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nndraft.elc Compiling gnus/nneething.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nneething.elc Compiling gnus/nnfolder.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnfolder.elc Compiling gnus/nngateway.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nngateway.elc Compiling gnus/nnheader.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnheader.elc Compiling gnus/nnimap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnimap.elc Compiling gnus/nnkiboze.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnkiboze.elc Compiling gnus/nnlistserv.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnlistserv.elc Compiling gnus/nnmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnmail.elc Compiling gnus/nnmaildir.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: nnmaildir.el:1674:1:Warning: the following functions are not known to be defined: make-symbolic-link, unix-sync Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnmaildir.elc Compiling gnus/nnmbox.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnmbox.elc Compiling gnus/nnmh.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnmh.elc Compiling gnus/nnml.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnml.elc Compiling gnus/nnnil.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnnil.elc Compiling gnus/nnoo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnoo.elc Compiling gnus/nnrss.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnrss.elc Compiling gnus/nnslashdot.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnslashdot.elc Compiling gnus/nnsoup.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnsoup.elc Compiling gnus/nnspool.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnspool.elc Compiling gnus/nntp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nntp.elc Compiling gnus/nnultimate.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnultimate.elc Compiling gnus/nnvirtual.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnvirtual.elc Compiling gnus/nnwarchive.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnwarchive.elc Compiling gnus/nnweb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnweb.elc Compiling gnus/nnwfm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/nnwfm.elc Compiling gnus/pop3.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/pop3.elc Compiling gnus/qp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/qp.elc Compiling gnus/rfc1843.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/rfc1843.elc Compiling gnus/rfc2045.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/rfc2045.elc Compiling gnus/rfc2047.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/rfc2047.elc Compiling gnus/rfc2104.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/rfc2104.elc Compiling gnus/rfc2231.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/rfc2231.elc Compiling gnus/score-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/score-mode.elc Compiling gnus/sieve-manage.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/sieve-manage.elc Compiling gnus/sieve-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/sieve-mode.elc Compiling gnus/sieve.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/sieve.elc Compiling gnus/smiley.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/smiley.elc Compiling gnus/smime.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/smime.elc Compiling gnus/spam-report.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/spam-report.elc Compiling gnus/spam-stat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/spam-stat.elc Compiling gnus/spam-wash.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/spam-wash.elc Compiling gnus/spam.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/spam.elc Compiling gnus/starttls.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/starttls.elc Compiling gnus/utf7.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/utf7.elc Compiling gnus/webmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/webmail.elc Compiling gnus/yenc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/gnus/yenc.elc Compiling international/ccl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/ccl.elc Compiling international/characters.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/characters.elc Compiling international/codepage.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/codepage.elc Compiling international/cp51932.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling international/encoded-kb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/encoded-kb.elc Compiling international/eucjp-ms.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling international/fontset.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/fontset.elc Compiling international/isearch-x.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/isearch-x.elc Compiling international/iso-ascii.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/iso-ascii.elc Compiling international/iso-cvt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/iso-cvt.elc Compiling international/iso-transl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/iso-transl.elc Compiling international/ja-dic-cnv.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/ja-dic-cnv.elc Compiling international/ja-dic-utl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/ja-dic-utl.elc Compiling international/kinsoku.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/kinsoku.elc Compiling international/kkc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/kkc.elc Compiling international/latexenc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/latexenc.elc Compiling international/latin1-disp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In latin1-display: latin1-disp.el:121:12:Warning: reference to free variable `ucs-mule-8859-to-mule-unicode' Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/latin1-disp.elc Compiling international/mule-cmds.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/mule-cmds.elc Compiling international/mule-conf.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling international/mule-diag.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/mule-diag.elc Compiling international/mule-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/mule-util.elc Compiling international/mule.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/mule.elc Compiling international/ogonek.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/ogonek.elc Compiling international/quail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/quail.elc Compiling international/robin.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/robin.elc Compiling international/titdic-cnv.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/titdic-cnv.elc Compiling international/utf-7.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/international/utf-7.elc Compiling language/burmese.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/cham.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/china-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/china-util.elc Compiling language/chinese.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/chinese.elc Compiling language/cyril-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/cyril-util.elc Compiling language/cyrillic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/cyrillic.elc Compiling language/czech.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/devan-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In devanagari-composition-function: devan-util.el:119:11:Warning: reference to free variable `auto-compose-current-font' Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/devan-util.elc Compiling language/devanagari.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/english.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/ethio-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/ethio-util.elc Compiling language/ethiopic.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/ethiopic.elc Compiling language/european.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/european.elc Compiling language/georgian.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/greek.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/hebrew.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/ind-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/ind-util.elc Compiling language/indian.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/indian.elc Compiling language/japan-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/japan-util.elc Compiling language/japanese.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/kannada.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/khmer.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/knd-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/knd-util.elc Compiling language/korea-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/korea-util.elc Compiling language/korean.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/lao-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/lao-util.elc Compiling language/lao.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/malayalam.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/misc-lang.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/mlm-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In malayalam-composition-function: mlm-util.el:110:11:Warning: reference to free variable `auto-compose-current-font' Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/mlm-util.elc Compiling language/romanian.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/slovak.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/tai-viet.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/tamil.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/thai-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/thai-util.elc Compiling language/thai-word.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/thai-word.elc Compiling language/thai.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/tibet-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In tibetan-composition-function: tibet-util.el:321:11:Warning: reference to free variable `auto-compose-current-font' Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tibet-util.elc Compiling language/tibetan.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tibetan.elc Compiling language/tml-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In tamil-composition-function: tml-util.el:364:11:Warning: reference to free variable `auto-compose-current-font' Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tml-util.elc Compiling language/tv-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/tv-util.elc Compiling language/utf-8-lang.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling language/viet-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/viet-util.elc Compiling language/vietnamese.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/language/vietnamese.elc Compiling mail/binhex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/binhex.elc Compiling mail/blessmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling mail/emacsbug.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/emacsbug.elc Compiling mail/feedmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/feedmail.elc Compiling mail/footnote.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/footnote.elc Compiling mail/hashcash.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/hashcash.elc Compiling mail/mail-extr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mail-extr.elc Compiling mail/mail-hist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mail-hist.elc Compiling mail/mail-utils.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mail-utils.elc Compiling mail/mailabbrev.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mailabbrev.elc Compiling mail/mailalias.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mailalias.elc Compiling mail/mailclient.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mailclient.elc Compiling mail/mailheader.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mailheader.elc Compiling mail/mailpost.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mailpost.elc Compiling mail/metamail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/metamail.elc Compiling mail/mspools.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/mspools.elc Compiling mail/reporter.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/reporter.elc Compiling mail/rfc2368.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rfc2368.elc Compiling mail/rfc822.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rfc822.elc Compiling mail/rmail-spam-filter.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmail-spam-filter.elc Compiling mail/rmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmail.elc Compiling mail/rmailedit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmailedit.elc Compiling mail/rmailkwd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmailkwd.elc Compiling mail/rmailmsc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmailmsc.elc Compiling mail/rmailout.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmailout.elc Compiling mail/rmailsort.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmailsort.elc Compiling mail/rmailsum.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/rmailsum.elc Compiling mail/sendmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/sendmail.elc Compiling mail/smtpmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/smtpmail.elc Compiling mail/supercite.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/supercite.elc Compiling mail/uce.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/uce.elc Compiling mail/undigest.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/undigest.elc Compiling mail/unrmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/unrmail.elc Compiling mail/uudecode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mail/uudecode.elc Compiling mail/vms-pmail.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling mh-e/mh-acros.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling mh-e/mh-alias.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-alias.elc Compiling mh-e/mh-buffers.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-buffers.elc Compiling mh-e/mh-comp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-comp.elc Compiling mh-e/mh-compat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling mh-e/mh-e.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-e.elc Compiling mh-e/mh-folder.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-folder.elc Compiling mh-e/mh-funcs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-funcs.elc Compiling mh-e/mh-gnus.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling mh-e/mh-identity.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-identity.elc Compiling mh-e/mh-inc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-inc.elc Compiling mh-e/mh-junk.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-junk.elc Compiling mh-e/mh-letter.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-letter.elc Compiling mh-e/mh-limit.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-limit.elc Compiling mh-e/mh-loaddefs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling mh-e/mh-mime.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-mime.elc Compiling mh-e/mh-print.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-print.elc Compiling mh-e/mh-scan.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-scan.elc Compiling mh-e/mh-search.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-search.elc Compiling mh-e/mh-seq.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-seq.elc Compiling mh-e/mh-show.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-show.elc Compiling mh-e/mh-speed.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-speed.elc Compiling mh-e/mh-thread.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-thread.elc Compiling mh-e/mh-tool-bar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-tool-bar.elc Compiling mh-e/mh-utils.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-utils.elc Compiling mh-e/mh-xface.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. No MH variant found on the system In end of data: mh-xface.el:481:1:Warning: the function `make-symbolic-link' is not known to be defined. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/mh-e/mh-xface.elc Compiling net/ange-ftp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/ange-ftp.elc Compiling net/browse-url.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/browse-url.elc Compiling net/dbus.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling net/dig.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/dig.elc Compiling net/dns.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/dns.elc Compiling net/eudc-bob.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudc-bob.elc Compiling net/eudc-export.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudc-export.elc Compiling net/eudc-hotlist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudc-hotlist.elc Compiling net/eudc-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudc-vars.elc Compiling net/eudc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudc.elc Compiling net/eudcb-bbdb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudcb-bbdb.elc Compiling net/eudcb-ldap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudcb-ldap.elc Compiling net/eudcb-mab.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudcb-mab.elc Compiling net/eudcb-ph.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/eudcb-ph.elc Compiling net/goto-addr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/goto-addr.elc Compiling net/hmac-def.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/hmac-def.elc Compiling net/hmac-md5.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/hmac-md5.elc Compiling net/imap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/imap.elc Compiling net/ldap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/ldap.elc Compiling net/net-utils.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/net-utils.elc Compiling net/netrc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/netrc.elc Compiling net/newsticker.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/newsticker.elc Compiling net/ntlm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/ntlm.elc Compiling net/quickurl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/quickurl.elc Compiling net/rcirc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/rcirc.elc Compiling net/rcompile.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/rcompile.elc Compiling net/rlogin.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/rlogin.elc Compiling net/sasl-cram.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/sasl-cram.elc Compiling net/sasl-digest.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/sasl-digest.elc Compiling net/sasl-ntlm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/sasl-ntlm.elc Compiling net/sasl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/sasl.elc Compiling net/snmp-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/snmp-mode.elc Compiling net/socks.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/socks.elc Compiling net/telnet.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/telnet.elc Compiling net/tls.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tls.elc Compiling net/tramp-cache.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-cache.elc Compiling net/tramp-cmds.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In tramp-cleanup-connection: tramp-cmds.el:91:6:Warning: tramp-flush-connection-property called with 2 arguments, but accepts only 1 tramp-cmds.el:98:72:Warning: tramp-flush-connection-property called with 2 arguments, but accepts only 1 Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-cmds.elc Compiling net/tramp-compat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-compat.elc Compiling net/tramp-fish.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-fish.elc Compiling net/tramp-ftp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-ftp.elc Compiling net/tramp-gw.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-gw.elc Compiling net/tramp-smb.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-smb.elc Compiling net/tramp-uu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp-uu.elc Compiling net/tramp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/tramp.elc Compiling net/trampver.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/trampver.elc Compiling net/webjump.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/net/webjump.elc Compiling nxml/nxml-enc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-enc.elc Compiling nxml/nxml-glyph.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-glyph.elc Compiling nxml/nxml-maint.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-maint.elc Compiling nxml/nxml-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-mode.elc Compiling nxml/nxml-ns.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-ns.elc Compiling nxml/nxml-outln.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-outln.elc Compiling nxml/nxml-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-parse.elc Compiling nxml/nxml-rap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-rap.elc Compiling nxml/nxml-uchnm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-uchnm.elc Compiling nxml/nxml-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/nxml-util.elc Compiling nxml/rng-cmpct.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-cmpct.elc Compiling nxml/rng-dt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-dt.elc Compiling nxml/rng-loc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-loc.elc Compiling nxml/rng-maint.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-maint.elc Compiling nxml/rng-match.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-match.elc Compiling nxml/rng-nxml.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-nxml.elc Compiling nxml/rng-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-parse.elc Compiling nxml/rng-pttrn.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-pttrn.elc Compiling nxml/rng-uri.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-uri.elc Compiling nxml/rng-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-util.elc Compiling nxml/rng-valid.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-valid.elc Compiling nxml/rng-xsd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/rng-xsd.elc Compiling nxml/subdirs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling nxml/xmltok.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/xmltok.elc Compiling nxml/xsd-regexp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/nxml/xsd-regexp.elc Compiling play/5x5.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/5x5.elc Compiling play/animate.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/animate.elc Compiling play/blackbox.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/blackbox.elc Compiling play/bruce.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling play/bubbles.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/bubbles.elc Compiling play/cookie1.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/cookie1.elc Compiling play/decipher.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/decipher.elc Compiling play/dissociate.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/dissociate.elc Compiling play/doctor.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/doctor.elc Compiling play/dunnet.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/dunnet.elc Compiling play/fortune.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/fortune.elc Compiling play/gamegrid.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/gamegrid.elc Compiling play/gametree.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/gametree.elc Compiling play/gomoku.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/gomoku.elc Compiling play/handwrite.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/handwrite.elc Compiling play/hanoi.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/hanoi.elc Compiling play/landmark.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/landmark.elc Compiling play/life.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/life.elc Compiling play/meese.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/meese.elc Compiling play/morse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/morse.elc Compiling play/mpuz.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/mpuz.elc Compiling play/pong.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/pong.elc Compiling play/snake.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/snake.elc Compiling play/solitaire.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/solitaire.elc Compiling play/spook.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/spook.elc Compiling play/studly.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/studly.elc Compiling play/tetris.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/tetris.elc Compiling play/yow.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/yow.elc Compiling play/zone.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/play/zone.elc Compiling progmodes/ada-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ada-mode.elc Compiling progmodes/ada-prj.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ada-prj.elc Compiling progmodes/ada-stmt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ada-stmt.elc Compiling progmodes/ada-xref.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ada-xref.elc Compiling progmodes/antlr-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/antlr-mode.elc Compiling progmodes/asm-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/asm-mode.elc Compiling progmodes/autoconf.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/autoconf.elc Compiling progmodes/cap-words.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cap-words.elc Compiling progmodes/cc-align.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-align.elc Compiling progmodes/cc-awk.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-awk.elc Compiling progmodes/cc-bytecomp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-bytecomp.elc Compiling progmodes/cc-cmds.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-cmds.elc Compiling progmodes/cc-compat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-compat.elc Compiling progmodes/cc-defs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-defs.elc Compiling progmodes/cc-engine.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-engine.elc Compiling progmodes/cc-fonts.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-fonts.elc Compiling progmodes/cc-langs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-langs.elc Compiling progmodes/cc-menus.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-menus.elc Compiling progmodes/cc-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling progmodes/cc-styles.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-styles.elc Compiling progmodes/cc-subword.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cc-subword.elc Compiling progmodes/cc-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling progmodes/cfengine.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cfengine.elc Compiling progmodes/cmacexp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cmacexp.elc Compiling progmodes/compile.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/compile.elc Compiling progmodes/cperl-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cperl-mode.elc Compiling progmodes/cpp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cpp.elc Compiling progmodes/cwarn.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/cwarn.elc Compiling progmodes/dcl-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/dcl-mode.elc Compiling progmodes/delphi.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/delphi.elc Compiling progmodes/ebnf-abn.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-abn.elc Compiling progmodes/ebnf-bnf.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-bnf.elc Compiling progmodes/ebnf-dtd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-dtd.elc Compiling progmodes/ebnf-ebx.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-ebx.elc Compiling progmodes/ebnf-iso.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-iso.elc Compiling progmodes/ebnf-otz.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-otz.elc Compiling progmodes/ebnf-yac.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf-yac.elc Compiling progmodes/ebnf2ps.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebnf2ps.elc Compiling progmodes/ebrowse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ebrowse.elc Compiling progmodes/etags.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/etags.elc Compiling progmodes/executable.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/executable.elc Compiling progmodes/f90.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/f90.elc Compiling progmodes/flymake.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/flymake.elc Compiling progmodes/fortran.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/fortran.elc Compiling progmodes/gdb-ui.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/gdb-ui.elc Compiling progmodes/glasses.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/glasses.elc Compiling progmodes/grep.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/grep.elc Compiling progmodes/gud.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/gud.elc Compiling progmodes/hideif.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/hideif.elc Compiling progmodes/hideshow.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/hideshow.elc Compiling progmodes/icon.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/icon.elc Compiling progmodes/idlw-complete-structtag.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/idlw-complete-structtag.elc Compiling progmodes/idlw-help.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/idlw-help.elc Compiling progmodes/idlw-shell.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/idlw-shell.elc Compiling progmodes/idlw-toolbar.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/idlw-toolbar.elc Compiling progmodes/idlwave.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/idlwave.elc Compiling progmodes/inf-lisp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/inf-lisp.elc Compiling progmodes/ld-script.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ld-script.elc Compiling progmodes/m4-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/m4-mode.elc Compiling progmodes/make-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/make-mode.elc Compiling progmodes/mantemp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/mantemp.elc Compiling progmodes/meta-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/meta-mode.elc Compiling progmodes/mixal-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/mixal-mode.elc Compiling progmodes/modula2.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/modula2.elc Compiling progmodes/octave-hlp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/octave-hlp.elc Compiling progmodes/octave-inf.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/octave-inf.elc Compiling progmodes/octave-mod.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/octave-mod.elc Compiling progmodes/pascal.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/pascal.elc Compiling progmodes/perl-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/perl-mode.elc Compiling progmodes/prolog.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/prolog.elc Compiling progmodes/ps-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/ps-mode.elc Compiling progmodes/python.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/python.elc Compiling progmodes/scheme.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/scheme.elc Compiling progmodes/sh-script.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/sh-script.elc Compiling progmodes/simula.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/simula.elc Compiling progmodes/sql.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/sql.elc Compiling progmodes/tcl.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/tcl.elc Compiling progmodes/vera-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/vera-mode.elc Compiling progmodes/verilog-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/verilog-mode.elc Compiling progmodes/vhdl-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/vhdl-mode.elc Compiling progmodes/which-func.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/which-func.elc Compiling progmodes/xscheme.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/progmodes/xscheme.elc Compiling term/AT386.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/apollo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/bobcat.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/cygwin.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/internal.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/iris-ansi.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/linux.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/lk201.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/mac-win.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In toplevel form: term/mac-win.el:1146:1:Error: Invalid read syntax: "?" Compiling term/news.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/pc-win.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/pc-win.elc Compiling term/rxvt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/rxvt.elc Compiling term/sun.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/sun.elc Compiling term/sup-mouse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/sup-mouse.elc Compiling term/tty-colors.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/tty-colors.elc Compiling term/tvi970.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/tvi970.elc Compiling term/vt100.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/vt100.elc Compiling term/vt102.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt125.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt200.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt201.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt220.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt240.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt300.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt320.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt400.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/vt420.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/w32-win.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/w32-win.elc Compiling term/w32console.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/w32console.elc Compiling term/wyse50.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling term/x-win.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In end of data: x-win.el:2580:1:Warning: the function `accelerate-menu' is not known to be defined. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/x-win.elc Compiling term/xterm.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/term/xterm.elc Compiling textmodes/artist.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/artist.elc Compiling textmodes/bib-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/bib-mode.elc Compiling textmodes/bibtex-style.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/bibtex-style.elc Compiling textmodes/bibtex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/bibtex.elc Compiling textmodes/conf-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/conf-mode.elc Compiling textmodes/css-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/css-mode.elc Compiling textmodes/dns-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/dns-mode.elc Compiling textmodes/enriched.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/enriched.elc Compiling textmodes/fill.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/fill.elc Compiling textmodes/flyspell.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/flyspell.elc Compiling textmodes/ispell.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/ispell.elc Compiling textmodes/makeinfo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/makeinfo.elc Compiling textmodes/nroff-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/nroff-mode.elc Compiling textmodes/org-export-latex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/org-export-latex.elc Compiling textmodes/org-mouse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/org-mouse.elc Compiling textmodes/org-publish.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/org-publish.elc Compiling textmodes/org.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/org.elc Compiling textmodes/page-ext.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/page-ext.elc Compiling textmodes/page.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/page.elc Compiling textmodes/paragraphs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/paragraphs.elc Compiling textmodes/picture.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/picture.elc Compiling textmodes/po.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/po.elc Compiling textmodes/refbib.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/refbib.elc Compiling textmodes/refer.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/refer.elc Compiling textmodes/refill.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/refill.elc Compiling textmodes/reftex-auc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-auc.elc Compiling textmodes/reftex-cite.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-cite.elc Compiling textmodes/reftex-dcr.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-dcr.elc Compiling textmodes/reftex-global.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-global.elc Compiling textmodes/reftex-index.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-index.elc Compiling textmodes/reftex-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-parse.elc Compiling textmodes/reftex-ref.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-ref.elc Compiling textmodes/reftex-sel.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-sel.elc Compiling textmodes/reftex-toc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-toc.elc Compiling textmodes/reftex-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex-vars.elc Compiling textmodes/reftex.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/reftex.elc Compiling textmodes/remember.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/remember.elc Compiling textmodes/sgml-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/sgml-mode.elc Compiling textmodes/spell.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/spell.elc Compiling textmodes/table.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/table.elc Compiling textmodes/tex-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. In tex-mode: tex-mode.el:910:8:Warning: function `tex-mode' defined multiple times in this file Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/tex-mode.elc Compiling textmodes/texinfmt.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/texinfmt.elc Compiling textmodes/texinfo.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/texinfo.elc Compiling textmodes/texnfo-upd.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/texnfo-upd.elc Compiling textmodes/text-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/text-mode.elc Compiling textmodes/tildify.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/tildify.elc Compiling textmodes/two-column.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/two-column.elc Compiling textmodes/underline.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/textmodes/underline.elc Compiling url/url-about.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-about.elc Compiling url/url-auth.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-auth.elc Compiling url/url-cache.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-cache.elc Compiling url/url-cid.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-cid.elc Compiling url/url-cookie.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-cookie.elc Compiling url/url-dav.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-dav.elc Compiling url/url-dired.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-dired.elc Compiling url/url-expand.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-expand.elc Compiling url/url-file.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-file.elc Compiling url/url-ftp.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-ftp.elc Compiling url/url-gw.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-gw.elc Compiling url/url-handlers.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-handlers.elc Compiling url/url-history.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-history.elc Compiling url/url-http.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-http.elc Compiling url/url-imap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-imap.elc Compiling url/url-irc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-irc.elc Compiling url/url-ldap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-ldap.elc Compiling url/url-mailto.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-mailto.elc Compiling url/url-methods.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-methods.elc Compiling url/url-misc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-misc.elc Compiling url/url-news.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-news.elc Compiling url/url-nfs.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-nfs.elc Compiling url/url-ns.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-ns.elc Compiling url/url-parse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-parse.elc Compiling url/url-privacy.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-privacy.elc Compiling url/url-proxy.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-proxy.elc Compiling url/url-util.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-util.elc Compiling url/url-vars.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url-vars.elc Compiling url/url.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/url.elc Compiling url/vc-dav.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/url/vc-dav.elc Compiling obsolete/auto-show.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/auto-show.elc Compiling obsolete/awk-mode.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/awk-mode.elc Compiling obsolete/bg-mouse.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/bg-mouse.elc Compiling obsolete/fast-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/fast-lock.elc Compiling obsolete/float.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/float.elc Compiling obsolete/hilit19.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/hilit19.elc Compiling obsolete/hscroll.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/hscroll.elc Compiling obsolete/iso-acc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/iso-acc.elc Compiling obsolete/iso-insert.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/iso-insert.elc Compiling obsolete/iso-swed.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/iso-swed.elc Compiling obsolete/keyswap.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Compiling obsolete/lazy-lock.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/lazy-lock.elc Compiling obsolete/lselect.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/lselect.elc Compiling obsolete/mlsupport.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/mlsupport.elc Compiling obsolete/old-whitespace.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/old-whitespace.elc Compiling obsolete/ooutline.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/ooutline.elc Compiling obsolete/options.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/options.elc Compiling obsolete/profile.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/profile.elc Compiling obsolete/rnews.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/rnews.elc Compiling obsolete/rnewspost.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Package rnews is obsolete Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/rnewspost.elc Compiling obsolete/rsz-mini.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/rsz-mini.elc Compiling obsolete/sc.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/sc.elc Compiling obsolete/scribe.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/scribe.elc Compiling obsolete/swedish.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/swedish.elc Compiling obsolete/uncompress.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/uncompress.elc Compiling obsolete/x-menu.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/obsolete/x-menu.elc Directories: calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l finder -f finder-compile-keywords-make-dist c:/blandat/editors/emacs/cvsemacs/emacs/lisp calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Loading vc-cvs... Directory c:/blandat/editors/emacs/cvsemacs/emacs/lisp Directory calc Directory calendar Directory emacs-lisp Directory emulation Directory erc Directory eshell Directory gnus Directory international Directory language Directory mail Directory mh-e Directory net Directory nxml Directory play Directory progmodes Directory term Directory textmodes Directory url Directory obsolete Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/finder-inf.el touch c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-load.el Directories: calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l cus-dep --eval '(setq find-file-hook nil)' -f custom-make-dependencies c:/blandat/editors/emacs/cvsemacs/emacs/lisp calc calendar emacs-lisp emulation erc eshell gnus international language mail mh-e net nxml play progmodes term textmodes url obsolete Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Directory c:/blandat/editors/emacs/cvsemacs/emacs/lisp Directory calc Directory calendar Directory emacs-lisp Directory emulation Directory erc Directory eshell Directory gnus Directory international Directory language Directory mail Directory mh-e Directory net Directory nxml Directory play Directory progmodes Directory term Directory textmodes Directory url Directory obsolete Generating cus-load.el... Saving file c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-load.el... Loading vc-cvs... Wrote c:/blandat/editors/emacs/cvsemacs/emacs/lisp/cus-load.el Generating cus-load.el...done rm "./../bin/emacs.exe" mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lisp' c:/devtools/mingw_make_version_3.81-2/mingw32-make -C ../lib-src DOC [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file mingw32-make[1]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/lib-src' mkdir "oo-spd" mkdir "oo-spd/i386" echo oo-spd/i386 > stamp_BLD gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc -I../src -o oo-spd/i386/make-docfile.o make-docfile.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -mno-cygwin -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -DUSE_FONT_BACKEND -I../../xpm-3.5.1-1/include -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc -I../src -o oo-spd/i386/ntlib.o ntlib.c gcc -o oo-spd/i386/make-docfile.exe -mno-cygwin -L../../xpm-3.5.1-1/lib oo-spd/i386/make-docfile.o oo-spd/i386/ntlib.o -ladvapi32 mingw32-make[1]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/lib-src' mingw32-make[1]: *** No rule to make target `../lisp/international/charprop.el', needed by `DOC'. Stop. mingw32-make: *** [bootstrap-gmake] Error 2 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 9:41 ` Eric Lilja @ 2008-02-04 11:02 ` Jason Rumney 2008-02-04 11:36 ` Eric Lilja 2008-02-04 20:45 ` Eli Zaretskii 2008-02-04 20:47 ` Eli Zaretskii 1 sibling, 2 replies; 49+ messages in thread From: Jason Rumney @ 2008-02-04 11:02 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel Eric Lilja wrote: > Here's the full session log performed on fresh cvs checkout (old files > removed first). Hope attaching it works (posting through gmane, it's > rather big), I can host it if it doesn't work. mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el Cannot open load file: encoded-kb Search the archives for this message. It is a symptom of some problem with your build environment, I can't remember exactly what. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 11:02 ` Jason Rumney @ 2008-02-04 11:36 ` Eric Lilja 2008-02-04 11:48 ` Jason Rumney 2008-02-04 20:45 ` Eli Zaretskii 1 sibling, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-04 11:36 UTC (permalink / raw) To: emacs-devel Jason Rumney wrote: > Eric Lilja wrote: >> Here's the full session log performed on fresh cvs checkout (old files >> removed first). Hope attaching it works (posting through gmane, it's >> rather big), I can host it if it doesn't work. > > mingw32-make[2]: Entering directory > `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f > batch-byte-compile unidata-gen.el > Cannot open load file: encoded-kb > > Search the archives for this message. It is a symptom of some problem > with your build environment, I can't remember exactly what. > > > > Good catch, however, I can't find any information that helps me solve the problem (I googled it). It seems to be a problem when running carbon emacs (I'm not) or when trying to compile native windows emacs with cygwin's make (I'm not, I'm using mingw-make). Nothing in my environment has changed the last days that I know of and I was able to build emacs-23 right before the merge just fine. Thanks for trying to help, though, I appreciate it! - Eric ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 11:36 ` Eric Lilja @ 2008-02-04 11:48 ` Jason Rumney 2008-02-04 11:54 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Jason Rumney @ 2008-02-04 11:48 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel Eric Lilja wrote: > Jason Rumney wrote: >> Eric Lilja wrote: >>> Here's the full session log performed on fresh cvs checkout (old >>> files removed first). Hope attaching it works (posting through >>> gmane, it's rather big), I can host it if it doesn't work. >> >> mingw32-make[2]: Entering directory >> `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' >> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f >> batch-byte-compile unidata-gen.el >> Cannot open load file: encoded-kb >> >> Search the archives for this message. It is a symptom of some problem >> with your build environment, I can't remember exactly what. > > Good catch, however, I can't find any information that helps me solve > the problem (I googled it). It seems to be a problem when running > carbon emacs (I'm not) or when trying to compile native windows emacs > with cygwin's make (I'm not, I'm using mingw-make). Yes, it was the latter I was remembering. Cygwin make passes Cygwin paths to Emacs, causing problems finding files. The same problem could happen with MSYS, as that also uses munged paths to emulate a unix-like filesystem. Its possible that a fix for this problem was lost in the unicode merge. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 11:48 ` Jason Rumney @ 2008-02-04 11:54 ` Eric Lilja 2008-02-04 12:13 ` Juanma Barranquero 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-04 11:54 UTC (permalink / raw) To: emacs-devel Jason Rumney wrote: > Eric Lilja wrote: >> Jason Rumney wrote: >>> Eric Lilja wrote: >>>> Here's the full session log performed on fresh cvs checkout (old >>>> files removed first). Hope attaching it works (posting through >>>> gmane, it's rather big), I can host it if it doesn't work. >>> >>> mingw32-make[2]: Entering directory >>> `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' >>> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f >>> batch-byte-compile unidata-gen.el >>> Cannot open load file: encoded-kb >>> >>> Search the archives for this message. It is a symptom of some problem >>> with your build environment, I can't remember exactly what. >> >> Good catch, however, I can't find any information that helps me solve >> the problem (I googled it). It seems to be a problem when running >> carbon emacs (I'm not) or when trying to compile native windows emacs >> with cygwin's make (I'm not, I'm using mingw-make). > Yes, it was the latter I was remembering. Cygwin make passes Cygwin > paths to Emacs, causing problems finding files. The same problem could > happen with MSYS, as that also uses munged paths to emulate a unix-like > filesystem. > Its possible that a fix for this problem was lost in the unicode merge. > Maybe the people reporting build success under Windows have a "real" mingw installation. I'm using cygwin all the way except I'm using mingw's make and passing --mno-cygwin to cygwin's gcc, I've been building this way for some years. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 11:54 ` Eric Lilja @ 2008-02-04 12:13 ` Juanma Barranquero 2008-02-04 20:56 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Juanma Barranquero @ 2008-02-04 12:13 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel On Feb 4, 2008 12:54 PM, Eric Lilja <mindcooler@gmail.com> wrote: > Maybe the people reporting build success under Windows have a "real" > mingw installation. Yes (speaking on my behalf only, of course :) Juanma ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 12:13 ` Juanma Barranquero @ 2008-02-04 20:56 ` Eli Zaretskii 0 siblings, 0 replies; 49+ messages in thread From: Eli Zaretskii @ 2008-02-04 20:56 UTC (permalink / raw) To: Juanma Barranquero; +Cc: mindcooler, emacs-devel > Date: Mon, 4 Feb 2008 13:13:57 +0100 > From: "Juanma Barranquero" <lekktu@gmail.com> > Cc: emacs-devel@gnu.org > > On Feb 4, 2008 12:54 PM, Eric Lilja <mindcooler@gmail.com> wrote: > > > Maybe the people reporting build success under Windows have a "real" > > mingw installation. > > Yes (speaking on my behalf only, of course :) Same here. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 11:02 ` Jason Rumney 2008-02-04 11:36 ` Eric Lilja @ 2008-02-04 20:45 ` Eli Zaretskii 2008-02-04 21:14 ` Eric Lilja 2008-02-04 22:12 ` Andreas Schwab 1 sibling, 2 replies; 49+ messages in thread From: Eli Zaretskii @ 2008-02-04 20:45 UTC (permalink / raw) To: Jason Rumney; +Cc: mindcooler, emacs-devel > Date: Mon, 04 Feb 2008 11:02:18 +0000 > From: Jason Rumney <jasonr@gnu.org> > Cc: emacs-devel@gnu.org > > Eric Lilja wrote: > > Here's the full session log performed on fresh cvs checkout (old files > > removed first). Hope attaching it works (posting through gmane, it's > > rather big), I can host it if it doesn't work. > > mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el > Cannot open load file: encoded-kb One possible cause is that EMACSLOADPATH is not set in the environment of emacs.exe. Please take a look at admin/unidata/makefile: it should have these two lines: export EMACSLOADPATH EMACSLOADPATH = $(CURDIR)/../../lisp Do you have them? If you do and it still does not work, perhaps the combination of the MinGW Make and the Cygwin shell causes the exported variable to cease to work? (But then how did it work for you before the Unicode merge?) ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 20:45 ` Eli Zaretskii @ 2008-02-04 21:14 ` Eric Lilja 2008-02-04 21:23 ` Eli Zaretskii 2008-02-04 22:12 ` Andreas Schwab 1 sibling, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-04 21:14 UTC (permalink / raw) To: emacs-devel Eli Zaretskii skrev: >> Date: Mon, 04 Feb 2008 11:02:18 +0000 >> From: Jason Rumney <jasonr@gnu.org> >> Cc: emacs-devel@gnu.org >> >> Eric Lilja wrote: >>> Here's the full session log performed on fresh cvs checkout (old files >>> removed first). Hope attaching it works (posting through gmane, it's >>> rather big), I can host it if it doesn't work. >> mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' >> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el >> Cannot open load file: encoded-kb > > One possible cause is that EMACSLOADPATH is not set in the environment > of emacs.exe. Please take a look at admin/unidata/makefile: it should > have these two lines: > > export EMACSLOADPATH > EMACSLOADPATH = $(CURDIR)/../../lisp > > Do you have them? > > If you do and it still does not work, perhaps the combination of the > MinGW Make and the Cygwin shell causes the exported variable to cease > to work? (But then how did it work for you before the Unicode merge?) > > > > On line 136 I have export EMACSLOADPATH And on line 323 I have EMACSLOADPATH = $(CURDIR)/../../lisp Are they in their proper places? As I said, I built emacs-23 using this environment right before the unicode branch merge. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 21:14 ` Eric Lilja @ 2008-02-04 21:23 ` Eli Zaretskii 2008-02-04 21:28 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-04 21:23 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Mon, 04 Feb 2008 22:14:36 +0100 > > On line 136 I have export EMACSLOADPATH > And on line 323 I have EMACSLOADPATH = $(CURDIR)/../../lisp > > Are they in their proper places? Yes. Weird... Can you manually modify admin/unidate/makefile so that Emacs when run displays the value of load-path? Then show it here. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 21:23 ` Eli Zaretskii @ 2008-02-04 21:28 ` Eric Lilja 2008-02-05 4:09 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-04 21:28 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Mon, 04 Feb 2008 22:14:36 +0100 >> >> On line 136 I have export EMACSLOADPATH >> And on line 323 I have EMACSLOADPATH = $(CURDIR)/../../lisp >> >> Are they in their proper places? > > Yes. Weird... > > Can you manually modify admin/unidate/makefile so that Emacs when run > displays the value of load-path? Then show it here. > > > Well, the only working emacs I have right now is GNU Emacs 22.1.50.1 (i386-mingw-nt5.1.2600) of 2007-10-28 on MINDCOOLER. My stupid script proceeded to wipe out my working emacs-23 binaries thinking that the build went okay. Can I use this and what exactly do I need to do? Sorry for asking dumb questions. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 21:28 ` Eric Lilja @ 2008-02-05 4:09 ` Eli Zaretskii 2008-02-05 9:15 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-05 4:09 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Mon, 04 Feb 2008 22:28:31 +0100 > > > Can you manually modify admin/unidate/makefile so that Emacs when run > > displays the value of load-path? Then show it here. > > > Well, the only working emacs I have right now is GNU Emacs 22.1.50.1 > (i386-mingw-nt5.1.2600) of 2007-10-28 on MINDCOOLER. My stupid script > proceeded to wipe out my working emacs-23 binaries thinking that the > build went okay. Can I use this and what exactly do I need to do? Sorry > for asking dumb questions. No need to apologize, I didn't explain enough. What I meant is this: modify the line in admin/unidate/makefile that says "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el to say this instead: "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message \"%s\" load-path)" and then see what it displays when you run "make bootstrap". Note that, since admin/unidate/makefile is generated by "make bootstrap", you will either need to edit admin/unidate/makefile.w32-in and then run nt/configure.bat to create admin/unidate/makefile, or edit admin/unidate/makefile while "make bootstrap" runs, but before it gets to where it executes the above line. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-05 4:09 ` Eli Zaretskii @ 2008-02-05 9:15 ` Eric Lilja 2008-02-05 20:13 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-05 9:15 UTC (permalink / raw) To: emacs-devel [-- Attachment #1: Type: text/plain, Size: 1910 bytes --] Eli Zaretskii skrev: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Mon, 04 Feb 2008 22:28:31 +0100 >> >>> Can you manually modify admin/unidate/makefile so that Emacs when run >>> displays the value of load-path? Then show it here. >>> >> Well, the only working emacs I have right now is GNU Emacs 22.1.50.1 >> (i386-mingw-nt5.1.2600) of 2007-10-28 on MINDCOOLER. My stupid script >> proceeded to wipe out my working emacs-23 binaries thinking that the >> build went okay. Can I use this and what exactly do I need to do? Sorry >> for asking dumb questions. > > No need to apologize, I didn't explain enough. > > What I meant is this: modify the line in admin/unidate/makefile that > says > > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el > > to say this instead: > > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message \"%s\" load-path)" > > and then see what it displays when you run "make bootstrap". > > Note that, since admin/unidate/makefile is generated by "make > bootstrap", you will either need to edit admin/unidate/makefile.w32-in > and then run nt/configure.bat to create admin/unidate/makefile, or > edit admin/unidate/makefile while "make bootstrap" runs, but before it > gets to where it executes the above line. > > > OK, here's what happened. My admin/unidata/makefile was generated after the configure step, but I couldn't find the line I was supposed to change so I read your message a little bit more carefully. Ah, and you said that it's generated during bootstrap so I thought that it would be modified during bootstrap and when that had happened I was going to alter the line you wanted me to alter (before it was used, hopefully). But the admin/unidata/makefile was never altered after it was initially created during the bootstrap phase. I'm attaching it (maybe useless but oh well). [-- Attachment #2: makefile --] [-- Type: text/plain, Size: 10395 bytes --] # Start of settings from configure.bat COMPILER=gcc MCPU_FLAG=-mtune=pentium4 NODEBUG=1 NOCYGWIN=1 USER_CFLAGS=-I../../xpm-3.5.1-1/include USER_LDFLAGS=-L../../xpm-3.5.1-1/lib # End of settings from configure.bat # -*- Makefile -*- definition file for building GNU Emacs on Windows NT. # Copyright (C) 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # GNU Emacs 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 3, or (at your option) # any later version. # # GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. # Ensure 'all' is the default target all: # NOTES # # I tried to force gmake to use the native shell for simplicity, by # setting SHELL as below, but this didn't work reliably because of # various case sensitivity niggles. Specifically, COMSPEC (which is in # fact usually spelled ComSpec on NT, to make life difficult) typically # references "cmd.exe" (on NT) when the file is actually called # "CMD.EXE" on disk for hysterical raisons. As a result, GNU make # thinks it doesn't exist (unless compiled with a switch to ignore # case), and so doesn't change which shell it will invoke to execute # commands. # # It would be possible, though very tedious using just gmake facilities, # to convert the COMSPEC value to uppercase to solve this problem, but # it isn't worth it. That is partly because, even when using the native # shell, gmake tends to not be happy with backslashes in command # strings. The obvious solution is to use forward slashes as much as # possible, which can be made to work most of the time (putting # filenames in quotes often helps), but there are still some internal # cmd.exe commands like `del' and `copy' that won't work with them. # Although it is possible to convert slashes to backslashes when # necessary, gmake requires explicitly calling its subst function, which # nmake does not understand). For this reason, it is simplest to # mandate that rm and cp be available, so we can use Unix-format file # names everywhere. (Fortunately both MS and GNU make, and the # respective compilers, are happy with Unix-format names.) # # Since we cannot easily force the choice of a particular shell, we must # make the effort to cope with whichever shell is being used. # Fortunately, the only command we need to use that is shell specific is # the testing of a file's existence for the purpose of working out when # we are copying files to their original location. That particular # requirement is abstracted easily enough. # # The only other problem area was the change of directory when running # temacs to dump emacs.exe (where gmake doesn't support cd foo in any # useful way), but that has been resolved by modifying the Windows # unexec function slightly to not require the directory change while # still allowing objects and binaries to be in subdirectories. # This doesn't work. #SHELL:=$(COMSPEC) # Determine whether make is using sh or cmd/command as shell; cmd.exe # will output "ECHO is on" when echo is given by itself, while sh will # not produce any output. sh_output := $(shell echo) ifeq "$(findstring ECHO, $(sh_output))" "ECHO" THE_SHELL = $(COMSPEC)$(ComSpec) SHELLTYPE=CMD else USING_SH = 1 THE_SHELL = $(SHELL) SHELLTYPE=SH endif MAKETYPE=gmake # The following "ifeq" does not appear to DTRT, and therefore breaks # the build on mingw32. Also the -m option does not exist in many # (reasonably recent even) versions of Cygwin. These issues need to be # remedied before putting this cygpath kludge back in. # Convert CURDIR to native file name, if in Cygwin format #ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)" #CURDIR := $(shell cygpath -m $(CURDIR)) #endif THISDIR = . # Cygwin has changed quoting rules somewhat since b20, in a way that # affects makefiles using sh as the command processor, so we need to # detect which rules to use. ifdef USING_SH sh_output := $(shell echo [Please ignore a syntax error on the next line - it is intentional] 1>&2) sh_output := $(shell echo foo") ifeq "$(sh_output)" "" NEW_CYGWIN = 1 endif # By default, newer versions of Cygwin mess with NTFS ACLs in an # attempt to emulate traditional posix file permissions. This can # cause bad effects, such as .exe files that are missing the # FILE_EXECUTE/FILE_GENERIC_EXECUTE permissions when they are created # with Cygwin commands that don't expect to be creating executable # files. Then when we later use a non-Cygwin program to create the # real .exe, the previous Cygwin defined ACL sticks. CYGWIN=nontsec export CYGWIN endif ALL_DEPS = $^ EMPTY = SPACE = $(EMPTY) $(EMPTY) SUBSYSTEM_WINDOWS=-Wl,-subsystem,windows SUBSYSTEM_CONSOLE=-Wl,-subsystem,console # INSTALL_DIR is the directory into which emacs will be installed. # ifndef INSTALL_DIR INSTALL_DIR = $(CURDIR)/.. endif export EMACSLOADPATH # Determine the architecture we're running on. # Define ARCH for our purposes; # Define CPU for use by ntwin32.mak; # Define CONFIG_H to the appropriate config.h for the system; # ifdef PROCESSOR_ARCHITECTURE # We're on Windows NT CPU = $(PROCESSOR_ARCHITECTURE) CONFIG_H = config.nt OS_TYPE = windowsnt ifeq "$(PROCESSOR_ARCHITECTURE)" "x86" ARCH = i386 CPU = i386 else ifeq "$(PROCESSOR_ARCHITECTURE)" "MIPS" ARCH = mips else ifeq "$(PROCESSOR_ARCHITECTURE)" "ALPHA" ARCH = alpha else ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC" ARCH = ppc else error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)" endif endif endif endif else # We're on Windows 95 ARCH = i386 CPU = i386 CONFIG_H = config.nt OS_TYPE = windows95 endif AR = ar -rsc AR_OUT = CC = gcc CC_OUT = -o$(SPACE) LINK = gcc LINK_OUT = -o$(SPACE) RC = windres -O coff RC_OUT = -o$(SPACE) RC_INCLUDE = --include-dir$(SPACE) libc = baselibs = O = o A = a BASE_LIBS = $(libc) $(baselibs) ADVAPI32 = -ladvapi32 COMCTL32 = -lcomctl32 COMDLG32 = -lcomdlg32 GDI32 = -lgdi32 MPR = -lmpr SHELL32 = -lshell32 USER32 = -luser32 WSOCK32 = -lwsock32 WINMM = -lwinmm WINSPOOL = -lwinspool OLE32 = -lole32 ifdef NOOPT DEBUG_CFLAGS = -DEMACSDEBUG else DEBUG_CFLAGS = endif CFLAGS = -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 $(ARCH_CFLAGS) -D$(ARCH) \ -D_CRTAPI1=_cdecl \ $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS) EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1 # see comments in allocate_heap in w32heap.c before changing any of the # -stack, -heap, or -image-base settings. TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map ifdef NOOPT OBJDIR = oo else OBJDIR = oo-spd endif $(OBJDIR):; -mkdir "$(OBJDIR)" BLD = $(OBJDIR)/$(ARCH) stamp_BLD: $(OBJDIR) -mkdir "$(BLD)" echo $(BLD) > $@ COMPILER_TEMP_FILES = CP = cp -f CP_DIR = cp -rf DEL = rm DEL_TREE = rm -r ifdef USING_SH IFNOTSAMEDIR = if [ ! -s ../same-dir.tst ] ; then FOREACH = for f in FORVAR = $${f} FORDO = ; do ENDFOR = ; done ENDIF = ; fi ARGQUOTE = ' ifdef NEW_CYGWIN DQUOTE = " else DQUOTE = "" endif else IFNOTSAMEDIR = if not exist ../same-dir.tst FOREACH = for %%f in ( FORVAR = %%f FORDO = ) do ENDFOR = ENDIF = ARGQUOTE = " DQUOTE = \" endif ifdef NODEBUG DEBUG_FLAG = DEBUG_LINK = else DEBUG_FLAG = -gstabs+ -g3 DEBUG_LINK = -gstabs+ -g3 endif ifdef NOCYGWIN NOCYGWIN = -mno-cygwin endif ifeq "$(ARCH)" "i386" ifdef NOOPT ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) else ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) $(MCPU_FLAG) -O2 \ # -fbuiltin \ # -finline-functions \ # -fomit-frame-pointer endif ARCH_LDFLAGS = $(SYS_LDFLAGS) else ERROR Unknown architecture type "$(ARCH)". endif LINK_FLAGS = $(ARCH_LDFLAGS) $(DEBUG_LINK) $(NOCYGWIN) $(USER_LDFLAGS) export XMFLAGS .DEFAULT: $(BLD)/%.o: %.c $(CC) $(CFLAGS) $(CC_OUT)$@ $< # arch-tag: 35eb9662-8534-4bcf-b891-0730a09d657f # makefile.w32-in -- W32 -*- Makefile -*- to generate character property tables. # Copyright (C) 2005, 2006, 2007, 2008 # National Institute of Advanced Industrial Science and Technology (AIST) # Registration Number H13PRO009 # # This file is part of GNU Emacs. # GNU Emacs 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 3, or (at your option) # any later version. # GNU Emacs 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 GNU Emacs; see the file COPYING. If not, write to the # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, # Boston, MA 02110-1301, USA. EMACS = ../../src/$(BLD)/emacs.exe DSTDIR = ../../lisp/international EMACSLOADPATH = $(CURDIR)/../../lisp # Quote EMACS so it could be a file name with embedded whitespace RUNEMACS = "$(EMACS)" -Q --multibyte -batch all: $(DSTDIR)/charprop.el .el.elc: $(RUNEMACS) -f batch-byte-compile $< unidata.txt: UnicodeData.txt sed -e \ $(ARGQUOTE)s/\([^;]*\);\(.*\)/(#x\1 $(DQUOTE)\2$(DQUOTE))/$(ARGQUOTE)\ -e $(ARGQUOTE)s/;/$(DQUOTE) $(DQUOTE)/g$(ARGQUOTE) < $< > $@ charprop-SH: unidata-gen.elc unidata.txt ELC=$(CURDIR)/unidata-gen.elc; \ DATA=$(CURDIR)/unidata.txt; \ cd $(DSTDIR); \ $(RUNEMACS) --load $${ELC} -f unidata-gen-files $${DATA} charprop-CMD: unidata-gen.elc unidata.txt $(RUNEMACS) --eval $(ARGQUOTE)(cd $(DQUOTE)$(DSTDIR)$(DQUOTE))$(ARGQUOTE) --load $(CURDIR)/unidata-gen.elc -f unidata-gen-files $(CURDIR)/unidata.txt ${DSTDIR}/charprop.el: charprop-$(SHELLTYPE) clean: - $(DEL) unidata-gen.elc unidata.txt ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-05 9:15 ` Eric Lilja @ 2008-02-05 20:13 ` Eli Zaretskii 2008-02-05 23:22 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-05 20:13 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Tue, 05 Feb 2008 10:15:11 +0100 > > > What I meant is this: modify the line in admin/unidate/makefile that > > says > > > > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el > > > > to say this instead: > > > > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message \"%s\" load-path)" > > > > and then see what it displays when you run "make bootstrap". > > > > Note that, since admin/unidate/makefile is generated by "make > > bootstrap", you will either need to edit admin/unidate/makefile.w32-in > > and then run nt/configure.bat to create admin/unidate/makefile, or > > edit admin/unidate/makefile while "make bootstrap" runs, but before it > > gets to where it executes the above line. > > > > > > > > OK, here's what happened. My admin/unidata/makefile was generated after > the configure step, but I couldn't find the line I was supposed to > change so I read your message a little bit more carefully. Ah, and you > said that it's generated during bootstrap so I thought that it would be > modified during bootstrap No, I was wrong, of course: admin/unidata/makefile is generated during the configure step, not during "make bootstrap". Sorry about that. > .el.elc: > $(RUNEMACS) -f batch-byte-compile $< The line to change is the one above, it's a command to compile a .el file that is run when Make needs unidata-gen.elc (required by the charprop-* rules). ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-05 20:13 ` Eli Zaretskii @ 2008-02-05 23:22 ` Eric Lilja 2008-02-06 4:15 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-05 23:22 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Tue, 05 Feb 2008 10:15:11 +0100 >> >>> What I meant is this: modify the line in admin/unidate/makefile that >>> says >>> >>> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el >>> >>> to say this instead: >>> >>> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message \"%s\" load-path)" >>> >>> and then see what it displays when you run "make bootstrap". >>> >>> Note that, since admin/unidate/makefile is generated by "make >>> bootstrap", you will either need to edit admin/unidate/makefile.w32-in >>> and then run nt/configure.bat to create admin/unidate/makefile, or >>> edit admin/unidate/makefile while "make bootstrap" runs, but before it >>> gets to where it executes the above line. >>> >>> >>> >> OK, here's what happened. My admin/unidata/makefile was generated after >> the configure step, but I couldn't find the line I was supposed to >> change so I read your message a little bit more carefully. Ah, and you >> said that it's generated during bootstrap so I thought that it would be >> modified during bootstrap > > No, I was wrong, of course: admin/unidata/makefile is generated during > the configure step, not during "make bootstrap". Sorry about that. > >> .el.elc: >> $(RUNEMACS) -f batch-byte-compile $< > > The line to change is the one above, it's a command to compile a .el > file that is run when Make needs unidata-gen.elc (required by the > charprop-* rules). > > > I'm running the bootstrap with the altered makefile right now on a fresh checkout, but I'm not sure I altered the line correctly. Should it be: .el.elc: $(RUNEMACS) -f batch-byte-compile --eval "(message \"%s\" load-path)" $< Because that's what I'm running the bootstrap now with. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-05 23:22 ` Eric Lilja @ 2008-02-06 4:15 ` Eli Zaretskii 2008-02-06 4:38 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-06 4:15 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Wed, 06 Feb 2008 00:22:50 +0100 > > I'm running the bootstrap with the altered makefile right now on a fresh > checkout, but I'm not sure I altered the line correctly. Should it be: > .el.elc: > $(RUNEMACS) --eval "(message \"%s\" load-path)" $< No, it should be .el.elc: $(RUNEMACS) --eval "(message \"%s\" load-path)" -f batch-byte-compile $< ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-06 4:15 ` Eli Zaretskii @ 2008-02-06 4:38 ` Eric Lilja 2008-02-06 19:34 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-06 4:38 UTC (permalink / raw) To: emacs-devel Eli Zaretskii skrev: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Wed, 06 Feb 2008 00:22:50 +0100 >> >> I'm running the bootstrap with the altered makefile right now on a fresh >> checkout, but I'm not sure I altered the line correctly. Should it be: >> .el.elc: >> $(RUNEMACS) --eval "(message \"%s\" load-path)" $< > > No, it should be > > .el.elc: > $(RUNEMACS) --eval "(message \"%s\" load-path)" -f batch-byte-compile $< > > > > Hmm, what you quoted looks odd, heh. Anyway, here are what I hope are the relevant lines from the bootstrap: mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message \"%s\" load-path)" -f batch-byte-compile unidata-gen.el Cannot open load file: encoded-kb mingw32-make[2]: *** [unidata-gen.elc] Error 255 mingw32-make[2]: Leaving directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' mingw32-make[1]: [unidatagen-SH] Error 2 (ignored) Let me know if I should post the complete bootstrap log again. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-06 4:38 ` Eric Lilja @ 2008-02-06 19:34 ` Eli Zaretskii 2008-02-06 22:10 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-06 19:34 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Wed, 06 Feb 2008 05:38:44 +0100 > > Hmm, what you quoted looks odd, heh. What's odd about it? > Anyway, here are what I hope are > the relevant lines from the bootstrap: > mingw32-make[2]: Entering directory > `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message > \"%s\" load-path)" -f batch-byte-compile unidata-gen.el > Cannot open load file: encoded-kb Strange, it looks like the setting of EMACSLOADPATH has no effect whatsoever... Can you see what is its value? For example, change the rule to .el.elc: echo "$(EMACSLOADPATH)" $(RUNEMACS) -f batch-byte-compile $< and then chdir to admin/unidata and type "make unidata-gen.elc" (no need to run "make bootstrap" again). What does it print as the value of EMACSLOADPATH? ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-06 19:34 ` Eli Zaretskii @ 2008-02-06 22:10 ` Eric Lilja 2008-02-07 4:13 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-06 22:10 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Wed, 06 Feb 2008 05:38:44 +0100 >> >> Hmm, what you quoted looks odd, heh. > > What's odd about it? > >> Anyway, here are what I hope are >> the relevant lines from the bootstrap: >> mingw32-make[2]: Entering directory >> `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' >> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message >> \"%s\" load-path)" -f batch-byte-compile unidata-gen.el >> Cannot open load file: encoded-kb > > Strange, it looks like the setting of EMACSLOADPATH has no effect > whatsoever... Can you see what is its value? For example, change the > rule to > > .el.elc: > echo "$(EMACSLOADPATH)" > $(RUNEMACS) -f batch-byte-compile $< > > and then chdir to admin/unidata and type "make unidata-gen.elc" (no > need to run "make bootstrap" again). What does it print as the value > of EMACSLOADPATH? > > > I changed the rule to: .el.elc: echo "$(EMACSLOADPATH)" $(RUNEMACS) -f batch-byte-compile $< Then I cd to admin/unidata and performed a mingw32-make unidata-gen.elc and I get: [Please ignore a syntax error on the next line - it is intentional] /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' /usr/bin/sh: -c: line 1: syntax error: unexpected end of file echo "c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata/../../lisp" c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata/../../lisp "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el Warning: Default coding system `iso-latin-1' disagrees with system codeset `cp1252' for this locale. Wrote c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata/unidata-gen.elc Hmm, no complaint about a missing encoded-kb but maybe that was expected? ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-06 22:10 ` Eric Lilja @ 2008-02-07 4:13 ` Eli Zaretskii 2008-02-07 4:17 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-07 4:13 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Wed, 06 Feb 2008 23:10:53 +0100 > > Eli Zaretskii wrote: > >> From: Eric Lilja <mindcooler@gmail.com> > >> Date: Wed, 06 Feb 2008 05:38:44 +0100 > >> > >> Hmm, what you quoted looks odd, heh. > > > > What's odd about it? > > > >> Anyway, here are what I hope are > >> the relevant lines from the bootstrap: > >> mingw32-make[2]: Entering directory > >> `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' > >> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch --eval "(message > >> \"%s\" load-path)" -f batch-byte-compile unidata-gen.el > >> Cannot open load file: encoded-kb > > > > Strange, it looks like the setting of EMACSLOADPATH has no effect > > whatsoever... Can you see what is its value? For example, change the > > rule to > > > > .el.elc: > > echo "$(EMACSLOADPATH)" > > $(RUNEMACS) -f batch-byte-compile $< > > > > and then chdir to admin/unidata and type "make unidata-gen.elc" (no > > need to run "make bootstrap" again). What does it print as the value > > of EMACSLOADPATH? > > > > > > > > I changed the rule to: > .el.elc: > echo "$(EMACSLOADPATH)" > $(RUNEMACS) -f batch-byte-compile $< > > Then I cd to admin/unidata and performed a mingw32-make unidata-gen.elc > and I get: > > [Please ignore a syntax error on the next line - it is intentional] > /usr/bin/sh: -c: line 0: unexpected EOF while looking for matching `"' > /usr/bin/sh: -c: line 1: syntax error: unexpected end of file > echo "c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata/../../lisp" > c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata/../../lisp > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f > batch-byte-compile unidata-gen.el > Warning: Default coding system `iso-latin-1' disagrees with > system codeset `cp1252' for this locale. > Wrote c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata/unidata-gen.elc > > Hmm, no complaint about a missing encoded-kb but maybe that was expected? I no longer know what I expect, because the bootstrap works for me. Do you have a subdirs.el file in the lisp/ directory, and if so, what does it say? ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-07 4:13 ` Eli Zaretskii @ 2008-02-07 4:17 ` Eric Lilja 2008-02-07 19:03 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-07 4:17 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: > > I no longer know what I expect, because the bootstrap works for me. > > Do you have a subdirs.el file in the lisp/ directory, and if so, what > does it say? > > > I do, here's what it says: ;; -*- no-byte-compile: t -*- ;; In load-path, after this directory should come ;; certain of its subdirectories. Here we specify them. (normal-top-level-add-to-load-path '("url" "toolbar" "textmodes" "progmodes" "play" "obsolete" "nxml" "net" "mh-e" "mail" "language" "international" "gnus" "eshell" "erc" "emulation" "emacs-lisp" "calendar" "calc" )) ;; Local Variables: ;; version-control: never ;; no-byte-compile: t ;; End: I think I remember posting it already to a question asked by someone else. It's so frustrating that it doesn't work anymore and I don't have any skills to fix it other than trying to give information to those like you who possess those skills. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-07 4:17 ` Eric Lilja @ 2008-02-07 19:03 ` Eric Lilja 2008-02-08 15:04 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-07 19:03 UTC (permalink / raw) To: emacs-devel Eric Lilja skrev: > Eli Zaretskii wrote: >> >> I no longer know what I expect, because the bootstrap works for me. >> >> Do you have a subdirs.el file in the lisp/ directory, and if so, what >> does it say? >> >> >> > > I do, here's what it says: > ;; -*- no-byte-compile: t -*- > ;; In load-path, after this directory should come > ;; certain of its subdirectories. Here we specify them. > (normal-top-level-add-to-load-path '("url" "toolbar" "textmodes" > "progmodes" "play" "obsolete" "nxml" "net" "mh-e" "mail" "language" > "international" "gnus" "eshell" "erc" "emulation" "emacs-lisp" > "calendar" "calc" )) > ;; Local Variables: > ;; version-control: never > ;; no-byte-compile: t > ;; End: > > I think I remember posting it already to a question asked by someone > else. It's so frustrating that it doesn't work anymore and I don't have > any skills to fix it other than trying to give information to those like > you who possess those skills. > > > > Oh, I just checked out the trunk as it were a few hours before the unicode merge and that builds just fine on my setup so it seems to me that the cause for my build failures has to do with merge itself, not because something is hosed with my setup. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-07 19:03 ` Eric Lilja @ 2008-02-08 15:04 ` Eli Zaretskii 2008-02-08 15:12 ` Eric Lilja 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-08 15:04 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Thu, 07 Feb 2008 20:03:26 +0100 > > Oh, I just checked out the trunk as it were a few hours before the > unicode merge and that builds just fine on my setup so it seems to me > that the cause for my build failures has to do with merge itself, not > because something is hosed with my setup. I had no doubt that this is the case. The problem is not in knowing that the unicode branch merge is the culprit, the problem is to know what to fix in it so it does bootstrap again, since undoing the merge is, quite obviously, not an option. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 15:04 ` Eli Zaretskii @ 2008-02-08 15:12 ` Eric Lilja 2008-02-08 15:32 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-08 15:12 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: >> From: Eric Lilja <mindcooler@gmail.com> >> Date: Thu, 07 Feb 2008 20:03:26 +0100 >> >> Oh, I just checked out the trunk as it were a few hours before the >> unicode merge and that builds just fine on my setup so it seems to me >> that the cause for my build failures has to do with merge itself, not >> because something is hosed with my setup. > > I had no doubt that this is the case. The problem is not in knowing > that the unicode branch merge is the culprit, the problem is to know > what to fix in it so it does bootstrap again, since undoing the merge > is, quite obviously, not an option. > > > I hope I didn't send out the wrong signal because I was actually looking forward to the merge and I was expecting there to be problems, but I'm starting to feel quite alone now that the people who use pure mingw can build and I cannot. Just let me know if I should run anymore "tests". ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 15:12 ` Eric Lilja @ 2008-02-08 15:32 ` Eli Zaretskii 2008-02-08 21:27 ` Lennart Borgman (gmail) 2008-02-09 9:33 ` Eli Zaretskii 0 siblings, 2 replies; 49+ messages in thread From: Eli Zaretskii @ 2008-02-08 15:32 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > > I hope I didn't send out the wrong signal because I was actually looking > forward to the merge and I was expecting there to be problems, but I'm > starting to feel quite alone now that the people who use pure mingw can > build and I cannot. Just let me know if I should run anymore "tests". No wrong signals detected on this end ;-) Your frustration is understandable. I'm trying to do my best (which isn't much these days, unfortunately) to find a way to understand and fix your problem. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 15:32 ` Eli Zaretskii @ 2008-02-08 21:27 ` Lennart Borgman (gmail) 2008-02-08 22:51 ` Lennart Borgman (gmail) ` (2 more replies) 2008-02-09 9:33 ` Eli Zaretskii 1 sibling, 3 replies; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-08 21:27 UTC (permalink / raw) To: Eli Zaretskii; +Cc: Eric Lilja, emacs-devel Eli Zaretskii wrote: >> I hope I didn't send out the wrong signal because I was actually looking >> forward to the merge and I was expecting there to be problems, but I'm >> starting to feel quite alone now that the people who use pure mingw can >> build and I cannot. Just let me know if I should run anymore "tests". > > No wrong signals detected on this end ;-) > > Your frustration is understandable. I'm trying to do my best (which > isn't much these days, unfortunately) to find a way to understand and > fix your problem. I can't build using cmd.exe, "make bootstrap" ends with make[2]: Entering directory `C:/eclean/bld/emacs/admin/unidata' "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el Cannot open load file: encoded-kb make[2]: *** [unidata-gen.elc] Error -1 make[2]: Leaving directory `C:/eclean/bld/emacs/admin/unidata' make[1]: *** [unidatagen-CMD] Error 2 make[1]: Leaving directory `C:/eclean/bld/emacs/nt' make: *** [bootstrap-gmake] Error 2 bootstrap-080208.tmp So I tried with msys instead from the nt subdirectory. "make bootstrap" goes much further, but it now ends with Directory textmodes Directory url Directory obsolete Generating cus-load.el... Saving file c:/eclean/bld/emacs/lisp/cus-load.el... Loading vc-cvs... Wrote c:/eclean/bld/emacs/lisp/cus-load.el Generating cus-load.el...done rm "./../bin/emacs.exe" make[1]: Leaving directory `/c/eclean/bld/emacs/lisp' make - --unix -C ../lib-src DOC [Please ignore a syntax error on the next line - it is intentional] /bin/sh.exe: -c: line 1: unexpected EOF while looking for matching `"' /bin/sh.exe: -c: line 2: syntax error: unexpected end of file make[1]: Entering directory `/c/eclean/bld/emacs/lib-src' mkdir "oo-spd" mkdir "oo-spd/i386" echo oo-spd/i386 > stamp_BLD gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -gstabs+ -g3 - mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -Ic:/g/include -DWINDOWSNT -DDOS_N T -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc -I. ./src -o oo-spd/i386/make-docfile.o make-docfile.c gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c -gstabs+ -g3 - mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -Ic:/g/include -DWINDOWSNT -DDOS_N T -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc -I. ./src -o oo-spd/i386/ntlib.o ntlib.c gcc -o oo-spd/i386/make-docfile.exe -gstabs+ -g3 oo-spd/i386/make-docfile.o o o-spd/i386/ntlib.o -ladvapi32 make[1]: *** No rule to make target `../lisp/international/charprop.el', needed by `DOC'. Stop. make[1]: Leaving directory `/c/eclean/bld/emacs/lib-src' make: *** [bootstrap-gmake] Error 2 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 21:27 ` Lennart Borgman (gmail) @ 2008-02-08 22:51 ` Lennart Borgman (gmail) 2008-02-09 1:51 ` Lennart Borgman (gmail) 2008-02-09 8:54 ` Eli Zaretskii 2008-02-09 9:36 ` Eli Zaretskii 2 siblings, 1 reply; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-08 22:51 UTC (permalink / raw) To: Eli Zaretskii; +Cc: Eric Lilja, emacs-devel Lennart Borgman (gmail) wrote: > So I tried with msys instead from the nt subdirectory. "make bootstrap" > goes much further, but it now ends with > > Directory textmodes > Directory url > Directory obsolete > Generating cus-load.el... > Saving file c:/eclean/bld/emacs/lisp/cus-load.el... > Loading vc-cvs... > Wrote c:/eclean/bld/emacs/lisp/cus-load.el > Generating cus-load.el...done > rm "./../bin/emacs.exe" > make[1]: Leaving directory `/c/eclean/bld/emacs/lisp' > make - --unix -C ../lib-src DOC > [Please ignore a syntax error on the next line - it is intentional] > /bin/sh.exe: -c: line 1: unexpected EOF while looking for matching `"' > /bin/sh.exe: -c: line 2: syntax error: unexpected end of file > make[1]: Entering directory `/c/eclean/bld/emacs/lib-src' > mkdir "oo-spd" > mkdir "oo-spd/i386" > echo oo-spd/i386 > stamp_BLD > gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c > -gstabs+ -g3 - > mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -Ic:/g/include > -DWINDOWSNT -DDOS_N > T -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 > -I../nt/inc -I. > ./src -o oo-spd/i386/make-docfile.o make-docfile.c > gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c > -gstabs+ -g3 - > mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl -Ic:/g/include > -DWINDOWSNT -DDOS_N > T -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 > -I../nt/inc -I. > ./src -o oo-spd/i386/ntlib.o ntlib.c > gcc -o oo-spd/i386/make-docfile.exe -gstabs+ -g3 > oo-spd/i386/make-docfile.o o > o-spd/i386/ntlib.o -ladvapi32 > make[1]: *** No rule to make target > `../lisp/international/charprop.el', needed > by `DOC'. Stop. > make[1]: Leaving directory `/c/eclean/bld/emacs/lib-src' > make: *** [bootstrap-gmake] Error 2 But now I get Generating autoloads for find-dired.el...done Generating autoloads for find-file.el... Generating autoloads for find-file.el...done Generating autoloads for find-lisp.el... Generating autoloads for find-lisp.el...done Local variables entry is missing the suffix make[1]: *** [autoloads] Error -1 make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' make: *** [bootstrap-gmake] Error 2 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 22:51 ` Lennart Borgman (gmail) @ 2008-02-09 1:51 ` Lennart Borgman (gmail) 0 siblings, 0 replies; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-09 1:51 UTC (permalink / raw) To: Eli Zaretskii; +Cc: emacs-devel, Jason Rumney Lennart Borgman (gmail) wrote: > But now I get > > Generating autoloads for find-dired.el...done > Generating autoloads for find-file.el... > Generating autoloads for find-file.el...done > Generating autoloads for find-lisp.el... > Generating autoloads for find-lisp.el...done > Local variables entry is missing the suffix > make[1]: *** [autoloads] Error -1 > make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' > make: *** [bootstrap-gmake] Error 2 Further adventures: It looks like file endings are handled badly somewhere. I dumped some info in hack-local-variables: (message "-- %s: (%s)" file (buffer-substring-no-properties startpos endpos)) ... (if (looking-back suffix) delete-region (match-beginning 0) (point)) ;;(error "Local variables entry is missing the suffix")) (error "Local variables entry in %s is missing the suffix (suffix chars: %s), line:\n%s" file (append suffix nil) (buffer-substring-no-properties (line-beginning-position) (line-end-position)) )) The error message above showed that there was a CR (13) at the end of the line when processing finder-inf.el. When I changed the line endings from DOS to Unix this file got processed ok, but later on I got Generating autoloads for kermit.el...done Generating autoloads for kmacro.el... Generating autoloads for kmacro.el...done -- c:/eclean/bld/emacs/lisp/ldefs-boot.el: (;; version-control: never ;; no-byte-compile: t ;; no-update-autoloads: t ) Local variables entry in c:/eclean/bld/emacs/lisp/ldefs-boot.el is missing the suffix (suffix chars: (13 36)), line: version-control: never make[1]: *** [autoloads] Error -1 make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' make: *** [bootstrap-gmake] Error 2 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 21:27 ` Lennart Borgman (gmail) 2008-02-08 22:51 ` Lennart Borgman (gmail) @ 2008-02-09 8:54 ` Eli Zaretskii 2008-02-09 9:36 ` Eli Zaretskii 2 siblings, 0 replies; 49+ messages in thread From: Eli Zaretskii @ 2008-02-09 8:54 UTC (permalink / raw) To: Lennart Borgman (gmail); +Cc: mindcooler, emacs-devel > Date: Fri, 08 Feb 2008 22:27:38 +0100 > From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> > CC: Eric Lilja <mindcooler@gmail.com>, emacs-devel@gnu.org > > make[1]: *** No rule to make target `../lisp/international/charprop.el', needed by `DOC'. Stop. That's the same problem. You will see that you have the same failure to byte-compile unidata-gen.el earlier in the bootstrap, but that error was ignored, and the bootstrap proceeds. However, as the result of that failure, charprop.el is not generated, and the bootstrap fails when it needs to create DOC. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 21:27 ` Lennart Borgman (gmail) 2008-02-08 22:51 ` Lennart Borgman (gmail) 2008-02-09 8:54 ` Eli Zaretskii @ 2008-02-09 9:36 ` Eli Zaretskii 2008-02-09 11:25 ` Lennart Borgman (gmail) 2 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-09 9:36 UTC (permalink / raw) To: Lennart Borgman (gmail); +Cc: mindcooler, emacs-devel > Date: Fri, 08 Feb 2008 22:27:38 +0100 > From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> > CC: Eric Lilja <mindcooler@gmail.com>, emacs-devel@gnu.org > > I can't build using cmd.exe, "make bootstrap" ends with > > make[2]: Entering directory `C:/eclean/bld/emacs/admin/unidata' > "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f > batch-byte-compile unidata-gen.el > Cannot open load file: encoded-kb > make[2]: *** [unidata-gen.elc] Error -1 > make[2]: Leaving directory `C:/eclean/bld/emacs/admin/unidata' > make[1]: *** [unidatagen-CMD] Error 2 > make[1]: Leaving directory `C:/eclean/bld/emacs/nt' > make: *** [bootstrap-gmake] Error 2 > bootstrap-080208.tmp Please try again, but with a freshly checked-out CVS tree. Thanks. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 9:36 ` Eli Zaretskii @ 2008-02-09 11:25 ` Lennart Borgman (gmail) 2008-02-09 11:44 ` Lennart Borgman (gmail) 0 siblings, 1 reply; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-09 11:25 UTC (permalink / raw) To: Eli Zaretskii; +Cc: mindcooler, emacs-devel Eli Zaretskii wrote: >> Date: Fri, 08 Feb 2008 22:27:38 +0100 >> From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> >> CC: Eric Lilja <mindcooler@gmail.com>, emacs-devel@gnu.org >> >> I can't build using cmd.exe, "make bootstrap" ends with >> >> make[2]: Entering directory `C:/eclean/bld/emacs/admin/unidata' >> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f >> batch-byte-compile unidata-gen.el >> Cannot open load file: encoded-kb >> make[2]: *** [unidata-gen.elc] Error -1 >> make[2]: Leaving directory `C:/eclean/bld/emacs/admin/unidata' >> make[1]: *** [unidatagen-CMD] Error 2 >> make[1]: Leaving directory `C:/eclean/bld/emacs/nt' >> make: *** [bootstrap-gmake] Error 2 >> bootstrap-080208.tmp > > Please try again, but with a freshly checked-out CVS tree. > > Thanks. Thanks for working on this Eli. This is what I get now, using my old cmd.exe build routines: Generating autoloads for kermit.el... Generating autoloads for kermit.el...done Generating autoloads for kmacro.el... Generating autoloads for kmacro.el...done Local variables entry is missing the suffix make[1]: *** [autoloads] Error -1 make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' make: *** [bootstrap-gmake] Error 2 ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 11:25 ` Lennart Borgman (gmail) @ 2008-02-09 11:44 ` Lennart Borgman (gmail) 2008-02-09 11:46 ` Eric Lilja 2008-02-09 12:02 ` Jason Rumney 0 siblings, 2 replies; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-09 11:44 UTC (permalink / raw) To: Eli Zaretskii; +Cc: mindcooler, emacs-devel Lennart Borgman (gmail) wrote: > Eli Zaretskii wrote: >>> Date: Fri, 08 Feb 2008 22:27:38 +0100 >>> From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> >>> CC: Eric Lilja <mindcooler@gmail.com>, emacs-devel@gnu.org >>> >>> I can't build using cmd.exe, "make bootstrap" ends with >>> >>> make[2]: Entering directory `C:/eclean/bld/emacs/admin/unidata' >>> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f >>> batch-byte-compile unidata-gen.el >>> Cannot open load file: encoded-kb >>> make[2]: *** [unidata-gen.elc] Error -1 >>> make[2]: Leaving directory `C:/eclean/bld/emacs/admin/unidata' >>> make[1]: *** [unidatagen-CMD] Error 2 >>> make[1]: Leaving directory `C:/eclean/bld/emacs/nt' >>> make: *** [bootstrap-gmake] Error 2 >>> bootstrap-080208.tmp >> >> Please try again, but with a freshly checked-out CVS tree. >> >> Thanks. > > Thanks for working on this Eli. This is what I get now, using my old > cmd.exe build routines: > > Generating autoloads for kermit.el... > Generating autoloads for kermit.el...done > Generating autoloads for kmacro.el... > Generating autoloads for kmacro.el...done > Local variables entry is missing the suffix > make[1]: *** [autoloads] Error -1 > make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' > make: *** [bootstrap-gmake] Error 2 And after reinserting the same code I sent before I get this: Generating autoloads for kmacro.el...done -- c:/eclean/bld/emacs/lisp/ldefs-boot.el: (;; version-control: never ;; no-byte-compile: t ;; no-update-autoloads: t ) Local variables entry in c:/eclean/bld/emacs/lisp/ldefs-boot.el is missing the suffix (suffix chars: (13 36)), line: version-control: never make[1]: *** [autoloads] Error -1 make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' make: *** [bootstrap-gmake] Error 2 There is a CR in ldefs-boot.el. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 11:44 ` Lennart Borgman (gmail) @ 2008-02-09 11:46 ` Eric Lilja 2008-02-09 12:02 ` Jason Rumney 1 sibling, 0 replies; 49+ messages in thread From: Eric Lilja @ 2008-02-09 11:46 UTC (permalink / raw) To: emacs-devel Lennart Borgman (gmail) wrote: > Lennart Borgman (gmail) wrote: >> Eli Zaretskii wrote: >>>> Date: Fri, 08 Feb 2008 22:27:38 +0100 >>>> From: "Lennart Borgman (gmail)" <lennart.borgman@gmail.com> >>>> CC: Eric Lilja <mindcooler@gmail.com>, emacs-devel@gnu.org >>>> >>>> I can't build using cmd.exe, "make bootstrap" ends with >>>> >>>> make[2]: Entering directory `C:/eclean/bld/emacs/admin/unidata' >>>> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f >>>> batch-byte-compile unidata-gen.el >>>> Cannot open load file: encoded-kb >>>> make[2]: *** [unidata-gen.elc] Error -1 >>>> make[2]: Leaving directory `C:/eclean/bld/emacs/admin/unidata' >>>> make[1]: *** [unidatagen-CMD] Error 2 >>>> make[1]: Leaving directory `C:/eclean/bld/emacs/nt' >>>> make: *** [bootstrap-gmake] Error 2 >>>> bootstrap-080208.tmp >>> >>> Please try again, but with a freshly checked-out CVS tree. >>> >>> Thanks. >> >> Thanks for working on this Eli. This is what I get now, using my old >> cmd.exe build routines: >> >> Generating autoloads for kermit.el... >> Generating autoloads for kermit.el...done >> Generating autoloads for kmacro.el... >> Generating autoloads for kmacro.el...done >> Local variables entry is missing the suffix >> make[1]: *** [autoloads] Error -1 >> make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' >> make: *** [bootstrap-gmake] Error 2 > > And after reinserting the same code I sent before I get this: > > Generating autoloads for kmacro.el...done > -- c:/eclean/bld/emacs/lisp/ldefs-boot.el: (;; version-control: never > ;; no-byte-compile: t > ;; no-update-autoloads: t > ) > Local variables entry in c:/eclean/bld/emacs/lisp/ldefs-boot.el > is missing the suffix (suffix chars: (13 36)), line: > version-control: never > make[1]: *** [autoloads] Error -1 > make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' > make: *** [bootstrap-gmake] Error 2 > > There is a CR in ldefs-boot.el. > > > Just a wild guess, are you checking out in binary mode (using -kb)? If not, maybe a good idea to try? - Eric ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 11:44 ` Lennart Borgman (gmail) 2008-02-09 11:46 ` Eric Lilja @ 2008-02-09 12:02 ` Jason Rumney 2008-02-09 22:20 ` Lennart Borgman (gmail) 1 sibling, 1 reply; 49+ messages in thread From: Jason Rumney @ 2008-02-09 12:02 UTC (permalink / raw) To: Lennart Borgman (gmail); +Cc: mindcooler, Eli Zaretskii, emacs-devel Lennart Borgman (gmail) wrote: > And after reinserting the same code I sent before I get this: > > Generating autoloads for kmacro.el...done > -- c:/eclean/bld/emacs/lisp/ldefs-boot.el: (;; version-control: never > ;; no-byte-compile: t > ;; no-update-autoloads: t > ) > Local variables entry in c:/eclean/bld/emacs/lisp/ldefs-boot.el > is missing the suffix (suffix chars: (13 36)), line: > version-control: never > make[1]: *** [autoloads] Error -1 > make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' > make: *** [bootstrap-gmake] Error 2 > > There is a CR in ldefs-boot.el. Yes, there are two embedded ^M characters, which cause the eol detection to fail. They seem to be translated from the \r and \C-m escape sequences in button.el and wid-edit.el. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 12:02 ` Jason Rumney @ 2008-02-09 22:20 ` Lennart Borgman (gmail) 2008-02-09 22:28 ` Jason Rumney 0 siblings, 1 reply; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-09 22:20 UTC (permalink / raw) To: Jason Rumney; +Cc: Eli Zaretskii, emacs-devel Jason Rumney wrote: > Lennart Borgman (gmail) wrote: >> And after reinserting the same code I sent before I get this: >> >> Generating autoloads for kmacro.el...done >> -- c:/eclean/bld/emacs/lisp/ldefs-boot.el: (;; version-control: never >> ;; no-byte-compile: t >> ;; no-update-autoloads: t >> ) >> Local variables entry in c:/eclean/bld/emacs/lisp/ldefs-boot.el >> is missing the suffix (suffix chars: (13 36)), line: >> version-control: never >> make[1]: *** [autoloads] Error -1 >> make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' >> make: *** [bootstrap-gmake] Error 2 >> >> There is a CR in ldefs-boot.el. > > Yes, there are two embedded ^M characters, which cause the eol detection > to fail. They seem to be translated from the \r and \C-m escape > sequences in button.el and wid-edit.el. The conversion from \r in button.el in ;;;###autoload (defvar button-map (let ((map (make-sparse-keymap))) (define-key map "\r" 'push-button) (define-key map [mouse-2] 'push-button) map) "Keymap used by buttons.") happens in `read' in `autoload-generate-file-autoloads' in autoload.el: ;; Read the next form and make an autoload. (let* ((form (prog1 (read (current-buffer)) (or (bolp) (forward-line 1)))) (autoload (make-autoload form load-name))) (if autoload (push (nth 1 form) autoloads-done) (setq autoload form)) (let ((autoload-print-form-outbuf outbuf)) (autoload-print-form autoload))) Would it help to write the key binding as (define-key map [(control ?m)] 'push-button) I just tried, but ldefs-boot.el was not changed. When is ldefs-boot.el created? Where is this described? However chaning the bindings in ldefs-boot.el directly makes bootstrap succeed. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 22:20 ` Lennart Borgman (gmail) @ 2008-02-09 22:28 ` Jason Rumney 2008-02-09 22:31 ` Lennart Borgman (gmail) 0 siblings, 1 reply; 49+ messages in thread From: Jason Rumney @ 2008-02-09 22:28 UTC (permalink / raw) To: Lennart Borgman (gmail); +Cc: Eli Zaretskii, emacs-devel Lennart Borgman (gmail) wrote: > Would it help to write the key binding as > > (define-key map [(control ?m)] 'push-button) I wondered the same, but haven't had time to try it out yet. > > I just tried, but ldefs-boot.el was not changed. When is ldefs-boot.el > created? It is not created, it is checked out of CVS and copied to loaddefs.el when you bootstrap to get around a chicken and egg problem. loaddefs.el is the file that is created, look there to confirm if this works. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 22:28 ` Jason Rumney @ 2008-02-09 22:31 ` Lennart Borgman (gmail) 0 siblings, 0 replies; 49+ messages in thread From: Lennart Borgman (gmail) @ 2008-02-09 22:31 UTC (permalink / raw) To: Jason Rumney; +Cc: Eli Zaretskii, emacs-devel Jason Rumney wrote: > Lennart Borgman (gmail) wrote: >> Would it help to write the key binding as >> >> (define-key map [(control ?m)] 'push-button) > > I wondered the same, but haven't had time to try it out yet. > >> >> I just tried, but ldefs-boot.el was not changed. When is ldefs-boot.el >> created? > > It is not created, it is checked out of CVS and copied to loaddefs.el > when you bootstrap to get around a chicken and egg problem. loaddefs.el > is the file that is created, look there to confirm if this works. It looks like it works, [(control ?m)] is replaced with [(control 109)]. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-08 15:32 ` Eli Zaretskii 2008-02-08 21:27 ` Lennart Borgman (gmail) @ 2008-02-09 9:33 ` Eli Zaretskii 2008-02-09 10:35 ` Eric Lilja 1 sibling, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-09 9:33 UTC (permalink / raw) To: mindcooler, emacs-devel > Date: Fri, 08 Feb 2008 17:32:26 +0200 > From: Eli Zaretskii <eliz@gnu.org> > Cc: emacs-devel@gnu.org > > Your frustration is understandable. I'm trying to do my best (which > isn't much these days, unfortunately) to find a way to understand and > fix your problem. Could you please try again? I committed some changes to the CVS that should fix this, I think. But please try this with a freshly checked-out CVS tree, do NOT reuse the one where you made the previous attempts. Some files generated by the bootstrap are not removed by a subsequent bootstrap, which could explain some of the differences between your results and mine. Thanks. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 9:33 ` Eli Zaretskii @ 2008-02-09 10:35 ` Eric Lilja 2008-02-09 10:50 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eric Lilja @ 2008-02-09 10:35 UTC (permalink / raw) To: emacs-devel Eli Zaretskii wrote: >> Date: Fri, 08 Feb 2008 17:32:26 +0200 >> From: Eli Zaretskii <eliz@gnu.org> >> Cc: emacs-devel@gnu.org >> >> Your frustration is understandable. I'm trying to do my best (which >> isn't much these days, unfortunately) to find a way to understand and >> fix your problem. > > Could you please try again? I committed some changes to the CVS that > should fix this, I think. > > But please try this with a freshly checked-out CVS tree, do NOT reuse > the one where you made the previous attempts. Some files generated by > the bootstrap are not removed by a subsequent bootstrap, which could > explain some of the differences between your results and mine. > > Thanks. > > > It does indeed seem to bootstrap now! I haven't performed a make info and make install yet because I'm worried about the locale-related warning that is displayed for all lisp files when they are compiled. Thanks so much for fixing the bootstrap! - Eric ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 10:35 ` Eric Lilja @ 2008-02-09 10:50 ` Eli Zaretskii 2008-02-09 12:20 ` Eli Zaretskii 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-09 10:50 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Sat, 09 Feb 2008 11:35:37 +0100 > > It does indeed seem to bootstrap now! I haven't performed a make info > and make install yet because I'm worried about the locale-related > warning that is displayed for all lisp files when they are compiled. I'll try to look at those. > Thanks so much for fixing the bootstrap! Thanks for helping me solve the problem. ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 10:50 ` Eli Zaretskii @ 2008-02-09 12:20 ` Eli Zaretskii 2008-02-12 11:14 ` Kenichi Handa 0 siblings, 1 reply; 49+ messages in thread From: Eli Zaretskii @ 2008-02-09 12:20 UTC (permalink / raw) To: Kenichi Handa; +Cc: mindcooler, emacs-devel > Date: Sat, 09 Feb 2008 12:50:59 +0200 > From: Eli Zaretskii <eliz@gnu.org> > Cc: emacs-devel@gnu.org > > > From: Eric Lilja <mindcooler@gmail.com> > > Date: Sat, 09 Feb 2008 11:35:37 +0100 > > > > It does indeed seem to bootstrap now! I haven't performed a make info > > and make install yet because I'm worried about the locale-related > > warning that is displayed for all lisp files when they are compiled. > > I'll try to look at those. I took a quick look. The warning comes from this code in mule-cmds.el, part of the function set-locale-environment: (when (get-language-info current-language-environment 'coding-priority) (let ((codeset (locale-info 'codeset)) (coding-system (car (coding-system-priority-list)))) (when codeset (let ((cs (coding-system-aliases coding-system)) result) (while (and cs (not result)) (setq result (locale-charset-match-p (symbol-name (pop cs)) (locale-info 'codeset)))) (unless result (message "Warning: Default coding system `%s' disagrees with system codeset `%s' for this locale." coding-system codeset)))))))) As far as I could see, `(locale-info 'codeset)' on Windows returns the codepage that corresponds to the current language, e.g. cp1252 for a Western-European locale. But this codepage is not in the list returned by coding-system-priority-list; thus the warning. I don't really understand the rationale for this test and the warning; Handa-san, could you please shed some light on it? What does this code try to find out, and what is the meaning of the warning? TIA ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-09 12:20 ` Eli Zaretskii @ 2008-02-12 11:14 ` Kenichi Handa 0 siblings, 0 replies; 49+ messages in thread From: Kenichi Handa @ 2008-02-12 11:14 UTC (permalink / raw) To: Eli Zaretskii; +Cc: mindcooler, emacs-devel In article <uve4yqq2j.fsf@gnu.org>, Eli Zaretskii <eliz@gnu.org> writes: > I took a quick look. The warning comes from this code in > mule-cmds.el, part of the function set-locale-environment: > (when (get-language-info current-language-environment 'coding-priority) > (let ((codeset (locale-info 'codeset)) > (coding-system (car (coding-system-priority-list)))) > (when codeset > (let ((cs (coding-system-aliases coding-system)) > result) > (while (and cs (not result)) > (setq result > (locale-charset-match-p (symbol-name (pop cs)) > (locale-info 'codeset)))) > (unless result > (message "Warning: Default coding system `%s' disagrees with > system codeset `%s' for this locale." coding-system codeset)))))))) > As far as I could see, `(locale-info 'codeset)' on Windows returns the > codepage that corresponds to the current language, e.g. cp1252 for a > Western-European locale. But this codepage is not in the list > returned by coding-system-priority-list; thus the warning. > I don't really understand the rationale for this test and the warning; > Handa-san, could you please shed some light on it? What does this > code try to find out, and what is the meaning of the warning? As this part was not written by me, I'm not sure what the actual rationale is. It seems that these are the changelogs for that part (from lisp/ChangeLog.unicode). 2002-10-27 Dave Love <fx@gnu.org> [...] * international/mule-cmds.el (wid-edit): Require when compiling. (set-locale-environment): Check locale against coding system aliases too. 2002-10-09 Dave Love <fx@gnu.org> [...] (set-locale-environment): Warn if coding system doesn't agree with system locale. The code checks exactly what the message says, but as the code is in the function set-locale-environment, if the most preferred coding system is different from what the locale suggests, I think, the latter should be preferred without warning. --- Kenichi Handa handa@ni.aist.go.jp ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 20:45 ` Eli Zaretskii 2008-02-04 21:14 ` Eric Lilja @ 2008-02-04 22:12 ` Andreas Schwab 2008-02-04 22:16 ` Eric Lilja 1 sibling, 1 reply; 49+ messages in thread From: Andreas Schwab @ 2008-02-04 22:12 UTC (permalink / raw) To: Eli Zaretskii; +Cc: mindcooler, emacs-devel, Jason Rumney Eli Zaretskii <eliz@gnu.org> writes: >> Date: Mon, 04 Feb 2008 11:02:18 +0000 >> From: Jason Rumney <jasonr@gnu.org> >> Cc: emacs-devel@gnu.org >> >> Eric Lilja wrote: >> > Here's the full session log performed on fresh cvs checkout (old files >> > removed first). Hope attaching it works (posting through gmane, it's >> > rather big), I can host it if it doesn't work. >> >> mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' >> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el >> Cannot open load file: encoded-kb > > One possible cause is that EMACSLOADPATH is not set in the environment > of emacs.exe. A more likely cause is a missing/incomplete lisp/subdirs.el. Andreas. -- Andreas Schwab, SuSE Labs, schwab@suse.de SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 22:12 ` Andreas Schwab @ 2008-02-04 22:16 ` Eric Lilja 0 siblings, 0 replies; 49+ messages in thread From: Eric Lilja @ 2008-02-04 22:16 UTC (permalink / raw) To: emacs-devel Andreas Schwab skrev: > Eli Zaretskii <eliz@gnu.org> writes: > >>> Date: Mon, 04 Feb 2008 11:02:18 +0000 >>> From: Jason Rumney <jasonr@gnu.org> >>> Cc: emacs-devel@gnu.org >>> >>> Eric Lilja wrote: >>>> Here's the full session log performed on fresh cvs checkout (old files >>>> removed first). Hope attaching it works (posting through gmane, it's >>>> rather big), I can host it if it doesn't work. >>> mingw32-make[2]: Entering directory `c:/blandat/editors/emacs/cvsemacs/emacs/admin/unidata' >>> "../../src/oo-spd/i386/emacs.exe" -Q --multibyte -batch -f batch-byte-compile unidata-gen.el >>> Cannot open load file: encoded-kb >> One possible cause is that EMACSLOADPATH is not set in the environment >> of emacs.exe. > > A more likely cause is a missing/incomplete lisp/subdirs.el. > > Andreas. > Here's my subdirs.el: ;; -*- no-byte-compile: t -*- ;; In load-path, after this directory should come ;; certain of its subdirectories. Here we specify them. (normal-top-level-add-to-load-path '("url" "toolbar" "textmodes" "progmodes" "play" "obsolete" "nxml" "net" "mh-e" "mail" "language" "international" "gnus" "eshell" "erc" "emulation" "emacs-lisp" "calendar" "calc" )) ;; Local Variables: ;; version-control: never ;; no-byte-compile: t ;; End: ^ permalink raw reply [flat|nested] 49+ messages in thread
* Re: Still cannot build native windows version of emacs 23.* 2008-02-04 9:41 ` Eric Lilja 2008-02-04 11:02 ` Jason Rumney @ 2008-02-04 20:47 ` Eli Zaretskii 1 sibling, 0 replies; 49+ messages in thread From: Eli Zaretskii @ 2008-02-04 20:47 UTC (permalink / raw) To: Eric Lilja; +Cc: emacs-devel > From: Eric Lilja <mindcooler@gmail.com> > Date: Mon, 04 Feb 2008 10:41:52 +0100 > > A side question you might be able to answer: I put this in my build > script (a bash script) after make bootstrap: > if test $? = 0 > then > echo "Bootstrap succeeded, proceeding with build script..." > else > echo "Bootstrap failed, halting build script!" > > exit > fi > > but the script thinks the bootstrap succeeded and attempts to build > info, install etc...how do can I detect bootstrap errors and halt the > script? Could it be that the exit code of the MinGW make is somehow not communicated correctly to the Cygwin port of Bash? ^ permalink raw reply [flat|nested] 49+ messages in thread
end of thread, other threads:[~2008-02-12 11:14 UTC | newest] Thread overview: 49+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-02-03 15:52 Still cannot build native windows version of emacs 23.* Eric Lilja 2008-02-03 19:50 ` Eli Zaretskii 2008-02-03 20:01 ` Eric Lilja 2008-02-04 4:06 ` Eli Zaretskii 2008-02-04 9:41 ` Eric Lilja 2008-02-04 11:02 ` Jason Rumney 2008-02-04 11:36 ` Eric Lilja 2008-02-04 11:48 ` Jason Rumney 2008-02-04 11:54 ` Eric Lilja 2008-02-04 12:13 ` Juanma Barranquero 2008-02-04 20:56 ` Eli Zaretskii 2008-02-04 20:45 ` Eli Zaretskii 2008-02-04 21:14 ` Eric Lilja 2008-02-04 21:23 ` Eli Zaretskii 2008-02-04 21:28 ` Eric Lilja 2008-02-05 4:09 ` Eli Zaretskii 2008-02-05 9:15 ` Eric Lilja 2008-02-05 20:13 ` Eli Zaretskii 2008-02-05 23:22 ` Eric Lilja 2008-02-06 4:15 ` Eli Zaretskii 2008-02-06 4:38 ` Eric Lilja 2008-02-06 19:34 ` Eli Zaretskii 2008-02-06 22:10 ` Eric Lilja 2008-02-07 4:13 ` Eli Zaretskii 2008-02-07 4:17 ` Eric Lilja 2008-02-07 19:03 ` Eric Lilja 2008-02-08 15:04 ` Eli Zaretskii 2008-02-08 15:12 ` Eric Lilja 2008-02-08 15:32 ` Eli Zaretskii 2008-02-08 21:27 ` Lennart Borgman (gmail) 2008-02-08 22:51 ` Lennart Borgman (gmail) 2008-02-09 1:51 ` Lennart Borgman (gmail) 2008-02-09 8:54 ` Eli Zaretskii 2008-02-09 9:36 ` Eli Zaretskii 2008-02-09 11:25 ` Lennart Borgman (gmail) 2008-02-09 11:44 ` Lennart Borgman (gmail) 2008-02-09 11:46 ` Eric Lilja 2008-02-09 12:02 ` Jason Rumney 2008-02-09 22:20 ` Lennart Borgman (gmail) 2008-02-09 22:28 ` Jason Rumney 2008-02-09 22:31 ` Lennart Borgman (gmail) 2008-02-09 9:33 ` Eli Zaretskii 2008-02-09 10:35 ` Eric Lilja 2008-02-09 10:50 ` Eli Zaretskii 2008-02-09 12:20 ` Eli Zaretskii 2008-02-12 11:14 ` Kenichi Handa 2008-02-04 22:12 ` Andreas Schwab 2008-02-04 22:16 ` Eric Lilja 2008-02-04 20:47 ` Eli Zaretskii
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/emacs.git https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.