* etags.c (Lisp_functions): Also record cl-defun etc.

Fixes: debbugs:17965
This commit is contained in:
Paul Eggert 2014-07-12 09:26:54 -07:00
parent dc47c639f9
commit fb02552638
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2014-07-12 Paul Eggert <eggert@cs.ucla.edu>
* etags.c (Lisp_functions): Also record cl-defun etc. (Bug#17965)
2014-05-20 Paul Eggert <eggert@cs.ucla.edu>
Fix rcs2log problems with CVS.

View file

@ -4747,6 +4747,9 @@ Lisp_functions (FILE *inf)
}
}
if (strneq (dbp + 1, "cl-", 3) || strneq (dbp + 1, "CL-", 3))
dbp += 3;
if (strneq (dbp+1, "def", 3) || strneq (dbp+1, "DEF", 3))
{
dbp = skip_non_spaces (dbp);