Do not treat isolated CR in input data as new-line.
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 16 Jun 2010 03:41:12 +0000 (20:41 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 16 Jun 2010 03:41:37 +0000 (20:41 -0700)
commitadb78c1da5de2792a8f07b241e72b8bd341fd90b
tree50d40b7161905216b9620c1005aca01a4b9949e2
parentbe98214655822c442802194b3e374b7a98720ac6
Do not treat isolated CR in input data as new-line.

User "tvw" on IRC reported that PSPP failed to parse data that SPSS 18
accepted.  We found that the problem was carriage return (CR) characters
in the middle of a line.  PSPP treated these as new-lines, but SPSS did
not.  This commit adopts the SPSS behavior in PSPP and adjusts one test
that checks this behavior.

This will break reading some old Mac OS files, since Mac OS before version
10 used CR without LF as new-line.  Time will tell whether this is a real
problem for our users.
src/libpspp/str.c
tests/command/line-ends.sh