From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from scc-mailout-kit-01-web.scc.kit.edu (scc-mailout-kit-01-web.scc.kit.edu [129.13.231.93]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTP id 1c1a77f3; for ; Tue, 3 Mar 2015 16:56:03 -0500 (EST) Received: from asta-nat.asta.uni-karlsruhe.de ([172.22.63.82] helo=hekate.usta.de) by scc-mailout-kit-01.scc.kit.edu with esmtps (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (envelope-from ) id 1YSunJ-0006XN-EB; Tue, 03 Mar 2015 22:56:02 +0100 Received: from donnerwolke.usta.de ([172.24.96.3]) by hekate.usta.de with esmtp (Exim 4.77) (envelope-from ) id 1YSunJ-0004OC-9B; Tue, 03 Mar 2015 22:56:01 +0100 Received: from athene.usta.de ([172.24.96.10]) by donnerwolke.usta.de with esmtp (Exim 4.80) (envelope-from ) id 1YSunJ-0000SR-46; Tue, 03 Mar 2015 22:56:01 +0100 Received: from localhost (1031@localhost [local]); by localhost (OpenSMTPD) with ESMTPA id 0db3bf3f; Tue, 3 Mar 2015 22:56:01 +0100 (CET) Date: Tue, 3 Mar 2015 22:56:01 +0100 From: Ingo Schwarze To: "Anthony J. Bentley" Cc: tech@mdocml.bsd.lv Subject: Re: some unicode for eqn(7) Message-ID: <20150303215601.GJ1111@athene.usta.de> References: <7206.1425412195@CATHET.us> X-Mailinglist: mdocml-tech Reply-To: tech@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7206.1425412195@CATHET.us> User-Agent: Mutt/1.5.23 (2014-03-12) Hi Anthony, Anthony J. Bentley wrote on Tue, Mar 03, 2015 at 12:49:55PM -0700: > In eqn, "prime" is equivalent to \(fm, and - is equivalent to \(mi. OK schwarze@ Ingo > Index: eqn.c > =================================================================== > RCS file: /cvs/src/usr.bin/mandoc/eqn.c,v > retrieving revision 1.20 > diff -u -p -u -p -r1.20 eqn.c > --- eqn.c 28 Jan 2015 21:10:28 -0000 1.20 > +++ eqn.c 3 Mar 2015 19:42:20 -0000 > @@ -192,6 +192,7 @@ enum eqn_symt { > EQNSYM_equiv, > EQNSYM_lessequal, > EQNSYM_moreequal, > + EQNSYM_minus, > EQNSYM__MAX > }; > > @@ -247,7 +248,7 @@ static const struct eqnsym eqnsyms[EQNSY > { "cdot", "pc" }, /* EQNSYM_cdot */ > { "nothing", "&" }, /* EQNSYM_nothing */ > { "approx", "~~" }, /* EQNSYM_approx */ > - { "prime", "aq" }, /* EQNSYM_prime */ > + { "prime", "fm" }, /* EQNSYM_prime */ > { "half", "12" }, /* EQNSYM_half */ > { "partial", "pd" }, /* EQNSYM_partial */ > { "inf", "if" }, /* EQNSYM_inf */ > @@ -260,6 +261,7 @@ static const struct eqnsym eqnsyms[EQNSY > { "==", "==" }, /* EQNSYM_equiv */ > { "<=", "<=" }, /* EQNSYM_lessequal */ > { ">=", ">=" }, /* EQNSYM_moreequal */ > + { "-", "mi" }, /* EQNSYM_minus */ > }; > > static struct eqn_box *eqn_box_alloc(struct eqn_node *, struct eqn_box *); -- To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv