JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix utf8 clipboard. (thx Petr Sabata)
[st.git] / st.c
diff --git a/st.c b/st.c
index ed750e6..d0f2f5e 100644 (file)
--- 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));