0
0
mirror of https://github.com/vim/vim.git synced 2025-10-17 07:44:28 -04:00

updated for version 7.0050

This commit is contained in:
Bram Moolenaar
2005-02-12 14:29:27 +00:00
parent b11bd7e43f
commit 4399ef4764
44 changed files with 556 additions and 131 deletions

View File

@@ -23,7 +23,6 @@ static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
#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 @@ get_indent_buf(buf, lnum)
* 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 @@ get_indent_str(ptr, ts)
else
break;
}
return (count);
return count;
}
/*