mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
* etags.c (Scheme_functions): Don't loop past a null character (Bug#5601).
This commit is contained in:
parent
3e39928c77
commit
f9b84f9f4b
@ -1,3 +1,8 @@
|
||||
2010-02-20 Kevin Ryde <user42@zip.com.au>
|
||||
|
||||
* etags.c (Scheme_functions): Don't loop past a null character
|
||||
(Bug#5601).
|
||||
|
||||
2010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
|
||||
|
||||
* etags.c (Fortran_functions): Handle recursive keyword
|
||||
|
@ -5004,8 +5004,9 @@ Scheme_functions (inf)
|
||||
if (strneq (bp, "(def", 4) || strneq (bp, "(DEF", 4))
|
||||
{
|
||||
bp = skip_non_spaces (bp+4);
|
||||
/* Skip over open parens and white space */
|
||||
while (notinname (*bp))
|
||||
/* Skip over open parens and white space. Don't continue past
|
||||
'\0'. */
|
||||
while (*bp && notinname (*bp))
|
||||
bp++;
|
||||
get_tag (bp, NULL);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user