svn commit: trunk/busybox/editors

aldot at busybox.net aldot at busybox.net
Mon Oct 1 18:04:43 UTC 2007


Author: aldot
Date: 2007-10-01 11:04:42 -0700 (Mon, 01 Oct 2007)
New Revision: 20164

Log:
- ditch 2 bytes


Modified:
   trunk/busybox/editors/vi.c


Changeset:
Modified: trunk/busybox/editors/vi.c
===================================================================
--- trunk/busybox/editors/vi.c	2007-10-01 16:15:31 UTC (rev 20163)
+++ trunk/busybox/editors/vi.c	2007-10-01 18:04:42 UTC (rev 20164)
@@ -1721,7 +1721,7 @@
 }
 
 // find matching char of pair  ()  []  {}
-static char *find_pair(char * p, char c)
+static char *find_pair(char * p, const char c)
 {
 	char match, *q;
 	int dir, level;
@@ -1895,8 +1895,8 @@
 	"\n\tLast command repeat with \'.\'"
 #endif
 #if ENABLE_FEATURE_VI_YANKMARK
-	"\n\tLine marking with  'x"
-	"\n\tNamed buffers with  \"x"
+	"\n\tLine marking with 'x"
+	"\n\tNamed buffers with \"x"
 #endif
 #if ENABLE_FEATURE_VI_READONLY
 	"\n\tReadonly if vi is called as \"view\""




More information about the busybox-cvs mailing list