aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/calc/calc-ext.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a18344766f..3f603a6ad6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-16 Feng Li <[email protected]> (tiny change)
+
+ * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
+
2011-08-16 Alan Mackenzie <[email protected]>
* progmodes/cc-engine.el (c-state-cache-non-literal-place):
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el
index 6e05cdb07e..8b816665d9 100644
--- a/lisp/calc/calc-ext.el
+++ b/lisp/calc/calc-ext.el
@@ -2887,7 +2887,7 @@ If X is not an error form, return 1."
(cons 'progn
(mapcar #'(lambda (func)
`(put ',func 'math-integral-2
- `(nconc
+ (nconc
(get ',func 'math-integral-2)
(list #'(lambda (u v) ,@code)))))
(if (symbolp funcs) (list funcs) funcs))))