diff options
| author | Kim F. Storm | 2003-03-21 22:56:52 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-03-21 22:56:52 +0000 |
| commit | e080d3ebbf5823a103ff1f9c7614f05e55d91793 (patch) | |
| tree | 2289a36a54a56d6edf18cb0b8d983a31701cf0ad /src/w32console.c | |
| parent | 1853f74c1cede3a355e61ee504ec6289e0c58833 (diff) | |
| download | emacs-e080d3ebbf5823a103ff1f9c7614f05e55d91793.tar.gz emacs-e080d3ebbf5823a103ff1f9c7614f05e55d91793.zip | |
* 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, | |||
| 705 | return Qt; | 705 | return Qt; |
| 706 | } | 706 | } |
| 707 | 707 | ||
| 708 | #ifndef HAVE_NTGUI | ||
| 709 | void | ||
| 710 | pixel_to_glyph_coords (struct frame * f, int pix_x, int pix_y, int *x, int *y, | ||
| 711 | void *bounds, int noclip) | ||
| 712 | { | ||
| 713 | *x = pix_x; | ||
| 714 | *y = pix_y; | ||
| 715 | } | ||
| 716 | |||
| 717 | void | ||
| 718 | glyph_to_pixel_coords (struct window * f, int x, int y, int *pix_x, int *pix_y) | ||
| 719 | { | ||
| 720 | *pix_x = x; | ||
| 721 | *pix_y = y; | ||
| 722 | } | ||
| 723 | #endif /* !HAVE_NTGUI */ | ||
| 724 | |||
| 725 | void | 708 | void |
| 726 | syms_of_ntterm () | 709 | syms_of_ntterm () |
| 727 | { | 710 | { |