diff --git a/src/cmd/devdraw/osx-screen.c b/src/cmd/devdraw/osx-screen.c index 7c686ed9..abf276aa 100644 --- a/src/cmd/devdraw/osx-screen.c +++ b/src/cmd/devdraw/osx-screen.c @@ -732,7 +732,7 @@ struct { char* getsnarf(void) { - char *s; + char *s, *t; CFArrayRef flavors; CFDataRef data; CFIndex nflavor, ndata, j; @@ -741,9 +741,6 @@ getsnarf(void) PasteboardItemID id; PasteboardSyncFlags flags; UInt32 i; - u16int *u; - Fmt fmt; - Rune r; /* fprint(2, "applegetsnarf\n"); */ qlock(&clip.lk); @@ -778,26 +775,15 @@ getsnarf(void) continue; if(PasteboardCopyItemFlavorData(clip.apple, id, type, &data) != noErr) continue; + ndata = CFDataGetLength(data); qunlock(&clip.lk); - ndata = CFDataGetLength(data)/2; - u = (u16int*)CFDataGetBytePtr(data); - fmtstrinit(&fmt); - // decode utf-16. what was apple thinking? - for(i=0; i= 0x10000) { - r -= 0x10000; - *p++ = 0xd800 + (r>>10); - *p++ = 0xdc00 + (r & ((1<<10)-1)); - } else - *p++ = r; - } + assert(sizeof(clip.rbuf[0]) == 2); cfdata = CFDataCreate(kCFAllocatorDefault, - (uchar*)u, (p-u)*2); - free(u); + (uchar*)clip.rbuf, runestrlen(clip.rbuf)*2); if(cfdata == nil){ fprint(2, "apple pasteboard cfdatacreate failed\n"); qunlock(&clip.lk);