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

Diff for /src/usr.bin/tmux/tty-keys.c between version 1.153 and 1.154

version 1.153, 2022/02/16 18:55:05 version 1.154, 2022/03/08 12:01:19
Line 1154 
Line 1154 
  * partial.   * partial.
  */   */
 static int  static int
 tty_keys_clipboard(__unused struct tty *tty, const char *buf, size_t len,  tty_keys_clipboard(struct tty *tty, const char *buf, size_t len, size_t *size)
     size_t *size)  
 {  {
         size_t   end, terminator, needed;          struct client           *c = tty->client;
         char    *copy, *out;          struct window_pane      *wp;
         int      outlen;          size_t                   end, terminator, needed;
           char                    *copy, *out;
           int                      outlen;
           u_int                    i;
   
         *size = 0;          *size = 0;
   
Line 1221 
Line 1223 
         if (~tty->flags & TTY_OSC52QUERY)          if (~tty->flags & TTY_OSC52QUERY)
                 return (0);                  return (0);
         tty->flags &= ~TTY_OSC52QUERY;          tty->flags &= ~TTY_OSC52QUERY;
           evtimer_del(&tty->clipboard_timer);
   
         /* It has to be a string so copy it. */          /* It has to be a string so copy it. */
         copy = xmalloc(end + 1);          copy = xmalloc(end + 1);
Line 1237 
Line 1240 
         }          }
         free(copy);          free(copy);
   
         /* Create a new paste buffer. */          /* Create a new paste buffer and forward to panes. */
         log_debug("%s: %.*s", __func__, outlen, out);          log_debug("%s: %.*s", __func__, outlen, out);
         paste_add(NULL, out, outlen);          if (c->flags & CLIENT_CLIPBOARDBUFFER) {
                   paste_add(NULL, out, outlen);
                   c->flags &= ~CLIENT_CLIPBOARDBUFFER;
           }
           for (i = 0; i < c->clipboard_npanes; i++) {
                   wp = window_pane_find_by_id(c->clipboard_panes[i]);
                   if (wp != NULL)
                           input_reply_clipboard(wp->event, out, outlen, "\033\\");
           }
           free(c->clipboard_panes);
           c->clipboard_panes = NULL;
           c->clipboard_npanes = 0;
   
         return (0);          return (0);
 }  }

Legend:
Removed from v.1.153  
changed lines
  Added in v.1.154