[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape c96548b498 3/3: Use error face on compilation fail
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape c96548b498 3/3: Use error face on compilation failed |
Date: |
Sun, 15 Dec 2024 18:58:04 -0500 (EST) |
branch: externals/dape
commit c96548b49853dc8cc8f1b71e93c2dde8a8a1e2f3
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Use error face on compilation failed
---
dape.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dape.el b/dape.el
index d30ec64158..500f629e70 100644
--- a/dape.el
+++ b/dape.el
@@ -2758,7 +2758,7 @@ Using BUFFER and STR."
(if (equal "finished\n" str)
(progn (funcall dape--compile-after-fn)
(run-hook-with-args 'dape-compile-hook buffer))
- (dape--message "Compilation failed %s" (string-trim-right str))))
+ (dape--warn "Compilation failed \"%s\"" (string-trim-right str))))
(defun dape--compile (config fn)
"Start compilation for CONFIG then call FN."