[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dape 32437c0f9a 3/4: Formatting fixups
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dape 32437c0f9a 3/4: Formatting fixups |
Date: |
Sat, 16 Nov 2024 06:57:41 -0500 (EST) |
branch: externals/dape
commit 32437c0f9a6082c13b7b49b59e30088a8eb99253
Author: Daniel Pettersson <daniel@dpettersson.net>
Commit: Daniel Pettersson <daniel@dpettersson.net>
Formatting fixups
---
dape.el | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/dape.el b/dape.el
index e28c9fca38..17e239207f 100644
--- a/dape.el
+++ b/dape.el
@@ -3981,8 +3981,7 @@ current buffer with CONN config."
dape--connection)))
(cl-loop with modules = (dape--modules conn)
with table = (make-gdb-table)
- for module in (reverse modules)
- do
+ for module in (reverse modules) do
(gdb-table-add-row
table
(list
@@ -5185,12 +5184,12 @@ See `dape--config-mode-p' how \"valid\" is defined."
(or
;; Take `dape-command' if exist
(when dape-command
- (dape--config-to-string (car dape-command)
- (cdr dape-command)))
+ (dape--config-to-string (car dape-command) (cdr dape-command)))
;; Take first valid history item
(seq-find (lambda (str)
(ignore-errors
- (thread-first (dape--config-from-string str) (car)
+ (thread-first (dape--config-from-string str)
+ (car)
(dape--config-to-string nil)
(member suggested-configs))))
dape-history)