Mercurial > hg > xemacs-beta
comparison src/frame.c @ 347:7c94d56991e1 r21-1-3
Import from CVS: tag r21-1-3
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:53:48 +0200 |
parents | c9fe270a4101 |
children | a4f53d9b3154 |
comparison
equal
deleted
inserted
replaced
346:dd0986ffd2cf | 347:7c94d56991e1 |
---|---|
1827 (window, x, y)) | 1827 (window, x, y)) |
1828 { | 1828 { |
1829 struct window *w; | 1829 struct window *w; |
1830 int pix_x, pix_y; | 1830 int pix_x, pix_y; |
1831 | 1831 |
1832 CHECK_WINDOW (window); | 1832 CHECK_LIVE_WINDOW (window); |
1833 CHECK_INT (x); | 1833 CHECK_INT (x); |
1834 CHECK_INT (y); | 1834 CHECK_INT (y); |
1835 | 1835 |
1836 /* Warping the mouse will cause EnterNotify and Focus events under X. */ | 1836 /* Warping the mouse will cause EnterNotify and Focus events under X. */ |
1837 w = XWINDOW (window); | 1837 w = XWINDOW (window); |
1851 */ | 1851 */ |
1852 (window, x, y)) | 1852 (window, x, y)) |
1853 { | 1853 { |
1854 struct window *w; | 1854 struct window *w; |
1855 | 1855 |
1856 CHECK_WINDOW (window); | 1856 CHECK_LIVE_WINDOW (window); |
1857 CHECK_INT (x); | 1857 CHECK_INT (x); |
1858 CHECK_INT (y); | 1858 CHECK_INT (y); |
1859 | 1859 |
1860 /* Warping the mouse will cause EnterNotify and Focus events under X. */ | 1860 /* Warping the mouse will cause EnterNotify and Focus events under X. */ |
1861 w = XWINDOW (window); | 1861 w = XWINDOW (window); |