From: Dan Nicolaescu Date: Fri, 11 Jul 2008 14:20:06 +0000 (+0000) Subject: Remove left over code. X-Git-Tag: emacs-pretest-23.0.90~4239 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19;p=emacs.git Remove left over code. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5b04cafced4..90b18d1d78b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-07-11 Dan Nicolaescu + + * lisp.h: Remove left over code. + 2008-07-11 Andreas Schwab * lisp.h: Fix logic in last change. diff --git a/src/lisp.h b/src/lisp.h index 86c5cac319c..5216b7a72f8 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -108,13 +108,6 @@ extern void die P_((const char *, const char *, int)) NO_RETURN; #endif -/* Used for making sure that Emacs is compilable in all - configurations. */ - -#ifdef USE_LISP_UNION_TYPE -#undef NO_UNION_TYPE -#endif - /* Define an Emacs version of "assert", since some system ones are flaky. */ #ifndef ENABLE_CHECKING @@ -127,6 +120,11 @@ extern void die P_((const char *, const char *, int)) NO_RETURN; #endif #endif /* ENABLE_CHECKING */ +/* Define this to make Lisp_Object use a union type instead of the + default int. FIXME: It might be better to add a flag to configure + to do this. */ +/* #define USE_LISP_UNION_TYPE */ + /***** Select the tagging scheme. *****/ /* There are basically two options that control the tagging scheme: - USE_LISP_UNION_TYPE says that Lisp_Object should be a union instead