aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2012-07-26 12:58:48 -0700
committerPaul Eggert2012-07-26 12:58:48 -0700
commit562157c814037dcba58a20cd6908a95992c22283 (patch)
tree2a24ff7b2fdd41a730d98622e9b0175ba8b17568
parent5eceb8fb134263b05608532afb33fdf43c1e3713 (diff)
downloademacs-562157c814037dcba58a20cd6908a95992c22283.tar.gz
emacs-562157c814037dcba58a20cd6908a95992c22283.zip
* emacs.c: Do not include <verify.h>; no longer needed.
Fixes: debbugs:12036
-rw-r--r--src/ChangeLog3
-rw-r--r--src/emacs.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 06633ba7165..7e91158ee36 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -7,7 +7,8 @@
7 the fix for 12036 would have avoided some of the problems noted in 7 the fix for 12036 would have avoided some of the problems noted in
8 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems 8 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
9 would have been more obvious. 9 would have been more obvious.
10 * emacs.c (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS) 10 * emacs.c: Do not include <verify.h>; no longer needed.
11 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
11 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG) 12 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
12 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG): 13 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
13 Remove; now done in lisp.h. 14 Remove; now done in lisp.h.
diff --git a/src/emacs.c b/src/emacs.c
index 7dad87ef38b..81af0647742 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -29,8 +29,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29#include <setjmp.h> 29#include <setjmp.h>
30#include <unistd.h> 30#include <unistd.h>
31 31
32#include <verify.h>
33
34#include "lisp.h" 32#include "lisp.h"
35 33
36#ifdef WINDOWSNT 34#ifdef WINDOWSNT