[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.97 and 1.98

version 1.97, 2023/04/25 09:31:50 version 1.98, 2023/04/28 05:59:35
Line 759 
Line 759 
         const char      *x = tty_term_string(term, code), *s;          const char      *x = tty_term_string(term, code), *s;
   
         s = tparm((char *)x, a);          s = tparm((char *)x, a);
         if (s == NULL)          if (s == NULL) {
                 fatalx("could not expand %s", tty_term_codes[code].name);                  log_debug("could not expand %s", tty_term_codes[code].name);
                   return ("");
           }
         return (s);          return (s);
 }  }
   
Line 770 
Line 772 
         const char      *x = tty_term_string(term, code), *s;          const char      *x = tty_term_string(term, code), *s;
   
         s = tparm((char *)x, a, b);          s = tparm((char *)x, a, b);
         if (s == NULL)          if (s == NULL) {
                 fatalx("could not expand %s", tty_term_codes[code].name);                  log_debug("could not expand %s", tty_term_codes[code].name);
                   return ("");
           }
         return (s);          return (s);
 }  }
   
 const char *  const char *
 tty_term_string_iii(struct tty_term *term, enum tty_code_code code, int a, int b,  tty_term_string_iii(struct tty_term *term, enum tty_code_code code, int a,
     int c)      int b, int c)
 {  {
         const char      *x = tty_term_string(term, code), *s;          const char      *x = tty_term_string(term, code), *s;
   
         s = tparm((char *)x, a, b, c);          s = tparm((char *)x, a, b, c);
         if (s == NULL)          if (s == NULL) {
                 fatalx("could not expand %s", tty_term_codes[code].name);                  log_debug("could not expand %s", tty_term_codes[code].name);
                   return ("");
           }
         return (s);          return (s);
 }  }
   
Line 793 
Line 799 
         const char      *x = tty_term_string(term, code), *s;          const char      *x = tty_term_string(term, code), *s;
   
         s = tparm((char *)x, (long)a);          s = tparm((char *)x, (long)a);
         if (s == NULL)          if (s == NULL) {
                 fatalx("could not expand %s", tty_term_codes[code].name);                  log_debug("could not expand %s", tty_term_codes[code].name);
                   return ("");
           }
         return (s);          return (s);
 }  }
   
 const char *  const char *
 tty_term_string_ss(struct tty_term *term, enum tty_code_code code, const char *a,  tty_term_string_ss(struct tty_term *term, enum tty_code_code code,
     const char *b)      const char *a, const char *b)
 {  {
         const char      *x = tty_term_string(term, code), *s;          const char      *x = tty_term_string(term, code), *s;
   
         s = tparm((char *)x, (long)a, (long)b);          s = tparm((char *)x, (long)a, (long)b);
         if (s == NULL)          if (s == NULL) {
                 fatalx("could not expand %s", tty_term_codes[code].name);                  log_debug("could not expand %s", tty_term_codes[code].name);
                   return ("");
           }
         return (s);          return (s);
 }  }
   

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98