1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

* etags.c (Fortran_functions): Handle recursive keyword (Bug#5484).

This commit is contained in:
Chong Yidong 2010-01-29 14:13:13 -05:00
parent 1e86875746
commit 9d77a91fda
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2010-01-29 Kester Habermann <kester@linuxtag.org>
* etags.c (Fortran_functions): Handle recursive keyword
(Bug#5484).
2010-01-11 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version):

View file

@ -4108,6 +4108,10 @@ Fortran_functions (inf)
dbp = skip_spaces (dbp);
if (*dbp == '\0')
continue;
if (LOOKING_AT_NOCASE (dbp, "recursive"))
dbp = skip_spaces (dbp);
switch (lowcase (*dbp))
{
case 'i':