mutt stable branch with some hacks
0
fork

Configure Feed

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

Make make ctags actually work

make ctags broke with

Making ctags in po
make[1]: Entering directory '.../mutt/po'
make[1]: *** No rule to make target 'ctags'. Stop.
make[1]: Leaving directory '.../mutt/po'
Makefile:867: recipe for target 'ctags-recursive' failed
make: *** [ctags-recursive] Error 1

and once fixed the same in intl/

Note that this ctags target scatters tags files over directories.
If you use exuberant ctags then simply run
ctags -R
once in mutt's root dir instead.

+7 -2
+6 -1
intl/Makefile.in
··· 257 257 bindtextdom.$lo finddomain.$lo loadmsgcat.$lo: gettextP.h gettext.h loadinfo.h 258 258 dcgettext.$lo: gettextP.h gettext.h hash-string.h loadinfo.h 259 259 260 + .PHONY: ctags id tags 261 + 262 + ctags: $(HEADERS) $(SOURCES) 263 + here=`pwd`; cd $(srcdir) && ctags -o $$here/tags $(HEADERS) $(SOURCES) 264 + 260 265 tags: TAGS 261 266 262 267 TAGS: $(HEADERS) $(SOURCES) ··· 276 281 clean: mostlyclean 277 282 278 283 distclean: clean 279 - rm -f Makefile ID TAGS 284 + rm -f Makefile ID TAGS tags 280 285 if test "$(PACKAGE)" = gettext; then \ 281 286 rm -f ChangeLog.inst $(DISTFILES.normal); \ 282 287 else \
+1 -1
po/Makefile.in.in
··· 149 149 150 150 check: all 151 151 152 - dvi info tags TAGS ID: 152 + ctags dvi info tags TAGS ID: 153 153 154 154 mostlyclean: 155 155 rm -f core core.* *.pox $(PACKAGE).po *.new.po