summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-27 15:51:46 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-27 15:51:46 +0000
commit8b336a6614463fb9ce72db24d00c5aef4f22697e (patch)
tree3ecfe4559ee26ead26011f0d5fd456372205f6d7
parent19cf525c20f9915ffcddda35c27608528f6af047 (diff)
patch 9.0.0959: error when using the "File Settings / Text Width" menuv9.0.0959
Problem: Error when using the "File Settings / Text Width" menu. Solution: Use str2nr(). (closes #11624)
-rw-r--r--runtime/menu.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/runtime/menu.vim b/runtime/menu.vim
index d449a75102..ab509a6927 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 115c5991ac..cd6f0b6736 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 959,
+/**/
958,
/**/
957,