From: Rocco Rutte Date: Mon, 24 Nov 2008 11:41:30 +0000 (+0100) Subject: Manual: Fix lynx call for html to text conversion, strip \001 when dumping with elinks X-Git-Tag: neomutt-20160307~871 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a41f4ae4705e4e6b73fb616567485f0fc59bb65a;p=neomutt Manual: Fix lynx call for html to text conversion, strip \001 when dumping with elinks --- diff --git a/ChangeLog b/ChangeLog index a4749cde7..c50fe3950 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-11-24 11:43 +0100 Rocco Rutte (1b39f5505dec) + + * doc/manual.xml.head: Manual: Fix/Improve quoting + +2008-11-24 11:43 +0100 Rocco Rutte (d133f2da0b6e) + + * ChangeLog, hg-commit: hg-commit: Exit if manual validation fails + 2008-11-24 11:38 +0100 Rocco Rutte (8915e5aa7af7) * doc/manual.xml.head, doc/muttrc.man.head: Documentation: diff --git a/doc/Makefile.am b/doc/Makefile.am index 1eaff56db..84e04d6b6 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -99,9 +99,9 @@ uninstall-local: check: manual.txt: manual.html - LC_ALL=C -lynx -dump -nolist -with_backspaces manual.html > $@ || \ + -LC_ALL=C lynx -dump -nolist -with_backspaces manual.html > $@ || \ LC_ALL=C w3m -dump manual.html > $@ || \ - LC_ALL=C elinks -dump -no-numbering -no-references manual.html > $@ + LC_ALL=C elinks -dump -no-numbering -no-references manual.html | sed -e 's,\\001, ,g' > $@ Muttrc: stamp-doc-rc