diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-01 13:03:18 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-01 13:05:39 -0800 |
commit | 3b69e02a248c8b46223d5a9cecfb2494992e5fbe (patch) | |
tree | 22eca8d283fb1ea9aef90f5529260803e95dc266 /src/lastfile.c | |
parent | 84802b66197c623735aaca875b8e1a39cb0ef085 (diff) | |
download | emacs-3b69e02a248c8b46223d5a9cecfb2494992e5fbe.tar.gz |
Rename CANNOT_DUMP to HAVE_UNEXEC
* configure.ac (CANNOT_DUMP): Remove. All uses removed,
or changed to the negative of with_unexec.
(HAVE_UNEXEC): New macro. All uses of CANNOT_DUMP changed
to the negative of this macro.
Diffstat (limited to 'src/lastfile.c')
-rw-r--r-- | src/lastfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lastfile.c b/src/lastfile.c index 706f667dbb9..bcaf105a51b 100644 --- a/src/lastfile.c +++ b/src/lastfile.c @@ -43,7 +43,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ char my_edata[] = "End of Emacs initialized data"; #endif -#ifndef CANNOT_DUMP +#ifdef HAVE_UNEXEC /* Help unexec locate the end of the .bss area used by Emacs (which isn't always a separate section in NT executables). */ |