diff options
author | Thomas Adam <thomas@xteddy.org> | 2021-01-08 10:01:20 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2021-01-08 10:01:20 +0000 |
commit | 9df33bc53698383da8a928525a0e62dc7778dd18 (patch) | |
tree | 7f2fa2892bab21040020ae62aff5a5b81d4d622e /window-copy.c | |
parent | fc28e2065a06e893874d22b7e829de47748970f7 (diff) | |
parent | b96c5e3687d36cea7b575a7e151326f1b82824d2 (diff) | |
download | rtmux-9df33bc53698383da8a928525a0e62dc7778dd18.tar.gz rtmux-9df33bc53698383da8a928525a0e62dc7778dd18.tar.bz2 rtmux-9df33bc53698383da8a928525a0e62dc7778dd18.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'window-copy.c')
-rw-r--r-- | window-copy.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/window-copy.c b/window-copy.c index 4c81cb1f..bfa94aed 100644 --- a/window-copy.c +++ b/window-copy.c @@ -2030,6 +2030,8 @@ window_copy_cmd_search_backward_incremental(struct window_copy_cmd_state *cs) data->timeout = 0; + log_debug ("%s: %s", __func__, argument); + prefix = *argument++; if (data->searchx == -1 || data->searchy == -1) { data->searchx = data->cx; @@ -2083,6 +2085,8 @@ window_copy_cmd_search_forward_incremental(struct window_copy_cmd_state *cs) data->timeout = 0; + log_debug ("%s: %s", __func__, argument); + prefix = *argument++; if (data->searchx == -1 || data->searchy == -1) { data->searchx = data->cx; |