diff options
| author | Kim F. Storm | 2005-11-08 21:38:10 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-11-08 21:38:10 +0000 |
| commit | a967ed62bb5c69ff1a5c81ef243bfb3c0c673a58 (patch) | |
| tree | c333c0e7ef69d2a6bca067d4e9a4f3965ba07171 | |
| parent | 1f5f957a3ecd015c02d37bca114a3e7ac59ecdff (diff) | |
| download | emacs-a967ed62bb5c69ff1a5c81ef243bfb3c0c673a58.tar.gz emacs-a967ed62bb5c69ff1a5c81ef243bfb3c0c673a58.zip | |
(search_buffer): No need to initialize base_pat.
| -rw-r--r-- | src/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index d3a5bd838a9..ab4b2a0f519 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -1174,7 +1174,7 @@ search_buffer (string, pos, pos_byte, lim, lim_byte, n, | |||
| 1174 | int raw_pattern_size_byte; | 1174 | int raw_pattern_size_byte; |
| 1175 | unsigned char *patbuf; | 1175 | unsigned char *patbuf; |
| 1176 | int multibyte = !NILP (current_buffer->enable_multibyte_characters); | 1176 | int multibyte = !NILP (current_buffer->enable_multibyte_characters); |
| 1177 | unsigned char *base_pat = SDATA (string); | 1177 | unsigned char *base_pat; |
| 1178 | /* Set to positive if we find a non-ASCII char that need | 1178 | /* Set to positive if we find a non-ASCII char that need |
| 1179 | translation. Otherwise set to zero later. */ | 1179 | translation. Otherwise set to zero later. */ |
| 1180 | int charset_base = -1; | 1180 | int charset_base = -1; |