diff options
| author | Juanma Barranquero | 2007-06-08 20:08:39 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-08 20:08:39 +0000 |
| commit | c60416e0c719543a2ce95d86e31affc921e109ee (patch) | |
| tree | e070a680e7e73bd0a684548560d633678bb02fa2 /src | |
| parent | f130225375b6613c5d72adad98d2e8f9a257ed90 (diff) | |
| download | emacs-c60416e0c719543a2ce95d86e31affc921e109ee.tar.gz emacs-c60416e0c719543a2ce95d86e31affc921e109ee.zip | |
(wordify): Use empty_unibyte_string.
Diffstat (limited to 'src')
| -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 abc28619199..c9c6dfdd242 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -2095,7 +2095,7 @@ wordify (string) | |||
| 2095 | if (SYNTAX (prev_c) == Sword) | 2095 | if (SYNTAX (prev_c) == Sword) |
| 2096 | word_count++; | 2096 | word_count++; |
| 2097 | if (!word_count) | 2097 | if (!word_count) |
| 2098 | return empty_string; | 2098 | return empty_unibyte_string; |
| 2099 | 2099 | ||
| 2100 | adjust = - punct_count + 5 * (word_count - 1) + 4; | 2100 | adjust = - punct_count + 5 * (word_count - 1) + 4; |
| 2101 | if (STRING_MULTIBYTE (string)) | 2101 | if (STRING_MULTIBYTE (string)) |