# HG changeset patch # User Kim F. Storm # Date 1131485890 0 # Node ID e1496b6cebc32218f4fe9337ea1192a51bec4a70 # Parent ea5667bc82b666c1f7b4a573546f82cdd3a2b34c (search_buffer): No need to initialize base_pat. diff -r ea5667bc82b6 -r e1496b6cebc3 src/search.c --- a/src/search.c Tue Nov 08 21:37:28 2005 +0000 +++ b/src/search.c Tue Nov 08 21:38:10 2005 +0000 @@ -1174,7 +1174,7 @@ int raw_pattern_size_byte; unsigned char *patbuf; int multibyte = !NILP (current_buffer->enable_multibyte_characters); - unsigned char *base_pat = SDATA (string); + unsigned char *base_pat; /* Set to positive if we find a non-ASCII char that need translation. Otherwise set to zero later. */ int charset_base = -1;