Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions full-ack.el
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ This can be used in `ack-root-directory-functions'."
(if (> c 0)
(when (eq ack-display-buffer 'after)
(display-buffer (current-buffer)))
(kill-buffer (current-buffer)))
(kill-buffer-and-window))
(message "Ack finished with %d match%s" c (if (eq c 1) "" "es"))))))

(defun ack-filter (proc output)
Expand Down Expand Up @@ -699,7 +699,8 @@ DIRECTORY is the root directory. If called interactively, it is determined by
(marker-buffer marker))
(compilation-goto-locus msg marker end)
(set-marker msg nil)
(set-marker end nil))))
(set-marker end nil)
(delete-other-windows))))

;;; ack-mode ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Expand Down