From: Paul Eggert Date: Sun, 6 Dec 2015 23:07:19 +0000 (-0800) Subject: Remove overenthusiastic eassert X-Git-Tag: emacs-25.0.90~520 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b44caf951a93ab4b911391bccecb36d0bbab8d71;p=emacs.git Remove overenthusiastic eassert * src/lisp.h (XSYMBOL): Remove eassert incorrectly added in previous change. It breaks on MS-Windows --with-wide-int. Problem reported by Eli Zaretskii in: http://lists.gnu.org/archive/html/emacs-devel/2015-12/msg00275.html --- diff --git a/src/lisp.h b/src/lisp.h index 8428b6a95d7..ee9b7b62bf4 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -941,7 +941,6 @@ XSYMBOL (Lisp_Object a) { eassert (SYMBOLP (a)); intptr_t i = (intptr_t) XUNTAG (a, Lisp_Symbol); - eassert (0 <= i); void *p = (char *) lispsym + i; return p; }