[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.52 and 1.53

version 1.52, 2012/01/21 08:10:21 version 1.53, 2012/03/03 09:43:22
Line 878 
Line 878 
         s->mode |= mode;          s->mode |= mode;
 }  }
   
   /* Set bracketed paste mode. */
   void
   screen_write_bracketpaste(struct screen_write_ctx *ctx, int state)
   {
           struct screen   *s = ctx->s;
   
           if (state)
                   s->mode |= MODE_BRACKETPASTE;
           else
                   s->mode &= ~MODE_BRACKETPASTE;
   }
   
 /* Line feed. */  /* Line feed. */
 void  void
 screen_write_linefeed(struct screen_write_ctx *ctx, int wrapped)  screen_write_linefeed(struct screen_write_ctx *ctx, int wrapped)

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53