[comp.sys.sun] Question about SunView Input handling

jdp@uunet.uu.net (John D. Polstra) (11/29/88)

> Has anyone ever had trouble with Sunview's
>            window_set(win, WIN_GRAB_ALL_INPUT, 0);

Well, for starters, you're leaving out the boolean value that goes with
it.  Try one of these:

	window_set(win, WIN_GRAB_ALL_INPUT, TRUE, 0);
	window_set(win, WIN_GRAB_ALL_INPUT, FALSE, 0);

-- John Polstra (jdp@polstra.uucp)