mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-12 00:50:43 -08:00
Merge changes from emacs-23 branch
This commit is contained in:
commit
07976ae3b8
46 changed files with 1227 additions and 523 deletions
|
|
@ -1700,6 +1700,11 @@ yylex (void)
|
|||
case '/':
|
||||
while (GET (c) && c != '\n')
|
||||
;
|
||||
/* Don't try to read past the end of the input buffer if
|
||||
the file ends in a C++ comment without a newline. */
|
||||
if (c == 0)
|
||||
return YYEOF;
|
||||
|
||||
INCREMENT_LINENO;
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue