[BACK]Return to cmd-parse.y CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-parse.y between version 1.31 and 1.32

version 1.31, 2020/07/13 10:10:10 version 1.32, 2020/12/01 10:48:03
Line 1505 
Line 1505 
                     state == NONE)                      state == NONE)
                         break;                          break;
   
                 /* Spaces and comments inside quotes after \n are removed. */                  /*
                    * Spaces and comments inside quotes after \n are removed but
                    * the \n is left.
                    */
                 if (ch == '\n' && state != NONE) {                  if (ch == '\n' && state != NONE) {
                           yylex_append1(&buf, &len, '\n');
                         while ((ch = yylex_getc()) == ' ' || ch == '\t')                          while ((ch = yylex_getc()) == ' ' || ch == '\t')
                                 /* nothing */;                                  /* nothing */;
                         if (ch != '#')                          if (ch != '#')

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32