diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2007-06-20 04:13:06 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2007-06-20 04:13:06 +0000 |
commit | 2a6f048c0f85a345a69e9f111a637770eaabb361 (patch) | |
tree | 9eb79c3dd43c4b4d1e3429fdf4bd6d9ab623d101 /lisp/calc | |
parent | 16819e4854be13e976bd8845c46562ccec3ffe5b (diff) | |
download | emacs-2a6f048c0f85a345a69e9f111a637770eaabb361.tar.gz |
(calc-embedded-finish-edit): Let math-expr-opers equal the function
math-standard-ops rather than the variable math-standard-opers.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-embed.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-embed.el b/lisp/calc/calc-embed.el index a064905943f..f31c19e3390 100644 --- a/lisp/calc/calc-embed.el +++ b/lisp/calc/calc-embed.el @@ -403,7 +403,7 @@ (let ((val (save-excursion (set-buffer (aref info 1)) (let ((calc-language nil) - (math-expr-opers math-standard-opers)) + (math-expr-opers (math-standard-ops))) (math-read-expr str))))) (if (eq (car-safe val) 'error) (progn |