summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-yank.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2007-06-20 04:17:27 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2007-06-20 04:17:27 +0000
commit84812f0e316b6e627639453b4106c8a36c472dc9 (patch)
tree3b037cc4919f60a272eddd970d2f9f741077f5d6 /lisp/calc/calc-yank.el
parent0de7d7143181bd763264f3ce260bf186ecdddabf (diff)
downloademacs-84812f0e316b6e627639453b4106c8a36c472dc9.tar.gz
(calc-finish-stack-edit): Let math-expr-opers equal the function
math-standard-ops rather than the variable math-standard-opers.
Diffstat (limited to 'lisp/calc/calc-yank.el')
-rw-r--r--lisp/calc/calc-yank.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-yank.el b/lisp/calc/calc-yank.el
index abd78e5f926..a872f69d83f 100644
--- a/lisp/calc/calc-yank.el
+++ b/lisp/calc/calc-yank.el
@@ -559,7 +559,7 @@ To cancel the edit, simply kill the *Calc Edit* buffer."
(aset str pos ?\,)))
(switch-to-buffer calc-original-buffer)
(let ((vals (let ((calc-language nil)
- (math-expr-opers math-standard-opers))
+ (math-expr-opers (math-standard-ops)))
(and (string-match "[^\n\t ]" str)
(math-read-exprs str)))))
(when (eq (car-safe vals) 'error)