diff options
| author | Stefan Monnier | 2004-11-23 05:20:49 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-11-23 05:20:49 +0000 |
| commit | 8fe48a6f120586a8df05b299f3079d267b7c5f9f (patch) | |
| tree | c541800a5b223ccd959abd4255d74c39211c8e38 /src | |
| parent | 2ca8b6c2c300e8b1c49f8061596dd697307f2867 (diff) | |
| download | emacs-8fe48a6f120586a8df05b299f3079d267b7c5f9f.tar.gz emacs-8fe48a6f120586a8df05b299f3079d267b7c5f9f.zip | |
(RE_TRANSLATE_P): Don't use XFASTINT blindly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/config.in b/src/config.in index fe1adc39f9d..7721d1c5d6e 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | /* src/config.in. Generated from configure.in by autoheader. */ | 1 | /* src/config.in. Generated from configure.in by autoheader. */ |
| 2 | 2 | ||
| 3 | /* GNU Emacs site configuration template file. | 3 | /* GNU Emacs site configuration template file. |
| 4 | Copyright (C) 1988, 93, 94, 99, 2000, 2002 Free Software Foundation, Inc. | 4 | Copyright (C) 1988, 1993, 1994, 1999, 2000, 2002, 2004 |
| 5 | Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | This file is part of GNU Emacs. | 7 | This file is part of GNU Emacs. |
| 7 | 8 | ||
| @@ -968,7 +969,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 968 | /* Tell regex.c to use a type compatible with Emacs. */ | 969 | /* Tell regex.c to use a type compatible with Emacs. */ |
| 969 | #define RE_TRANSLATE_TYPE Lisp_Object | 970 | #define RE_TRANSLATE_TYPE Lisp_Object |
| 970 | #define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C) | 971 | #define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C) |
| 971 | #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) | 972 | #define RE_TRANSLATE_P(TBL) (!EQ (TBL, make_number (0))) |
| 972 | #endif | 973 | #endif |
| 973 | 974 | ||
| 974 | /* Avoid link-time collision with system mktime if we will use our own. */ | 975 | /* Avoid link-time collision with system mktime if we will use our own. */ |