File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3250,6 +3250,9 @@ find_command(exarg_T *eap, int *full UNUSED)
32503250
32513251 if (ASCII_ISLOWER (eap -> cmd [0 ]))
32523252 {
3253+ int c1 = eap -> cmd [0 ];
3254+ int c2 = eap -> cmd [1 ];
3255+
32533256 if (command_count != (int )CMD_SIZE )
32543257 {
32553258 iemsg ((char_u * )_ ("E943: Command table needs to be updated, run 'make cmdidxs'" ));
@@ -3258,8 +3261,6 @@ find_command(exarg_T *eap, int *full UNUSED)
32583261
32593262 /* Use a precomputed index for fast look-up in cmdnames[]
32603263 * taking into account the first 2 letters of eap->cmd. */
3261- int c1 = eap -> cmd [0 ];
3262- int c2 = eap -> cmd [1 ];
32633264 eap -> cmdidx = cmdidxs1 [CharOrdLow (c1 )];
32643265 if (ASCII_ISLOWER (c2 ))
32653266 eap -> cmdidx += cmdidxs2 [CharOrdLow (c1 )][CharOrdLow (c2 )];
Original file line number Diff line number Diff line change @@ -764,6 +764,8 @@ static char *(features[]) =
764764
765765static int included_patches [] =
766766{ /* Add new patch number below this line */
767+ /**/
768+ 506 ,
767769/**/
768770 505 ,
769771/**/
You can’t perform that action at this time.
0 commit comments