diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-01-14 00:38:28 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-01-14 15:07:16 -0500 |
commit | d86ebc7afb0f80a597d1361f54e838ce4689e36c (patch) | |
tree | 3874f9594796f75e7d1a97bf35b7d591a7389c9c /src/nvim/term.c | |
parent | 9b4f6fbd33ebd452d472b0333accfcb34e01173b (diff) | |
download | rneovim-d86ebc7afb0f80a597d1361f54e838ce4689e36c.tar.gz rneovim-d86ebc7afb0f80a597d1361f54e838ce4689e36c.tar.bz2 rneovim-d86ebc7afb0f80a597d1361f54e838ce4689e36c.zip |
Macro cleanup: PROTO
Regarding dict_lookup() in eval.c: both definitions are the same, the
only difference being the spacing between the indirection operator and
the indentation level.
Diffstat (limited to 'src/nvim/term.c')
-rw-r--r-- | src/nvim/term.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/term.c b/src/nvim/term.c index b78b01b68a..85e09afaca 100644 --- a/src/nvim/term.c +++ b/src/nvim/term.c @@ -1487,7 +1487,7 @@ set_mouse_termcode ( add_termcode(name, s, FALSE); } -# if (defined(UNIX) && defined(FEAT_MOUSE_TTY)) || defined(PROTO) +# if (defined(UNIX) && defined(FEAT_MOUSE_TTY)) void del_mouse_termcode ( char_u n /* KS_MOUSE, KS_NETTERM_MOUSE or KS_DEC_MOUSE */ @@ -1704,7 +1704,7 @@ static char_u term_7to8bit(char_u *p) } -#if !defined(HAVE_TGETENT) || defined(PROTO) +#if !defined(HAVE_TGETENT) char_u *tltoa(unsigned long i) { @@ -1945,7 +1945,7 @@ void term_delete_lines(int line_count) OUT_STR(tgoto((char *)T_CDL, 0, line_count)); } -#if defined(HAVE_TGETENT) || defined(PROTO) +#if defined(HAVE_TGETENT) void term_set_winpos(int x, int y) { /* Can't handle a negative value here */ @@ -2010,7 +2010,7 @@ static void term_color(char_u *s, int n) OUT_STR(tgoto((char *)s, 0, n)); } -#if defined(UNIX) || defined(MACOS_X) || defined(PROTO) +#if defined(UNIX) || defined(MACOS_X) /* * Generic function to set window title, using t_ts and t_fs. */ |