andi Mon Feb 26 07:49:38 2001 EDT
Modified files:
/php4/ext/standard string.c
Log:
- Fix whitespace
Index: php4/ext/standard/string.c
diff -u php4/ext/standard/string.c:1.192 php4/ext/standard/string.c:1.193
--- php4/ext/standard/string.c:1.192 Mon Feb 26 05:04:00 2001
+++ php4/ext/standard/string.c Mon Feb 26 07:49:38 2001
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: string.c,v 1.192 2001/02/26 13:04:00 jmoore Exp $ */
+/* $Id: string.c,v 1.193 2001/02/26 15:49:38 andi Exp $ */
/* Synced with php 3.0 revision 1.193 1999-06-16 [ssb] */
@@ -378,7 +378,7 @@
l = 0;
while (newtext[i+l] != breakchar[0]) {
if (newtext[i+l] == '\0') {
- l --;
+ l--;
break;
}
l++;
@@ -392,7 +392,7 @@
newtext[i+l] = breakchar[0];
break;
}
- l --;
+ l--;
}
if (l == -1) {
/* couldn't break is backwards, try looking
forwards */
@@ -402,7 +402,7 @@
newtext[i+l] = breakchar[0];
break;
}
- l ++;
+ l++;
}
}
}
@@ -425,7 +425,7 @@
if (breakcharlen == 1 || strncmp(text+i+l,
breakchar, breakcharlen)==0)
break;
}
- l ++;
+ l++;
}
if (l >= linelength) {
pgr = l;
@@ -439,7 +439,7 @@
last = i + l + 1;
break;
}
- l --;
+ l--;
}
if (l == -1) {
/* couldn't break it backwards, try looking
forwards */
@@ -463,7 +463,7 @@
break;
}
}
- l ++;
+ l++;
}
}
i += l+1;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]