source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* pod2mdoc: Remove a condition branch already accepted at the start of
@ 2014-04-01 11:58 kristaps
  0 siblings, 0 replies; only message in thread
From: kristaps @ 2014-04-01 11:58 UTC (permalink / raw)
  To: source

Log Message:
-----------
Remove a condition branch already accepted at the start of loop.

Modified Files:
--------------
    pod2mdoc:
        pod2mdoc.c

Revision Data
-------------
Index: pod2mdoc.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/pod2mdoc/pod2mdoc.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -Lpod2mdoc.c -Lpod2mdoc.c -u -p -r1.11 -r1.12
--- pod2mdoc.c
+++ pod2mdoc.c
@@ -817,6 +817,26 @@ ordinary(struct state *st, const char *b
 				printf("\\&");
 			else if ('\n' == last && '\'' == buf[start])
 				printf("\\&");
+#if notyet
+			/*
+			 * If we're in the SYNOPSIS, have square
+			 * brackets indicate that we're opening and
+			 * closing an optional context.
+			 */
+			if (SECT_SYNOPSIS == st->sect) {
+				if ('[' == buf[start] || 
+					']' == buf[start]) {
+					if (last != '\n')
+						putchar('\n');
+					if ('[' == buf[start]) 
+						printf(".Oo\n");
+					else
+						printf(".Oc\n");
+					start++;
+					continue;
+				}
+			}
+#endif
 			putchar(last = buf[start++]);
 			if ('\\' == last)
 				putchar('e');
@@ -861,19 +881,7 @@ ordinary(struct state *st, const char *b
 			for ( ; start < end; start++)
 				if (' ' != buf[start] && '\t' != buf[start])
 					break;
-		} else if (start < end) {
-			/* 
-			 * Default: print the character. 
-			 * Escape initial control characters.
-			 */
-			if ('\n' == last && '.' == buf[start])
-				printf("\\&");
-			else if ('\n' == last && '\'' == buf[start])
-				printf("\\&");
-			putchar(last = buf[start++]);
-			if ('\\' == last)
-				putchar('e');
-		}
+		} 
 	}
 
 	if (last != '\n')
--
 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:[~2014-04-01 11:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-01 11:58 pod2mdoc: Remove a condition branch already accepted at the start of kristaps

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).