diff options
author | Martin Rudalics <rudalics@gmx.at> | 2018-01-28 19:27:39 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2018-01-28 19:27:39 +0100 |
commit | 8d4500087f547e203cfba03f61dcbe641bf650de (patch) | |
tree | 029c52952933d3b6d38d20dfb093ea21e9309216 /doc/lispref/os.texi | |
parent | 194ded59904b77e7073e697ebf8eac08e05a7ed3 (diff) | |
download | emacs-8d4500087f547e203cfba03f61dcbe641bf650de.tar.gz emacs-8d4500087f547e203cfba03f61dcbe641bf650de.tar.bz2 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/os.texi')
-rw-r--r-- | doc/lispref/os.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi index 08544688350..1a4e2db44a6 100644 --- a/doc/lispref/os.texi +++ b/doc/lispref/os.texi @@ -699,7 +699,7 @@ inadvertently can lose a lot of work, the you have buffers that need saving or subprocesses that are running. It also runs the abnormal hook @code{kill-emacs-query-functions}: -@defvar kill-emacs-query-functions +@defopt kill-emacs-query-functions When @code{save-buffers-kill-terminal} is killing Emacs, it calls the functions in this hook, after asking the standard questions and before calling @code{kill-emacs}. The functions are called in order of @@ -708,7 +708,7 @@ confirmation from the user. If any of them returns @code{nil}, @code{save-buffers-kill-emacs} does not kill Emacs, and does not run the remaining functions in this hook. Calling @code{kill-emacs} directly does not run this hook. -@end defvar +@end defopt @node Suspending Emacs @subsection Suspending Emacs |