Mercurial > hg > xemacs-beta
changeset 2024:8e3ead683fd1
[xemacs-hg @ 2004-04-18 13:55:36 by olivierg]
Fix stupid logic error in -si handling
author | olivierg |
---|---|
date | Sun, 18 Apr 2004 13:55:36 +0000 |
parents | eeb8b70b0644 |
children | 2d4ad7f2d9a8 |
files | src/ChangeLog src/emacs.c |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sat Apr 17 21:50:36 2004 +0000 +++ b/src/ChangeLog Sun Apr 18 13:55:36 2004 +0000 @@ -1,3 +1,7 @@ +2004-04-18 Olivier Galibert <galibert@pobox.com> + + * emacs.c (main_1): Fix stupid logic error in -si handling. + 2004-04-15 Jerry James <james@xemacs.org> * number.c (Foddp): Lisp name should be oddp, not odd. Thanks to
--- a/src/emacs.c Sat Apr 17 21:50:36 2004 +0000 +++ b/src/emacs.c Sun Apr 18 13:55:36 2004 +0000 @@ -828,7 +828,7 @@ alignment and max size of the inline data and quit */ if (argmatch (argv, argc, "-si", "--show-inline-info", 0, NULL, &skip_args)) { -#if defined(PDUMP) || !defined(WIN32_NATIVE) +#if defined(PDUMP) && !defined(WIN32_NATIVE) printf ("%d %d\n", dumped_data_max_size(), dumped_data_align_offset()); #else printf ("Portable dumper not configured or windows native; -si just forces exit.\n");