]> git.eshelyaron.com Git - emacs.git/commitdiff
last-chance: Also ignore NEWS files + typo fixes
authorThien-Thi Nguyen <ttn@gnu.org>
Fri, 30 Dec 2016 06:13:17 +0000 (07:13 +0100)
committerThien-Thi Nguyen <ttn@gnu.org>
Fri, 30 Dec 2016 06:15:10 +0000 (07:15 +0100)
* admin/last-chance.el: Fix typo in copyright notice.
(last-chance-uninteresting-regexps): Add entry to match NEWS files.
(last-chance-cleanup): Fix typo in docstring.

admin/last-chance.el

index 5151a7562dd71eb5abaca0dabb070411e01007f4..02df7dea81b378326ad9d48fd88d9f95f07e2be1 100644 (file)
@@ -1,6 +1,6 @@
 ;;; last-chance.el --- dangling deterrence     -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2000-2016 Free Software Foundation, Inc.
+;; Copyright (C) 2016 Free Software Foundation, Inc.
 
 ;; Author: Thien-Thi Nguyen <ttn@gnu.org>
 ;; Maintainer: emacs-devel@gnu.org
@@ -58,6 +58,7 @@ This should include -n, -H, -F.")
 
 (defvar last-chance-uninteresting-regexps
   '("ChangeLog[.0-9]*:"
+    "NEWS[-.0-9]*:"
     ;; Add more ‘flush-lines’ args here.
     )
   "List of regexps that match uninteresting \"git grep\" hits.")
@@ -67,7 +68,7 @@ This should include -n, -H, -F.")
 
 (defun last-chance-cleanup (buffer status)
   "Filter lines in BUFFER; append STATUS and count of removed lines.
-If BUFFER is not seem to be one created by ‘last-chance’, do nothing.
+If BUFFER does not seem to be one created by ‘last-chance’, do nothing.
 This function is intended to be added to ‘compilation-finish-functions’."
   (let ((name (buffer-local-value 'last-chance-symbol buffer))
         bef aft)