Skip to content

Commit

Permalink
Fix byte-compile warning
Browse files Browse the repository at this point in the history
federicotdn committed Jul 11, 2023
1 parent 4bc23d7 commit 00ae076
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions verb.el
Original file line number Diff line number Diff line change
@@ -1380,11 +1380,10 @@ After the user has finished modifying the buffer, they can press
SOURCE-WINDOW specifies which window must be selected when the request
is actually sent. WHERE specifies where the result should be shown
in."
(unwind-protect
(let ((new-rs (verb--request-spec-from-hierarchy)))
(verb-kill-buffer-and-window)
(select-window source-window)
(verb--request-spec-send new-rs where))))
(let ((new-rs (verb--request-spec-from-hierarchy)))
(verb-kill-buffer-and-window)
(select-window source-window)
(verb--request-spec-send new-rs where)))

;;;###autoload
(defun verb-kill-all-response-buffers (&optional keep-windows)

0 comments on commit 00ae076

Please sign in to comment.