[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.1181 and 1.1182

version 1.1181, 2022/08/15 09:10:34 version 1.1182, 2022/09/28 07:55:29
Line 667 
Line 667 
 #define GRID_LINE_EXTENDED 0x2  #define GRID_LINE_EXTENDED 0x2
 #define GRID_LINE_DEAD 0x4  #define GRID_LINE_DEAD 0x4
   
   /* Grid string flags. */
   #define GRID_STRING_WITH_SEQUENCES 0x1
   #define GRID_STRING_ESCAPE_SEQUENCES 0x2
   #define GRID_STRING_TRIM_SPACES 0x4
   #define GRID_STRING_USED_ONLY 0x8
   #define GRID_STRING_EMPTY_CELLS 0x10
   
   /* Cell positions. */
 #define CELL_INSIDE 0  #define CELL_INSIDE 0
 #define CELL_TOPBOTTOM 1  #define CELL_TOPBOTTOM 1
 #define CELL_LEFTRIGHT 2  #define CELL_LEFTRIGHT 2
Line 681 
Line 689 
 #define CELL_JOIN 11  #define CELL_JOIN 11
 #define CELL_OUTSIDE 12  #define CELL_OUTSIDE 12
   
   /* Cell borders. */
 #define CELL_BORDERS " xqlkmjwvtun~"  #define CELL_BORDERS " xqlkmjwvtun~"
 #define SIMPLE_BORDERS " |-+++++++++."  #define SIMPLE_BORDERS " |-+++++++++."
 #define PADDED_BORDERS "             "  #define PADDED_BORDERS "             "
Line 2783 
Line 2792 
 void     grid_move_lines(struct grid *, u_int, u_int, u_int, u_int);  void     grid_move_lines(struct grid *, u_int, u_int, u_int, u_int);
 void     grid_move_cells(struct grid *, u_int, u_int, u_int, u_int, u_int);  void     grid_move_cells(struct grid *, u_int, u_int, u_int, u_int, u_int);
 char    *grid_string_cells(struct grid *, u_int, u_int, u_int,  char    *grid_string_cells(struct grid *, u_int, u_int, u_int,
              struct grid_cell **, int, int, int, struct screen *);               struct grid_cell **, int, struct screen *);
 void     grid_duplicate_lines(struct grid *, u_int, struct grid *, u_int,  void     grid_duplicate_lines(struct grid *, u_int, struct grid *, u_int,
              u_int);               u_int);
 void     grid_reflow(struct grid *, u_int);  void     grid_reflow(struct grid *, u_int);

Legend:
Removed from v.1.1181  
changed lines
  Added in v.1.1182