summaryrefslogtreecommitdiff
path: root/textproc/word2x/files/patch-col-align.cc
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/word2x/files/patch-col-align.cc')
-rw-r--r--textproc/word2x/files/patch-col-align.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/textproc/word2x/files/patch-col-align.cc b/textproc/word2x/files/patch-col-align.cc
new file mode 100644
index 000000000000..5d8bd38cfa41
--- /dev/null
+++ b/textproc/word2x/files/patch-col-align.cc
@@ -0,0 +1,20 @@
+--- 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;