diff options
| author | Dan Nicolaescu | 2010-07-02 01:11:24 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-07-02 01:11:24 -0700 |
| commit | d9170db5208a86d94a6d8a89c8fa1e678bd094bd (patch) | |
| tree | f15dc1b36d3807346f6f346b1c229e53a6a72ca4 /src/lisp.h | |
| parent | 986011195e5c40b9644c21da166c12cb34176350 (diff) | |
| download | emacs-d9170db5208a86d94a6d8a89c8fa1e678bd094bd.tar.gz emacs-d9170db5208a86d94a6d8a89c8fa1e678bd094bd.zip | |
Define USE_LISP_UNION_TYPE using autoconf.
* configure.in (--enable-use-lisp-union-type): New flag.
* src/lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h index 1941a2471a4..0da668bb87f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -95,10 +95,9 @@ extern void die P_((const char *, const char *, int)) NO_RETURN; | |||
| 95 | #endif | 95 | #endif |
| 96 | #endif /* ENABLE_CHECKING */ | 96 | #endif /* ENABLE_CHECKING */ |
| 97 | 97 | ||
| 98 | /* Define this to make Lisp_Object use a union type instead of the | 98 | /* Use the configure flag --enable-use-lisp-union-type to make |
| 99 | default int. FIXME: It might be better to add a flag to configure | 99 | Lisp_Object use a union type instead of the default int. The flag |
| 100 | to do this. */ | 100 | causes USE_LISP_UNION_TYPE to be defined. */ |
| 101 | /* #define USE_LISP_UNION_TYPE */ | ||
| 102 | 101 | ||
| 103 | /***** Select the tagging scheme. *****/ | 102 | /***** Select the tagging scheme. *****/ |
| 104 | /* There are basically two options that control the tagging scheme: | 103 | /* There are basically two options that control the tagging scheme: |