From: Rocco Rutte Date: Tue, 13 Nov 2007 10:53:53 +0000 (+0100) Subject: hg-commit: Run 'make validate' in doc/ if manual.xml is present X-Git-Tag: mutt-1-5-18-rel~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14da7999aaa67af9ed7b080787f3d18ef8213e2c;p=mutt hg-commit: Run 'make validate' in doc/ if manual.xml is present --- diff --git a/ChangeLog b/ChangeLog index 4288704a..38954636 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,38 @@ +2007-11-13 11:50 +0100 Rocco Rutte (4ded279d93bb) + + * doc/manual.xml.head, init.h: Document that %f in $index_format is + either Return-Path: or From: depending on which parses correctly. + Also note that alternates' regex should be as precise as possible to + avoid mismatches. Closes #1894. + +2007-11-13 11:15 +0100 Rocco Rutte (a259a755fa03) + + * init.h: Properly document $hostname, link it to $use_domain and + $hidden_host. Closes #891. + +2007-11-07 14:54 +0100 Rocco Rutte (84284776659e) + + * Makefile.am, po/Makefile.in.in, po/POTFILES.in: Don't build + keymap_alldefs.h in srcdir as it may be read-only + +2007-11-07 12:28 +0100 Rocco Rutte (fed536a2ce22) + + * po/Makefile.in.in: Don't try to build $(PACKAGE).pot in srcdir as it + may be read-only + +2007-11-08 22:13 -0800 Michael Elkins (4bba47e6d026) + + * doc/manual.xml.head: Removed the [!] prefix from the usage from the + usage string for the un/mailboxes command since it has no special + meaning in this context other than referring to $spoolfile. + +2007-11-08 11:48 -0800 Brendan Cully (daf29fe0ed4c) + + * ChangeLog, UPDATING, curs_lib.c, globals.h, init.h: Add $time_inc to + control progress update frequency. I found 250ms to be noticeably + different from the old behaviour, and it ruins the rounding of the + other _inc variables. + 2007-11-08 11:26 -0800 Brendan Cully (3869e46f6fd4) * color.c, copy.c, imap/command.c: Turn down some debug logging diff --git a/hg-commit b/hg-commit index a0034630..2f6ea9af 100755 --- a/hg-commit +++ b/hg-commit @@ -3,6 +3,9 @@ MUTTDIR=$(dirname $0) $MUTTDIR/check_sec.sh +if [ -f $MUTTDIR/doc/manual.xml ] ; then + ( cd $MUTTDIR/doc/ && make validate ) +fi lrev=$(hg log --limit 1 --template '{rev}' ChangeLog) trev=$(hg tip --template '{rev}')