* auth-source.el (auth-sources):
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 22 Aug 2015 03:47:41 +0000 (03:47 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sat, 22 Aug 2015 03:47:41 +0000 (03:47 +0000)
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.

lisp/ChangeLog
lisp/auth-source.el
lisp/time-date.el

index e21a735..f2279f1 100644 (file)
@@ -1,5 +1,12 @@
 2015-08-21  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * 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.
index 26994d5..518e9e5 100644 (file)
@@ -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
index bb7e97e..c13ef97 100644 (file)
@@ -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