home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume10
/
x10r4.sunpch
/
part02
/
X
/
changes
/
input.c.patch
next >
Wrap
Text File
|
1987-07-14
|
922b
|
46 lines
*** /usr/src/new/X.V10R4/X/input.c Wed Dec 17 20:26:02 1986
--- input.c Mon Jun 8 14:28:45 1987
***************
*** 13,19 ****
*/
#ifndef lint
! static char *rcsid_input_c = "$Header: input.c,v 10.12 86/12/17 20:25:13 swick Exp $";
#endif
--- 13,19 ----
*/
#ifndef lint
! static char *rcsid_input_c = "$Header: input.c,v 10.13 87/05/02 14:33:39 mayer Exp $";
#endif
***************
*** 532,539 ****
return;
}
ocurs = cursor;
! deltax = ocurs->xoff - curs->xoff;
! deltay = ocurs->yoff - curs->yoff;
button_window = NULL;
if (mouse_grabber == 0) {
Stash_grabs (client);
--- 532,546 ----
return;
}
ocurs = cursor;
! if (ocurs == NULL)
! {
! deltax = deltay = 0;
! }
! else
! {
! deltax = ocurs->xoff - curs->xoff;
! deltay = ocurs->yoff - curs->yoff;
! }
button_window = NULL;
if (mouse_grabber == 0) {
Stash_grabs (client);