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:
parent
1e86875746
commit
9d77a91fda
2 changed files with 9 additions and 0 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue