Revert to old skip_quoted usage.

This commit is contained in:
Adam Fedor 2002-11-19 15:23:58 +00:00
parent a76c9d7283
commit e8afa4d797
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-11-19 Adam Fedor <fedor@gnu.org>
* objc-exp.y: Revert to old skip_quoted usage.
2002-11-19 Adam Fedor <fedor@gnu.org>
* Makefile.in (SFILES): Add objc-exp.y objc-lang.c.

View File

@ -1305,9 +1305,7 @@ yylex ()
c = *lexptr++;
if (c != '\'')
{
namelen = skip_quoted (tokstart,
get_gdb_completer_word_break_characters())
- tokstart;
namelen = skip_quoted (tokstart) - tokstart;
if (namelen > 2)
{
lexptr = tokstart + namelen;