Go back to grave quoting in source-code docstrings etc.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 8 Sep 2015 05:13:29 +0000 (05:13 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 8 Sep 2015 05:13:29 +0000 (05:13 +0000)
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.

* gnus-faq.texi (FAQ 5-13, FAQ 6-2):
* gnus.texi (Score Decays, SpamAssassin):
* nnmairix.el (nnmairix-widget-create-query):
* time-date.el (format-seconds): Prefer grave quoting in source-code
strings used to generate help and diagnostics.

lisp/ChangeLog
lisp/nnmairix.el
lisp/time-date.el
texi/ChangeLog
texi/gnus-faq.texi
texi/gnus.texi

index bbbd275..e3af835 100644 (file)
@@ -1,3 +1,9 @@
+2015-09-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * nnmairix.el (nnmairix-widget-create-query):
+       * time-date.el (format-seconds): Prefer grave quoting in source-code
+       strings used to generate help and diagnostics.
+
 2015-09-07  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
 
        * ntlm.el: Bump version to 2.00.  New maintainer.  Add comm keyword.
index e34b708..ccfc599 100644 (file)
@@ -1943,7 +1943,9 @@ Fill in VALUES if based on an article."
     (kill-all-local-variables)
     (erase-buffer)
     (widget-insert "Specify your query for Mairix (check boxes for activating fields):\n\n")
-    (widget-insert "(Whitespaces will be converted to ‘,’ (i.e. AND). Use ‘/’ for OR.)\n\n")
+    (widget-insert
+     (substitute-command-keys
+      "(Whitespaces will be converted to `,' (i.e. AND). Use `/' for OR.)\n\n"))
 ;    (make-local-variable 'nnmairix-widgets)
     (setq nnmairix-widgets (nnmairix-widget-build-editable-fields values))
     (when (member 'flags nnmairix-widget-other)
index c13ef97..bb7e97e 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
index eb26578..1b170dc 100644 (file)
@@ -1,3 +1,9 @@
+2015-09-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * gnus-faq.texi (FAQ 5-13, FAQ 6-2):
+       * gnus.texi (Score Decays, SpamAssassin): Prefer grave quoting in
+       source-code strings used to generate help and diagnostics.
+
 2015-09-04  Paul Eggert  <eggert@cs.ucla.edu>
 
        * gnus-faq.texi (FAQ 4-8, FAQ 4-12, FAQ 4-14):
index 5ab34a0..19c78bf 100644 (file)
@@ -1671,7 +1671,7 @@ instead (works for newer versions as well):
          (setq message-user-fqdn fqdn)
        (gnus-message 1 "Redefining `message-make-fqdn'.")
        (defun message-make-fqdn ()
-         "Return users fully qualified domain name."
+         "Return user's fully qualified domain name."
          fqdn))))
 @end example
 @noindent
@@ -1765,9 +1765,9 @@ snippet by Frank Haun <pille3003@@fhaun.de> in
 
 @example
 (defun my-archive-article (&optional n)
-  "Copies one or more article(s) to a corresponding ‘nnml:’ group, e.g.,
-‘gnus.ding’ goes to ‘nnml:1.gnus.ding’. And ‘nnml:List-gnus.ding’ goes
-to ‘nnml:1.List-gnus-ding’.
+  "Copies one or more article(s) to a corresponding `nnml:' group, e.g.,
+`gnus.ding' goes to `nnml:1.gnus.ding'. And `nnml:List-gnus.ding' goes
+to `nnml:1.List-gnus-ding'.
 
 Use process marks or mark a region in the summary buffer to archive
 more then one article."
index b520679..8b41015 100644 (file)
@@ -21034,8 +21034,8 @@ function:
 
 @lisp
 (defun gnus-decay-score (score)
-  "Decay SCORE according to ‘gnus-score-decay-constant’
-and ‘gnus-score-decay-scale’."
+  "Decay SCORE according to `gnus-score-decay-constant'
+and `gnus-score-decay-scale'."
   (let ((n (- score
               (* (if (< score 0) -1 1)
                  (min (abs score)
@@ -24081,7 +24081,7 @@ spam.  And here is the nifty function:
 
 @lisp
 (defun my-gnus-raze-spam ()
-  "Submit SPAM to Vipuls Razor, then mark it as expirable."
+  "Submit SPAM to Vipul's Razor, then mark it as expirable."
   (interactive)
   (gnus-summary-save-in-pipe "razor-report -f -d" t)
   (gnus-summary-mark-as-expirable 1))