Skip to content

Commit e1d4d26

Browse files
author
Bozhidar Batsov
committed
Whitespace & indentation fixes
1 parent 864dd3e commit e1d4d26

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nrepl-client.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ then returned."
388388
(lambda (k2 v2)
389389
(nrepl-dict-put dict1 k2
390390
(nrepl--merge (nrepl-dict-get dict1 k2) v2
391-
(member k2 '("id" "session")))))
391+
(member k2 '("id" "session")))))
392392
dict2)
393393
dict1)
394394
((and (listp dict2) (listp dict1)) (append dict1 dict2))
@@ -412,7 +412,7 @@ The STUB slot stores a stack of nested, incompletely parsed objects.")
412412
"Decode a bencode list or dict starting at point.
413413
STACK is as in `nrepl--bdecode-1'."
414414
;; skip leading l or d
415-
(forward-char 1)
415+
(forward-char 1)
416416
(let* ((istack (nrepl--bdecode-1 stack))
417417
(pos0 (point))
418418
(info (car istack)))
@@ -709,7 +709,7 @@ the newly created client connection process."
709709

710710
(process-put client-proc :string-q (queue-create))
711711
(process-put client-proc :response-q (nrepl-response-queue))
712-
712+
713713
(with-current-buffer client-buf
714714
(-when-let (server-buf (and server-proc (process-buffer server-proc)))
715715
(setq nrepl-project-dir (buffer-local-value 'nrepl-project-dir server-buf)
@@ -723,7 +723,7 @@ the newly created client connection process."
723723
(process-buffer tunnel))
724724
nrepl-pending-requests (make-hash-table :test 'equal)
725725
nrepl-completed-requests (make-hash-table :test 'equal)))
726-
726+
727727
(nrepl-make-connection-default client-buf)
728728
(nrepl--init-client-sessions client-proc)
729729
(nrepl--init-connection-buffer client-buf replp)
@@ -1126,7 +1126,7 @@ The default buffer name is *nrepl-messages*."
11261126
(with-current-buffer buffer
11271127
(buffer-disable-undo)
11281128
(nrepl-messages-mode)
1129-
buffer))))
1129+
buffer))))
11301130

11311131

11321132
;;; Connection Buffer Management

0 commit comments

Comments
 (0)