diff lisp/term/sup-mouse.el @ 772:d682c0f82a71

[xemacs-hg @ 2002-03-13 10:00:06 by ben] a few bytecomp warning fixes, run autoconf just in case
author ben
date Wed, 13 Mar 2002 10:00:09 +0000
parents 376386a54a3c
children 85bd42a1e544 308d34e9f07d
line wrap: on
line diff
--- a/lisp/term/sup-mouse.el	Wed Mar 13 08:54:06 2002 +0000
+++ b/lisp/term/sup-mouse.el	Wed Mar 13 10:00:09 2002 +0000
@@ -46,6 +46,10 @@
 
 ;;;  Defuns:
 
+(defun sup-window-edges (&optional win)
+  (error "not implemented")
+  (window-pixel-edges win))
+
 (defun sup-mouse-report ()
   "This function is called directly by the mouse, it parses and
 executes the mouse commands.
@@ -71,7 +75,7 @@
        (x (sup-get-tty-num ?\;))
        (y (sup-get-tty-num ?c))
        (window (sup-pos-to-window x y))
-       (edges (window-edges window))
+       (edges (sup-window-edges window))
        (old-window (selected-window))
        (in-minibuf-p (eq y (1- (frame-height))))
        (same-window-p (and (not in-minibuf-p) (eq window old-window)))
@@ -190,7 +194,7 @@
 (defun sup-pos-to-window (x y)
   "Find window corresponding to frame coordinates.
 X and Y are 0-based character positions on the frame."
-  (let ((edges (window-edges))
+  (let ((edges (sup-window-edges))
 	(window nil))
     (while (and (not (eq window (selected-window)))
 		(or (<  y (nth 1 edges))
@@ -198,7 +202,7 @@
 		    (<  x (nth 0 edges))
 		    (>= x (nth 2 edges))))
       (setq window (next-window window))
-      (setq edges (window-edges window))
+      (setq edges (sup-window-edges window))
       )
     (or window (selected-window))
     )