aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
authorNeil Booth <neilb@earthling.net>2000-10-29 22:45:13 +0000
committerNeil Booth <neil@gcc.gnu.org>2000-10-29 22:45:13 +0000
commit1641a8238a9e7b4abccef627c6641aa20c3fbf92 (patch)
treebffde9f7bb5180180d2268a05e7182907447388f /gcc/cpplib.c
parent5e53dba6a89a3b96b23b9cbb65982de49c9b5fda (diff)
downloadgcc-1641a8238a9e7b4abccef627c6641aa20c3fbf92.zip
gcc-1641a8238a9e7b4abccef627c6641aa20c3fbf92.tar.gz
gcc-1641a8238a9e7b4abccef627c6641aa20c3fbf92.tar.bz2
* cpplib.c (skip_rest_of_line): Use _cpp_get_token.
From-SVN: r37135
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index e16585f..18b44be 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--;
}