Skip to content

Commit 2d04e9e

Browse files
committed
Fix a couple of indentation problems
1 parent c7fab50 commit 2d04e9e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cider-eldoc.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ This includes the arglist and ns and symbol name (if available)."
455455
(equal name-or-member "q"))
456456
(let ((arglists (cider-plist-get eldoc-plist "arglists")))
457457
(cider-plist-put eldoc-plist "arglists"
458-
(cider--eldoc-add-datomic-query-inputs-to-arglists arglists))))
458+
(cider--eldoc-add-datomic-query-inputs-to-arglists arglists))))
459459
;; if none of the clauses is successful, do cache the eldoc
460460
(t (setq cider-eldoc-last-symbol (list thing eldoc-plist))))
461461
;; middleware eldoc lookups are expensive, so we

nrepl-client.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ raw strings, not alphanumerics).
432432
[1] https://www.bittorrent.org/beps/bep_0003.html#bencoding"
433433
(let* ((sorted-keys (sort (nrepl-dict-keys dict)
434434
(lambda (a b)
435-
(string< a b))))
435+
(string< a b))))
436436
(sorted-dict (nrepl-dict)))
437437
(dolist (k sorted-keys sorted-dict)
438438
(nrepl-dict-put sorted-dict
@@ -1325,7 +1325,7 @@ described by `nrepl-message-buffer-name-template'."
13251325
;; the time-stamps are quite useful for debugging
13261326
(setq msg (cons (car msg)
13271327
(cider-plist-put (cdr msg) "time-stamp"
1328-
(format-time-string "%Y-%m-%0d %H:%M:%S.%N"))))
1328+
(format-time-string "%Y-%m-%0d %H:%M:%S.%N"))))
13291329
(with-current-buffer (nrepl-messages-buffer (current-buffer))
13301330
(setq buffer-read-only nil)
13311331
(when (> (buffer-size) nrepl-message-buffer-max-size)

0 commit comments

Comments
 (0)