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

Diff for /src/usr.bin/tmux/screen-write.c between version 1.64 and 1.65

version 1.64, 2013/03/22 10:36:54 version 1.65, 2013/03/22 10:41:01
Line 1053 
Line 1053 
          * Move the cursor. If not wrapping, stick at the last character and           * Move the cursor. If not wrapping, stick at the last character and
          * replace it.           * replace it.
          */           */
         last = !!(s->mode & MODE_WRAP);          last = !(s->mode & MODE_WRAP);
         if (s->cx <= screen_size_x(s) - last - width)          if (s->cx <= screen_size_x(s) - last - width)
                 s->cx += width;                  s->cx += width;
         else          else

Legend:
Removed from v.1.64  
changed lines
  Added in v.1.65