From: Neil Booth Date: Sun, 29 Oct 2000 22:45:13 +0000 (+0000) Subject: * cpplib.c (skip_rest_of_line): Use _cpp_get_token. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1641a8238a9e7b4abccef627c6641aa20c3fbf92;p=gcc.git * cpplib.c (skip_rest_of_line): Use _cpp_get_token. From-SVN: r37135 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8bcfe30b010..b938b9181b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-10-29 Neil Booth + + * cpplib.c (skip_rest_of_line): Use _cpp_get_token. + 2000-10-29 Joseph S. Myers * toplev.c, flags.h, fold-const.c, real.c, rtl.c, diff --git a/gcc/cpplib.c b/gcc/cpplib.c index e16585f5668..18b44be305a 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -188,10 +188,10 @@ skip_rest_of_line (pfile) /* Sweep up all tokens remaining on the line. We need to read tokens from lookahead, but cannot just drop the lookahead buffers because they may be saving tokens prior to this directive for an - external client. So we use cpp_get_token, with macros disabled. */ + external client. So we use _cpp_get_token, with macros disabled. */ pfile->state.prevent_expansion++; while (!pfile->state.skip_newlines) - _cpp_lex_token (pfile, &token); + _cpp_get_token (pfile, &token); pfile->state.prevent_expansion--; }