source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: Completely delete all carriage return characters from the input.
@ 2015-02-20 22:41 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2015-02-20 22:41 UTC (permalink / raw)
  To: source

Log Message:
-----------
Completely delete all carriage return characters from the input.
No change to messages about them (ignore them right before line feeds,
report errors elsewhere).
naddy@ found a manual in the wild containing lots of these (ysm(1)),
and i can't imagine a situation where dropping them could be problematic.

Modified Files:
--------------
    mdocml:
        read.c

Revision Data
-------------
Index: read.c
===================================================================
RCS file: /home/cvs/mdocml/mdocml/read.c,v
retrieving revision 1.126
retrieving revision 1.127
diff -Lread.c -Lread.c -u -p -r1.126 -r1.127
--- read.c
+++ read.c
@@ -399,7 +399,8 @@ mparse_buf_r(struct mparse *curp, struct
 				    MANDOCERR_CHAR_UNSUPP,
 				    curp, curp->line, pos, "0x%x", c);
 				i++;
-				ln.buf[pos++] = '?';
+				if (c != '\r')
+					ln.buf[pos++] = '?';
 				continue;
 			}
 
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-02-20 22:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-20 22:41 mdocml: Completely delete all carriage return characters from the input schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).