annotate lisp/term/sup-mouse.el @ 5067:7d7ae8db0341

add functions `stable-union' and `stable-intersection' to do stable set operations -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2010-02-22 Ben Wing <ben@xemacs.org> * cl-seq.el: * cl-seq.el (stable-union): New. * cl-seq.el (stable-intersection): New. New functions to do stable set operations, i.e. preserve the order of the elements in the argument lists, and prefer LIST1 over LIST2 when ordering the combined result. The result looks as much like LIST1 as possible, followed (in the case of `stable-union') by any necessary elements from LIST2, in order. This is contrary to `union' and `intersection', which are not required to be order- preserving and are not -- they prefer LIST2 and output results in backwards order.
author Ben Wing <ben@xemacs.org>
date Mon, 22 Feb 2010 21:23:02 -0600
parents d682c0f82a71
children 85bd42a1e544 308d34e9f07d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; sup-mouse.el --- supdup mouse support for lisp machines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) Free Software Foundation 1985, 1986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Wolfgang Rupprecht
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Maintainer: FSF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Created: 21 Nov 1986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; Keywords: hardware
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; (from code originally written by John Robinson@bbn for the bitgraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;; along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;; User customization option:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 (defvar sup-mouse-fast-select-window nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 "*Non-nil for mouse hits to select new window, then execute; else just select.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (defconst mouse-left 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (defconst mouse-center 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (defconst mouse-right 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (defconst mouse-2left 4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (defconst mouse-2center 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (defconst mouse-2right 6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (defconst mouse-3left 8)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (defconst mouse-3center 9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (defconst mouse-3right 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;;; Defuns:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
772
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
49 (defun sup-window-edges (&optional win)
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
50 (error "not implemented")
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
51 (window-pixel-edges win))
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
52
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (defun sup-mouse-report ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 "This function is called directly by the mouse, it parses and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 executes the mouse commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 L move point * |---- These apply for mouse click in a window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 2L delete word |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 3L copy word | If sup-mouse-fast-select-window is nil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 C move point and yank * | just selects that window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 2C yank pop |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 R set mark * |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 2R delete region |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 3R copy region |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 on modeline on \"scroll bar\" in minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 L scroll-up line to top execute-extended-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 C proportional goto-char line to middle mouse-help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 R scroll-down line to bottom eval-expression"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (let*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; expect a string of <esc>:<buttons>;<x-pos>;<y-pos>c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ((buttons (sup-get-tty-num ?\;))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (x (sup-get-tty-num ?\;))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (y (sup-get-tty-num ?c))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (window (sup-pos-to-window x y))
772
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
78 (edges (sup-window-edges window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (old-window (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (in-minibuf-p (eq y (1- (frame-height))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (same-window-p (and (not in-minibuf-p) (eq window old-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (in-modeline-p (eq y (1- (nth 3 edges))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (in-scrollbar-p (>= x (1- (nth 2 edges)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (setq x (- x (nth 0 edges)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (setq y (- y (nth 1 edges)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ; (error "mouse-hit %d %d %d" buttons x y) ;;;; debug
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (cond (in-modeline-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (select-window window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (cond ((= buttons mouse-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (scroll-up))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ((= buttons mouse-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (scroll-down))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ((= buttons mouse-center)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (goto-char (/ (* x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (- (point-max) (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (1- (window-width))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (what-cursor-position)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (select-window old-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (in-scrollbar-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (select-window window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (scroll-up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (cond ((= buttons mouse-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ((= buttons mouse-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (+ y (- 2 (window-height))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ((= buttons mouse-center)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (/ (+ 2 y y (- (window-height))) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (select-window old-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (same-window-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (cond ((= buttons mouse-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (sup-move-point-to-x-y x y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ((= buttons mouse-2left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (kill-word 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 ((= buttons mouse-3left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (copy-region-as-kill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (point) (progn (forward-word 1) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (setq this-command 'yank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ((= buttons mouse-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (push-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (exchange-point-and-mark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 ((= buttons mouse-2right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (push-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (kill-region (mark) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 ((= buttons mouse-3right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (push-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (copy-region-as-kill (mark) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (setq this-command 'yank))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 ((= buttons mouse-center)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (setq this-command 'yank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (yank))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ((= buttons mouse-2center)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (yank-pop 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (in-minibuf-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (cond ((= buttons mouse-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (call-interactively 'eval-expression))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ((= buttons mouse-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (call-interactively 'execute-extended-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ((= buttons mouse-center)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (describe-function 'sup-mouse-report)); silly self help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (t ;in another window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (select-window window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (cond ((not sup-mouse-fast-select-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ((= buttons mouse-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (sup-move-point-to-x-y x y))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ((= buttons mouse-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (push-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (exchange-point-and-mark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 ((= buttons mouse-center)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (sup-move-point-to-x-y x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (setq this-command 'yank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (yank))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (defun sup-get-tty-num (term-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 "Read from terminal until TERM-CHAR is read, and return intervening number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 Upon non-numeric not matching TERM-CHAR signal an error."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (let
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ((num 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (char (read-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (while (and (>= char ?0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (<= char ?9))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (setq num (+ (* num 10) (- char ?0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (setq char (read-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (or (eq term-char char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (error "Invalid data format in mouse command"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 num))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (defun sup-move-point-to-x-y (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 "Position cursor in window coordinates.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 X and Y are 0-based character positions in the window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (move-to-window-line y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (move-to-column x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (defun sup-pos-to-window (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 "Find window corresponding to frame coordinates.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 X and Y are 0-based character positions on the frame."
772
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
197 (let ((edges (sup-window-edges))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (window nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (while (and (not (eq window (selected-window)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (or (< y (nth 1 edges))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (>= y (nth 3 edges))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (< x (nth 0 edges))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (>= x (nth 2 edges))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (setq window (next-window window))
772
d682c0f82a71 [xemacs-hg @ 2002-03-13 10:00:06 by ben]
ben
parents: 0
diff changeset
205 (setq edges (sup-window-edges window))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (or window (selected-window))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 ;;; sup-mouse.el ends here