about summary refs log tree commit diff stats
path: root/001help.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-10-19 22:10:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-19 22:10:35 -0700
commit6c96a437cef5140197660a0903309f11c364bf78 (patch)
treeea3b5a4d90100329eeb58a76773a500a6bee71da /001help.cc
parent5a820205054a9c45a9b4dc71aa1f26b4612ec76d (diff)
downloadmu-6c96a437cef5140197660a0903309f11c364bf78.tar.gz
3522
Diffstat (limited to '001help.cc')
-rw-r--r--001help.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/001help.cc b/001help.cc
index 0f5147e8..0f60bf09 100644
--- a/001help.cc
+++ b/001help.cc
@@ -48,7 +48,7 @@ while (argc > 1 && starts_with(*arg, "--")) {
   // End Commandline Options(*arg)
   else
     cerr << "skipping unknown option " << *arg << '\n';
-  --argc; ++argv; ++arg;
+  --argc;  ++argv;  ++arg;
 }
 
 //:: Helper function used by the above fragment of code (and later layers too,
@@ -67,7 +67,7 @@ bool is_equal(char* s, const char* lit) {
 
 bool starts_with(const string& s, const string& pat) {
   string::const_iterator a=s.begin(), b=pat.begin();
-  for (/*nada*/; a!=s.end() && b!=pat.end(); ++a, ++b)
+  for (/*nada*/;  a!=s.end() && b!=pat.end();  ++a, ++b)
     if (*a != *b) return false;
   return b == pat.end();
 }