Yoshiki Hayashi <yoshiki(a)xemacs.org> writes:
-#define RE_TRANSLATE(c) TRT_TABLE_OF (translate, (Emchar) c)
+static inline Emchar RE_TR_ASCII (unsigned char c, Lisp_Object trt);
+static inline Emchar
+RE_TR_ASCII (unsigned char c, Lisp_Object trt)
As a point of style, shouldn't this be either Bufbyte or Emchar?
`unsigned char' doesn't have a real meaning for most of XEmacs.