aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2000-03-03 20:32:33 +0000
committerJason Rumney2000-03-03 20:32:33 +0000
commit3cd2f3279a5e4dabfa10e1fdebf4f47eb6c5a4c2 (patch)
treedd645b2c2c8ee542bd57907fdfe19e8d97f3672a
parent807cc41c4487f5cb9856e61c09898eb31028bcbd (diff)
downloademacs-3cd2f3279a5e4dabfa10e1fdebf4f47eb6c5a4c2.tar.gz
emacs-3cd2f3279a5e4dabfa10e1fdebf4f47eb6c5a4c2.zip
(make_lispy_event): Call buffer_posn_from_coords with correct parameters.
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 5a3511743de..ef3c2160a05 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -4670,7 +4670,7 @@ make_lispy_event (event)
4670 else 4670 else
4671 XSETINT (posn, 4671 XSETINT (posn,
4672 buffer_posn_from_coords (XWINDOW (window), 4672 buffer_posn_from_coords (XWINDOW (window),
4673 column, row)); 4673 &column, &row));
4674 } 4674 }
4675 4675
4676 { 4676 {