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

Diff for /src/usr.bin/tmux/tty-term.c between version 1.23 and 1.24

version 1.23, 2011/05/18 20:24:29 version 1.24, 2011/05/20 19:03:58
Line 38 
Line 38 
         { TTYC_BEL, TTYCODE_STRING, "bel" },          { TTYC_BEL, TTYCODE_STRING, "bel" },
         { TTYC_BLINK, TTYCODE_STRING, "blink" },          { TTYC_BLINK, TTYCODE_STRING, "blink" },
         { TTYC_BOLD, TTYCODE_STRING, "bold" },          { TTYC_BOLD, TTYCODE_STRING, "bold" },
           { TTYC_CC, TTYCODE_STRING, "Cc" },
         { TTYC_CIVIS, TTYCODE_STRING, "civis" },          { TTYC_CIVIS, TTYCODE_STRING, "civis" },
         { TTYC_CLEAR, TTYCODE_STRING, "clear" },          { TTYC_CLEAR, TTYCODE_STRING, "clear" },
         { TTYC_CNORM, TTYCODE_STRING, "cnorm" },          { TTYC_CNORM, TTYCODE_STRING, "cnorm" },
         { TTYC_COLORS, TTYCODE_NUMBER, "colors" },          { TTYC_COLORS, TTYCODE_NUMBER, "colors" },
           { TTYC_CR, TTYCODE_STRING, "Cr" },
         { TTYC_CSR, TTYCODE_STRING, "csr" },          { TTYC_CSR, TTYCODE_STRING, "csr" },
         { TTYC_CUB, TTYCODE_STRING, "cub" },          { TTYC_CUB, TTYCODE_STRING, "cub" },
         { TTYC_CUB1, TTYCODE_STRING, "cub1" },          { TTYC_CUB1, TTYCODE_STRING, "cub1" },
Line 491 
Line 493 
 tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b)  tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b)
 {  {
         return (tparm((char *) tty_term_string(term, code), a, b));          return (tparm((char *) tty_term_string(term, code), a, b));
   }
   
   const char *
   tty_term_ptr1(struct tty_term *term, enum tty_code_code code, const void *a)
   {
           return (tparm((char *) tty_term_string(term, code), a));
 }  }
   
 const char *  const char *

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24