diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-04-02 08:11:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-04-02 08:11:19 +0000 |
commit | 37cbd1461313f1224502e08f67959ef24c71c451 (patch) | |
tree | c442a6ac955658f5922880edb204432e353a1b86 /src/config.in | |
parent | 1d969a233975ea3283a54545d419ffd9d7b7e8e9 (diff) | |
download | emacs-37cbd1461313f1224502e08f67959ef24c71c451.tar.gz |
(RE_TRANSLATE): Use char_table_translate.
Diffstat (limited to 'src/config.in')
-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 e986344ec24..17162ca37e0 100644 --- a/src/config.in +++ b/src/config.in @@ -348,7 +348,7 @@ Boston, MA 02111-1307, USA. */ #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) XINT (Faref (TBL, make_number (C))) +#define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C) #endif /* Avoid link-time collision with system mktime if we will use our own. */ |