- ditch 2 bytes
diff --git a/editors/vi.c b/editors/vi.c
index eafe767..25c8234 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -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\""