aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorDan Nicolaescu <[email protected]>2008-07-11 14:20:06 +0000
committerDan Nicolaescu <[email protected]>2008-07-11 14:20:06 +0000
commit3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19 (patch)
tree0699c14c95bda8fc7c76e2f8ec29ee9138898e86 /src/lisp.h
parent7e770c85dae17a39c39121302f09d4e52ef44890 (diff)
Remove left over code.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 86c5cac319..5216b7a72f 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