From: Aurélien Aptel Date: Sun, 3 Apr 2011 19:00:55 +0000 (+0200) Subject: fix utf8 clipboard. (thx Petr Sabata) X-Git-Url: https://jasonwoof.com/gitweb/?p=st.git;a=commitdiff_plain;h=9b63dd9f435408caf3f91b4dfa9144a611302dd6 fix utf8 clipboard. (thx Petr Sabata) --- diff --git a/st.c b/st.c index ed750e6..d0f2f5e 100644 --- a/st.c +++ b/st.c @@ -483,7 +483,7 @@ selrequest(XEvent *e) { XA_ATOM, 32, PropModeReplace, (unsigned char *) &string, 1); xev.property = xsre->property; - } else if(xsre->target == XA_STRING) { + } else if(xsre->target == sel.xtarget) { XChangeProperty(xsre->display, xsre->requestor, xsre->property, xsre->target, 8, PropModeReplace, (unsigned char *) sel.clip, strlen(sel.clip));