branch: externals/dape
commit b8179dec3e9a7d9ea3cfdcde7e62a404e1a68251
Author: Daniel Pettersson <[email protected]>
Commit: Daniel Pettersson <[email protected]>
Fix dape--compile let* binding
---
dape.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dape.el b/dape.el
index de8e94a4ed..356218336a 100644
--- a/dape.el
+++ b/dape.el
@@ -3056,9 +3056,9 @@ Using BUFFER and STR."
(defun dape--compile (config fn)
"Start compilation for CONFIG then call FN."
- (let ((default-directory (dape--guess-root config))
- (command (dape-config-get config 'compile))
- (buffer (funcall dape-compile-function command)))
+ (let* ((default-directory (dape--guess-root config))
+ (command (dape-config-get config 'compile))
+ (buffer (funcall dape-compile-function command)))
(if buffer
(with-current-buffer buffer
(setq dape--compile-after-fn fn)