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.
This commit is contained in:
Michael Reed
2015-01-14 00:38:28 -05:00
parent 9b4f6fbd33
commit d86ebc7afb
29 changed files with 51 additions and 59 deletions

View File

@@ -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.
*/