]> granicus.if.org Git - mutt/commitdiff
Fix minor documentation problems noted by Marius Gedminas
authorThomas Roessler <roessler@does-not-exist.org>
Fri, 11 Feb 2000 00:04:25 +0000 (00:04 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Fri, 11 Feb 2000 00:04:25 +0000 (00:04 +0000)
<mgedmin@takas.lt>.

init.h
makedoc.c

diff --git a/init.h b/init.h
index d9770adfe3369b3fdb532828f79538000feb6c84..e62f33fa316b63d04b507e3715fe0e45ec7cb293 100644 (file)
--- a/init.h
+++ b/init.h
@@ -661,7 +661,7 @@ struct option_t MuttVars[] = {
   /*
   ** .pp
   ** Specifies the password for your IMAP account.  If unset, Mutt will
-  * prompt you for your password when you invoke the fetch-mail function.
+  ** prompt you for your password when you invoke the fetch-mail function.
   ** \fBWarning\fP: you should only use this option when you are on a
   ** fairly secure machine, because the superuser can read your muttrc even
   ** if you are the only one who can read the file.
index 341964b4329ba37bf4698363067aded773ac4d38..e1b2b09e565cb9fcaaff28a272af25e96093c16c 100644 (file)
--- a/makedoc.c
+++ b/makedoc.c
@@ -589,6 +589,7 @@ static int sgml_fputc (int c, FILE *out)
     case '"': return fputs ("&dquot;", out);
     case '[': return fputs ("&lsqb;", out);
     case ']': return fputs ("&rsqb;", out);
+    case '~': return fputs ("&tilde;", out);
     default:  return fputc (c, out);
   }
 }