branch: externals/dape
commit 9eebb3c2466345b61ffc67d9d6b1424e13237001
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>

    Fix missing newline from compilation failed msg
---
 dape.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dape.el b/dape.el
index cec20d7bc2..ee1949e97f 100644
--- a/dape.el
+++ b/dape.el
@@ -1416,7 +1416,7 @@ Removes itself on execution."
     (run-hook-with-args 'dape-compile-compile-hooks buffer)
     (dape dape--name (plist-put (copy-tree dape--config) 'compile nil)))
    (t
-    (dape--repl-insert-text (format "* Compilation failed %s *" str)))))
+    (dape--repl-insert-text (format "* Compilation failed %s *\n" str)))))
 
 (defun dape--compile (name config)
   "Start compilation for NAME and CONFIG."

Reply via email to