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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user