# HG changeset patch # User Karl Heuer # Date 801781447 0 # Node ID 4179378fa41032bc0f5225938b25b4e3cb5f39c0 # Parent 3e9db7cb1d05d92bc6fbff54e82a6f9d3ba96924 (make_lispy_event, make_lispy_movement): Use NULL, not 0, as arg of pixel_to_glyph_coords. diff -r 3e9db7cb1d05 -r 4179378fa410 src/keyboard.c --- a/src/keyboard.c Mon May 29 21:03:47 1995 +0000 +++ b/src/keyboard.c Mon May 29 21:04:07 1995 +0000 @@ -3049,7 +3049,7 @@ return Qnil; pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y), - &column, &row, 0, 1); + &column, &row, NULL, 1); #ifndef USE_X_TOOLKIT /* In the non-toolkit version, clicks on the menu bar @@ -3318,7 +3318,8 @@ #endif { /* It's in a frame; which window on that frame? */ - pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 1); + pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, + NULL, 1); window = window_from_coordinates (frame, column, row, &area); } else