diff options
author | Andrea Corallo <akrl@sdf.org> | 2021-04-05 21:00:18 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2021-04-05 21:00:18 +0200 |
commit | 74b58f28ecbc6fe9d7a60c96c79acfdf2329ff73 (patch) | |
tree | b1e99508f836a1d12d17eb3072e14b0cfb2ba407 /lisp/calc/calc-alg.el | |
parent | 0a3e715e1f5e13874139b4678375b8f5704b800b (diff) | |
parent | 14d295871a93c37a33d558ec4e8d49a93b787d8e (diff) | |
download | emacs-74b58f28ecbc6fe9d7a60c96c79acfdf2329ff73.tar.gz emacs-74b58f28ecbc6fe9d7a60c96c79acfdf2329ff73.tar.bz2 emacs-74b58f28ecbc6fe9d7a60c96c79acfdf2329ff73.zip |
Merge remote-tracking branch 'savannah/master' into native-comp
Diffstat (limited to 'lisp/calc/calc-alg.el')
-rw-r--r-- | lisp/calc/calc-alg.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/calc/calc-alg.el b/lisp/calc/calc-alg.el index 1327cf0a39b..162026d092b 100644 --- a/lisp/calc/calc-alg.el +++ b/lisp/calc/calc-alg.el @@ -444,12 +444,12 @@ Code can refer to the expression to simplify via lexical variable `expr' and should return the simplified expression to use (or nil)." (declare (indent 1) (debug (sexp body))) (cons 'progn - (mapcar #'(lambda (func) - `(put ',func 'math-simplify - (nconc - (get ',func 'math-simplify) - (list - #'(lambda (expr) ,@code))))) + (mapcar (lambda (func) + `(put ',func 'math-simplify + (nconc + (get ',func 'math-simplify) + (list + (lambda (expr) ,@code))))) (if (symbolp funcs) (list funcs) funcs)))) (math-defsimplify (+ -) |