[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.67 and 1.68

version 1.67, 2019/08/05 06:42:02 version 1.68, 2019/10/03 10:24:06
Line 278 
Line 278 
 tty_term_strip(const char *s)  tty_term_strip(const char *s)
 {  {
         const char     *ptr;          const char     *ptr;
         static char     buf[BUFSIZ];          static char     buf[8192];
         size_t          len;          size_t          len;
   
         /* Ignore strings with no padding. */          /* Ignore strings with no padding. */
Line 306 
Line 306 
 static char *  static char *
 tty_term_override_next(const char *s, size_t *offset)  tty_term_override_next(const char *s, size_t *offset)
 {  {
         static char     value[BUFSIZ];          static char     value[8192];
         size_t          n = 0, at = *offset;          size_t          n = 0, at = *offset;
   
         if (s[at] == '\0')          if (s[at] == '\0')

Legend:
Removed from v.1.67  
changed lines
  Added in v.1.68