Hi, On Mon, 3 Dec 2007, Alex Riesen wrote: > diff --git a/ident.c b/ident.c > index 9b2a852..dbd0f52 100644 > --- a/ident.c > +++ b/ident.c > @@ -113,25 +113,15 @@ static int add_raw(char *buf, size_t size, int offset, const char *str) > > static int crud(unsigned char c) > { > - static char crud_array[256]; > - static int crud_array_initialized = 0; > - > - if (!crud_array_initialized) { > - int k; > - > - for (k = 0; k <= 31; ++k) crud_array[k] = 1; > - crud_array[' '] = 1; > - crud_array['.'] = 1; > - crud_array[','] = 1; > - crud_array[':'] = 1; > - crud_array[';'] = 1; > - crud_array['<'] = 1; > - crud_array['>'] = 1; > - crud_array['"'] = 1; > - crud_array['\''] = 1; > - crud_array_initialized = 1; > - } > - return crud_array[c]; > + return c <= 32 || > + c == '.' || > + c == ',' || > + c == ':' || > + c == ';' || > + c == '<' || > + c == '>' || > + c == '"' || > + c == '\''; Or enhance ctype.c. Ciao, Dscho - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html