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

Diff for /src/usr.bin/tmux/Attic/window-more.c between version 1.12 and 1.13

version 1.12, 2010/02/01 22:15:51 version 1.13, 2010/02/06 17:15:33
Line 53 
Line 53 
 };  };
   
 void  void
   window_more_add(struct window_pane *wp, const char *fmt, ...)
   {
           va_list ap;
   
           va_start(ap, fmt);
           window_more_vadd(wp, fmt, ap);
           va_end(ap);
   }
   
   void
 window_more_vadd(struct window_pane *wp, const char *fmt, va_list ap)  window_more_vadd(struct window_pane *wp, const char *fmt, va_list ap)
 {  {
         struct window_more_mode_data    *data = wp->modedata;          struct window_more_mode_data    *data = wp->modedata;

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