From: Dieter Schuster Date: Wed, 7 Sep 2011 07:25:55 +0000 (-0700) Subject: * lib-src/etags.c (Fortran_functions): Handle "pure" functions. (tiny change) X-Git-Tag: emacs-pretest-24.0.90~104^2~145 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d0417b4cfa7db8073880949a744599e4cbcf26da;p=emacs.git * lib-src/etags.c (Fortran_functions): Handle "pure" functions. (tiny change) Fixes: debbugs:9359 --- diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 65ca56b17a8..af026b6ba2c 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2011-09-07 Dieter Schuster (tiny change) + + * etags.c (Fortran_functions): Handle "pure" functions. (Bug#9359) + 2011-09-06 Paul Eggert * Makefile.in ($(DESTDIR)${archlibdir}): install-sh moved diff --git a/lib-src/etags.c b/lib-src/etags.c index 9d920565804..0197bbd49cc 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -4048,6 +4048,9 @@ Fortran_functions (FILE *inf) if (LOOKING_AT_NOCASE (dbp, "recursive")) dbp = skip_spaces (dbp); + if (LOOKING_AT_NOCASE (dbp, "pure")) + dbp = skip_spaces (dbp); + switch (lowcase (*dbp)) { case 'i':