While browsing through diff -u manual.sgml-1.1.2 manual.sgml-1.1.3 I
noticed this suspicious line deletion. Looks like it's accidental.
@@ -3416,7 +3429,6 @@
<p>
Specifies the password for your IMAP account. If unset, Mutt will
-prompt you for your password when you invoke the fetch-mail function.
<bf>Warning</bf>: 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.
There's a typo: s/dfault_hook/default/hook/ in section `Matching
Messages with Hooks'.
Some tildes are missing in manual.txt (e.g.
6.3.3. alias_file
Type: path
Default: " /.muttrc"
).
I suppose `~' characters in init.h should be translated to `˜'. I
think changing sgml_fputc in makedoc.c would do the trick (I haven't
tried it -- Mandrake 7.0 does not have sgml-tools for some reason):
--- makedoc.c.orig Tue Feb 1 20:35:33 2000
+++ makedoc.c Thu Feb 10 21:03:53 2000
@@ -589,6 +589,7 @@
case '"': return fputs ("&dquot;", out);
case '[': return fputs ("[", out);
case ']': return fputs ("]", out);
+ case '~': return fputs ("˜", out);
default: return fputc (c, out);
}
}
Speaking about makedoc.c -- I get these warnings when compiling mutt:
make[3]: Entering directory `/opt/mutt-1.1.3'
gcc -DSHAREDIR=\"/usr/local/share/mutt\" -DSYSCONFDIR=\"/usr/local/etc\" -DBINDI
R=\"/usr/local/bin\" -DHAVE_CONFIG_H=1 -I. -I/usr/local/include -I/usr/include
/ncurses -I./intl -Wall -pedantic -g -O2 -c makedoc.c
makedoc.c: In function `main':
makedoc.c:112: warning: assignment discards qualifiers from pointer target type
makedoc.c:114: warning: passing arg 2 of `getopt' from incompatible pointer type
makedoc.c: In function `print_confline':
makedoc.c:675: warning: enumeration value `F_NONE' not handled in switch
makedoc.c: In function `print_it':
makedoc.c:960: warning: enumeration value `F_NONE' not handled in switch
I would be nice to get them removed before releasing 1.2, wouldn't it?
There are too many blank lines in manual.txt before some of the tables
(e.g. 6.4.2, 6.4.3). It's probably a bug/feature of SGML to text
converter. Can anyone shed some light on this issue?
Marius Gedminas
--
Never assume the reader has read the subject line.