branch: externals/dape commit c96548b49853dc8cc8f1b71e93c2dde8a8a1e2f3 Author: Daniel Pettersson <dan...@dpettersson.net> Commit: Daniel Pettersson <dan...@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."