diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-12 14:29:27 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-12 14:29:27 +0000 |
commit | 4399ef4764584a24080670b4869cb8b5d31a4f78 (patch) | |
tree | c47e4671d16eeeadc9aa0b9a9cb19576e7c653b9 /src/misc1.c | |
parent | b11bd7e43f6cdca944dceebaa3c8012d6bf1a74e (diff) | |
download | vim-git-4399ef4764584a24080670b4869cb8b5d31a4f78.tar.gz |
updated for version 7.0050
Diffstat (limited to 'src/misc1.c')
-rw-r--r-- | src/misc1.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/misc1.c b/src/misc1.c index 4d7cf6028..658c30e80 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -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; } /* |