[BACK]Return to cmd-select-pane.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-select-pane.c between version 1.45 and 1.46

version 1.45, 2018/10/18 08:38:01 version 1.46, 2019/03/13 21:39:21
Line 19 
Line 19 
 #include <sys/types.h>  #include <sys/types.h>
   
 #include <stdlib.h>  #include <stdlib.h>
   #include <string.h>
   
 #include "tmux.h"  #include "tmux.h"
   
Line 143 
Line 144 
         if (args_has(self->args, 'P') || args_has(self->args, 'g')) {          if (args_has(self->args, 'P') || args_has(self->args, 'g')) {
                 if (args_has(args, 'P')) {                  if (args_has(args, 'P')) {
                         style = args_get(args, 'P');                          style = args_get(args, 'P');
                           memcpy(&wp->colgc, &grid_default_cell,
                               sizeof wp->colgc);
                         if (style_parse(&grid_default_cell, &wp->colgc,                          if (style_parse(&grid_default_cell, &wp->colgc,
                             style) == -1) {                              style) == -1) {
                                 cmdq_error(item, "bad style: %s", style);                                  cmdq_error(item, "bad style: %s", style);

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46