comparison 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
comparison
equal deleted inserted replaced
2023:eeb8b70b0644 2024:8e3ead683fd1
826 826
827 /* Handle the -si/--show-inline-info switch, which means show the 827 /* Handle the -si/--show-inline-info switch, which means show the
828 alignment and max size of the inline data and quit */ 828 alignment and max size of the inline data and quit */
829 if (argmatch (argv, argc, "-si", "--show-inline-info", 0, NULL, &skip_args)) 829 if (argmatch (argv, argc, "-si", "--show-inline-info", 0, NULL, &skip_args))
830 { 830 {
831 #if defined(PDUMP) || !defined(WIN32_NATIVE) 831 #if defined(PDUMP) && !defined(WIN32_NATIVE)
832 printf ("%d %d\n", dumped_data_max_size(), dumped_data_align_offset()); 832 printf ("%d %d\n", dumped_data_max_size(), dumped_data_align_offset());
833 #else 833 #else
834 printf ("Portable dumper not configured or windows native; -si just forces exit.\n"); 834 printf ("Portable dumper not configured or windows native; -si just forces exit.\n");
835 #endif 835 #endif
836 exit (0); 836 exit (0);