[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 54e5fc19e4: ; Fix typo in emacs-news-mode
From: |
Po Lu |
Subject: |
master 54e5fc19e4: ; Fix typo in emacs-news-mode |
Date: |
Wed, 4 May 2022 05:16:35 -0400 (EDT) |
branch: master
commit 54e5fc19e47acee6cef472ec0bf817dad75a7acf
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>
; 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.
---
lisp/textmodes/emacs-news-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/textmodes/emacs-news-mode.el
b/lisp/textmodes/emacs-news-mode.el
index 2ebd4aa829..fdb3cb8628 100644
--- a/lisp/textmodes/emacs-news-mode.el
+++ b/lisp/textmodes/emacs-news-mode.el
@@ -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."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 54e5fc19e4: ; Fix typo in emacs-news-mode,
Po Lu <=