all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Bugs in window-at and coordinates-in-window-p built-in functions
@ 2008-05-09 17:32 Hill, Gregory
  0 siblings, 0 replies; only message in thread
From: Hill, Gregory @ 2008-05-09 17:32 UTC (permalink / raw)
  To: bug-gnu-emacs

GNU Emacs 22.1.1 (i386-mingw-nt5.1.2600) of 2007-06-02 on RELEASE
 
Use split-window-vertically once and split-window-horizontally twice to
create a frame that is split into 4 approximately equal sections (2 x
2).
 
Display a different buffer in each of the 4 windows.
 
Move the cursor to anywhere in the lower-right window.
 
Use eval-expression to execute the following expression:

 (let* ((edges (window-edges))
       (x (first edges))
       (y (1- (second edges))))
  (window-at x y))

Logically, this should return the upper-right window, but it actually
returns the upper-left window.

Possibly related to this bug, execute the following expression with the
cursor in any window:

(let* ((edges (window-edges))
       (x (first edges))
       (y (second edges))
       (window (selected-window)))
  (coordinates-in-window-p (cons x y) window))

Logically this should return (0 . 0) but it actually returns
'left-fringe.

Execute the following expression with the cursor in the lower-right
window:

(let* ((edges (window-edges))
       (x (first edges))
       (y (1- (second edges)))
       (window (window-at x y))) 
  (coordinates-in-window-p (cons x y) window))

It returns 'vertical-line when it should really return 'mode-line.  The
same expression evaluated with the cursor in the lower-left window
returns 'mode-line as it should.




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-09 17:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-09 17:32 Bugs in window-at and coordinates-in-window-p built-in functions Hill, Gregory

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.