diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-05-25 16:27:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-05-25 16:27:30 +0000 |
commit | 848a925ea6033abd34b1e84aeb64787f34d471ce (patch) | |
tree | fa9989ab3cd22f0f11ebd6686c9e5ac06b151e2c /src/emacs.c | |
parent | bc4dbed59035f35ebbb49c3684b583c6180036a6 (diff) | |
download | emacs-848a925ea6033abd34b1e84aeb64787f34d471ce.tar.gz |
(main, Fdump_emacs): Don't test __linux or __linux__.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c index 846bfc7e453..e02a586b31e 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1753,7 +1753,7 @@ main (argc, argv GNU/Linux. It might work on some other systems too. Give it a try and tell us if it works on your system. To compile for profiling use something like `make CFLAGS="-pg -g -O -DPROFILING=1'. */ -#if defined (__FreeBSD__) || defined (__linux) +#if defined (__FreeBSD__) || defined (GNU_LINUX) #ifdef PROFILING if (initialized) { @@ -2232,7 +2232,7 @@ You must run Emacs in batch mode in order to dump it. */) if (! noninteractive) error ("Dumping Emacs works only in batch mode"); -#ifdef __linux__ +#ifdef GNU_LINUX if (heap_bss_diff > MAX_HEAP_BSS_DIFF) { fprintf (stderr, "**************************************************\n"); @@ -2244,7 +2244,7 @@ You must run Emacs in batch mode in order to dump it. */) fprintf (stderr, "exec-shield in etc/PROBLEMS for more information.\n"); fprintf (stderr, "**************************************************\n"); } -#endif /* __linux__ */ +#endif /* GNU_LINUX */ /* Bind `command-line-processed' to nil before dumping, so that the dumped Emacs will process its command line |