(RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather

than the function.
This commit is contained in:
Andrew Innes 2001-01-02 22:41:07 +00:00
parent 82d5a7b2a6
commit f82f26babc

View file

@ -361,7 +361,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) char_table_translate (TBL, C)
#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
#define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0)
#endif