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 | ecb6cc6f8f9e33b89790c0bb76d4ed10c825d814 (patch) | |
tree | 6c126d4fdef09001b45b761fab3522494d72b375 /src/w32console.c | |
parent | 6a04d1f850ab79dbe5bb75937bfca105017e0f32 (diff) | |
download | emacs-ecb6cc6f8f9e33b89790c0bb76d4ed10c825d814.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/w32console.c')
-rw-r--r-- | src/w32console.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/w32console.c b/src/w32console.c index c784f804630..5a66ae4af8d 100644 --- a/src/w32console.c +++ b/src/w32console.c @@ -705,23 +705,6 @@ DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0, return Qt; } -#ifndef HAVE_NTGUI -void -pixel_to_glyph_coords (struct frame * f, int pix_x, int pix_y, int *x, int *y, - void *bounds, int noclip) -{ - *x = pix_x; - *y = pix_y; -} - -void -glyph_to_pixel_coords (struct window * f, int x, int y, int *pix_x, int *pix_y) -{ - *pix_x = x; - *pix_y = y; -} -#endif /* !HAVE_NTGUI */ - void syms_of_ntterm () { |