1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

; Fix typo in emacs-news-mode

* lisp/textmodes/emacs-news-mode.el
(emacs-news-count-untagged-entries): Fix typo in message when
there are a pural amount of untagged entries.
This commit is contained in:
Po Lu 2022-05-04 17:15:24 +08:00
parent b8357cd50e
commit 54e5fc19e4

View file

@ -158,7 +158,7 @@ untagged NEWS entry."
(setq i (1+ i)))
(message (if (= i 1)
"There's 1 untagged entry"
(format "There's %s untagged entries" i))))))
(format "There are %s untagged entries" i))))))
(defun emacs-news--buttonize ()
"Make manual and symbol references into buttons."