aboutsummarylogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel2010-08-31 16:56:27 +0200
committerAurélien Aptel2010-08-31 16:56:27 +0200
commit9fa6aff51dcff5f897bc7b7de9956f4322bc9b92 (patch)
treecbbe738f2119ad3c968a255033fd5a64af8eaeb8 /st.c
parent75d11b84ebd7c659f0990c5c4f3e6c685b4df9c1 (diff)
downloadaur-9fa6aff51dcff5f897bc7b7de9956f4322bc9b92.tar.gz
fix build.
Diffstat (limited to 'st.c')
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index 67ba8d513f1f..1474c531dcb4 100644
--- a/st.c
+++ b/st.c
@@ -292,10 +292,10 @@ static void brelease(XEvent *e) {
if(sel.bx==sel.ex && sel.by==sel.ey) {
sel.bx = -1;
if(b==2)
- clipboard_paste();
+ selpaste();
} else {
if(b==1)
- clipboard_copy(getseltext());
+ selcopy(getseltext());
}
draw(1);
}