mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update patchlist.sh to support `guilt' patch queues

+7 -1
+7 -1
patchlist.sh
··· 8 8 hg qapplied | sed -e 's/^/mq-/' 9 9 } 10 10 11 + list_patches_guilt () { 12 + guilt applied | sed -e 's/^/guilt-/' 13 + } 14 + 11 15 list_patches () { 12 - if [ -f .hg/patches/series ]; then 16 + if [ -d .git/patches ]; then 17 + list_patches_guilt 18 + elif [ -f .hg/patches/series ]; then 13 19 list_patches_mq 14 20 else 15 21 list_patches_PATCHES