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

Diff for /src/usr.bin/tmux/tty.c between version 1.99 and 1.100

version 1.99, 2011/01/29 08:39:43 version 1.100, 2011/03/07 23:46:27
Line 932 
Line 932 
 }  }
   
 void  void
   tty_cmd_rawstring(struct tty *tty, const struct tty_ctx *ctx)
   {
           u_int    i;
           u_char  *str = ctx->ptr;
   
           for (i = 0; i < ctx->num; i++)
                   tty_putc(tty, str[i]);
   }
   
   void
 tty_cell(  tty_cell(
     struct tty *tty, const struct grid_cell *gc, const struct grid_utf8 *gu)      struct tty *tty, const struct grid_cell *gc, const struct grid_utf8 *gu)
 {  {

Legend:
Removed from v.1.99  
changed lines
  Added in v.1.100