···2828 argc -= optind;
2929 argv += optind;
30303131+ /* bring up the X11 window */
3232+ X11Window *X = [X11Window alloc];
3333+ [X init];
3434+3135 /* handle webkit window in the main thread (webkit won't allow use in
3236 * another thread anyway) */
3337 WKWindow *WKW = [WKWindow alloc];
3438 [WKW init];
3939+ [WKW setShadow:X];
35403636- /* bring up the X11 window in its own thread */
3737- X11Window *X = [X11Window alloc];
3838- [X init];
4141+ /* let X do its event loop in its own thread */
3942 [X performSelectorInBackground:@selector(mainLoopWithWKWindow:)
4043 withObject:WKW];
4144