diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-30 19:00:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-30 19:00:15 +0200 |
commit | fd3e5dc97f06e54220a2c5b65980dd6adc2c5555 (patch) | |
tree | 204e2445390797f1ea8751e7f1f7d242884f154d /src/term.c | |
parent | a17d4c1934b008b9aa8a2d7cf085cfe76a690d9a (diff) | |
download | vim-git-fd3e5dc97f06e54220a2c5b65980dd6adc2c5555.tar.gz |
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/term.c b/src/term.c index f607575b1..2e0376ce1 100644 --- a/src/term.c +++ b/src/term.c @@ -2609,6 +2609,8 @@ out_char_nf(c) out_flush(); } +#if defined(FEAT_TITLE) || defined(FEAT_MOUSE_TTY) || defined(FEAT_GUI) \ + || defined(FEAT_TERMRESPONSE) || defined(PROTO) /* * A never-padding out_str. * use this whenever you don't want to run the string through tputs. @@ -2631,6 +2633,7 @@ out_str_nf(s) if (p_wd) out_flush(); } +#endif /* * out_str(s): Put a character string a byte at a time into the output buffer. @@ -4361,7 +4364,7 @@ check_termcode(max_offset, buf, buflen) * ### Y cursor position padded to 3 digits * (s-x) SHIFT key pressed - not pressed x not reporting * (c-x) CTRL key pressed - not pressed x not reporting - * \033\\ terminateing sequence + * \033\\ terminating sequence */ p = tp + slen; @@ -4607,7 +4610,7 @@ check_termcode(max_offset, buf, buflen) # ifdef FEAT_MOUSE_PTERM if (key_name[0] == (int)KS_PTERM_MOUSE) { - int button, num_clicks, action, mc, mr; + int button, num_clicks, action; p = tp + slen; |