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

Diff for /src/usr.bin/tmux/cmd-new-session.c between version 1.13 and 1.14

version 1.13, 2009/08/13 20:11:58 version 1.14, 2009/08/19 14:32:15
Line 212 
Line 212 
         tio.c_oflag = TTYDEF_OFLAG;          tio.c_oflag = TTYDEF_OFLAG;
         tio.c_lflag = TTYDEF_LFLAG;          tio.c_lflag = TTYDEF_LFLAG;
         tio.c_cflag = TTYDEF_CFLAG;          tio.c_cflag = TTYDEF_CFLAG;
         tio.c_ispeed = TTYDEF_SPEED;          cfsetispeed(&tio, TTYDEF_SPEED);
         tio.c_ospeed = TTYDEF_SPEED;          cfsetospeed(&tio, TTYDEF_SPEED);
   
         /* Create the new session. */          /* Create the new session. */
         idx = -1 - options_get_number(&global_s_options, "base-index");          idx = -1 - options_get_number(&global_s_options, "base-index");

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14