aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/frames.texi
diff options
context:
space:
mode:
authorMartin Rudalics2015-08-21 11:14:06 +0200
committerMartin Rudalics2015-08-21 11:14:06 +0200
commite656b511a882410d3e0925c8e4385022649b71cc (patch)
tree452cbab481cc47e9de66df1a9fc421103d179d7e /doc/lispref/frames.texi
parentdf9b29eda0ba1ec7f751dfd538eefbfe56b2c043 (diff)
downloademacs-e656b511a882410d3e0925c8e4385022649b71cc.tar.gz
emacs-e656b511a882410d3e0925c8e4385022649b71cc.zip
Fix frame geometry related text
* doc/lispref/frames.texi (Frame Layout): Rename `x-frame-geometry' to `frame-geometry'. * doc/lispref/frames.texi (Mouse Position): * doc/lispref/windows.texi (Coordinates and Windows): Use `set-mouse-absolute-pixel-position' instead of `x-set-mouse-absolute-pixel-position'.
Diffstat (limited to 'doc/lispref/frames.texi')
-rw-r--r--doc/lispref/frames.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index 28e6fbdfef4..aea5204d2f6 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -623,7 +623,7 @@ visible.
623 For a frame on a graphical terminal the following function returns the 623 For a frame on a graphical terminal the following function returns the
624sizes of the areas described above: 624sizes of the areas described above:
625 625
626@defun x-frame-geometry &optional frame 626@defun frame-geometry &optional frame
627This function returns geometric attributes of @var{frame}. The return 627This function returns geometric attributes of @var{frame}. The return
628value is an association list of the attributes listed below. All 628value is an association list of the attributes listed below. All
629coordinate, height and width values are integers counting pixels. 629coordinate, height and width values are integers counting pixels.
@@ -2370,13 +2370,13 @@ The return value is not significant.
2370On a graphical terminal the following two functions allow to retrieve 2370On a graphical terminal the following two functions allow to retrieve
2371and set the absolute position of the mouse cursor. 2371and set the absolute position of the mouse cursor.
2372 2372
2373@defun x-mouse-absolute-pixel-position 2373@defun mouse-absolute-pixel-position
2374This function returns a cons cell (@var{x} . @var{y}) of the coordinates 2374This function returns a cons cell (@var{x} . @var{y}) of the coordinates
2375of the mouse cursor position in pixels, relative to a position (0, 0) of 2375of the mouse cursor position in pixels, relative to a position (0, 0) of
2376the selected frame's display. 2376the selected frame's display.
2377@end defun 2377@end defun
2378 2378
2379@defun x-set-mouse-absolute-pixel-position x y 2379@defun set-mouse-absolute-pixel-position x y
2380This function moves the mouse cursor to the position (@var{x}, @var{y}). 2380This function moves the mouse cursor to the position (@var{x}, @var{y}).
2381The coordinates @var{x} and @var{y} are interpreted in pixels relative 2381The coordinates @var{x} and @var{y} are interpreted in pixels relative
2382to a position (0, 0) of the selected frame's display. 2382to a position (0, 0) of the selected frame's display.