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 117cf88 commit 4b4d2c0Copy full SHA for 4b4d2c0
xcb-debug.el
@@ -77,8 +77,9 @@ Here are some predefined candidates:
77
`(with-current-buffer (xcb-debug:-get-buffer)
78
(let (windows-eob)
79
;; Note windows whose point is at EOB.
80
- (dolist (w (get-buffer-window-list xcb-debug:buffer t 'nomini))
81
- (when (= (window-point w) (point-max))
+ (dolist (w (get-buffer-window-list (current-buffer) t 'nomini))
+ (when (and (window-live-p w)
82
+ (= (window-point w) (point-max)))
83
(push w windows-eob)))
84
(save-excursion
85
(goto-char (point-max))
0 commit comments