diff options
| author | Andrew Innes | 2001-01-02 22:41:07 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-01-02 22:41:07 +0000 |
| commit | f82f26babc41796f46e7877e9ff480aad49a339f (patch) | |
| tree | bd8f717feec5c98f06c7ea3146e30b1554f287ac | |
| parent | 82d5a7b2a6195b137e5960ea2a65dccf5d8afa84 (diff) | |
| download | emacs-f82f26babc41796f46e7877e9ff480aad49a339f.tar.gz emacs-f82f26babc41796f46e7877e9ff480aad49a339f.zip | |
(RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather
than the function.
| -rw-r--r-- | nt/config.nt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nt/config.nt b/nt/config.nt index 23d17986895..a4e2c167cf9 100644 --- a/nt/config.nt +++ b/nt/config.nt | |||
| @@ -361,7 +361,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 361 | #ifdef emacs /* Don't do this for lib-src. */ | 361 | #ifdef emacs /* Don't do this for lib-src. */ |
| 362 | /* Tell regex.c to use a type compatible with Emacs. */ | 362 | /* Tell regex.c to use a type compatible with Emacs. */ |
| 363 | #define RE_TRANSLATE_TYPE Lisp_Object | 363 | #define RE_TRANSLATE_TYPE Lisp_Object |
| 364 | #define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C) | 364 | #define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C) |
| 365 | #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) | 365 | #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) |
| 366 | #endif | 366 | #endif |
| 367 | 367 | ||