]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/nsterm.m: Fix arguments to window_from_coordinates function call
authorJuri Linkov <juri@linkov.net>
Sun, 1 Sep 2019 20:11:36 +0000 (23:11 +0300)
committerJuri Linkov <juri@linkov.net>
Sun, 1 Sep 2019 20:11:36 +0000 (23:11 +0300)
Thanks to Jean-Christophe Helary <jean.christophe.helary@traduction-libre.org>

src/nsterm.m

index 42ef4dd01067fd5076ca53ca1ed7d547e33cef71..c8094d0ee37eef6f0ee88d9dc3c28101d6765541 100644 (file)
@@ -6859,7 +6859,7 @@ not_in_argv (NSString *arg)
       NSTRACE_MSG ("mouse_autoselect_window");
       static Lisp_Object last_mouse_window;
       Lisp_Object window
-       = window_from_coordinates (emacsframe, pt.x, pt.y, 0, 0);
+       = window_from_coordinates (emacsframe, pt.x, pt.y, 0, 0, 0);
 
       if (WINDOWP (window)
           && !EQ (window, last_mouse_window)