We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf55e90 commit 4e0304aCopy full SHA for 4e0304a
cider-overlays.el
@@ -241,9 +241,7 @@ overlay."
241
(cider--remove-result-overlay-after-command))))
242
(when-let* ((win (get-buffer-window buffer)))
243
;; Left edge is visible.
244
- (when (and (<= (window-start win) (point))
245
- ;; In 24.3 `<=' is still a binary perdicate.
246
- (<= (point) (window-end win))
+ (when (and (<= (window-start win) (point) (window-end win))
247
;; Right edge is visible. This is a little conservative
248
;; if the overlay contains line breaks.
249
(or (< (+ (current-column) (string-width value))
0 commit comments