···11+2007-03-14 13:57 -0700 Brendan Cully <brendan@kublai.com> (67c017c8af80)
22+33+ * muttlib.c: Remove trailing newlines from fmtpipe return value.
44+ Increase fmtpipe logging level to 3.
55+66+2007-03-14 13:49 -0700 David Champion <dgc@uchicago.edu> (63ad6be01750)
77+88+ * mutt.h, muttlib.c: Allow format strings to be filtered. Any format
99+ string ending in | will be expanded and piped through the first word
1010+ in the string. The string returned will be used for display. If the
1111+ returned string ends in %, it will be passed through the formatter a
1212+ second time. This allows the filter to generate a replacement format
1313+ string including % expandos.
1414+1515+2007-03-14 13:26 -0700 Brendan Cully <brendan@kublai.com> (e9203a364537)
1616+1717+ * imap/imap.c: Recheck capabilities after authentication (closes:
1818+ #2837)
1919+1202007-03-14 13:09 -0700 Christoph Berg <cb@df7cb.de> (cbacb14a837a)
221322 * doc/mutt.man, main.c: mutt.man and mutt -h updates
42355- the following patch documents mutt --, removes the reference to
66- flea, and generally updates the mutt.1 manpage.
2424+ Document mutt --, remove the reference to
2525+ flea, and generally update the mutt.1 manpage.
726827 (I removed -d from the SYNOPSIS part since it wasn't entirely
928 correct syntactically there and putting it elsewhere seems like
···11+#!/bin/sh
22+# Demonstration of format string pipes. Sets the xterm title and returns the
33+# string unchanged.
44+#
55+# Example usage:
66+# set status_format="mutt_xtitle '%r %f (%L) [Msgs:%?M?%M/?%m%?n? New:%n?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?]'|"
77+88+printf "\033]0;$1\007" > /dev/tty
99+echo "$1"