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

Diff for /src/usr.bin/tmux/cfg.c between version 1.13 and 1.14

version 1.13, 2011/08/24 10:46:01 version 1.14, 2012/05/17 21:21:31
Line 109 
Line 109 
                 len = strlen(line);                  len = strlen(line);
                 if (len > 0 && line[len - 1] == '\\') {                  if (len > 0 && line[len - 1] == '\\') {
                         line[len - 1] = '\0';                          line[len - 1] = '\0';
                         continue;                          /* Ignore escaped backslash at EOL. */
                           if (len > 1 && line[len - 2] != '\\')
                                   continue;
                 }                  }
                 buf = line;                  buf = line;
                 line = NULL;                  line = NULL;

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14