From e416cc264f516dffda5d5702bbeecd388646bd27 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 4 Mar 2015 12:19:49 +0000 Subject: in eqn, "prime" is equivalent to \(fm, and - is equivalent to \(mi; patch from bentley@ --- eqn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eqn.c b/eqn.c index 36662c9b..72ed298a 100644 --- a/eqn.c +++ b/eqn.c @@ -194,6 +194,7 @@ enum eqn_symt { EQNSYM_equiv, EQNSYM_lessequal, EQNSYM_moreequal, + EQNSYM_minus, EQNSYM__MAX }; @@ -249,7 +250,7 @@ static const struct eqnsym eqnsyms[EQNSYM__MAX] = { { "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 */ @@ -262,6 +263,7 @@ static const struct eqnsym eqnsyms[EQNSYM__MAX] = { { "==", "==" }, /* EQNSYM_equiv */ { "<=", "<=" }, /* EQNSYM_lessequal */ { ">=", ">=" }, /* EQNSYM_moreequal */ + { "-", "mi" }, /* EQNSYM_minus */ }; static struct eqn_box *eqn_box_alloc(struct eqn_node *, struct eqn_box *); -- cgit