diff options
| author | Dan Nicolaescu | 2008-07-11 14:20:06 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-07-11 14:20:06 +0000 |
| commit | 3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19 (patch) | |
| tree | 0699c14c95bda8fc7c76e2f8ec29ee9138898e86 /src/lisp.h | |
| parent | 7e770c85dae17a39c39121302f09d4e52ef44890 (diff) | |
| download | emacs-3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19.tar.gz emacs-3bfb4d482350d40e16f0dbc9c25e11ca49f8fd19.zip | |
Remove left over code.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 12 |
1 files changed, 5 insertions, 7 deletions
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 |