mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
pvs/V1037: two case-branches perform the same action
This commit is contained in:
@@ -8457,9 +8457,9 @@ static void ex_tag_cmd(exarg_T *eap, char_u *name)
|
||||
break;
|
||||
case 's': cmd = DT_SELECT; /* ":tselect" */
|
||||
break;
|
||||
case 'p': cmd = DT_PREV; /* ":tprevious" */
|
||||
break;
|
||||
case 'N': cmd = DT_PREV; /* ":tNext" */
|
||||
case 'p': /* ":tprevious" */
|
||||
case 'N': /* ":tNext" */
|
||||
cmd = DT_PREV;
|
||||
break;
|
||||
case 'n': cmd = DT_NEXT; /* ":tnext" */
|
||||
break;
|
||||
|
Reference in New Issue
Block a user