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

Diff for /src/usr.bin/tmux/tmux.h between version 1.720 and 1.721

version 1.720, 2017/02/08 16:45:18 version 1.721, 2017/02/08 17:31:09
Line 241 
Line 241 
         TTYC_ICH1,      /* insert_character, ic */          TTYC_ICH1,      /* insert_character, ic */
         TTYC_IL,        /* parm_insert_line, IL */          TTYC_IL,        /* parm_insert_line, IL */
         TTYC_IL1,       /* insert_line, il */          TTYC_IL1,       /* insert_line, il */
           TTYC_INDN,      /* parm_index, indn */
         TTYC_INVIS,     /* enter_secure_mode, mk */          TTYC_INVIS,     /* enter_secure_mode, mk */
         TTYC_IS1,       /* init_1string, i1 */          TTYC_IS1,       /* init_1string, i1 */
         TTYC_IS2,       /* init_2string, i2 */          TTYC_IS2,       /* init_2string, i2 */
Line 663 
Line 664 
   
         struct screen_write_collect_item *item;          struct screen_write_collect_item *item;
         struct screen_write_collect_line *list;          struct screen_write_collect_line *list;
           u_int                    scrolled;
   
         u_int                    cells;          u_int                    cells;
         u_int                    written;          u_int                    written;
Line 1658 
Line 1660 
 void    tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);  void    tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
 void    tty_cmd_insertline(struct tty *, const struct tty_ctx *);  void    tty_cmd_insertline(struct tty *, const struct tty_ctx *);
 void    tty_cmd_linefeed(struct tty *, const struct tty_ctx *);  void    tty_cmd_linefeed(struct tty *, const struct tty_ctx *);
   void    tty_cmd_scrollup(struct tty *, const struct tty_ctx *);
 void    tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);  void    tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
 void    tty_cmd_setselection(struct tty *, const struct tty_ctx *);  void    tty_cmd_setselection(struct tty *, const struct tty_ctx *);
 void    tty_cmd_rawstring(struct tty *, const struct tty_ctx *);  void    tty_cmd_rawstring(struct tty *, const struct tty_ctx *);
Line 1984 
Line 1987 
 void     screen_write_reverseindex(struct screen_write_ctx *);  void     screen_write_reverseindex(struct screen_write_ctx *);
 void     screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);  void     screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
 void     screen_write_linefeed(struct screen_write_ctx *, int);  void     screen_write_linefeed(struct screen_write_ctx *, int);
   void     screen_write_scrollup(struct screen_write_ctx *, u_int);
 void     screen_write_carriagereturn(struct screen_write_ctx *);  void     screen_write_carriagereturn(struct screen_write_ctx *);
 void     screen_write_clearendofscreen(struct screen_write_ctx *, u_int);  void     screen_write_clearendofscreen(struct screen_write_ctx *, u_int);
 void     screen_write_clearstartofscreen(struct screen_write_ctx *, u_int);  void     screen_write_clearstartofscreen(struct screen_write_ctx *, u_int);

Legend:
Removed from v.1.720  
changed lines
  Added in v.1.721