# HG changeset patch # User Karl Heuer # Date 801781427 0 # Node ID 3e9db7cb1d05d92bc6fbff54e82a6f9d3ba96924 # Parent 4a722a97c8d3b641edf6d205f3d064b60b0e6ec8 (Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords. diff -r 4a722a97c8d3 -r 3e9db7cb1d05 src/frame.c --- 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); }