diff options
| author | Richard M. Stallman | 1998-05-25 20:15:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-25 20:15:45 +0000 |
| commit | 44eba967fcc650b939c6b5d3d19724135fc26e1e (patch) | |
| tree | 566d4850c4d587543f2c30a9fe76c5f613528e0a /src | |
| parent | 33c46939565fcaa1212177953baf2823046b96bd (diff) | |
| download | emacs-44eba967fcc650b939c6b5d3d19724135fc26e1e.tar.gz emacs-44eba967fcc650b939c6b5d3d19724135fc26e1e.zip | |
(RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.in b/src/config.in index f30156222da..782a316cf34 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -355,7 +355,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 355 | #ifdef emacs /* Don't do this for lib-src. */ | 355 | #ifdef emacs /* Don't do this for lib-src. */ |
| 356 | /* Tell regex.c to use a type compatible with Emacs. */ | 356 | /* Tell regex.c to use a type compatible with Emacs. */ |
| 357 | #define RE_TRANSLATE_TYPE Lisp_Object | 357 | #define RE_TRANSLATE_TYPE Lisp_Object |
| 358 | #define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C) | 358 | #define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C) |
| 359 | #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) | 359 | #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) |
| 360 | #endif | 360 | #endif |
| 361 | 361 | ||