updated for version 7.0050
diff --git a/src/misc1.c b/src/misc1.c
index 4d7cf60..658c30e 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -23,7 +23,6 @@
#if defined(USE_EXE_NAME) && defined(MACOS_X)
static char_u *remove_tail_with_ext __ARGS((char_u *p, char_u *pend, char_u *ext));
#endif
-static int get_indent_str __ARGS((char_u *ptr, int ts));
static int copy_indent __ARGS((int size, char_u *src));
/*
@@ -63,7 +62,7 @@
* count the size (in window cells) of the indent in line "ptr", with
* 'tabstop' at "ts"
*/
- static int
+ int
get_indent_str(ptr, ts)
char_u *ptr;
int ts;
@@ -79,7 +78,7 @@
else
break;
}
- return (count);
+ return count;
}
/*