wok-current rev 22085
updated urxvt and urxvt-full ( -> 9.22)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Oct 31 12:37:21 2019 +0100 (2019-10-31) |
parents | 7c02b0189105 |
children | 37c51a23ae10 |
files | urxvt/stuff/patches/command.C-9.22 urxvt/stuff/patches/misc.C-9.22 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/urxvt/stuff/patches/command.C-9.22 Thu Oct 31 12:37:21 2019 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +--- command.C.orig 2019-10-31 11:10:34.762750859 +0100 1.5 ++++ command.C 2019-10-31 11:12:35.416498760 +0100 1.6 +@@ -3404,7 +3404,7 @@ rxvt_term::process_xterm_seq (int op, ch 1.7 + } 1.8 + else 1.9 + { 1.10 +- char *eq = strchr (str, '='); 1.11 ++ char *eq = strchr ((char *)str, '='); 1.12 + 1.13 + if (eq) 1.14 + {
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/urxvt/stuff/patches/misc.C-9.22 Thu Oct 31 12:37:21 2019 +0100 2.3 @@ -0,0 +1,11 @@ 2.4 +--- misc.C.orig 2019-10-31 11:10:49.731985094 +0100 2.5 ++++ misc.C 2019-10-31 11:13:34.481249573 +0100 2.6 +@@ -193,7 +193,7 @@ rxvt_utf8towcs (const char *str, int len 2.7 + const char * 2.8 + rxvt_basename (const char *str) NOTHROW 2.9 + { 2.10 +- const char *base = strrchr (str, '/'); 2.11 ++ const char *base = strrchr ((char *)str, '/'); 2.12 + 2.13 + return base ? base + 1 : str; 2.14 + }