Skip to content

Commit

Permalink
Doco for PR #3673.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilHudson committed May 21, 2024
1 parent c2d22c4 commit 1ff9662
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

### Bugs fixed

- [#3673](https://github.com/clojure-emacs/cider/pull/3673): Fix buggy `special-display-buffer-names` check.
- [#3600](https://github.com/clojure-emacs/cider/pull/3600): Fix scittle jack-in when using `cider-jack-in-clj`.
- [#3663](https://github.com/clojure-emacs/cider/issues/3663): Fix `cider-interactive-eval-override` invocation.

Expand Down
3 changes: 3 additions & 0 deletions cider-popup.el
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ by adding BUFFER-NAME to the `special-display-buffer-names' list."
;; another time through `cider-popup-buffer-display'):
(if (and (boundp 'special-display-buffer-names)
(seq-find (lambda (entry)
;; Fix issue #3672 Phil Hudson 2024-05-21
;; entry can be either a list or a string
;; Previous code falsely assumed entry is always a list
(equal (if (listp entry) (car entry) entry) buffer-name))
special-display-buffer-names))
(progn
Expand Down

0 comments on commit 1ff9662

Please sign in to comment.