Documentation fixes re quotes
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 31 Aug 2015 22:15:30 +0000 (22:15 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 31 Aug 2015 22:15:30 +0000 (22:15 +0000)
* gnus-faq.texi (FAQ 5-13, FAQ 6-2):
* gnus.texi (Score Decays, SpamAssassin):
Prefer curved quotes in examples if users will typically see curved
quotes when the examples run.

texi/ChangeLog
texi/gnus-faq.texi
texi/gnus.texi

index 163f834..c0a7b6b 100644 (file)
@@ -1,3 +1,10 @@
+2015-08-31  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * gnus-faq.texi (FAQ 5-13, FAQ 6-2):
+       * gnus.texi (Score Decays, SpamAssassin):
+       Prefer curved quotes in examples if users will typically see curved
+       quotes when the examples run.
+
 2015-07-09  Nikolaus Rath  <Nikolaus@rath.org>
 
        * gnus.texi (Customizing the IMAP Connection):
index 76d1a52..0b856c7 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 user's fully qualified domain name."
+         "Return users 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 97673ea..1bc4279 100644 (file)
@@ -21033,8 +21033,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)
@@ -24080,7 +24080,7 @@ spam.  And here is the nifty function:
 
 @lisp
 (defun my-gnus-raze-spam ()
-  "Submit SPAM to Vipul's Razor, then mark it as expirable."
+  "Submit SPAM to Vipuls Razor, then mark it as expirable."
   (interactive)
   (gnus-summary-save-in-pipe "razor-report -f -d" t)
   (gnus-summary-mark-as-expirable 1))