From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id bd746223 for ; Sat, 15 Jul 2017 11:26:49 -0500 (EST) Date: Sat, 15 Jul 2017 11:26:49 -0500 (EST) Message-Id: <15958594671894868411.enqueue@fantadrom.bsd.lv> X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: print the right character for mathematical overbar; from X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- print the right character for mathematical overbar; from bentley@ Modified Files: -------------- mandoc: eqn.c mandoc/regress/eqn/subsup: precedence.out_ascii precedence.out_html mandoc/regress/eqn/unary: diacrit.out_ascii diacrit.out_html Revision Data ------------- Index: precedence.out_html =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/eqn/subsup/precedence.out_html,v retrieving revision 1.2 retrieving revision 1.3 diff -Lregress/eqn/subsup/precedence.out_html -Lregress/eqn/subsup/precedence.out_html -u -p -r1.2 -r1.3 --- regress/eqn/subsup/precedence.out_html +++ regress/eqn/subsup/precedence.out_html @@ -1 +1 @@ -x^1_2+e~x^s;III+III +x^1_2+e~x^s;III+III Index: precedence.out_ascii =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/eqn/subsup/precedence.out_ascii,v retrieving revision 1.2 retrieving revision 1.3 diff -Lregress/eqn/subsup/precedence.out_ascii -Lregress/eqn/subsup/precedence.out_ascii -u -p -r1.2 -r1.3 --- regress/eqn/subsup/precedence.out_ascii +++ regress/eqn/subsup/precedence.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE ssuubbssuupp--pprreecceeddeennccee - precedence of subscripts and superscripts DDEESSCCRRIIPPTTIIOONN - initial text (_x^)_(1_)^2 + (_e~)^((_x^)__s<->) ; I_II^_I + I^(II__I) final text + initial text (_x^)_(1_)^2- + (_e~)^((_x^)__s<->) ; I_II^_I + I^(II__I) final text OpenBSD July 6, 2017 OpenBSD Index: eqn.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/eqn.c,v retrieving revision 1.77 retrieving revision 1.78 diff -Leqn.c -Leqn.c -u -p -r1.77 -r1.78 --- eqn.c +++ eqn.c @@ -717,7 +717,7 @@ next_tok: parent->bottom = mandoc_strdup("\\[ul]"); break; case EQN_TOK_BAR: - parent->top = mandoc_strdup("\\[rl]"); + parent->top = mandoc_strdup("\\[rn]"); break; case EQN_TOK_DOT: parent->top = mandoc_strdup("\\[a.]"); Index: diacrit.out_ascii =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/eqn/unary/diacrit.out_ascii,v retrieving revision 1.4 retrieving revision 1.5 diff -Lregress/eqn/unary/diacrit.out_ascii -Lregress/eqn/unary/diacrit.out_ascii -u -p -r1.4 -r1.5 --- regress/eqn/unary/diacrit.out_ascii +++ regress/eqn/unary/diacrit.out_ascii @@ -4,6 +4,6 @@ NNAAMMEE uunnaarryy--ddiiaaccrriitt - diacritical marks in equations DDEESSCCRRIIPPTTIIOONN - initial text _x. _x" _x^ _x~ _x-> _x<-> (_x + _y) (_x + _y)_ _x~^ final text + initial text _x. _x" _x^ _x~ _x-> _x<-> (_x + _y)- (_x + _y)_ _x~^ final text OpenBSD July 6, 2017 OpenBSD Index: diacrit.out_html =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/eqn/unary/diacrit.out_html,v retrieving revision 1.4 retrieving revision 1.5 diff -Lregress/eqn/unary/diacrit.out_html -Lregress/eqn/unary/diacrit.out_html -u -p -r1.4 -r1.5 --- regress/eqn/unary/diacrit.out_html +++ regress/eqn/unary/diacrit.out_html @@ -1 +1 @@ -x˙x¨x^x~xxx+yx+y_x~^ +x˙x¨x^x~xxx+yx+y_x~^ -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv