diff options
Diffstat (limited to 'doc/lispref/frames.texi')
| -rw-r--r-- | doc/lispref/frames.texi | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 9c25f4da4d4..43fdd8f9d54 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -2201,13 +2201,13 @@ The @code{cursor-type} frame parameter may be overridden by the | |||
| 2201 | variables @code{cursor-type} and | 2201 | variables @code{cursor-type} and |
| 2202 | @code{cursor-in-non-selected-windows}: | 2202 | @code{cursor-in-non-selected-windows}: |
| 2203 | 2203 | ||
| 2204 | @defvar cursor-type | 2204 | @defopt cursor-type |
| 2205 | This buffer-local variable controls how the cursor looks in a selected | 2205 | This buffer-local variable controls how the cursor looks in a selected |
| 2206 | window showing the buffer. If its value is @code{t}, that means to | 2206 | window showing the buffer. If its value is @code{t}, that means to |
| 2207 | use the cursor specified by the @code{cursor-type} frame parameter. | 2207 | use the cursor specified by the @code{cursor-type} frame parameter. |
| 2208 | Otherwise, the value should be one of the cursor types listed above, | 2208 | Otherwise, the value should be one of the cursor types listed above, |
| 2209 | and it overrides the @code{cursor-type} frame parameter. | 2209 | and it overrides the @code{cursor-type} frame parameter. |
| 2210 | @end defvar | 2210 | @end defopt |
| 2211 | 2211 | ||
| 2212 | @defopt cursor-in-non-selected-windows | 2212 | @defopt cursor-in-non-selected-windows |
| 2213 | This buffer-local variable controls how the cursor looks in a window | 2213 | This buffer-local variable controls how the cursor looks in a window |
| @@ -2725,7 +2725,7 @@ Ideally, the function described next should focus a frame without also | |||
| 2725 | raising it above other frames. Unfortunately, many window-systems or | 2725 | raising it above other frames. Unfortunately, many window-systems or |
| 2726 | window managers may refuse to comply. | 2726 | window managers may refuse to comply. |
| 2727 | 2727 | ||
| 2728 | @defun x-focus-frame &optional frame noactivate | 2728 | @defun x-focus-frame frame &optional noactivate |
| 2729 | This function gives @var{frame} the focus of the X server without | 2729 | This function gives @var{frame} the focus of the X server without |
| 2730 | necessarily raising it. @var{frame} @code{nil} means use the selected | 2730 | necessarily raising it. @var{frame} @code{nil} means use the selected |
| 2731 | frame. Under X, the optional argument @var{noactivate}, if | 2731 | frame. Under X, the optional argument @var{noactivate}, if |
| @@ -3261,13 +3261,12 @@ exists, @var{frame} is considered a child frame of that frame. | |||
| 3261 | This function returns @code{nil} if @var{frame} has no parent frame. | 3261 | This function returns @code{nil} if @var{frame} has no parent frame. |
| 3262 | @end defun | 3262 | @end defun |
| 3263 | 3263 | ||
| 3264 | @defun frame-ancestor-p &optional ancestor descendant | 3264 | @defun frame-ancestor-p ancestor descendant |
| 3265 | This functions returns non-@code{nil} if @var{ancestor} is an ancestor | 3265 | This functions returns non-@code{nil} if @var{ancestor} is an ancestor |
| 3266 | of @var{descendant}. @var{ancestor} is an ancestor of @var{descendant} | 3266 | of @var{descendant}. @var{ancestor} is an ancestor of @var{descendant} |
| 3267 | when it is either @var{descendant}'s parent frame or it is an ancestor | 3267 | when it is either @var{descendant}'s parent frame or it is an ancestor |
| 3268 | of @var{descendant}'s parent frame. Both, @var{ancestor} and | 3268 | of @var{descendant}'s parent frame. Both, @var{ancestor} and |
| 3269 | @var{descendant} must specify live frames and default to the selected | 3269 | @var{descendant} must specify live frames. |
| 3270 | frame. | ||
| 3271 | @end defun | 3270 | @end defun |
| 3272 | 3271 | ||
| 3273 | Note also the function @code{window-largest-empty-rectangle} | 3272 | Note also the function @code{window-largest-empty-rectangle} |
| @@ -3279,7 +3278,7 @@ window. | |||
| 3279 | Customizing the following option can be useful to tweak the behavior of | 3278 | Customizing the following option can be useful to tweak the behavior of |
| 3280 | @code{iconify-frame} for child frames. | 3279 | @code{iconify-frame} for child frames. |
| 3281 | 3280 | ||
| 3282 | @defvar iconify-child-frame | 3281 | @defopt iconify-child-frame |
| 3283 | This option tells Emacs how to proceed when it is asked to iconify a | 3282 | This option tells Emacs how to proceed when it is asked to iconify a |
| 3284 | child frame. If it is @code{nil}, @code{iconify-frame} will do nothing | 3283 | child frame. If it is @code{nil}, @code{iconify-frame} will do nothing |
| 3285 | when invoked on a child frame. If it is @code{iconify-top-level}, Emacs | 3284 | when invoked on a child frame. If it is @code{iconify-top-level}, Emacs |
| @@ -3291,7 +3290,7 @@ Any other value means to try iconifying the child frame. Since such an | |||
| 3291 | attempt may not be honored by all window managers and can even lead to | 3290 | attempt may not be honored by all window managers and can even lead to |
| 3292 | making the child frame unresponsive to user actions, the default is to | 3291 | making the child frame unresponsive to user actions, the default is to |
| 3293 | iconify the top level frame instead. | 3292 | iconify the top level frame instead. |
| 3294 | @end defvar | 3293 | @end defopt |
| 3295 | 3294 | ||
| 3296 | 3295 | ||
| 3297 | @node Mouse Tracking | 3296 | @node Mouse Tracking |