1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 21:19:24 +00:00

Rename Read_Line method.

This commit is contained in:
Bruno Haible
2002-10-28 10:19:20 +00:00
parent 74672acb3e
commit ffc1beb00f
5 changed files with 27 additions and 15 deletions

View File

@@ -354,7 +354,7 @@ Key_List::read_keys (void)
set_output_types ();
/* Oops, problem with the input file. */
if (! (ptr = Read_Line::get_line ()))
if (! (ptr = Read_Line::read_next_line ()))
{
fprintf (stderr, "No words in input file, did you forget to prepend %s or use -t accidentally?\n", "%%");
exit (1);
@@ -369,7 +369,7 @@ Key_List::read_keys (void)
head = parse_line (ptr, delimiter);
for (temp = head;
(ptr = Read_Line::get_line ()) && strcmp (ptr, "%%");
(ptr = Read_Line::read_next_line ()) && strcmp (ptr, "%%");
temp = temp->next)
{
temp->next = parse_line (ptr, delimiter);