diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2011-02-26 19:33:37 -0600 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2011-02-26 19:33:37 -0600 |
commit | b49df7426b4647433b2309c4f320133e4ce37009 (patch) | |
tree | 8ef508290e8111cdd506f5f838f10655be47d0db /lisp/calc/calc-math.el | |
parent | e573299d40e5825584ed9e8bd58f5a8c2deee6fd (diff) | |
download | emacs-b49df7426b4647433b2309c4f320133e4ce37009.tar.gz |
* calc/calc-ext.el (calc-init-extensions): Autoload `calc-l-prefix-help'
instead of `calc-ul-prefix-help'.
* calc/calc-math.el (calcFunc-log10): Don't signal an error in symbolic
mode.
* calc/calc-vec.el (calcFunc-subscr): Don't do anything if the first
argument is a variable.
Diffstat (limited to 'lisp/calc/calc-math.el')
-rw-r--r-- | lisp/calc/calc-math.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el index 185ed18ed42..92af9263b28 100644 --- a/lisp/calc/calc-math.el +++ b/lisp/calc/calc-math.el @@ -1574,7 +1574,7 @@ If this can't be done, return NIL." (if calc-infinite-mode '(neg (var inf var-inf)) (math-reject-arg x "*Logarithm of zero"))) - (calc-symbolic-mode (signal 'inexact-result nil)) + ;;(calc-symbolic-mode (signal 'inexact-result nil)) ((Math-numberp x) (math-with-extra-prec 2 (let ((xf (math-float x))) |