branch: elpa/cider
commit 1180bb3c2adde928972c4ac1f2fb20eaa3d8416f
Author: yuhan0 <qyth...@gmail.com>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Remove references to <= 1.9-style error messages
---
 cider-eval.el | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/cider-eval.el b/cider-eval.el
index e062a467aa..4eda59d8ff 100644
--- a/cider-eval.el
+++ b/cider-eval.el
@@ -594,7 +594,8 @@ It delegates the actual error content to the eval or op 
handler."
     ":" (group-n 3 (one-or-more (any "-" digit)))
     (optional
      ":" (group-n 4 (one-or-more (any "-" digit))))
-    " - "))
+    " - ")
+  "Regexp matching various non-error messages, e.g. reflection warnings.")
 
 ;; Please keep this in sync with `cider-clojure-compilation-error-regexp',
 ;; which is a subset of these regexes.
@@ -605,8 +606,6 @@ It delegates the actual error content to the eval or op 
handler."
    'nogroup)
   "A few example values that will match:
 \"Reflection warning, /tmp/foo/src/foo/core.clj:14:1 - \"
-\"CompilerException java.lang.RuntimeException: Unable to resolve symbol: \\
-lol in this context, compiling:(/foo/core.clj:10:1)\"
 \"Syntax error compiling at (src/workspace_service.clj:227:3).\"
 \"Unexpected error (ClassCastException) macroexpanding defmulti at 
(src/haystack/parser.cljc:21:1).\"")
 
@@ -618,8 +617,6 @@ lol in this context, compiling:(/foo/core.clj:10:1)\"
 but excluding warnings such as reflection warnings.
 
 A few example values that will match:
-\"CompilerException java.lang.RuntimeException: Unable to resolve symbol: \\
-lol in this context, compiling:(/foo/core.clj:10:1)\"
 \"Syntax error compiling at (src/workspace_service.clj:227:3).\"
 \"Unexpected error (ClassCastException) macroexpanding defmulti at 
(src/haystack/parser.cljc:21:1).\"")
 

Reply via email to