diff options
| author | Martin Rudalics | 2015-08-21 11:14:06 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2015-08-21 11:14:06 +0200 |
| commit | e656b511a882410d3e0925c8e4385022649b71cc (patch) | |
| tree | 452cbab481cc47e9de66df1a9fc421103d179d7e /doc/lispref/frames.texi | |
| parent | df9b29eda0ba1ec7f751dfd538eefbfe56b2c043 (diff) | |
| download | emacs-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.texi | 6 |
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 |
| 624 | sizes of the areas described above: | 624 | sizes of the areas described above: |
| 625 | 625 | ||
| 626 | @defun x-frame-geometry &optional frame | 626 | @defun frame-geometry &optional frame |
| 627 | This function returns geometric attributes of @var{frame}. The return | 627 | This function returns geometric attributes of @var{frame}. The return |
| 628 | value is an association list of the attributes listed below. All | 628 | value is an association list of the attributes listed below. All |
| 629 | coordinate, height and width values are integers counting pixels. | 629 | coordinate, height and width values are integers counting pixels. |
| @@ -2370,13 +2370,13 @@ The return value is not significant. | |||
| 2370 | On a graphical terminal the following two functions allow to retrieve | 2370 | On a graphical terminal the following two functions allow to retrieve |
| 2371 | and set the absolute position of the mouse cursor. | 2371 | and set the absolute position of the mouse cursor. |
| 2372 | 2372 | ||
| 2373 | @defun x-mouse-absolute-pixel-position | 2373 | @defun mouse-absolute-pixel-position |
| 2374 | This function returns a cons cell (@var{x} . @var{y}) of the coordinates | 2374 | This function returns a cons cell (@var{x} . @var{y}) of the coordinates |
| 2375 | of the mouse cursor position in pixels, relative to a position (0, 0) of | 2375 | of the mouse cursor position in pixels, relative to a position (0, 0) of |
| 2376 | the selected frame's display. | 2376 | the 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 |
| 2380 | This function moves the mouse cursor to the position (@var{x}, @var{y}). | 2380 | This function moves the mouse cursor to the position (@var{x}, @var{y}). |
| 2381 | The coordinates @var{x} and @var{y} are interpreted in pixels relative | 2381 | The coordinates @var{x} and @var{y} are interpreted in pixels relative |
| 2382 | to a position (0, 0) of the selected frame's display. | 2382 | to a position (0, 0) of the selected frame's display. |