Skip to content

Commit 722db8c

Browse files
committed
Wrap a couple of long source lines
1 parent 0e9de18 commit 722db8c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cider-stacktrace.el

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,8 @@ This associates text properties to enable filtering and source navigation."
617617
'action (lambda (_button)
618618
(cider-jump-to (cider-find-file file)
619619
(cons line column))))
620-
(insert (propertize (format " at (%d:%d)" line column) 'font-lock-face message-face))))))
620+
(insert (propertize (format " at (%d:%d)" line column)
621+
'font-lock-face message-face))))))
621622

622623
(defun cider-stacktrace-render-cause (buffer cause num note)
623624
"Emit into BUFFER the CAUSE NUM, exception class, message, data, and NOTE."
@@ -638,7 +639,8 @@ This associates text properties to enable filtering and source navigation."
638639
(if (equal class "clojure.lang.Compiler$CompilerException")
639640
(cider-stacktrace-render-compile-error buffer cause)
640641
(cider-stacktrace-emit-indented
641-
(propertize (or message "(No message)") 'font-lock-face message-face) indent t))
642+
(propertize (or message "(No message)")
643+
'font-lock-face message-face) indent t))
642644
(insert "\n")
643645
(when data
644646
(cider-stacktrace-emit-indented

0 commit comments

Comments
 (0)