Mercurial > hg > xemacs-beta
diff src/emacs.c @ 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 | 2364237fbc0f |
children | d82ed7be1636 |
line wrap: on
line diff
--- 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");