make macro errors less verbose
authorRobin Templeton <robin@terpri.org>
Fri, 18 Jul 2014 19:08:20 +0000 (15:08 -0400)
committerRobin Templeton <robin@terpri.org>
Mon, 20 Apr 2015 04:29:02 +0000 (00:29 -0400)
lisp/emacs-lisp/macroexp.el

index 31e1800..55e2ebf 100644 (file)
@@ -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.