]> granicus.if.org Git - mutt/commitdiff
hg-commit: Run 'make validate' in doc/ if manual.xml is present
authorRocco Rutte <pdmef@gmx.net>
Tue, 13 Nov 2007 10:53:53 +0000 (11:53 +0100)
committerRocco Rutte <pdmef@gmx.net>
Tue, 13 Nov 2007 10:53:53 +0000 (11:53 +0100)
ChangeLog
hg-commit

index 4288704a0f402459553f0f17f85684037569754f..38954636d28430c005383155dd109cd77e5a159e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,38 @@
+2007-11-13 11:50 +0100  Rocco Rutte  <pdmef@gmx.net>  (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  <pdmef@gmx.net>  (a259a755fa03)
+
+       * init.h: Properly document $hostname, link it to $use_domain and
+       $hidden_host. Closes #891.
+
+2007-11-07 14:54 +0100  Rocco Rutte  <pdmef@gmx.net>  (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  <pdmef@gmx.net>  (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  <me@mutt.org>  (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  <brendan@kublai.com>  (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  <brendan@kublai.com>  (3869e46f6fd4)
 
        * color.c, copy.c, imap/command.c: Turn down some debug logging
index a00346303f7a2055442e2c437d0eda908753d5c4..2f6ea9af511139c10b2060d871df08497e35d46d 100755 (executable)
--- 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}')