mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
pvs/V1037: two case-branches perform the same action
This commit is contained in:
parent
b06f29318d
commit
31d256892e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user