]> git.eshelyaron.com Git - emacs.git/commitdiff
(RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather
authorAndrew Innes <andrewi@gnu.org>
Tue, 2 Jan 2001 22:41:07 +0000 (22:41 +0000)
committerAndrew Innes <andrewi@gnu.org>
Tue, 2 Jan 2001 22:41:07 +0000 (22:41 +0000)
than the function.

nt/config.nt

index 23d17986895586209097829342e7de060f4dd54f..a4e2c167cf9adb4fe1d6db3c6de761bc05c12736 100644 (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