From: Karl Heuer Date: Mon, 29 May 1995 21:03:47 +0000 (+0000) Subject: (Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords. X-Git-Tag: emacs-19.34~3852 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8126c3b47078b24f6390cd985a685ae58ade0f2a;p=emacs.git (Fmouse_position): Use NULL, not 0, as arg of pixel_to_glyph_coords. --- diff --git a/src/frame.c b/src/frame.c index 1d377f5a0da..ab4713b2d66 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1096,7 +1096,7 @@ and nil for X and Y.") { 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); }