/[pspp]/pspp/src/get.c
ViewVC logotype

Diff of /pspp/src/get.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.27 by blp, Mon May 2 06:21:20 2005 UTC revision 1.28 by blp, Tue May 3 05:32:22 2005 UTC
# Line 728  cmd_match_files (void) Line 728  cmd_match_files (void)
728    dict_set_case_limit (mtf.dict, dict_get_case_limit (default_dict));    dict_set_case_limit (mtf.dict, dict_get_case_limit (default_dict));
729    
730    lex_match ('/');    lex_match ('/');
731    while (lex_id_match ("FILE", tokid) || lex_id_match ("TABLE", tokid))    while (token == T_ID
732             && (lex_id_match ("FILE", tokid) || lex_id_match ("TABLE", tokid)))
733      {      {
734        struct mtf_file *file = xmalloc (sizeof *file);        struct mtf_file *file = xmalloc (sizeof *file);
735    
# Line 741  cmd_match_files (void) Line 742  cmd_match_files (void)
742          }          }
743        else        else
744          assert (0);          assert (0);
745          lex_match ('=');
746    
747        file->by = NULL;        file->by = NULL;
748        file->handle = NULL;        file->handle = NULL;
# Line 774  cmd_match_files (void) Line 776  cmd_match_files (void)
776              mtf.head = file;              mtf.head = file;
777            first_table->prev = file;            first_table->prev = file;
778          }          }
779              
       lex_match ('=');  
             
780        if (lex_match ('*'))        if (lex_match ('*'))
781          {          {
782            file->handle = NULL;            file->handle = NULL;

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26