aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/frames.texi
diff options
context:
space:
mode:
authorMartin Rudalics2018-01-28 19:27:39 +0100
committerMartin Rudalics2018-01-28 19:27:39 +0100
commit8d4500087f547e203cfba03f61dcbe641bf650de (patch)
tree029c52952933d3b6d38d20dfb093ea21e9309216 /doc/lispref/frames.texi
parent194ded59904b77e7073e697ebf8eac08e05a7ed3 (diff)
downloademacs-8d4500087f547e203cfba03f61dcbe641bf650de.tar.gz
emacs-8d4500087f547e203cfba03f61dcbe641bf650de.zip
Fix some issues in the emacs/lispref manuals
* doc/emacs/basic.texi (Continuation Lines): * doc/emacs/building.texi (GDB User Interface Layout): * doc/emacs/dired.texi (Misc Dired Features): * doc/emacs/maintaining.texi (Identifier Search): * doc/emacs/mark.texi (Using Region): * doc/emacs/misc.texi (Document View, DocView Conversion): * doc/emacs/modes.texi (Major Modes): * doc/emacs/mule.texi (Input Methods, Unibyte Mode): * doc/emacs/sending.texi (Mail Methods): Replace @code by @kbd. * doc/emacs/frames.texi (Text-Only Mouse): * doc/lispref/maps.texi (Standard Keymaps): Replace @kbd by @key. * doc/lispref/compile.texi (Compiler Errors): Write non-@code{nil} instead of non-nil. * doc/lispref/debugging.texi (Internals of Debugger): 'backtrace' is not a command. 'debugger-stack-frame-as-list' is an option. * doc/lispref/display.texi (Size of Displayed Text): 'window-lines-pixel-dimensions' has a last argument 'left'. * doc/lispref/display.texi (Attribute Functions): 'set-face-underline' and 'set-face-inverse-video' are commands. (Tooltips): 'tooltip-frame-parameters' is an option. (Bidirectional Display): 'bidi-paragraph-direction' is an option. * doc/lispref/frames.texi (Cursor Parameters): 'cursor-type' is an option. (Input Focus): Argument FRAME of 'x-focus-frame' is not optional. (Child Frames): Both arguments of 'frame-ancestor-p' are non-optional. 'iconify-child-frame' is an option. * doc/lispref/os.texi (Killing Emacs): 'kill-emacs-query-functions' is an option. * doc/lispref/windows.texi (Mouse Window Auto-selection): 'mouse-autoselect-window' is an option.
Diffstat (limited to 'doc/lispref/frames.texi')
-rw-r--r--doc/lispref/frames.texi15
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
2201variables @code{cursor-type} and 2201variables @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
2205This buffer-local variable controls how the cursor looks in a selected 2205This buffer-local variable controls how the cursor looks in a selected
2206window showing the buffer. If its value is @code{t}, that means to 2206window showing the buffer. If its value is @code{t}, that means to
2207use the cursor specified by the @code{cursor-type} frame parameter. 2207use the cursor specified by the @code{cursor-type} frame parameter.
2208Otherwise, the value should be one of the cursor types listed above, 2208Otherwise, the value should be one of the cursor types listed above,
2209and it overrides the @code{cursor-type} frame parameter. 2209and 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
2213This buffer-local variable controls how the cursor looks in a window 2213This 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
2725raising it above other frames. Unfortunately, many window-systems or 2725raising it above other frames. Unfortunately, many window-systems or
2726window managers may refuse to comply. 2726window managers may refuse to comply.
2727 2727
2728@defun x-focus-frame &optional frame noactivate 2728@defun x-focus-frame frame &optional noactivate
2729This function gives @var{frame} the focus of the X server without 2729This function gives @var{frame} the focus of the X server without
2730necessarily raising it. @var{frame} @code{nil} means use the selected 2730necessarily raising it. @var{frame} @code{nil} means use the selected
2731frame. Under X, the optional argument @var{noactivate}, if 2731frame. Under X, the optional argument @var{noactivate}, if
@@ -3261,13 +3261,12 @@ exists, @var{frame} is considered a child frame of that frame.
3261This function returns @code{nil} if @var{frame} has no parent frame. 3261This 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
3265This functions returns non-@code{nil} if @var{ancestor} is an ancestor 3265This functions returns non-@code{nil} if @var{ancestor} is an ancestor
3266of @var{descendant}. @var{ancestor} is an ancestor of @var{descendant} 3266of @var{descendant}. @var{ancestor} is an ancestor of @var{descendant}
3267when it is either @var{descendant}'s parent frame or it is an ancestor 3267when it is either @var{descendant}'s parent frame or it is an ancestor
3268of @var{descendant}'s parent frame. Both, @var{ancestor} and 3268of @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.
3270frame.
3271@end defun 3270@end defun
3272 3271
3273Note also the function @code{window-largest-empty-rectangle} 3272Note also the function @code{window-largest-empty-rectangle}
@@ -3279,7 +3278,7 @@ window.
3279Customizing the following option can be useful to tweak the behavior of 3278Customizing 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
3283This option tells Emacs how to proceed when it is asked to iconify a 3282This option tells Emacs how to proceed when it is asked to iconify a
3284child frame. If it is @code{nil}, @code{iconify-frame} will do nothing 3283child frame. If it is @code{nil}, @code{iconify-frame} will do nothing
3285when invoked on a child frame. If it is @code{iconify-top-level}, Emacs 3284when 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
3291attempt may not be honored by all window managers and can even lead to 3290attempt may not be honored by all window managers and can even lead to
3292making the child frame unresponsive to user actions, the default is to 3291making the child frame unresponsive to user actions, the default is to
3293iconify the top level frame instead. 3292iconify the top level frame instead.
3294@end defvar 3293@end defopt
3295 3294
3296 3295
3297@node Mouse Tracking 3296@node Mouse Tracking