From d19c04a88e8c4720818e3a01671547ffdde01c98 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 3 Sep 1997 00:47:36 +0000 Subject: Change [_Py_]re_compile_pattern() to return a char*. Since it only returns an error message (or NULL) there's no reason for it to be unsigned char *, and various compilers like this better. --- Modules/regexpr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Modules/regexpr.h') diff --git a/Modules/regexpr.h b/Modules/regexpr.h index 729088e2be..dd66325133 100644 --- a/Modules/regexpr.h +++ b/Modules/regexpr.h @@ -101,7 +101,7 @@ int re_set_syntax(int syntax); /* This sets the syntax to use and returns the previous syntax. The * syntax is specified by a bit mask of the above defined bits. */ -unsigned char *re_compile_pattern(unsigned char *regex, int regex_size, regexp_t compiled); +char *re_compile_pattern(unsigned char *regex, int regex_size, regexp_t compiled); /* This compiles the regexp (given in regex and length in regex_size). * This returns NULL if the regexp compiled successfully, and an error * message if an error was encountered. The buffer field must be @@ -138,7 +138,7 @@ extern int re_syntax; extern unsigned char re_syntax_table[256]; void re_compile_initialize(); int re_set_syntax(); -unsigned char *re_compile_pattern(); +char *re_compile_pattern(); int re_match(); int re_search(); void re_compile_fastmap(); -- cgit v1.2.1