Don't special-case MS-DOS line ends.
authorBen Pfaff <blp@gnu.org>
Tue, 25 Apr 2006 20:13:05 +0000 (20:13 +0000)
committerBen Pfaff <blp@gnu.org>
Tue, 25 Apr 2006 20:13:05 +0000 (20:13 +0000)
src/language/data-io/ChangeLog
src/language/data-io/print.c

index d6c0ba3c80e066a500e418f1baab5a7ab10efe08..9cdd1e547c510bb38b615515bbdc047cc965a944 100644 (file)
@@ -1,3 +1,10 @@
+Tue Apr 25 13:11:55 2006  Ben Pfaff  <blp@gnu.org>
+
+       * print.c: Don't special-case MS-DOS line terminators.
+       (macro LINE_END_WIDTH) Removed.
+       (alloc_line) Line ends are 1 byte.
+       (print_trns_proc) Just output \n for line end.
+
 Sun Apr 23 22:05:58 2006  Ben Pfaff  <blp@gnu.org>
 
        Continue reforming error message support.  In this phase, get rid
index 52828400f9382194b4e3c25f0e3f95f06612b7d2..2479b7c13f404b553504f437d9a229793ef384da 100644 (file)
@@ -846,13 +846,6 @@ dump_table (const struct file_handle *fh)
   tab_submit (t);
 }
 
-/* PORTME: The number of characters in a line terminator. */
-#ifdef __MSDOS__ 
-#define LINE_END_WIDTH 2       /* \r\n */
-#else
-#define LINE_END_WIDTH 1       /* \n */
-#endif
-
 /* Calculates the maximum possible line width and allocates a buffer
    big enough to contain it */
 static void
@@ -891,7 +884,7 @@ alloc_line (void)
       if (pot_w > w)
        w = pot_w;
     }
-  prt.max_width = w + LINE_END_WIDTH + 1;
+  prt.max_width = w + 2;
   prt.line = xmalloc (prt.max_width);
 }
 \f
@@ -933,13 +926,7 @@ print_trns_proc (void *trns_, struct ccase *c, int case_num UNUSED)
          {
            if ((t->options & PRT_CMD_MASK) == PRT_PRINT
                 || !(t->options & PRT_BINARY))
-             {
-               /* PORTME: Line ends. */
-#ifdef __MSDOS__
-               buf[len++] = '\r';
-#endif
-               buf[len++] = '\n';
-             }
+              buf[len++] = '\n';
 
            dfm_put_record (t->writer, buf, len);
          }