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

    Fix missing newline for "stopped" event description
---
 dape.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dape.el b/dape.el
index 3c328df0fa..cec20d7bc2 100644
--- a/dape.el
+++ b/dape.el
@@ -989,7 +989,7 @@ Starts a new process as per request of the debug adapter."
                      (dape--callback
                       (dape--update process)))
   (when-let ((desc (plist-get body :description)))
-    (dape--repl-insert-text desc
+    (dape--repl-insert-text (concat desc "\n")
                             (if (equal "exception"
                                        (plist-get body :reason))
                                 'error

Reply via email to