aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-10-01 18:04:42 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-10-01 18:04:42 +0000
commitd24d5c84c2ef76573eb621b9e349e8cb83ae1ae3 (patch)
tree99cb834d35a0ac09a5a3d4a1f0b9c1d9af93c81f
parentfeb7ae7f01e13dce31118e5a58b09b237d25e58c (diff)
downloadbusybox-w32-d24d5c84c2ef76573eb621b9e349e8cb83ae1ae3.tar.gz
busybox-w32-d24d5c84c2ef76573eb621b9e349e8cb83ae1ae3.tar.bz2
busybox-w32-d24d5c84c2ef76573eb621b9e349e8cb83ae1ae3.zip
- ditch 2 bytes
-rw-r--r--editors/vi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/vi.c b/editors/vi.c
index eafe767f3..25c8234b4 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -1721,7 +1721,7 @@ static char *skip_thing(char * p, int linecnt, int dir, int type)
1721} 1721}
1722 1722
1723// find matching char of pair () [] {} 1723// find matching char of pair () [] {}
1724static char *find_pair(char * p, char c) 1724static char *find_pair(char * p, const char c)
1725{ 1725{
1726 char match, *q; 1726 char match, *q;
1727 int dir, level; 1727 int dir, level;
@@ -1895,8 +1895,8 @@ static void show_help(void)
1895 "\n\tLast command repeat with \'.\'" 1895 "\n\tLast command repeat with \'.\'"
1896#endif 1896#endif
1897#if ENABLE_FEATURE_VI_YANKMARK 1897#if ENABLE_FEATURE_VI_YANKMARK
1898 "\n\tLine marking with 'x" 1898 "\n\tLine marking with 'x"
1899 "\n\tNamed buffers with \"x" 1899 "\n\tNamed buffers with \"x"
1900#endif 1900#endif
1901#if ENABLE_FEATURE_VI_READONLY 1901#if ENABLE_FEATURE_VI_READONLY
1902 "\n\tReadonly if vi is called as \"view\"" 1902 "\n\tReadonly if vi is called as \"view\""