* etags.c (Lisp_functions): Also record cl-defun etc.
Fixes: debbugs:17965
This commit is contained in:
parent
dc47c639f9
commit
fb02552638
2 changed files with 7 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue