]> git.eshelyaron.com Git - emacs.git/commitdiff
(math-standard-opers): Lower the precedence of negation.
authorJay Belanger <jay.p.belanger@gmail.com>
Sat, 27 Oct 2007 20:24:52 +0000 (20:24 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Sat, 27 Oct 2007 20:24:52 +0000 (20:24 +0000)
lisp/calc/calc.el

index 913b02e003fb92212c0e099e540df6196fc09263..44e802d36b125b503f7bf83be5986318e72ef45f 100644 (file)
@@ -3531,8 +3531,6 @@ and all digits are kept, regardless of Calc's current precision."
 (defconst math-standard-opers
   '( ( "_"     calcFunc-subscr 1200 1201 )
      ( "%"     calcFunc-percent 1100 -1 )
-     ( "u+"    ident        -1 1000 )
-     ( "u-"    neg          -1 1000 197 )
      ( "u!"    calcFunc-lnot -1 1000 )
      ( "mod"   mod          400 400 185 )
      ( "+/-"   sdev         300 300 185 )
@@ -3540,6 +3538,8 @@ and all digits are kept, regardless of Calc's current precision."
      ( "!"     calcFunc-fact 210  -1 )
      ( "^"     ^             201 200 )
      ( "**"    ^             201 200 )
+     ( "u+"    ident        -1  197 )
+     ( "u-"    neg          -1  197 )
      ( "/"     /             190 191 )
      ( "%"     %             190 191 )
      ( "\\"    calcFunc-idiv 190 191 )