fix build. - st - Personal fork of st
 (HTM) git clone git://git.drkhsh.at/st.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 1132d9e2d65f469dedd9c5b6f356495c7a87b743
 (DIR) parent c4225bdcc9da2eb87e49608cc1821757cbd69dee
 (HTM) Author: Aurélien Aptel <aurelien.aptel@gmail.com>
       Date:   Tue, 31 Aug 2010 16:56:27 +0200
       
       fix build.
       
       Diffstat:
         M st.c                                |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git 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);
        }