Skip to content

Commit e456219

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 89c1ea2 + 845bbb7 commit e456219

62 files changed

Lines changed: 124 additions & 101 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/GvimExt/Make_ming.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To be used with MingW and Cygwin.
44
#
55
# Originally, the DLL base address was fixed: -Wl,--image-base=0x1C000000
6-
# Now it is allocated dymanically by the linker by evaluating all DLLs
6+
# Now it is allocated dynamically by the linker by evaluating all DLLs
77
# already loaded in memory. The binary image contains as well information
88
# for automatic pseudo-rebasing, if needed by the system. ALV 2004-02-29
99

src/INSTALLpc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ straightforward. Older versions probably don't work.
7272

7373
Visual Studio installed a batch file called vcvarsall.bat, which you must
7474
run to set up paths for nmake and MSVC. We provide a batch file
75-
"msvc2015.bat" for this. You may need to edit it if you didn't instal Visual
75+
"msvc2015.bat" for this. You may need to edit it if you didn't install Visual
7676
Studio in the standard location.
7777
If you use VS2017 or later, you can use "msvc-latest.bat" (or "msvc2017.bat"
7878
and so on for the specific version). You must specify the architecture (e.g.

src/auto/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13541,7 +13541,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1354113541
/* end confdefs.h. */
1354213542

1354313543
#include <signal.h>
13544-
test_sig()
13544+
int test_sig()
1354513545
{
1354613546
struct sigcontext *scont;
1354713547
scont = (struct sigcontext *)0;

src/blob.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ blob_insert_func(typval_T *argvars, typval_T *rettv)
716716
}
717717

718718
/*
719-
* Implementaion of reduce() for Blob "argvars[0]" using the function "expr"
719+
* Implementation of reduce() for Blob "argvars[0]" using the function "expr"
720720
* starting with the optional initial value "argvars[2]" and return the result
721721
* in "rettv".
722722
*/

src/bufwrite.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,7 @@ buf_write(
14751475
{
14761476
if (buf_write_bytes(&write_info) == FAIL)
14771477
{
1478-
errmsg = (char_u *)_(e_canot_write_to_backup_file_add_bang_to_override);
1478+
errmsg = (char_u *)_(e_cant_write_to_backup_file_add_bang_to_override);
14791479
break;
14801480
}
14811481
ui_breakcheck();

src/change.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ del_bytes(
13781378
* "second_line_indent": indent for after ^^D in Insert mode or if flag
13791379
* OPENLINE_COM_LIST
13801380
* "did_do_comment" is set to TRUE when intentionally putting the comment
1381-
* leader in fromt of the new line.
1381+
* leader in front of the new line.
13821382
*
13831383
* Return OK for success, FAIL for failure
13841384
*/

src/charset.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2291,7 +2291,7 @@ vim_str2nr(
22912291
}
22922292
else
22932293
{
2294-
// prevent a larg unsigned number to become negative
2294+
// prevent a large unsigned number to become negative
22952295
if (un > VARNUM_MAX)
22962296
un = VARNUM_MAX;
22972297
*nptr = (varnumber_T)un;

src/config.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
/* Define if struct sigcontext is present */
136136
#undef HAVE_SIGCONTEXT
137137

138-
/* Define if touuper/tolower only work on lower/upercase characters */
138+
/* Define if toupper/tolower only work on lower/uppercase characters */
139139
#undef BROKEN_TOUPPER
140140

141141
/* Define if stat() ignores a trailing slash */

src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3853,7 +3853,7 @@ dnl check if struct sigcontext is defined (used for SGI only)
38533853
AC_MSG_CHECKING(for struct sigcontext)
38543854
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
38553855
#include <signal.h>
3856-
test_sig()
3856+
int test_sig()
38573857
{
38583858
struct sigcontext *scont;
38593859
scont = (struct sigcontext *)0;

src/dict.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@ eval_dict(char_u **arg, typval_T *rettv, evalarg_T *evalarg, int literal)
10161016
item = dict_find(d, key, -1);
10171017
if (item != NULL)
10181018
{
1019-
semsg(_(e_duplicate_key_in_dicitonary), key);
1019+
semsg(_(e_duplicate_key_in_dictionary), key);
10201020
clear_tv(&tvkey);
10211021
clear_tv(&tv);
10221022
goto failret;

0 commit comments

Comments
 (0)