From b07b65aaa283d063b156e42e0c75af9ebd6d2459 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 12 Oct 2001 02:24:34 +0000 Subject: [PATCH] (wordify): Use empty_string. --- src/search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index d9bddffeabf..f05f2cc0bf3 100644 --- a/src/search.c +++ b/src/search.c @@ -1971,7 +1971,7 @@ wordify (string) if (SYNTAX (prev_c) == Sword) word_count++; if (!word_count) - return build_string (""); + return empty_string; adjust = - punct_count + 5 * (word_count - 1) + 4; if (STRING_MULTIBYTE (string)) -- 2.39.2