From: Bram Moolenaar Date: Sun, 27 Nov 2022 15:51:46 +0000 (+0000) Subject: patch 9.0.0959: error when using the "File Settings / Text Width" menu X-Git-Tag: v9.0.0959 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b336a6614463fb9ce72db24d00c5aef4f22697e;p=vim patch 9.0.0959: error when using the "File Settings / Text Width" menu Problem: Error when using the "File Settings / Text Width" menu. Solution: Use str2nr(). (closes #11624) --- diff --git a/runtime/menu.vim b/runtime/menu.vim index d449a7510..ab509a692 100644 --- a/runtime/menu.vim +++ b/runtime/menu.vim @@ -341,7 +341,7 @@ def s:TextWidth() # Remove leading zeros to avoid it being used as an octal number. # But keep a zero by itself. var tw = substitute(n, "^0*", "", "") - &tw = tw == '' ? 0 : tw + &tw = tw == '' ? 0 : str2nr(tw) endif enddef diff --git a/src/version.c b/src/version.c index 115c5991a..cd6f0b673 100644 --- a/src/version.c +++ b/src/version.c @@ -695,6 +695,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 959, /**/ 958, /**/