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-vec.el | |
parent | e573299d40e5825584ed9e8bd58f5a8c2deee6fd (diff) | |
download | emacs-b49df7426b4647433b2309c4f320133e4ce37009.tar.gz emacs-b49df7426b4647433b2309c4f320133e4ce37009.tar.bz2 emacs-b49df7426b4647433b2309c4f320133e4ce37009.zip |
* 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-vec.el')
-rw-r--r-- | lisp/calc/calc-vec.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/calc/calc-vec.el b/lisp/calc/calc-vec.el index 5dfbc2d51f5..401a4f516c6 100644 --- a/lisp/calc/calc-vec.el +++ b/lisp/calc/calc-vec.el @@ -759,6 +759,7 @@ (math-reject-arg n "*Index out of range"))))) (defun calcFunc-subscr (mat n &optional m) + (if (eq (car-safe mat) 'var) nil) (setq mat (calcFunc-mrow mat n)) (if m (if (math-num-integerp n) |