From: Thomas Roessler Date: Fri, 11 Feb 2000 00:04:25 +0000 (+0000) Subject: Fix minor documentation problems noted by Marius Gedminas X-Git-Tag: mutt-1-1-4-rel~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57460cad979c18918581b41f5e6047957796486c;p=mutt Fix minor documentation problems noted by Marius Gedminas . --- diff --git a/init.h b/init.h index d9770adf..e62f33fa 100644 --- 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. diff --git a/makedoc.c b/makedoc.c index 341964b4..e1b2b09e 100644 --- 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 ("[", out); case ']': return fputs ("]", out); + case '~': return fputs ("˜", out); default: return fputc (c, out); } }