summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmadeusz Sławiński <amade@asmblr.net>2020-02-05 21:05:28 +0100
committerAmadeusz Sławiński <amade@asmblr.net>2020-02-05 21:05:28 +0100
commit0dd53533e20d2948351a99ec5336fbc9b82b226a (patch)
treea1e7049399490eab8f5d6c68938469f2654d4790
parent68386dfb1fa33471372a8cd2e74686758a2f527b (diff)
downloadscreen-0dd53533e20d2948351a99ec5336fbc9b82b226a.tar.gz
Increase permitted length of OSC
hyperlink feature used by some terminals requires lots of characters https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda#length-limits mentions around 2083 characters, set it to a bit more. Bug: 57718 Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
-rw-r--r--src/window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h
index 11d2a9e..2d7e0f5 100644
--- a/src/window.h
+++ b/src/window.h
@@ -237,7 +237,7 @@ struct win
char w_vbwait;
char w_norefresh; /* dont redisplay when switching to that win */
#ifdef RXVT_OSC
- char w_xtermosc[5][MAXSTR]; /* special xterm/rxvt escapes */
+ char w_xtermosc[5][2560]; /* special xterm/rxvt escapes */
#endif
int w_mouse; /* mouse mode 0,9,1000 */
int w_extmouse; /* extended mouse mode 0,1006 */