diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:52:16 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-10 18:52:16 +0000 |
commit | cf0dfa2f18cead35804e200856d49235906a54d0 (patch) | |
tree | 42beaad1a349f6895a27d40f022c8f6d4b0c34c3 /src | |
parent | e590119ea73e5afa0ee5b5a95047ddd8fb59de52 (diff) | |
download | vim-git-cf0dfa2f18cead35804e200856d49235906a54d0.tar.gz |
updated for version 7.1b
Diffstat (limited to 'src')
-rw-r--r-- | src/Make_vms.mms | 6 | ||||
-rw-r--r-- | src/gui_gtk_vms.h | 2 | ||||
-rw-r--r-- | src/term.c | 10 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/Make_vms.mms b/src/Make_vms.mms index 524d9b485..b4f9be685 100644 --- a/src/Make_vms.mms +++ b/src/Make_vms.mms @@ -2,7 +2,7 @@ # Makefile for Vim on OpenVMS # # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> -# Last change: 2006 Sep 04 +# Last change: 2007 May 07 # # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64 # with MMS and MMK @@ -326,7 +326,7 @@ all : [.auto]config.h mmk_compat motif_env gtk_env perl_env python_env tcl_env r mmk_compat : -@ open/write pd pathdef.c -@ write pd "/* Empty file to satisfy MMK depend. */" - -@ write pd "/* It will be owerwritten later on... */" + -@ write pd "/* It will be overwritten later on... */" -@ close pd clean : -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* @@ -431,7 +431,7 @@ perl_env : -@ show symbol perl -@ open/write pd if_perl.c -@ write pd "/* Empty file to satisfy MMK depend. */" - -@ write pd "/* It will be owerwritten later on... */" + -@ write pd "/* It will be overwritten later on... */" -@ close pd -@ write sys$output "creating OS_VMS_PERL.OPT file." -@ open/write opt_file OS_VMS_PERL.OPT diff --git a/src/gui_gtk_vms.h b/src/gui_gtk_vms.h index 1f965afa2..4109e2d1f 100644 --- a/src/gui_gtk_vms.h +++ b/src/gui_gtk_vms.h @@ -3,7 +3,7 @@ * VIM - Vi IMproved by Bram Moolenaar * * Do ":help uganda" in Vim to read copying and usage conditions. - * Do ":help credits" in Vim to see a list of people who contributedi. + * Do ":help credits" in Vim to see a list of people who contributed. * * File MOTIF_REDEFINES.H originally delivers together with * OpenVMS Porting Library diff --git a/src/term.c b/src/term.c index 558928b61..ab5ff15c8 100644 --- a/src/term.c +++ b/src/term.c @@ -1446,10 +1446,10 @@ static struct builtin_term builtin_termcaps[] = */ char_u *(term_strings[(int)KS_LAST + 1]); -static int need_gather = FALSE; /* need to fill termleader[] */ -static char_u termleader[256 + 1]; /* for check_termcode() */ +static int need_gather = FALSE; /* need to fill termleader[] */ +static char_u termleader[256 + 1]; /* for check_termcode() */ #ifdef FEAT_TERMRESPONSE -static int check_for_codes = FALSE; /* check for key code reponse */ +static int check_for_codes = FALSE; /* check for key code response */ #endif static struct builtin_term * @@ -3273,7 +3273,7 @@ stoptermcap() * Only do this after switching to raw mode, otherwise the result will be * echoed. * Only do this after startup has finished, to avoid that the response comes - * while excuting "-c !cmd" or even after "-c quit". + * while executing "-c !cmd" or even after "-c quit". * Only do this after termcap mode has been started, otherwise the codes for * the cursor keys may be wrong. * Only do this when 'esckeys' is on, otherwise the response causes trouble in @@ -4770,7 +4770,7 @@ check_termcode(max_offset, buf, buflen) * four bytes which are to be taken as a pointer to the vimmenu_T * structure. * - * A tab line event is encodded as K_SPECIAL KS_TABLINE nr, where "nr" + * A tab line event is encoded as K_SPECIAL KS_TABLINE nr, where "nr" * is one byte with the tab index. * * A scrollbar event is K_SPECIAL, KS_VER_SCROLLBAR, KE_FILLER followed |