]> git.eshelyaron.com Git - emacs.git/commitdiff
* admin/last-chance.el (last-chance): Use `grep`s return value
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 3 Jan 2021 22:25:06 +0000 (17:25 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 3 Jan 2021 22:25:06 +0000 (17:25 -0500)
(compilation-finish-functions): Only set it buffer-locally.

admin/last-chance.el

index fd5b8e9bd7a7aa905c9ce905a37ea4b18f04b6f0..e8021129e30444f13f55437ce30c7cc61ff7e557 100644 (file)
@@ -105,18 +105,14 @@ defaulting to the one at point."
                               "Symbol: " obarray
                               nil nil
                               one nil one)))))
-  (let ((default-directory (or (vc-root-dir)
-                               default-directory)))
-    (grep (format "%s %s"
-                  last-chance-grep-command
-                  symbol)))
-  (setf (buffer-local-value 'last-chance-symbol
-                            (process-buffer
-                             (car compilation-in-progress)))
-        symbol))
-
-(add-to-list 'compilation-finish-functions
-             'last-chance-cleanup)
+  (with-current-buffer
+      (let ((default-directory (or (vc-root-dir)
+                                   default-directory)))
+        (grep (format "%s %s"
+                      last-chance-grep-command
+                      symbol)))
+    (add-hook 'compilation-finish-functions #'last-chance-cleanup nil t)
+    (setq-local last-chance-symbol symbol)))
 
 (provide 'last-chance)