comparison src/ex_docmd.c @ 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 75bd12f3bfeb
children 71b1e2ef0069
comparison
equal deleted inserted replaced
24965:11e0e5399600 24966:7f4a04820b5d
4521 || eap->line2 < 0) 4521 || eap->line2 < 0)
4522 return _(e_invrange); 4522 return _(e_invrange);
4523 #endif 4523 #endif
4524 break; 4524 break;
4525 case ADDR_UNSIGNED: 4525 case ADDR_UNSIGNED:
4526 if (eap->line2 < 0)
4527 return _(e_invrange);
4528 break;
4529 case ADDR_NONE: 4526 case ADDR_NONE:
4530 // Will give an error elsewhere. 4527 // Will give an error elsewhere.
4531 break; 4528 break;
4532 } 4529 }
4533 } 4530 }