summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorforsyth <forsyth@vitanuova.com>2010-02-03 14:45:41 +0000
committerforsyth <forsyth@vitanuova.com>2010-02-03 14:45:41 +0000
commitad7de9e8db6963f4e715c21ee894011b62d0c984 (patch)
treefeae1bb93c6c4a5926fa9b29506c8c00dc1a1f9d
parent3ec40350a31198788ce5afc41b4cae28848f05ca (diff)
20100203-1445
-rw-r--r--CHANGES2
-rw-r--r--appl/lib/cfg.b2
-rw-r--r--dis/lib/cfg.disbin2060 -> 2072 bytes
3 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index c4a125da..e2bd0103 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+20100203
+ appl/lib/cfg.b treat \r as white space (issue 69, 70)
20100115
appl/cmd/tarfs.b man/4/tarfs changes to permission handling from mechiel [issue 220]
appl/spree/mkfile add explicit -I$ROOT/module [issue 209, powerman]
diff --git a/appl/lib/cfg.b b/appl/lib/cfg.b
index 49e60262..5350f669 100644
--- a/appl/lib/cfg.b
+++ b/appl/lib/cfg.b
@@ -80,7 +80,7 @@ loop:
continue;
'#' =>
break loop;
- ' ' or '\t' or '\n' =>
+ ' ' or '\t' or '\n' or '\r' =>
if (word == nil)
continue;
if (lastword != nil) {
diff --git a/dis/lib/cfg.dis b/dis/lib/cfg.dis
index 3760c5ef..0ecf2268 100644
--- a/dis/lib/cfg.dis
+++ b/dis/lib/cfg.dis
Binary files differ