Mercurial > hg > xemacs-beta
comparison src/emacs.c @ 406:b8cc9ab3f761 r21-2-33
Import from CVS: tag r21-2-33
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:17:09 +0200 |
parents | 2f8bb876ab1d |
children | 501cfd01ee6d |
comparison
equal
deleted
inserted
replaced
405:0e08f63c74d2 | 406:b8cc9ab3f761 |
---|---|
65 (defined (I18N2) || defined (I18N3) || defined (I18N4)) | 65 (defined (I18N2) || defined (I18N3) || defined (I18N4)) |
66 #include <locale.h> | 66 #include <locale.h> |
67 #endif | 67 #endif |
68 | 68 |
69 #ifdef TOOLTALK | 69 #ifdef TOOLTALK |
70 #include TT_C_H_PATH | 70 #include TT_C_H_FILE |
71 #endif | 71 #endif |
72 | 72 |
73 #if defined (WINDOWSNT) | 73 #if defined (WINDOWSNT) |
74 #include <windows.h> | 74 #include <windows.h> |
75 #endif | 75 #endif |
2986 extents - check extents prior to each extent change; | 2986 extents - check extents prior to each extent change; |
2987 typecheck - check types strictly, aborting in case of error; | 2987 typecheck - check types strictly, aborting in case of error; |
2988 malloc - check operation of malloc; | 2988 malloc - check operation of malloc; |
2989 gc - check garbage collection; | 2989 gc - check garbage collection; |
2990 bufpos - check buffer positions. | 2990 bufpos - check buffer positions. |
2991 | |
2992 quick-build - user has requested the "quick-build" configure option. | |
2991 */ ); | 2993 */ ); |
2992 Vinternal_error_checking = Qnil; | 2994 Vinternal_error_checking = Qnil; |
2993 #ifdef ERROR_CHECK_EXTENTS | 2995 #ifdef ERROR_CHECK_EXTENTS |
2994 Vinternal_error_checking = Fcons (intern ("extents"), | 2996 Vinternal_error_checking = Fcons (intern ("extents"), |
2995 Vinternal_error_checking); | 2997 Vinternal_error_checking); |
3006 Vinternal_error_checking = Fcons (intern ("gc"), | 3008 Vinternal_error_checking = Fcons (intern ("gc"), |
3007 Vinternal_error_checking); | 3009 Vinternal_error_checking); |
3008 #endif | 3010 #endif |
3009 #ifdef ERROR_CHECK_BUFPOS | 3011 #ifdef ERROR_CHECK_BUFPOS |
3010 Vinternal_error_checking = Fcons (intern ("bufpos"), | 3012 Vinternal_error_checking = Fcons (intern ("bufpos"), |
3013 Vinternal_error_checking); | |
3014 #endif | |
3015 #ifdef QUICK_BUILD | |
3016 Vinternal_error_checking = Fcons (intern ("quick-build"), | |
3011 Vinternal_error_checking); | 3017 Vinternal_error_checking); |
3012 #endif | 3018 #endif |
3013 | 3019 |
3014 DEFVAR_CONST_LISP ("mail-lock-methods", &Vmail_lock_methods /* | 3020 DEFVAR_CONST_LISP ("mail-lock-methods", &Vmail_lock_methods /* |
3015 Mail spool locking methods supported by this instance of XEmacs. | 3021 Mail spool locking methods supported by this instance of XEmacs. |