From: Jay Belanger Date: Fri, 16 Nov 2007 04:15:23 +0000 (+0000) Subject: (math-oper-table): Fix typo. Reduce precedence of "/" for TeX. X-Git-Tag: emacs-pretest-23.0.90~9704 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fda9b316f84dbc6d68e6cb74b386ee4b92d81b31;p=emacs.git (math-oper-table): Fix typo. Reduce precedence of "/" for TeX. --- diff --git a/lisp/calc/calc-lang.el b/lisp/calc/calc-lang.el index 3871a1b0f09..7f976d20554 100644 --- a/lisp/calc/calc-lang.el +++ b/lisp/calc/calc-lang.el @@ -354,10 +354,10 @@ ( "\\times" * 191 190 ) ( "*" * 191 190 ) ( "2x" * 191 190 ) - ( "/" / 185 186 ) ( "+" + 180 181 ) ( "-" - 180 181 ) ( "\\over" / 170 171 ) + ( "/" / 170 171 ) ( "\\choose" calcFunc-choose 170 171 ) ( "\\mod" % 170 171 ) ( "<" calcFunc-lt 160 161 ) @@ -496,7 +496,7 @@ ( "\\Vec" calcFunc-VEC -1 950 ) ( "\\dddot" calcFunc-dddot -1 950 ) ( "\\ddddot" calcFunc-ddddot -1 950 ) - ( "\div" / 170 171 ) + ( "\\div" / 170 171 ) ( "\\le" calcFunc-leq 160 161 ) ( "\\leqq" calcFunc-leq 160 161 ) ( "\\leqsland" calcFunc-leq 160 161 )