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

Diff for /src/usr.bin/tmux/screen.c between version 1.35 and 1.36

version 1.35, 2015/10/27 09:28:31 version 1.36, 2015/12/28 14:02:52
Line 94 
Line 94 
   
 /* Set screen cursor colour. */  /* Set screen cursor colour. */
 void  void
 screen_set_cursor_colour(struct screen *s, const char *colour_string)  screen_set_cursor_colour(struct screen *s, const char *colour)
 {  {
         free(s->ccolour);          free(s->ccolour);
         s->ccolour = xstrdup(colour_string);          s->ccolour = xstrdup(colour);
 }  }
   
 /* Set screen title. */  /* Set screen title. */

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36