1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

(wordify): Use empty_unibyte_string.

This commit is contained in:
Juanma Barranquero 2007-06-08 20:08:39 +00:00
parent f130225375
commit c60416e0c7

View file

@ -2095,7 +2095,7 @@ wordify (string)
if (SYNTAX (prev_c) == Sword)
word_count++;
if (!word_count)
return empty_string;
return empty_unibyte_string;
adjust = - punct_count + 5 * (word_count - 1) + 4;
if (STRING_MULTIBYTE (string))