diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-01 21:56:33 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-01 21:56:33 +0000 |
commit | 6c0b44b5bf930129a57ff71b1d0c7ffcbc6b0bf5 (patch) | |
tree | 29256bed4971371c9ee12aa973b511714b98b3fb /src/term.c | |
parent | d6f676daaf88bd4768cd715c0ce88531f599e609 (diff) | |
download | vim-git-6c0b44b5bf930129a57ff71b1d0c7ffcbc6b0bf5.tar.gz |
updated for version 7.0078
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/term.c b/src/term.c index 20203b5cf..9ff29382e 100644 --- a/src/term.c +++ b/src/term.c @@ -144,7 +144,7 @@ static char_u *vim_tgetstr __ARGS((char *s, char_u **pp)); static int detected_8bit = FALSE; /* detected 8-bit terminal */ -struct builtin_term builtin_termcaps[] = +static struct builtin_term builtin_termcaps[] = { #if defined(FEAT_GUI) @@ -2418,9 +2418,9 @@ tltoa(i) * minimal tgoto() implementation. * no padding and we only parse for %i %d and %+char */ -char *tgoto __ARGS((char *, int, int)); +static char *tgoto __ARGS((char *, int, int)); - char * + static char * tgoto(cm, x, y) char *cm; int x, y; @@ -3491,7 +3491,7 @@ scroll_region_reset() * List of terminal codes that are currently recognized. */ -struct termcode +static struct termcode { char_u name[2]; /* termcap name of entry */ char_u *code; /* terminal code (in allocated memory) */ |