mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-04 11:40:22 +00:00
* etags.c (TEX_mode): Check getc retruns EOF.
File ended without newline causes infinite loop.
This commit is contained in:
parent
878bf4b860
commit
867cc23e44
@ -1,3 +1,8 @@
|
||||
2006-08-07 Masatake YAMATO <jet@gyve.org>
|
||||
|
||||
* etags.c (TEX_mode): Check getc retruns EOF.
|
||||
File ended without newline causes infinite loop.
|
||||
|
||||
2002-07-30 Adrian Aichner <adrian@xemacs.org> (tiny change)
|
||||
|
||||
* etags.c: It's XEmacs, not Xemacs: change all the occurences.
|
||||
|
@ -5165,7 +5165,7 @@ TEX_mode (inf)
|
||||
{
|
||||
/* Skip to next line if we hit the TeX comment char. */
|
||||
if (c == '%')
|
||||
while (c != '\n')
|
||||
while (c != '\n' && c != EOF)
|
||||
c = getc (inf);
|
||||
else if (c == TEX_LESC || c == TEX_SESC )
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user