diff options
author | Kim F. Storm <storm@cua.dk> | 2003-03-21 22:56:52 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2003-03-21 22:56:52 +0000 |
commit | e080d3ebbf5823a103ff1f9c7614f05e55d91793 (patch) | |
tree | 2289a36a54a56d6edf18cb0b8d983a31701cf0ad /src/msdos.c | |
parent | 1853f74c1cede3a355e61ee504ec6289e0c58833 (diff) | |
download | emacs-e080d3ebbf5823a103ff1f9c7614f05e55d91793.tar.gz |
* xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
Add generic versions here. Remove system specific versions
defined elsewhere.
Diffstat (limited to 'src/msdos.c')
-rw-r--r-- | src/msdos.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/msdos.c b/src/msdos.c index 3ab3597b8ed..2c3d2837e4b 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -3500,31 +3500,7 @@ dos_keyread () } #ifndef HAVE_X_WINDOWS -/* See xterm.c for more info. */ -void -pixel_to_glyph_coords (f, pix_x, pix_y, x, y, bounds, noclip) - FRAME_PTR f; - register int pix_x, pix_y, *x, *y; - XRectangle *bounds; - int noclip; -{ - if (bounds) abort (); - - /* Ignore clipping. */ - - *x = pix_x; - *y = pix_y; -} -void -glyph_to_pixel_coords (f, x, y, pix_x, pix_y) - FRAME_PTR f; - register int x, y, *pix_x, *pix_y; -{ - *pix_x = x; - *pix_y = y; -} - /* Simulation of X's menus. Nothing too fancy here -- just make it work for now. |