comparison src/config.in @ 21340:69bfc7fa462c

(RE_TRANSLATE): Use char_table_translate.
author Richard M. Stallman <rms@gnu.org>
date Thu, 02 Apr 1998 08:11:19 +0000
parents adb8a0943fc1
children d2b302f002af
comparison
equal deleted inserted replaced
21339:91933098b4ae 21340:69bfc7fa462c
346 #endif 346 #endif
347 347
348 #ifdef emacs /* Don't do this for lib-src. */ 348 #ifdef emacs /* Don't do this for lib-src. */
349 /* Tell regex.c to use a type compatible with Emacs. */ 349 /* Tell regex.c to use a type compatible with Emacs. */
350 #define RE_TRANSLATE_TYPE Lisp_Object 350 #define RE_TRANSLATE_TYPE Lisp_Object
351 #define RE_TRANSLATE(TBL, C) XINT (Faref (TBL, make_number (C))) 351 #define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C)
352 #endif 352 #endif
353 353
354 /* Avoid link-time collision with system mktime if we will use our own. */ 354 /* Avoid link-time collision with system mktime if we will use our own. */
355 #if ! HAVE_MKTIME || BROKEN_MKTIME 355 #if ! HAVE_MKTIME || BROKEN_MKTIME
356 #define mktime emacs_mktime 356 #define mktime emacs_mktime