1 ;;; last-chance.el --- dangling deterrence -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2016-2018 Free Software Foundation, Inc.
5 ;; Author: Thien-Thi Nguyen <ttn@gnu.org>
6 ;; Maintainer: emacs-devel@gnu.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
27 ;; Late 2016. In a recent build, the date in a ChangeLog file
28 ;; is not fontified. Turns out the face `change-log-date-face'
29 ;; was declared obsolete since 22.1 and removed 2016-06-23.
30 ;; (compile "git show c430f7e23fc2c22f251ace4254e37dea1452dfc3")
32 ;; This library provides a command `last-chance', which is a small
33 ;; combination of "git grep" and some regexp filtering. For example,
34 ;; if point is on the symbol `change-log-date-face' in the form:
36 ;; (define-obsolete-face-alias 'change-log-date-face ...)
40 ;; M-x last-chance RET
42 ;; will show you any references to `change-log-date-face' in the
43 ;; *.el files in a new buffer (in Grep mode). Hopefully you see
44 ;; only the obsolete declaration and can proceed w/ its removal.
45 ;; If not, please DTRT and refrain from the removal until those
46 ;; references are properly transitioned.
48 ;; [Insert "nobody reads ChangeLog files" lament, here. --ttn]
55 (defvar last-chance-grep-command
"git grep -n -H -F -e"
56 "Command that ends in \"-e\" to do the \"git grep\".
57 This should include -n, -H, -F.")
59 (defvar last-chance-uninteresting-regexps
62 ;; Add more `flush-lines' args here.
64 "List of regexps that match uninteresting \"git grep\" hits.")
66 (defvar-local last-chance-symbol nil
67 "Symbol set by `last-chance' for `last-chance-cleanup' to DTRT.")
69 (defun last-chance-cleanup (buffer status
)
70 "Filter lines in BUFFER; append STATUS and count of removed lines.
71 If BUFFER does not seem to be one created by `last-chance', do nothing.
72 This function is intended to be added to `compilation-finish-functions'."
73 (let ((name (buffer-local-value 'last-chance-symbol buffer
))
76 (with-current-buffer buffer
77 (setq bef
(count-lines (point-min) (point-max)))
78 (goto-char (point-min))
79 (search-forward last-chance-grep-command
)
81 (let ((inhibit-read-only t
))
82 (dolist (re last-chance-uninteresting-regexps
)
84 (keep-lines (format "\\_<%s\\_>" name
)))
85 (setq aft
(count-lines (point-min) (point-max)))
86 (goto-char (point-max))
87 (insert (format "(status: %s, lines removed: %d)"
88 (car (split-string status
"\n"))
91 (defun last-chance (symbol)
92 "Grep the repo for SYMBOL, filtering the hits.
93 This uses `last-chance-grep-command' to do the grep and the
94 regexps in `last-chance-uninteresting-regexps' to filter the hits.
95 Grepping is recursive starting under the dir that `vc-root-dir'
96 finds (or the default directory if `vc-root-dir' finds nothing).
97 Output goes to the *grep* buffer.
99 Interactively, Emacs queries for a symbol,
100 defaulting to the one at point."
101 (interactive (list (read (let ((one (symbol-at-point)))
103 (setq one
(symbol-name one
)))
108 (let ((default-directory (or (vc-root-dir)
110 (grep (format "%s %s"
111 last-chance-grep-command
113 (setf (buffer-local-value 'last-chance-symbol
115 (car compilation-in-progress
)))
118 (add-to-list 'compilation-finish-functions
119 'last-chance-cleanup
)
121 (provide 'last-chance
)
123 ;;; last-chance.el ends here