[gnus git] branch master updated: m0-13-47-g4bfee81 =1= * auth-source.el (auth-sources): Prefer (substitute-command-keys "`\\[foo-command]'") to "`M-x foo-command'" in docstring.
Katsumi Yamaoka <[email protected]> Sat, 22 Aug 2015 05:48:11 +0200
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 4bfee81711b64e10808f8b1846818e29ef16cb94 (commit)
from 69af19b99e9c9cc860b0987e7ee74cc18c293b55 (commit)
- Log -----------------------------------------------------------------
commit 4bfee81711b64e10808f8b1846818e29ef16cb94
Author: Paul Eggert <[email protected]>
Date: Sat Aug 22 03:47:41 2015 +0000
* auth-source.el (auth-sources):
Prefer (substitute-command-keys "`\\[foo-command]'")
to "`M-x foo-command'" in docstring.
* time-date.el (format-seconds):
Use curved quotes in diagnostic format strings.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e21a735..f2279f1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,12 @@
2015-08-21 Paul Eggert <[email protected]>
+ * auth-source.el (auth-sources):
+ Prefer (substitute-command-keys "`\\[foo-command]'")
+ to "`M-x foo-command'" in docstring.
+
+ * time-date.el (format-seconds):
+ Use curved quotes in diagnostic format strings.
+
* nnmairix.el (nnmairix-propagate-marks-upon-close):
* pop3.el (pop3-authentication-scheme):
Don't quote symbols with apostrophes in doc strings.
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index 26994d5..518e9e5 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -252,7 +252,7 @@ EPA/EPG set up, the file will be encrypted and decrypted
automatically. See Info node `(epa)Encrypting/decrypting gpg files'
for details.
-It's best to customize this with `M-x customize-variable' because the choices
+It's best to customize this with `\\[customize-variable]' because the choices
can get pretty complex."
:group 'auth-source
:version "24.1" ;; No Gnus
diff --git a/lisp/time-date.el b/lisp/time-date.el
index bb7e97e..c13ef97 100644
--- a/lisp/time-date.el
+++ b/lisp/time-date.el
@@ -377,9 +377,9 @@ This function does not work for SECONDS greater than `most-positive-fixnum'."
spec (match-string 1 string))
(unless (string-equal spec "%")
(or (setq match (assoc (downcase spec) units))
- (error "Bad format specifier: `%s'" spec))
+ (error "Bad format specifier: ā%sā" spec))
(if (assoc (downcase spec) usedunits)
- (error "Multiple instances of specifier: `%s'" spec))
+ (error "Multiple instances of specifier: ā%sā" spec))
(if (string-equal (car match) "z")
(setq zeroflag t)
(unless larger
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 7 +++++++
lisp/auth-source.el | 2 +-
lisp/time-date.el | 4 ++--
3 files changed, 10 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project