]> granicus.if.org Git - neomutt/commitdiff
Standardise spelling s/RfC/RFC/
authorRichard Russon <rich@flatcap.org>
Thu, 2 Nov 2017 14:29:21 +0000 (14:29 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 7 Nov 2017 13:48:46 +0000 (13:48 +0000)
copy.c
doc/manual.xml.head
doc/neomutt.pwl
handler.c
ncrypt/pgp.c
rfc3676.c
send.c
sendlib.c

diff --git a/copy.c b/copy.c
index e110f3e38ade3b5dab57a6dcdf79497711dfb77d..af214667d74d6bf0cdb992fc1743dc23cdba66b0 100644 (file)
--- a/copy.c
+++ b/copy.c
@@ -1029,7 +1029,7 @@ static int address_header_decode(char **h)
     if (cur->personal)
       rfc822_dequote_comment(cur->personal);
 
-  /* angle brackets for return path are mandated by RfC5322,
+  /* angle brackets for return path are mandated by RFC5322,
    * so leave Return-Path as-is */
   if (rp)
     *h = safe_strdup(s);
index 1ed104dc02c42c7a3014b64c2ddbd5a88b98389b..d65fe8fffbb33761e88bd63d584fdbdbfba26a3c 100644 (file)
@@ -2728,7 +2728,7 @@ color sidebar_divider   color8  default
           specifically it does not add the trailing spaces.</para>
           <para>After editing the initial message text and before entering the
           compose menu, NeoMutt properly space-stuffs the message.
-          <emphasis>Space-stuffing</emphasis> is required by RfC3676 defining
+          <emphasis>Space-stuffing</emphasis> is required by RFC3676 defining
           <literal>format=flowed</literal> and means to prepend a space
           to:</para>
           <itemizedlist>
@@ -14796,7 +14796,7 @@ bind index D purge-message
       <para>NeoMutt in many places has to rely on external applications or for
       convenience supports mechanisms involving external applications.</para>
       <para>One of these is the
-      <literal>mailcap</literal> mechanism as defined by RfC1524. Details about
+      <literal>mailcap</literal> mechanism as defined by RFC1524. Details about
       a secure use of the mailcap mechanisms is given in
       <xref linkend="secure-mailcap" />.</para>
       <para>Besides the mailcap mechanism, NeoMutt uses a number of other external
index d3fac6dffcdd81fd2f91115adeb45750afcd1bd1..21ffbc220ffb786d73d8e006c644a9df8032b929 100644 (file)
@@ -272,7 +272,7 @@ ispell
 png
 NTLM
 clearsign
-RfC
+RFC
 rfc
 syntaxes
 untag
index f665e48730eeb5ac4172537fdef96192e23fb749..ee9bc1e4f2c617cfbcd5a8ee871aaaadf07e1b77 100644 (file)
--- a/handler.c
+++ b/handler.c
@@ -217,7 +217,7 @@ static void qp_decode_line(char *dest, char *src, size_t *l, int last)
   {
     /* neither \r nor \n as part of line-terminating CRLF
      * may be qp-encoded, so remove \r and \n-terminate;
-     * see RfC2045, sect. 6.7, (1): General 8bit representation */
+     * see RFC2045, sect. 6.7, (1): General 8bit representation */
     if (kind == 0 && c == '\r')
       *(d - 1) = '\n';
     else
index 5720830f8983bdd7b51f4cd93a67931afb80aa7a..a5fd71325e640bf275cdcacbdac6f8f01f3863d9 100644 (file)
@@ -414,7 +414,7 @@ int pgp_application_pgp_handler(struct Body *m, struct State *s)
             (!needpass && ((mutt_strcmp("-----END PGP SIGNATURE-----\n", buf) == 0) ||
                            (mutt_strcmp("-----END PGP PUBLIC KEY BLOCK-----\n", buf) == 0))))
           break;
-        /* remember optional Charset: armor header as defined by RfC4880 */
+        /* remember optional Charset: armor header as defined by RFC4880 */
         if (mutt_strncmp("Charset: ", buf, 9) == 0)
         {
           size_t l = 0;
index 5206044cdb82cf65b6892db894ce46fb7c5545a6..dac8cbe40b36c12a83024ac684a1e72e816ab444 100644 (file)
--- a/rfc3676.c
+++ b/rfc3676.c
@@ -276,7 +276,7 @@ int rfc3676_handler(struct Body *a, struct State *s)
 
   memset(&fst, 0, sizeof(fst));
 
-  /* respect DelSp of RfC3676 only with f=f parts */
+  /* respect DelSp of RFC3676 only with f=f parts */
   if ((t = (char *) mutt_get_parameter("delsp", a->parameter)))
   {
     delsp = mutt_strlen(t) == 3 && (mutt_strncasecmp(t, "yes", 3) == 0);
diff --git a/send.c b/send.c
index cd1caf2e3a7e3d13e491542ed35747c5399b0c36..05b829cd47017a3a31d8e2ee0e9aa96b8e32e6b5 100644 (file)
--- a/send.c
+++ b/send.c
@@ -750,7 +750,7 @@ static void make_reference_headers(struct Envelope *curenv,
 
   /* if there's more than entry in In-Reply-To (i.e. message has
      multiple parents), don't generate a References: header as it's
-     discouraged by RfC2822, sect. 3.6.4 */
+     discouraged by RFC2822, sect. 3.6.4 */
   if (ctx->tagged > 0 && !STAILQ_EMPTY(&env->in_reply_to) &&
       STAILQ_NEXT(STAILQ_FIRST(&env->in_reply_to), entries))
     mutt_list_free(&env->references);
index ecbf37e1fc656f10f891593123af42663e19e407..7257b45bedcc9217023e045cee3d4ca25dc92872 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
@@ -1734,7 +1734,7 @@ static int print_val(FILE *fp, const char *pfx, const char *value, int flags, si
     if (fputc(*value, fp) == EOF)
       return -1;
     /* corner-case: break words longer than 998 chars by force,
-     * mandated by RfC5322 */
+     * mandated by RFC5322 */
     if (!(flags & CH_DISPLAY) && ++col >= 998)
     {
       if (fputs("\n ", fp) < 0)