[BACK]Return to str.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/str.c between version 1.5 and 1.6

version 1.5, 1996/11/30 21:09:04 version 1.6, 1998/03/07 18:34:50
Line 170 
Line 170 
                 switch(ch = *p) {                  switch(ch = *p) {
                 case '"':                  case '"':
                 case '\'':                  case '\'':
                         if (inquote)                          if (inquote) {
                                 if (inquote == ch)                                  if (inquote == ch)
                                         inquote = '\0';                                          inquote = '\0';
                                 else                                  else
                                         break;                                          break;
                         else {                          } else {
                                 inquote = (char) ch;                                  inquote = (char) ch;
                                 /* Don't miss "" or '' */                                  /* Don't miss "" or '' */
                                 if (start == NULL && p[1] == inquote) {                                  if (start == NULL && p[1] == inquote) {

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6