aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2008-07-11 14:20:06 +0000
committerDan Nicolaescu2008-07-11 14:20:06 +0000
commit3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19 (patch)
tree0699c14c95bda8fc7c76e2f8ec29ee9138898e86
parent7e770c85dae17a39c39121302f09d4e52ef44890 (diff)
downloademacs-3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19.tar.gz
emacs-3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19.zip
Remove left over code.
-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 5b04cafced4..90b18d1d78b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * lisp.h: Remove left over code.
4
12008-07-11 Andreas Schwab <schwab@suse.de> 52008-07-11 Andreas Schwab <schwab@suse.de>
2 6
3 * lisp.h: Fix logic in last change. 7 * 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;
108 108
109#endif 109#endif
110 110
111/* Used for making sure that Emacs is compilable in all
112 configurations. */
113
114#ifdef USE_LISP_UNION_TYPE
115#undef NO_UNION_TYPE
116#endif
117
118/* Define an Emacs version of "assert", since some system ones are 111/* Define an Emacs version of "assert", since some system ones are
119 flaky. */ 112 flaky. */
120#ifndef ENABLE_CHECKING 113#ifndef ENABLE_CHECKING
@@ -127,6 +120,11 @@ extern void die P_((const char *, const char *, int)) NO_RETURN;
127#endif 120#endif
128#endif /* ENABLE_CHECKING */ 121#endif /* ENABLE_CHECKING */
129 122
123/* Define this to make Lisp_Object use a union type instead of the
124 default int. FIXME: It might be better to add a flag to configure
125 to do this. */
126/* #define USE_LISP_UNION_TYPE */
127
130/***** Select the tagging scheme. *****/ 128/***** Select the tagging scheme. *****/
131/* There are basically two options that control the tagging scheme: 129/* There are basically two options that control the tagging scheme:
132 - USE_LISP_UNION_TYPE says that Lisp_Object should be a union instead 130 - USE_LISP_UNION_TYPE says that Lisp_Object should be a union instead