# HG changeset patch # User Bram Moolenaar # Date 1624131902 -7200 # Node ID 7f4a04820b5d0a00439496d4ad5d7db32e19c2ed # Parent 11e0e5399600d00688b1ef48ea4b10a9b674d2f5 patch 8.2.3020: unreachable code Commit: https://github.com/vim/vim/commit/2fb749568662c86992aea3b596458b9e470f223d Author: =?UTF-8?q?Dundar=20G=C3=B6c?= 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) diff --git a/src/ex_docmd.c b/src/ex_docmd.c --- 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; diff --git a/src/version.c b/src/version.c --- 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,