[BACK]Return to cmd-capture-pane.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-capture-pane.c between version 1.41 and 1.42

version 1.41, 2016/10/16 19:04:05 version 1.42, 2017/01/02 22:42:19
Line 77 
Line 77 
         buf = xstrdup("");          buf = xstrdup("");
         if (args_has(args, 'C')) {          if (args_has(args, 'C')) {
                 for (i = 0; i < linelen; i++) {                  for (i = 0; i < linelen; i++) {
                         if (line[i] >= ' ') {                          if (line[i] >= ' ' && line[i] != '\\') {
                                 tmp[0] = line[i];                                  tmp[0] = line[i];
                                 tmp[1] = '\0';                                  tmp[1] = '\0';
                         } else                          } else

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42