aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Innes2001-01-02 22:41:07 +0000
committerAndrew Innes2001-01-02 22:41:07 +0000
commitf82f26babc41796f46e7877e9ff480aad49a339f (patch)
treebd8f717feec5c98f06c7ea3146e30b1554f287ac
parent82d5a7b2a6195b137e5960ea2a65dccf5d8afa84 (diff)
downloademacs-f82f26babc41796f46e7877e9ff480aad49a339f.tar.gz
emacs-f82f26babc41796f46e7877e9ff480aad49a339f.zip
(RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather
than the function.
-rw-r--r--nt/config.nt2
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