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

Diff for /src/usr.bin/tmux/tmux.c between version 1.203 and 1.204

version 1.203, 2020/09/22 05:23:34 version 1.204, 2021/01/17 16:17:41
Line 57 
Line 57 
 usage(void)  usage(void)
 {  {
         fprintf(stderr,          fprintf(stderr,
             "usage: %s [-2CDluvV] [-c shell-command] [-f file] [-L socket-name]\n"              "usage: %s [-2CDlNuvV] [-c shell-command] [-f file] [-L socket-name]\n"
             "            [-S socket-path] [-T features] [command [flags]]\n",              "            [-S socket-path] [-T features] [command [flags]]\n",
             getprogname());              getprogname());
         exit(1);          exit(1);
Line 350 
Line 350 
         if (**argv == '-')          if (**argv == '-')
                 flags = CLIENT_LOGIN;                  flags = CLIENT_LOGIN;
   
         while ((opt = getopt(argc, argv, "2c:CDdf:lL:qS:T:uUvV")) != -1) {          while ((opt = getopt(argc, argv, "2c:CDdf:lL:NqS:T:uUvV")) != -1) {
                 switch (opt) {                  switch (opt) {
                 case '2':                  case '2':
                         tty_add_features(&feat, "256", ":,");                          tty_add_features(&feat, "256", ":,");
Line 379 
Line 379 
                 case 'L':                  case 'L':
                         free(label);                          free(label);
                         label = xstrdup(optarg);                          label = xstrdup(optarg);
                           break;
                   case 'N':
                           flags |= CLIENT_NOSTARTSERVER;
                         break;                          break;
                 case 'q':                  case 'q':
                         break;                          break;

Legend:
Removed from v.1.203  
changed lines
  Added in v.1.204