[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.29 and 1.30

version 1.29, 2020/06/04 08:30:44 version 1.30, 2020/06/04 16:06:01
Line 535 
Line 535 
                         {                          {
                                 $$ = $1;                                  $$ = $1;
                         }                          }
                         | statements '}'                          | statements statement '}'
                         {                          {
                                 $$ = $1;                                  $$ = $1;
                                   TAILQ_CONCAT($$, $2, entry);
                                   free($2);
                         }                          }
   
 %%  %%

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30