Skip to content

Commit 7363eee

Browse files
committed
Fix changelog and indentation
1 parent 5f926d7 commit 7363eee

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
## master (unreleased)
44

5-
- [#3600](https://github.com/clojure-emacs/cider/pull/3600): Fix scittle jack in when using `cider-jack-in-clj.
6-
75
### New features
86

97
- [#3622](https://github.com/clojure-emacs/cider/pull/3461): Basic support for using CIDER from [clojure-ts-mode](https://github.com/clojure-emacs/clojure-ts-mode).
@@ -19,6 +17,12 @@
1917
- Updates [Orchard](https://github.com/clojure-emacs/orchard/blob/v0.23.0/CHANGELOG.md#0230-2024-03-03).
2018
- Updates [Logjam](https://github.com/clojure-emacs/logjam/blob/v0.3.0/CHANGELOG.md#030-2024-03-03).
2119

20+
21+
### Bugs fixed
22+
23+
- [#3600](https://github.com/clojure-emacs/cider/pull/3600): Fix scittle jack in when using `cider-jack-in-clj`.
24+
25+
2226
## 1.13.1 (2024-02-01)
2327

2428
### Bugs fixed

cider-connection.el

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -460,12 +460,9 @@ But helps us know if this is a nbb repl, or not."
460460

461461
(defun cider--scittle-nrepl-version ()
462462
"Retrieve the underlying connection's scittle version."
463-
(with-current-buffer
464-
(cider-current-repl)
463+
(with-current-buffer (cider-current-repl)
465464
(when nrepl-versions
466-
(nrepl-dict-get
467-
nrepl-versions
468-
"scittle-nrepl"))))
465+
(nrepl-dict-get nrepl-versions "scittle-nrepl"))))
469466

470467
(defun cider-runtime ()
471468
"Return the runtime of the nREPl server."

0 commit comments

Comments
 (0)