diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 17:26:28 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 17:26:28 +0000 |
commit | 2bb8df23dc2065304d9fab28be07ba6a7362be6d (patch) | |
tree | 1c90266c5851ee9a19cc7b62b4ad7a3582465a01 /src | |
parent | ff1d0d4cf5b9ec789cb0223154d7b76510d32d7b (diff) | |
download | vim-2bb8df23dc2065304d9fab28be07ba6a7362be6d.zip |
updated for version 7.1b
Diffstat (limited to 'src')
-rw-r--r-- | src/globals.h | 10 | ||||
-rw-r--r-- | src/os_vms_conf.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/globals.h b/src/globals.h index 64121d7bf..edd4c79bd 100644 --- a/src/globals.h +++ b/src/globals.h @@ -263,7 +263,7 @@ EXTERN int trylevel INIT(= 0); /* * When "force_abort" is TRUE, always skip commands after an error message, * even after the outermost ":endif", ":endwhile" or ":endfor" or for a - * function whithout the "abort" flag. It is set to TRUE when "trylevel" is + * function without the "abort" flag. It is set to TRUE when "trylevel" is * non-zero (and ":silent!" was not used) or an exception is being thrown at * the time an error is detected. It is set to FALSE when "trylevel" gets * zero again and there was no error or interrupt or throw. @@ -948,7 +948,7 @@ EXTERN typebuf_T typebuf /* typeahead buffer */ #endif ; #ifdef FEAT_EX_EXTRA -EXTERN int ex_normal_busy INIT(= 0); /* recursivenes of ex_normal() */ +EXTERN int ex_normal_busy INIT(= 0); /* recursiveness of ex_normal() */ EXTERN int ex_normal_lock INIT(= 0); /* forbid use of ex_normal() */ #endif EXTERN int stop_insert_mode; /* for ":stopinsert" and 'insertmode' */ @@ -984,7 +984,7 @@ EXTERN int term_console INIT(= FALSE); /* set to TRUE when console used */ #endif EXTERN int termcap_active INIT(= FALSE); /* set by starttermcap() */ EXTERN int cur_tmode INIT(= TMODE_COOK); /* input terminal mode */ -EXTERN int bangredo INIT(= FALSE); /* set to TRUE whith ! command */ +EXTERN int bangredo INIT(= FALSE); /* set to TRUE with ! command */ EXTERN int searchcmdlen; /* length of previous search cmd */ #ifdef FEAT_SYN_HL EXTERN int reg_do_extmatch INIT(= 0); /* Used when compiling regexp: @@ -1304,8 +1304,8 @@ EXTERN linenr_T spell_redraw_lnum INIT(= 0); #endif #ifdef ALT_X_INPUT -/* we need to be able to go into the displatch loop while processing a command - * recevied via alternate input. However, we don't want to process another +/* we need to be able to go into the dispatch loop while processing a command + * received via alternate input. However, we don't want to process another * command until the first is completed. */ EXTERN int suppress_alternate_input INIT(= FALSE); diff --git a/src/os_vms_conf.h b/src/os_vms_conf.h index 8b0200293..71f1df2fd 100644 --- a/src/os_vms_conf.h +++ b/src/os_vms_conf.h @@ -74,7 +74,7 @@ /* Define if struct sigcontext is present */ #define HAVE_SIGCONTEXT -/* Define if toupper/tolower only work on lower/upercase characters */ +/* Define if toupper/tolower only work on lower/uppercase characters */ /* #define BROKEN_TOUPPER */ /* Define if tgetstr() has a second argument that is (char *) */ |