changeset 24966:7f4a04820b5d v8.2.3020

patch 8.2.3020: unreachable code Commit: https://github.com/vim/vim/commit/2fb749568662c86992aea3b596458b9e470f223d Author: =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> Date: Sat Jun 19 21:38:25 2021 +0200 patch 8.2.3020: unreachable code Problem: Unreachable code. Solution: Remove the code. (closes https://github.com/vim/vim/issues/8406)
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Jun 2021 21:45:02 +0200
parents 11e0e5399600
children 1ed2acf10c0d
files src/ex_docmd.c src/version.c
diffstat 2 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -4523,9 +4523,6 @@ invalid_range(exarg_T *eap)
 #endif
 		break;
 	    case ADDR_UNSIGNED:
-		if (eap->line2 < 0)
-		    return _(e_invrange);
-		break;
 	    case ADDR_NONE:
 		// Will give an error elsewhere.
 		break;
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3020,
+/**/
     3019,
 /**/
     3018,