aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parent7e770c85dae17a39c39121302f09d4e52ef44890 (diff)
Remove left over code.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/lisp.h12
2 files changed, 9 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5b04cafced..90b18d1d78 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2008-07-11 Dan Nicolaescu <[email protected]>
+
+ * lisp.h: Remove left over code.
+
2008-07-11 Andreas Schwab <[email protected]>
* lisp.h: Fix logic in last change.
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