[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.8 and 1.9

version 1.8, 2019/05/29 19:34:42 version 1.9, 2019/05/29 20:05:14
Line 1118 
Line 1118 
         switch (ch) {          switch (ch) {
         case EOF:          case EOF:
                 return (0);                  return (0);
           case 'a':
                   ch = '\a';
                   break;
           case 'b':
                   ch = '\b';
                   break;
         case 'e':          case 'e':
                 ch = '\033';                  ch = '\033';
                   break;
           case 'f':
                   ch = '\f';
                   break;
           case 's':
                   ch = ' ';
                   break;
           case 'v':
                   ch = '\v';
                 break;                  break;
         case 'r':          case 'r':
                 ch = '\r';                  ch = '\r';

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9