From ee695f787ade7fd88fc5f5497553d95c0c3645b5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 3 Aug 2016 22:08:45 +0200 Subject: patch 7.4.2152 Problem: No proper translation of messages with a count. Solution: Use ngettext(). (Sergey Alyoshin) --- src/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/screen.c') diff --git a/src/screen.c b/src/screen.c index b16bd87c7..f8d283fa2 100644 --- a/src/screen.c +++ b/src/screen.c @@ -2424,7 +2424,7 @@ fold_line( linenr_T lnum, int row) { - char_u buf[51]; + char_u buf[FOLD_TEXT_LEN]; pos_T *top, *bot; linenr_T lnume = lnum + fold_count - 1; int len; -- cgit v1.2.1