>>>> "APA" == Adrian Aichner
<adrian(a)xemacs.org> writes: 
>>>> "APA" == Adrian Aichner
<aichner(a)ecf.teradyne.com> writes: 
    APA> Here are the offenders, as
tested with
    APA> M-x test-emacs-test-file RET lisp-tests.el:
    APA> Testing Interpreted Lisp
    APA> FAIL: Assertion failed: (string= (format "%e" 100)
"1.000000e+02")
    APA> FAIL: Assertion failed: (string= (format "%E" 100)
"1.000000E+02")
    APA> FAIL: Assertion failed: (string= (format "%g" 1e-006)
"1e-06")
    APA> FAIL: Assertion failed: (string= (format "%G" 1e-006)
"1E-06")
    APA> FAIL: Assertion failed: (string= (format "%#e" 100)
"1.000000e+02")
    APA> FAIL: Assertion failed: (string= (format "%#E" 100)
"1.000000E+02")
    APA> FAIL: Assertion failed: (string= (format "%#g" 1e-006)
"1.00000e-06")
    APA> FAIL: Assertion failed: (string= (format "%#G" 1e-006)
"1.00000E-06")
    APA> These test fails because my system prints 3 digits for the exponent:
    APA> (format "%e" 100)
    APA> "1.000000e+002"
MSDN actually documents that exponents are always printed with three
digits.
What's the preferable way to fix these tests?
1.
(cond 
 ((equal system-type 'windows-nt)
  (Assert (string= (format "%e" 100) "1.000000e+002")))
 (t
  (Assert (string= (format "%e" 100) "1.000000e+02"))))
2.
  (Assert (string-match "1\\.000000e\\+0?02" (format "%e" 100) 0))
3.
Any better ideas?
Adrian
    APA> (format "%E" 100)
    APA> "1.000000E+002"
    APA> (format "%g" 1e-006)
    APA> "1e-006"
    APA> (format "%G" 1e-006)
    APA> "1E-006"
    APA> (format "%#e" 100)
    APA> "1.000000e+002"
    APA> (format "%#E" 100)
    APA> "1.000000E+002"
    APA> (format "%#g" 1e-006)
    APA> "1.00000e-006"
    APA> (format "%#G" 1e-006)
    APA> "1.00000E-006"
    APA> Testing Compiled Lisp
    APA> FAIL: Assertion failed: (string= (format "%e" 100)
"1.000000e+02")
    APA> FAIL: Assertion failed: (string= (format "%E" 100)
"1.000000E+02")
    APA> FAIL: Assertion failed: (string= (format "%g" 1e-006)
"1e-06")
    APA> FAIL: Assertion failed: (string= (format "%G" 1e-006)
"1E-06")
    APA> FAIL: Assertion failed: (string= (format "%#e" 100)
"1.000000e+02")
    APA> FAIL: Assertion failed: (string= (format "%#E" 100)
"1.000000E+02")
    APA> FAIL: Assertion failed: (string= (format "%#g" 1e-006)
"1.00000e-06")
    APA> FAIL: Assertion failed: (string= (format "%#G" 1e-006)
"1.00000E-06")
    APA> SUMMARY:
    APA> 3588 passes
    APA> 16 assertion failures
    APA> 0 errors that should have been generated, but weren't
    APA> 0 wrong-error failures
    APA> 0 missing-message failures
    APA> 0 other failures
>> XEmacs Build Report generated by emacs-version
>> 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid
>> with system-configuration
>> i386-pc-win32
>> follows: 
>> Contents of c:/Hacking/xemacs/xemacs-21.2/Installation:
>> (Output from most recent run of ./configure) 
    APA> OS: Windows_NT
    APA> XEmacs 21.5-b0 \"alfalfa\" configured for `i586-pc-win32'.
    APA> Building XEmacs in \"c:\\Hacking\\xemacs\\xemacs-21.2\\nt\".
    APA> Using compiler \"cl -nologo -W3 -Od -Zi -MDd\".
    APA> Installing XEmacs in \"c:\\Program Files\\XEmacs\\XEmacs-21.5-b0\".
    APA> Package path is \"~\\.xemacs;;c:\\Program
Files\\XEmacs\\site-packages;c:\\Program Files\\XEmacs\\xemacs-packages\".
    APA> Compiling in support for Microsoft Windows native GUI.
    APA> --------------------------------------------------------------------
    APA> WARNING: Compiling without GTK support.
    APA> WARNING: As of xemacs-21.2-b44
    APA> WARNING: gtk-xemacs is not supported on MSWindows (mingw or msvc).
    APA> WARNING: Yes, we know that gtk has been ported to native MSWindows
    APA> WARNING: but XEmacs is not yet ready to use that port.
    APA> --------------------------------------------------------------------
    APA> Compiling in support for XPM images.
    APA> Compiling in support for GIF images.
    APA> Compiling in support for PNG images.
    APA> Compiling in support for TIFF images.
    APA> Compiling in support for JPEG images.
    APA> Compiling in support for X-Face message headers.
    APA> Compiling in support for toolbars.
    APA> Compiling in support for dialogs.
    APA> Compiling in support for widgets.
    APA> Compiling in support for native sounds.
    APA> Compiling in fast dired implementation.
    APA> Using minimal tagbits.
    APA> Using indexed lrecord implementation.
    APA> Using portable dumper.
    APA> Using system malloc.
    APA> Using DLL version of C runtime library
    APA> Compiling in extra debug checks. XEmacs will be slow!
>> Contents of
c:\Hacking\xemacs\xemacs-21.2\nt\xemacs-21.2-make-install.err
>> keeping lines matching
>>
"^--\[\[\|\]\]$\|^\(cd\|n?make\)\s-\|errors?\|warnings?\|pure.*\(space\|size\)\|hides\b\|strange\|shadowings\|^Compil\(ing\s-+in\|ation\)\|^Using\|not\s-+found\|^While\s-+compiling.*\(
    APA> \s-+.+\)*\|^Note:\|Installing\|[Ff]ile(s) copied\|\s-+tests\s-+"
>> and then deleting lines matching
>> "confl.*with.*auto-inlining\|^Formatting:" 
    APA> cd c:\Hacking\xemacs\xemacs-21.2\nt\
    APA> nmake /f xemacs.mak INSTALL_DIR="c:\Program
Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING)"
JPEG_DIR="c:\Hacking\libs4xemacs\jpeg-6b"
MAKEINFO="c:\Hacking\texinfo-4.0\makeinfo\makeinfo.exe"
PNG_DIR="c:\Hacking\libs4xemacs\libpng-1.0.2"
TIFF_DIR="c:\Hacking\libs4xemacs\tiff-v3.4" USE_PORTABLE_DUMPER="1"
XPM_DIR="c:\Hacking\libs4xemacs\xpm-3.4k"
ZLIB_DIR="c:\Hacking\libs4xemacs\zlib" install
    APA> Compilation started at Fri Apr 27 13:55:35 2001
    APA> WARNING: Compiling without dependency information.
    APA> Installing XEmacs in \"c:\\Program Files\\XEmacs\\XEmacs-21.5-b0\".
    APA> WARNING: Compiling without GTK support.
    APA> WARNING: As of xemacs-21.2-b44
    APA> WARNING: gtk-xemacs is not supported on MSWindows (mingw or msvc).
    APA> WARNING: Yes, we know that gtk has been ported to native MSWindows
    APA> WARNING: but XEmacs is not yet ready to use that port.
    APA> 1 file(s) copied.
    APA> 1 file(s) copied.
    APA> 1 file(s) copied.
    APA> c:\Hacking\xemacs\xemacs-21.2\nt\..\nt\minitar.c(28) : warning C4716:
'Usage' : must return a value
    APA> c:\Hacking\xemacs\xemacs-21.2\nt\..\src\dumper.c(993) : warning C4090:
'function' : different 'const' qualifiers
    APA> c:\Hacking\xemacs\xemacs-21.2\nt\..\src\dumper.c(993) : warning C4022:
'dump_add_opaque' : pointer mismatch for actual parameter 1
    APA> WARNING: Compiling without dependency information.
    APA> Using load-path (c:\Hacking\xemacs\xemacs-21.2\lisp)
    APA> Using module-load-path (c:\Hacking\xemacs\xemacs-21.2\modules)
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\code-cmds.el:
    APA> ** the function coding-system-category is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\coding.el:
    APA> ** The following functions are not known to be defined: 
    APA> set-console-tty-input-coding-system,
    APA> set-console-tty-output-coding-system
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\toolbar-items.el:
    APA> ** The following functions are not known to be defined: 
    APA> pending-delete-pre-hook, x-init-specifier-from-resources
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\dragdrop.el:
    APA> ** The following functions are not known to be defined: 
    APA> mime/viewer-mode, gtk-start-drag-internal
    APA> While compiling make-dialog-box in file
c:\Hacking\xemacs\xemacs-21.2\lisp\dialog.el:
    APA> ** variable cl-title bound but not referenced
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\scrollbar.el:
    APA> ** the function x-init-scrollbar-from-resources is not known to be defined.
    APA> While compiling mouse-consolidated-yank in file
c:\Hacking\xemacs\xemacs-21.2\lisp\mouse.el:
    APA> ** reference to free variable gpm-minor-mode
    APA> While compiling the end of the data:
    APA> ** the function x-store-cutbuffer is not known to be defined.
    APA> While compiling find-space-insertable-point in file
c:\Hacking\xemacs\xemacs-21.2\lisp\fill.el:
    APA> ** reference to free variable space-insertable
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> kinsoku-process-extend, kinsoku-process
    APA> While compiling isearch-help-or-delete-char in file
c:\Hacking\xemacs\xemacs-21.2\lisp\isearch-mode.el:
    APA> ** reference to free variable tty-erase-char
    APA> While compiling the end of the data:
    APA> ** the function x-keysym-on-keyboard-sans-modifiers-p is not known to be
defined.
    APA> While compiling read-library-internal in file
c:\Hacking\xemacs\xemacs-21.2\lisp\lib-complete.el:
    APA> ** reference to free variable read-library-internal-search-path
    APA> While compiling read-library-name:
    APA> ** variable read-library-internal-search-path bound but not referenced
    APA> While compiling set-visited-file-name in file
c:\Hacking\xemacs\xemacs-21.2\lisp\files.el:
    APA> ** reference to free variable vc-mode
    APA> While compiling save-some-buffers-1:
    APA> ** assignment to free variable view-exit-action
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> vc-after-save, dired-get-filename, dired-expunge-deletions,
    APA> ange-ftp-ftp-path
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\help.el:
    APA> ** the function compiled-function-annotation is not known to be defined.
    APA> While compiling command-line-early in file
c:\Hacking\xemacs\xemacs-21.2\lisp\startup.el:
    APA> ** init-file-user is an obsolete variable; use load-user-init-file-p instead.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\modeline.el:
    APA> ** the function vc-toggle-read-only is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\minibuf.el:
    APA> ** The following functions are not known to be defined: 
    APA> ange-ftp-ftp-path, user-name-all-completions,
    APA> user-name-completion-1, tty-color-list
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\simple.el:
    APA> ** The following functions are not known to be defined: 
    APA> x-keysym-on-keyboard-sans-modifiers-p, kinsoku-process
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\frame.el:
    APA> ** the function console-tty-controlling-process is not known to be defined.
    APA> While compiling set-face-stipple in file
c:\Hacking\xemacs\xemacs-21.2\lisp\faces.el:
    APA> ** reference to free variable x-bitmap-file-path
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> x-init-face-from-resources, x-init-device-faces,
    APA> gtk-init-device-faces, x-init-frame-faces, gtk-init-frame-faces,
    APA> x-init-global-faces, gtk-init-global-faces
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\console.el:
    APA> ** the function console-tty-controlling-process is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\syntax.el:
    APA> ** The following functions are not known to be defined: 
    APA> charset-name, char-charset
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\custom.el:
    APA> ** the function custom-theme-reset-internal-face is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\cl-extra.el:
    APA> ** The following functions are not known to be defined: 
    APA> overlay-lists, overlay-start, overlay-end, overlays-at,
    APA> next-overlay-change
    APA> Using load-path (c:\Hacking\xemacs\xemacs-21.2\lisp)
    APA> Using module-load-path (c:\Hacking\xemacs\xemacs-21.2\modules)
    APA> Note: Strange doc (not fboundp) for function user-name-completion-1 @ 616405
    APA> Note: Strange doc (not fboundp) for function user-name-all-completions @
616729
    APA> While compiling toplevel forms in file
c:\Hacking\xemacs\xemacs-21.2\lisp\apropos.el:
    APA> ** reference to free variable font-lock-keyword-face
    APA> ** reference to free variable font-lock-string-face
    APA> ** reference to free variable font-lock-comment-face
    APA> ** reference to free variable font-lock-variable-name-face
    APA> While compiling popup-builtin-open-dialog in file
c:\Hacking\xemacs\xemacs-21.2\lisp\dialog-gtk.el:
    APA> ** variable filename bound but not referenced
    APA> While compiling popup-builtin-color-dialog:
    APA> ** variable initial-color bound but not referenced
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-signal-connect, gtk-main-quit, gtk-window-set-transient-for,
    APA> gtk-widget-show-all, gtk-main, gtk-color-selection-dialog-new,
    APA> gtk-color-selection-dialog-ok-button, gtk-widget-hide-all,
    APA> gtk-color-selection-get-color,
    APA> gtk-color-selection-dialog-colorsel,
    APA> gtk-color-selection-dialog-cancel-button, gtk-widget-show-now,
    APA> gtk-widget-grab-focus, gtk-widget-destroy, gtk-dialog-new,
    APA> gtk-window-set-title, gtk-container-set-border-width,
    APA> gtk-box-set-spacing, gtk-dialog-vbox, gtk-container-add,
    APA> gtk-label-new, gtk-button-new-with-label,
    APA> gtk-widget-set-sensitive, gtk-widget-show, gtk-dialog-action-area
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\font-lock.el:
    APA> ** The following functions are not known to be defined: 
    APA> fast-lock-after-fontify-buffer, lazy-lock-after-fontify-buffer
    APA> While compiling toplevel forms in file
c:\Hacking\xemacs\xemacs-21.2\lisp\font.el:
    APA> ** reference to free variable global-face-data
    APA> While compiling font-properties-from-style:
    APA> ** variable style bound but not referenced
    APA> While compiling toplevel forms:
    APA> ** reference to free variable x-font-regexp
    APA> ** variable weight bound but not referenced
    APA> ** variable slant bound but not referenced
    APA> While compiling x-font-create-object:
    APA> ** reference to free variable x-font-regexp-foundry-and-family
    APA> ** variable style bound but not referenced
    APA> While compiling x-font-create-name:
    APA> ** variable style bound but not referenced
    APA> While compiling ns-font-create-name:
    APA> ** variable registry bound but not referenced
    APA> ** variable encoding bound but not referenced
    APA> While compiling mswindows-font-create-name:
    APA> ** variable style bound but not referenced
    APA> While compiling font-update-device-fonts:
    APA> ** variable font bound but not referenced
    APA> While compiling font-update-one-face:
    APA> ** variable font bound but not referenced
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> x-list-fonts, mswindows-list-fonts, ns-list-fonts, internal-facep,
    APA> fontsetp, get-font-info, get-fontset-info,
    APA> mswindows-define-rgb-color, cancel-function-timers
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gdk.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-import-function-internal, gtk-call-function
    APA> While compiling build-ui::radio-group in file
c:\Hacking\xemacs\xemacs-21.2\lisp\generic-widgets.el:
    APA> ** variable build-ui::radio-group bound but not referenced
    APA> While compiling build-ui::button:
    APA> ** reference to free variable plist
    APA> ** reference to free variable build-ui::radio-group
    APA> ** assignment to free variable build-ui::radio-group
    APA> ** variable label bound but not referenced
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-label-new, gtk-widget-show-all, gtk-signal-connect,
    APA> gtk-window-new, gtk-container-add, gtk-vbox-new, gtk-hbox-new,
    APA> gtk-box-pack-start, gtk-notebook-new,
    APA> gtk-notebook-set-homogeneous-tabs, gtk-notebook-set-scrollable,
    APA> gtk-notebook-set-show-tabs, gtk-notebook-set-tab-pos,
    APA> gtk-notebook-append-page, gtk-text-new, gtk-text-set-editable,
    APA> gtk-text-set-word-wrap, gtk-text-set-line-wrap,
    APA> gtk-widget-set-style, gtk-text-insert, gtk-label-set-line-wrap,
    APA> gtk-label-set-justify, gtk-radio-button-new,
    APA> gtk-radio-button-group, gtk-check-button-new,
    APA> gtk-toggle-button-new, gtk-button-new, gtk-progress-bar-new,
    APA> gtk-progress-bar-set-orientation, gtk-progress-bar-set-bar-style
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\glade.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-import-function-internal, gtk-call-function
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gnome-widgets.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-import-function-internal, gtk-call-function,
    APA> gtk-button-new-with-label
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gnome.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-type-from-name, gtk-call-function,
    APA> gtk-import-function-internal
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gpm.el:
    APA> ** The following functions are not known to be defined: 
    APA> gpm-enable, console-tty-terminal-type
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-extra.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-import-function-internal, gtk-call-function
    APA> While compiling gtk-choose-font in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-faces.el:
    APA> ** variable locale bound but not referenced
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-init-pointers, gtk-font-selection-dialog-new,
    APA> gtk-widget-set-sensitive, gtk-font-selection-dialog-apply-button,
    APA> gtk-signal-connect, gtk-main-quit,
    APA> gtk-font-selection-dialog-ok-button,
    APA> gtk-font-selection-dialog-get-font-name, gtk-widget-destroy,
    APA> font-menu-set-font, gtk-font-selection-dialog-cancel-button,
    APA> gtk-widget-show-all, gtk-main
    APA> While compiling gtk-file-dialog-fill-file-list in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-file-dialog.el:
    APA> ** variable remotep bound but not referenced
    APA> While compiling gtk-file-dialog-fill-directory-list:
    APA> ** variable remotep bound but not referenced
    APA> ** variable selected-dir bound but not referenced
    APA> While compiling gtk-file-dialog-new:
    APA> ** variable item bound but not referenced
    APA> ** variable initializing-gtk-file-dialog bound but not referenced
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-clist-clear, gtk-clist-freeze, gtk-clist-append,
    APA> gtk-clist-thaw, gtk-combo-set-popdown-strings, gtk-dialog-new,
    APA> gtk-dialog-vbox, gtk-dialog-action-area, gtk-window-set-title,
    APA> gtk-button-new-with-label, gtk-container-add, gtk-signal-connect,
    APA> gtk-entry-get-text, gtk-widget-destroy, gtk-combo-new,
    APA> gtk-combo-disable-activate, gtk-box-pack-start, gtk-combo-entry,
    APA> gtk-hbox-new, gtk-clist-new-with-titles, gtk-scrolled-window-new,
    APA> gtk-widget-set-usize, gtk-clist-get-text, gtk-entry-set-text,
    APA> gtk-button-clicked, gtk-option-menu-new, gtk-menu-new,
    APA> gtk-label-new, gtk-menu-item-new-with-label, gtk-menu-append,
    APA> gtk-widget-show, gtk-option-menu-set-menu, gtk-box-pack-end,
    APA> gtk-entry-new, gtk-widget-set-sensitive, gtk-widget-realize
    APA> While compiling gtk-reset-device-font-menus in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-font-menu.el:
    APA> ** reference to free variable gtk-font-regexp
    APA> ** reference to free variable gtk-font-regexp-foundry-and-family
    APA> ** reference to free variable gtk-font-regexp-spacing
    APA> While compiling the end of the data:
    APA> ** the function charset-registry is not known to be defined.
    APA> While compiling gtk-init-handle-geometry in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-init.el:
    APA> ** assignment to free variable gtk-initial-geometry
    APA> While compiling init-gtk-win:
    APA> ** assignment to free variable gtk-initial-argv-list
    APA> ** assignment to free variable gtk-initial-geometry
    APA> While compiling the end of the data:
    APA> ** the function gtk-keysym-on-keyboard-p is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-package.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-window-new, gtk-hbox-new, gtk-container-add,
    APA> gtk-widget-show-all
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-password-dialog.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-dialog-new, gtk-dialog-vbox, gtk-dialog-action-area,
    APA> gtk-window-set-title, gtk-button-new-with-label,
    APA> gtk-container-add, gtk-signal-connect, gtk-entry-get-text,
    APA> gtk-widget-destroy, gtk-container-set-border-width, gtk-label-new,
    APA> gtk-misc-set-alignment, gtk-entry-new, gtk-widget-set-sensitive,
    APA> gtk-entry-set-text, gtk-entry-select-region
    APA> While compiling import-widget-accessors in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-widget-accessors.el:
    APA> ** variable c-mode-common-hook bound but not referenced
    APA> ** variable c-mode-hook bound but not referenced
    APA> While compiling the end of the data:
    APA> ** the function gtk-fundamental-type is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk-widgets.el:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-import-function-internal, gtk-call-function,
    APA> gtk-import-variable-internal, gtk-ctree-recurse
    APA> While compiling gtk-describe-enumerations in file
c:\Hacking\xemacs\xemacs-21.2\lisp\gtk.el:
    APA> ** reference to free variable gtk-enumeration-info
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-import-function-internal, gtk-call-function, gtk-type-name
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\ldap.el:
    APA> ** The following functions are not known to be defined:  ldapp,
    APA> ldap-open, ldap-close, ldap-add, ldap-modify, ldap-delete
    APA> While compiling lm-report-bug in file
c:\Hacking\xemacs\xemacs-21.2\lisp\lisp-mnt.el:
    APA> ** reference to free variable report-emacs-bug-beta-address
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\msw-font-menu.el:
    APA> ** the function charset-registry is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\multicast.el:
    APA> ** the function open-multicast-group-internal is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\mwheel.el:
    APA> ** The following functions are not known to be defined: 
    APA> event-basic-type, posn-window, event-start, mwheel-event-window,
    APA> mwheel-event-button
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\package-get.el:
    APA> ** the function mc-pgp-verify-region is not known to be defined.
    APA> While compiling load-sound-file in file
c:\Hacking\xemacs\xemacs-21.2\lisp\sound.el:
    APA> ** assignment to free variable file
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\symbols.el:
    APA> ** the function set-magic-variable-handler is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\tty-init.el:
    APA> ** The following functions are not known to be defined: 
    APA> register-tty-color, init-mule-tty-win
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\wid-browse.el:
    APA> ** the function pp-to-string is not known to be defined.
    APA> While compiling gtk-widget-instantiate-internal in file
c:\Hacking\xemacs\xemacs-21.2\lisp\widgets-gtk.el:
    APA> ** assignment to free variable x
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> gtk-button-new-with-label, gtk-signal-connect,
    APA> gtk-radio-button-new-with-label, gtk-radio-button-group,
    APA> gtk-toggle-button-set-active, gtk-check-button-new-with-label,
    APA> gtk-widget-show-all, gtk-notebook-new, gtk-notebook-append-page,
    APA> gtk-vbox-new, gtk-label-new, gtk-adjustment-new,
    APA> gtk-progress-bar-new-with-adjustment, gtk-adjustment-set-value,
    APA> gtk-entry-new, gtk-entry-set-text, gtk-widget-set-style,
    APA> gtk-widget-get-style
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-faces.el:
    APA> ** The following functions are not known to be defined: 
    APA> x-get-resource-and-maybe-bogosity-check, x-get-resource,
    APA> x-init-pointer-shape
    APA> While compiling x-reset-device-font-menus in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-font-menu.el:
    APA> ** reference to free variable x-font-regexp
    APA> ** reference to free variable x-font-regexp-foundry-and-family
    APA> ** reference to free variable x-font-regexp-spacing
    APA> While compiling the end of the data:
    APA> ** the function charset-registry is not known to be defined.
    APA> While compiling init-x-win in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-init.el:
    APA> ** assignment to free variable x-initial-argv-list
    APA> ** reference to free variable x-initial-argv-list
    APA> While compiling the end of the data:
    APA> ** The following functions are not known to be defined: 
    APA> x-keysym-on-keyboard-p, x-server-vendor,
    APA> x-init-specifier-from-resources, init-mule-x-win
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-misc.el:
    APA> ** the function x-get-resource is not known to be defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-mouse.el:
    APA> ** The following functions are not known to be defined: 
    APA> x-store-cutbuffer, x-get-resource
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-scrollbar.el:
    APA> ** The following functions are not known to be defined: 
    APA> x-init-specifier-from-resources, x-get-resource
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-select.el:
    APA> ** The following functions are not known to be defined: 
    APA> x-get-cutbuffer-internal, x-rotate-cutbuffers-internal,
    APA> x-store-cutbuffer-internal
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-win-sun.el:
    APA> ** the function x-keysym-on-keyboard-sans-modifiers-p is not known to be
defined.
    APA> While compiling the end of the data in file
c:\Hacking\xemacs\xemacs-21.2\lisp\x-win-xfree86.el:
    APA> ** The following functions are not known to be defined: 
    APA> x-keysym-on-keyboard-p, x-keysym-on-keyboard-sans-modifiers-p
    APA> Installing in c:\Program Files\XEmacs\XEmacs-21.5-b0 ...
    APA> 1 File(s) copied
    APA> 1 File(s) copied
    APA> 10 File(s) copied
    APA> 1 file(s) copied.
    APA> 1 file(s) copied.
    APA> 1 file(s) copied.
    APA> 401 File(s) copied
    APA> 132 File(s) copied
    APA> 466 File(s) copied
    APA> 1 File(s) copied
    APA> 1 File(s) copied
    APA> 1 File(s) copied
    APA> Compilation finished at Fri Apr 27 14:09:13
>> Contents of
c:\Hacking\xemacs\xemacs-21.2\nt\xemacs-21.2-make-check-temacs.err
>> keeping lines matching
>>
"^--\[\[\|\]\]$\|^\(cd\|n?make\)\s-\|errors?\|warnings?\|pure.*\(space\|size\)\|hides\b\|strange\|shadowings\|^Compil\(ing\s-+in\|ation\)\|^Using\|not\s-+found\|^While\s-+compiling.*\(
    APA> \s-+.+\)*\|^Note:\|Installing\|[Ff]ile(s) copied\|\s-+tests\s-+"
>> and then deleting lines matching
>> "confl.*with.*auto-inlining\|^Formatting:" 
    APA> cd c:\Hacking\xemacs\xemacs-21.2\nt\
    APA> nmake /f xemacs.mak INSTALL_DIR="c:\Program
Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING)" HAVE_XPM="1"
HAVE_PNG="1" HAVE_TIFF="1" HAVE_JPEG="1"
HAVE_XFACE="1" DEBUG_XEMACS="1" USE_PORTABLE_DUMPER="1"
GUNG_HO="1" MAKEINFO="c:\Hacking\texinfo-4.0\makeinfo\makeinfo.exe"
ZLIB_DIR="c:\Hacking\libs4xemacs\zlib"
XPM_DIR="c:\Hacking\libs4xemacs\xpm-3.4k"
TIFF_DIR="c:\Hacking\libs4xemacs\tiff-v3.4"
PNG_DIR="c:\Hacking\libs4xemacs\libpng-1.0.2"
JPEG_DIR="c:\Hacking\libs4xemacs\jpeg-6b"
COMPFACE_DIR="c:\Hacking\libs4xemacs\compface" check-temacs
    APA> Compilation started at Fri Apr 27 16:35:52 2001
    APA> WARNING: Compiling without dependency information.
    APA> Using load-path (c:\Hacking\xemacs\xemacs-21.2\lisp)
    APA> Using module-load-path (c:\Hacking\xemacs\xemacs-21.2\modules)
    APA> Note: Strange doc (not fboundp) for function user-name-completion-1 @ 616405
    APA> Note: Strange doc (not fboundp) for function user-name-all-completions @
616729
    APA> base64-tests.el: 1232 of 1232 (100%) tests successful.
    APA> byte-compiler-tests.el: 104 of 104 (100%) tests successful.
    APA> c-tests.el: 2 of 2 (100%) tests successful.
    APA> case-tests.el: 1118 of 1118 (100%) tests successful.
    APA> ccl-tests.el: No tests run
    APA> database-tests.el: No tests run
    APA> extent-tests.el: 194 of 194 (100%) tests successful.
    APA> hash-table-tests.el: 9866 of 9866 (100%) tests successful.
    APA> lisp-tests.el: 3588 of 3604 (99%) tests successful.
    APA> md5-tests.el: 56 of 56 (100%) tests successful.
    APA> mule-tests.el: 2 of 2 (100%) tests successful.
    APA> regexp-tests.el: 118 of 118 (100%) tests successful.
    APA> symbol-tests.el: 264 of 264 (100%) tests successful.
    APA> syntax-tests.el: 64 of 64 (100%) tests successful.
    APA> Compilation finished at Fri Apr 27 16:37:07
>> Contents of
c:\Hacking\xemacs\xemacs-21.2\nt\xemacs-21.2-make-check.err
>> keeping lines matching
>>
"^--\[\[\|\]\]$\|^\(cd\|n?make\)\s-\|errors?\|warnings?\|pure.*\(space\|size\)\|hides\b\|strange\|shadowings\|^Compil\(ing\s-+in\|ation\)\|^Using\|not\s-+found\|^While\s-+compiling.*\(
    APA> \s-+.+\)*\|^Note:\|Installing\|[Ff]ile(s) copied\|\s-+tests\s-+"
>> and then deleting lines matching
>> "confl.*with.*auto-inlining\|^Formatting:" 
    APA> cd c:\Hacking\xemacs\xemacs-21.2\nt\
    APA> nmake /f xemacs.mak INSTALL_DIR="c:\Program
Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING)" HAVE_XPM="1"
HAVE_PNG="1" HAVE_TIFF="1" HAVE_JPEG="1"
HAVE_XFACE="1" DEBUG_XEMACS="1" USE_PORTABLE_DUMPER="1"
GUNG_HO="1" MAKEINFO="c:\Hacking\texinfo-4.0\makeinfo\makeinfo.exe"
ZLIB_DIR="c:\Hacking\libs4xemacs\zlib"
XPM_DIR="c:\Hacking\libs4xemacs\xpm-3.4k"
TIFF_DIR="c:\Hacking\libs4xemacs\tiff-v3.4"
PNG_DIR="c:\Hacking\libs4xemacs\libpng-1.0.2"
JPEG_DIR="c:\Hacking\libs4xemacs\jpeg-6b"
COMPFACE_DIR="c:\Hacking\libs4xemacs\compface" check
    APA> Compilation started at Fri Apr 27 16:37:28 2001
    APA> WARNING: Compiling without dependency information.
    APA> base64-tests.el: 1232 of 1232 (100%) tests successful.
    APA> byte-compiler-tests.el: 104 of 104 (100%) tests successful.
    APA> c-tests.el: 2 of 2 (100%) tests successful.
    APA> case-tests.el: 1118 of 1118 (100%) tests successful.
    APA> ccl-tests.el: No tests run
    APA> database-tests.el: No tests run
    APA> extent-tests.el: 194 of 194 (100%) tests successful.
    APA> hash-table-tests.el: 9866 of 9866 (100%) tests successful.
    APA> lisp-tests.el: 3588 of 3604 (99%) tests successful.
    APA> md5-tests.el: 56 of 56 (100%) tests successful.
    APA> mule-tests.el: 2 of 2 (100%) tests successful.
    APA> regexp-tests.el: 118 of 118 (100%) tests successful.
    APA> symbol-tests.el: 264 of 264 (100%) tests successful.
    APA> syntax-tests.el: 64 of 64 (100%) tests successful.
    APA> Compilation finished at Fri Apr 27 16:38:20
    APA> -- 
    APA> Adrian Aichner
    APA> mailto:adrian@xemacs.org
    APA> 
http://www.xemacs.org/
    APA> -- 
    APA> Adrian Aichner
    APA>  mailto:adrian@xemacs.org
    APA>  
http://www.xemacs.org/
-- 
Adrian Aichner
 mailto:adrian@xemacs.org
 
http://www.xemacs.org/