mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
3352fe7273
PR: 8522 Submitted by: maintainer
20 lines
421 B
Plaintext
20 lines
421 B
Plaintext
*** src/main/util.c.orig Sat May 9 09:27:27 1998
|
|
--- src/main/util.c Fri May 22 16:57:19 1998
|
|
***************
|
|
*** 582,588 ****
|
|
char *res;
|
|
|
|
for (x = 0; (*line)[x]; x++) {
|
|
! if (ap_isspace((*line)[x])) {
|
|
pos = x;
|
|
break;
|
|
}
|
|
--- 582,588 ----
|
|
char *res;
|
|
|
|
for (x = 0; (*line)[x]; x++) {
|
|
! if (ap_isspace((*line)[x]) && ((*line)[x] & 0x80)==0) {
|
|
pos = x;
|
|
break;
|
|
}
|