From: Richard M. Stallman Date: Thu, 19 Oct 1995 00:50:14 +0000 (+0000) Subject: (RE_TRANSLATE_TYPE): Define, if not already defined. X-Git-Tag: emacs-19.34~2611 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6fffb26e4264d514220adfb8f4b9ccb75c68fd38;p=emacs.git (RE_TRANSLATE_TYPE): Define, if not already defined. (struct re_pattern_buffer): Use RE_TRANSLATE_TYPE. --- diff --git a/src/regex.h b/src/regex.h index 31eaf849f75..5184e6bb714 100644 --- a/src/regex.h +++ b/src/regex.h @@ -279,6 +279,10 @@ typedef enum compiled, the `re_nsub' field is available. All other fields are private to the regex routines. */ +#ifndef RE_TRANSLATE_TYPE +#define RE_TRANSLATE_TYPE char * +#endif + struct re_pattern_buffer { /* [[[begin pattern_buffer]]] */ @@ -305,7 +309,7 @@ struct re_pattern_buffer comparing them, or zero for no translation. The translation is applied to a pattern when it is compiled and to a string when it is matched. */ - char *translate; + RE_TRANSLATE_TYPE translate; /* Number of subexpressions found by the compiler. */ size_t re_nsub;