]> git.eshelyaron.com Git - emacs.git/commitdiff
* package.el (describe-package-1): Add news if avaliable
authorPhilip Kaludercic <philipk@posteo.net>
Thu, 11 Aug 2022 12:05:01 +0000 (14:05 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Thu, 11 Aug 2022 12:06:43 +0000 (14:06 +0200)
lisp/emacs-lisp/package.el

index 0145306dc4e3b23c8f07de995b5db017399453da..ab1a652188f08d8652c3e4d21befb1b0b8231305 100644 (file)
@@ -2658,7 +2658,10 @@ Helper function for `describe-package'."
          (incompatible-reason (package--incompatible-p desc))
          (signed (if desc (package-desc-signed desc)))
          (maintainer (cdr (assoc :maintainer extras)))
-         (authors (cdr (assoc :authors extras))))
+         (authors (cdr (assoc :authors extras)))
+         (news (and-let* ((file (expand-file-name "news" pkg-dir))
+                          ((file-readable-p file)))
+                 file)))
     (when (string= status "avail-obso")
       (setq status "available obsolete"))
     (when incompatible-reason
@@ -2857,6 +2860,14 @@ Helper function for `describe-package'."
               t)
             (insert (or readme-string
                         "This package does not provide a description.")))))
+
+      ;; Insert news if available.
+      (when news
+        (insert "\n" (make-separator-line) "\n"
+                (propertize "* News" 'face 'package-help-section-name)
+                "\n\n")
+        (insert-file-contents news))
+
       ;; Make library descriptions into links.
       (goto-char start-of-description)
       (package--describe-add-library-links)