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

Diff for /src/usr.bin/tmux/screen-write.c between version 1.223 and 1.224

version 1.223, 2023/10/23 08:12:00 version 1.224, 2023/10/30 16:05:30
Line 2025 
Line 2025 
                         return (0);                          return (0);
         }          }
   
           /* Check if this combined character would be too long. */
           if (last.data.size + ud->size > sizeof last.data.data)
                   return (0);
   
         /* Combining; flush any pending output. */          /* Combining; flush any pending output. */
         screen_write_collect_flush(ctx, 0, __func__);          screen_write_collect_flush(ctx, 0, __func__);
   

Legend:
Removed from v.1.223  
changed lines
  Added in v.1.224