summaryrefslogtreecommitdiff
path: root/src/unexcoff.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-02-01 13:03:18 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2019-02-01 13:05:39 -0800
commit3b69e02a248c8b46223d5a9cecfb2494992e5fbe (patch)
tree22eca8d283fb1ea9aef90f5529260803e95dc266 /src/unexcoff.c
parent84802b66197c623735aaca875b8e1a39cb0ef085 (diff)
downloademacs-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/unexcoff.c')
-rw-r--r--src/unexcoff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexcoff.c b/src/unexcoff.c
index 6e90c0628d2..220ce709df9 100644
--- a/src/unexcoff.c
+++ b/src/unexcoff.c
@@ -56,7 +56,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#define PERROR(file) report_error (file, new)
-#ifndef CANNOT_DUMP /* all rest of file! */
+#ifdef HAVE_UNEXEC /* all rest of file! */
#ifdef HAVE_COFF_H
#include <coff.h>
@@ -538,4 +538,4 @@ unexec (const char *new_name, const char *a_name)
emacs_close (a_out);
}
-#endif /* not CANNOT_DUMP */
+#endif /* HAVE_UNEXEC */