@@ -1347,7 +1347,7 @@ do_cmdline(
13471347 }
13481348 else if (p != NULL )
13491349 {
1350- semsg (p );
1350+ emsg (p );
13511351 vim_free (p );
13521352 }
13531353 vim_free (sourcing_name );
@@ -5788,8 +5788,8 @@ check_more(
57885788 return FAIL ;
57895789 }
57905790#endif
5791- semsg (NGETTEXT ("E173: %ld more file to edit" ,
5792- "E173: %ld more files to edit" , n ), n );
5791+ semsg (NGETTEXT ("E173: %d more file to edit" ,
5792+ "E173: %d more files to edit" , n ), n );
57935793 quitmore = 2 ; /* next try to quit is allowed */
57945794 }
57955795 return FAIL ;
@@ -6958,7 +6958,7 @@ do_ucmd(exarg_T *eap)
69586958 }
69596959 }
69606960
6961- /* break if there no <item> is found */
6961+ /* break if no <item> is found */
69626962 if (start == NULL || end == NULL )
69636963 break ;
69646964
@@ -8022,7 +8022,7 @@ handle_drop_internal(void)
80228022/*
80238023 * Handle a file drop. The code is here because a drop is *nearly* like an
80248024 * :args command, but not quite (we have a list of exact filenames, so we
8025- * don't want to (a) parse a command line, or (b) expand wildcards. So the
8025+ * don't want to (a) parse a command line, or (b) expand wildcards) . So the
80268026 * code is very similar to :args and hence needs access to a lot of the static
80278027 * functions in this file.
80288028 *
0 commit comments