aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRobin Templeton <[email protected]>2014-07-18 15:08:20 -0400
committerRobin Templeton <[email protected]>2015-04-20 00:29:02 -0400
commita608ff369cae4be96fc6af884f6af8d20ffed344 (patch)
tree4f316bf8fcbe97f0f4d71ae5effa295779f96c0a /lisp
parent6e1f17865f8c7ed262173282c5e2087388bf7d1c (diff)
make macro errors less verbose
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/macroexp.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/macroexp.el b/lisp/emacs-lisp/macroexp.el
index 31e18000c0..55e2ebf713 100644
--- a/lisp/emacs-lisp/macroexp.el
+++ b/lisp/emacs-lisp/macroexp.el
@@ -98,10 +98,8 @@ each clause."
(condition-case err
(apply handler form (cdr form))
(error
- (message "--------------------------------------------------")
- (backtrace)
(message "Compiler-macro error for %S: %S" (car form) err)
- form)))
+ form)))
(defun macroexp--funcall-if-compiled (_form)
"Pseudo function used internally by macroexp to delay warnings.