]> git.eshelyaron.com Git - emacs.git/commitdiff
More NEWS checking for admin.el's set-version
authorGlenn Morris <rgm@gnu.org>
Tue, 17 Jan 2017 21:10:03 +0000 (16:10 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 17 Jan 2017 21:10:03 +0000 (16:10 -0500)
* admin/admin.el (set-version): Warn if temporary NEWS markup
still present in release candidates.

admin/admin.el

index 4892045a69010856b7bf4759101d4b51b89b693b..7b9f01f64a100680d359af7a14b36b5a2d657fd1 100644 (file)
@@ -143,6 +143,13 @@ Root must be the root of an Emacs source tree."
                          (not (equal (cadr oldversion) (cadr newversion)))))
          (newsfile (expand-file-name "etc/NEWS" root))
          (oldnewsfile (expand-file-name (format "etc/NEWS.%s" oldmajor) root)))
+    (unless (> (length newversion) 2)   ; pretest or release candidate?
+      (with-temp-buffer
+        (insert-file-contents newsfile)
+        (if (re-search-forward "^\\(+++ *\\|--- *\\)$" nil t)
+            (display-warning 'admin
+                             "NEWS file still contains temporary markup.
+Documentation changes might not have been completed!"))))
     (when (and majorbump
                (not (file-exists-p oldnewsfile)))
       (rename-file newsfile oldnewsfile)