Mercurial > emacs
changeset 12006:3e9db7cb1d05
(Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 29 May 1995 21:03:47 +0000 |
parents | 4a722a97c8d3 |
children | 4179378fa410 |
files | src/frame.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Mon May 29 20:54:22 1995 +0000 +++ b/src/frame.c Mon May 29 21:03:47 1995 +0000 @@ -1096,7 +1096,7 @@ { col = XINT (x); row = XINT (y); - pixel_to_glyph_coords (f, col, row, &col, &row, 0, 1); + pixel_to_glyph_coords (f, col, row, &col, &row, NULL, 1); XSETINT (x, col); XSETINT (y, row); }