9723799cf6f1a8fb714ae1493b224b8e91aebf09
tdreszer
  Mon Jul 30 12:17:38 2012 -0700
Making final pass through tree of checkins as dictated by Jim. None of these changes should affect executables in any way. This pass is due to expanding fingerprint caused by kompare.
diff --git src/lib/common.c src/lib/common.c
index 4cd0f31..b253d92 100644
--- src/lib/common.c
+++ src/lib/common.c
@@ -1363,34 +1363,32 @@
 {
 int ix;
 char *p=line;
 while (p!=NULL && *p!='\0')
     {
     for (ix = 0;
          word[ix] != '\0' && word[ix] == *p;
          ix++,p++) ; // advance as long as they match
     if (ix == strlen(word))
         {
         if (*p=='\0'
         || *p==delimit
         || (delimit == ' ' && isspace(*p)))
             return p - ix; // matched and delimited
         }
-    for (;   *p!='\0'
-         && *p!=delimit
-         && (delimit != ' ' || !isspace(*p));
-        p++) ;    // advance to next delimit
+    for (;   *p!='\0' && *p!=delimit && (delimit != ' ' || !isspace(*p)); p++)
+        ;  // advance to next delimit
     if (*p!='\0')
         {
         p++;
         continue;  // delimited so start again after delimit
         }
     }
 return NULL;
 }
 
 char *rStringIn(char *needle, char *haystack)
 /* Return last position of needle in haystack, or NULL if it's not there. */
 {
 int nSize = strlen(needle);
 char *pos;
 for (pos = haystack + strlen(haystack) - nSize; pos >= haystack; pos -= 1)