Ticket #66716: patch-manopen-flex.diff
File patch-manopen-flex.diff, 1.2 KB (added by kencu (Ken), 20 months ago) |
---|
-
./ManOpen/cat2html.tproj/cat2html.l
old new 116 116 117 117 static void emitBackspacedLetters(char *charblock, yy_size_t lengthLeft, int doBold) 118 118 { 119 /* If there 's a trailing backspace, then both letters are deleted, so print nothing */119 /* If there is a trailing backspace, then both letters are deleted, so print nothing */ 120 120 if (lengthLeft >= 4 && charblock[3] == '\010') 121 121 return; 122 122 … … 273 273 /* 274 274 * nroff bullets 275 275 */ 276 o\010"+" emitRaw("·"); // "•" does n't work276 o\010"+" emitRaw("·"); // "•" does not work 277 277 "+"\010o emitRaw("·"); 278 278 o\010o\010"+"\010"+" emitRaw("·"); 279 279 "+"\010"+\010"o\010o emitRaw("·"); … … 352 352 353 353 yy_flex_debug = 0; 354 354 355 /* Keep the same args as cat2rtf, even though -s does n't really make much difference */355 /* Keep the same args as cat2rtf, even though -s does not really make much difference */ 356 356 while ((c = getopt(argc, argv, "dgGiISs:lH")) != EOF) 357 357 { 358 358 switch( c ) {