/[bison]/bison/src/reader.c
ViewVC logotype

Diff of /bison/src/reader.c

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

revision 1.72.2.1 by marc, Thu Aug 16 20:48:02 2001 UTC revision 1.72.2.2 by marc, Sun Aug 26 23:36:42 2001 UTC
# Line 883  parse_dquoted_param (const char *from) Line 883  parse_dquoted_param (const char *from)
883  {  {
884    char buff[32];    char buff[32];
885    int c;    int c;
886    int index;    int i;
887        
888    c = skip_white_space ();    c = skip_white_space ();
889    
# Line 895  parse_dquoted_param (const char *from) Line 895  parse_dquoted_param (const char *from)
895      }      }
896        
897    c = getc (finput);    c = getc (finput);
898    for (index = 0; (c >= '!') && (c <= '~'); index++)    for (i = 0; (c >= '!') && (c <= '~'); i++)
899      {      {
900        if (c == '"')        if (c == '"')
901          break;          break;
# Line 907  parse_dquoted_param (const char *from) Line 907  parse_dquoted_param (const char *from)
907              break;              break;
908          }          }
909                
910        buff[index] = c;        buff[i] = c;
911        c = getc (finput);        c = getc (finput);
912      }      }
913    buff[index] = '\0';    buff[i] = '\0';
914        
915    if (c != '"')    if (c != '"')
916      {      {

Legend:
Removed from v.1.72.2.1  
changed lines
  Added in v.1.72.2.2

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