aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calc
diff options
context:
space:
mode:
authorJay Belanger <[email protected]>2007-12-29 00:23:41 +0000
committerJay Belanger <[email protected]>2007-12-29 00:23:41 +0000
commit5fb4539b9edbfbf1b2b59b12fde9705a00663e70 (patch)
tree98c092eed0418187df43f851d76715eca086d793 /lisp/calc
parent702dbfd92c81d78749a3b2479ef434ac7ec0ba1c (diff)
(math-read-token): Fix misplaced parentheses.
Diffstat (limited to 'lisp/calc')
-rw-r--r--lisp/calc/calc-aent.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calc-aent.el b/lisp/calc/calc-aent.el
index 5b93a54439..22022d8b0c 100644
--- a/lisp/calc/calc-aent.el
+++ b/lisp/calc/calc-aent.el
@@ -775,9 +775,9 @@ in Calc algebraic input.")
(setq math-exp-token 'string
math-expr-data (math-match-substring math-exp-str 1)
math-exp-pos (match-end 0)))
- ((and (setq adfn (get calc-language 'math-lang-read)))
+ ((and (setq adfn (get calc-language 'math-lang-read))
(eval (nth 0 adfn))
- (eval (nth 1 adfn)))
+ (eval (nth 1 adfn))))
((eq (string-match "%%.*$" math-exp-str math-exp-pos) math-exp-pos)
(setq math-exp-pos (match-end 0))
(math-read-token))