[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.370 and 1.371

version 1.370, 2013/01/15 22:55:29 version 1.371, 2013/01/15 23:18:55
Line 274 
Line 274 
         TTYC_DL,        /* parm_delete_line, DL */          TTYC_DL,        /* parm_delete_line, DL */
         TTYC_DL1,       /* delete_line, dl */          TTYC_DL1,       /* delete_line, dl */
         TTYC_E3,          TTYC_E3,
           TTYC_ECH,       /* erase_chars, ec */
         TTYC_EL,        /* clr_eol, ce */          TTYC_EL,        /* clr_eol, ce */
         TTYC_EL1,       /* clr_bol, cb */          TTYC_EL1,       /* clr_bol, cb */
         TTYC_ENACS,     /* ena_acs, eA */          TTYC_ENACS,     /* ena_acs, eA */
Line 1660 
Line 1661 
 void    tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);  void    tty_cmd_clearstartofline(struct tty *, const struct tty_ctx *);
 void    tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);  void    tty_cmd_clearstartofscreen(struct tty *, const struct tty_ctx *);
 void    tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);  void    tty_cmd_deletecharacter(struct tty *, const struct tty_ctx *);
   void    tty_cmd_clearcharacter(struct tty *, const struct tty_ctx *);
 void    tty_cmd_deleteline(struct tty *, const struct tty_ctx *);  void    tty_cmd_deleteline(struct tty *, const struct tty_ctx *);
 void    tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);  void    tty_cmd_erasecharacter(struct tty *, const struct tty_ctx *);
 void    tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);  void    tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *);
Line 2049 
Line 2051 
 void     screen_write_alignmenttest(struct screen_write_ctx *);  void     screen_write_alignmenttest(struct screen_write_ctx *);
 void     screen_write_insertcharacter(struct screen_write_ctx *, u_int);  void     screen_write_insertcharacter(struct screen_write_ctx *, u_int);
 void     screen_write_deletecharacter(struct screen_write_ctx *, u_int);  void     screen_write_deletecharacter(struct screen_write_ctx *, u_int);
   void     screen_write_clearcharacter(struct screen_write_ctx *, u_int);
 void     screen_write_insertline(struct screen_write_ctx *, u_int);  void     screen_write_insertline(struct screen_write_ctx *, u_int);
 void     screen_write_deleteline(struct screen_write_ctx *, u_int);  void     screen_write_deleteline(struct screen_write_ctx *, u_int);
 void     screen_write_clearline(struct screen_write_ctx *);  void     screen_write_clearline(struct screen_write_ctx *);

Legend:
Removed from v.1.370  
changed lines
  Added in v.1.371