Mercurial > emacs
changeset 34997:1fff4c29a492
(RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather
than the function.
author | Andrew Innes <andrewi@gnu.org> |
---|---|
date | Tue, 02 Jan 2001 22:41:07 +0000 |
parents | 271ffc04a20d |
children | 5091928844df |
files | nt/config.nt |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/nt/config.nt Tue Jan 02 22:38:06 2001 +0000 +++ b/nt/config.nt Tue Jan 02 22:41:07 2001 +0000 @@ -361,7 +361,7 @@ #ifdef emacs /* Don't do this for lib-src. */ /* Tell regex.c to use a type compatible with Emacs. */ #define RE_TRANSLATE_TYPE Lisp_Object -#define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C) +#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C) #define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0) #endif