aboutsummaryrefslogtreecommitdiff
path: root/pd/src/u_main.tk
diff options
context:
space:
mode:
authorMiller Puckette <millerpuckette@users.sourceforge.net>2008-03-16 19:12:49 +0000
committerMiller Puckette <millerpuckette@users.sourceforge.net>2008-03-16 19:12:49 +0000
commitc4420064e209e065d01510830a0cef9e3305f921 (patch)
tree4567302baaf4a7f51161ba47531df0f13777fa98 /pd/src/u_main.tk
parent3b6e2fb8a99e4efb66658cd9110e5f60c0f0ac15 (diff)
0.41-2 release
svn path=/trunk/; revision=9589
Diffstat (limited to 'pd/src/u_main.tk')
-rw-r--r--pd/src/u_main.tk2
1 files changed, 1 insertions, 1 deletions
diff --git a/pd/src/u_main.tk b/pd/src/u_main.tk
index 5b9d4e74..1ad84f08 100644
--- a/pd/src/u_main.tk
+++ b/pd/src/u_main.tk
@@ -3517,7 +3517,7 @@ proc pdtk_pd_texteditor {stuff} {
proc pdtk_pastetext {} {
global pdtk_pastebuffer
set pdtk_pastebuffer ""
- catch {global pdtk_pastebuffer; set pdtk_pastebuffer [selection get]}
+ catch {global pdtk_pastebuffer; set pdtk_pastebuffer [clipboard get]}
# puts stderr [concat paste $pdtk_pastebuffer]
for {set i 0} {$i < [string length $pdtk_pastebuffer]} {incr i 1} {
set cha [string index $pdtk_pastebuffer $i]