opnsense-ports/textproc/word2x/files/patch-col-align.cc
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

20 lines
511 B
C++

--- col-align.cc.orig Fri Jul 24 06:59:12 1998
+++ col-align.cc Mon Sep 14 10:30:36 1998
@@ -50,7 +50,7 @@
}
if (strlen(cdp)>(unsigned) max_wd[2])
max_wd[2]=strlen(cdp);
- for (lt_sp=0, sc=cdp; isspace(*sc); sc++, lt_sp++)
+ for (lt_sp=0, sc=cdp; isspace((unsigned char)*sc); sc++, lt_sp++)
{
if (*sc==CH_SUSPECT)
align_set=1;
@@ -62,7 +62,7 @@
{
if (*sc==CH_SUSPECT)
align_set=1;
- if (isspace(*sc))
+ if (isspace((unsigned char)*sc))
rt_sp++;
else
rt_sp=0;