diff options
| author | Eli Zaretskii | 2015-11-14 22:02:26 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2015-11-14 22:02:26 +0200 |
| commit | 278d8c8e6c92729e4a00ae61699bc8f95342ea81 (patch) | |
| tree | b9864d7a125c2ae636b100470f05f1b8e21a724d /doc | |
| parent | 478262d6cc00cd6261a598a38f8530270446a1d2 (diff) | |
| download | emacs-278d8c8e6c92729e4a00ae61699bc8f95342ea81.tar.gz emacs-278d8c8e6c92729e4a00ae61699bc8f95342ea81.zip | |
Document 'describe-symbol'
* doc/emacs/help.texi (Help Summary): Mention "C-h o".
(Name Help): Document "C-h o" and describe-symbol.
* lisp/help-fns.el (describe-symbol): Doc fix.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/emacs/help.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/emacs/help.texi b/doc/emacs/help.texi index a9c63b91785..8b4adf947ef 100644 --- a/doc/emacs/help.texi +++ b/doc/emacs/help.texi | |||
| @@ -126,6 +126,10 @@ Display documentation of the current major mode and minor modes | |||
| 126 | (@code{describe-mode}). | 126 | (@code{describe-mode}). |
| 127 | @item C-h n | 127 | @item C-h n |
| 128 | Display news of recent Emacs changes (@code{view-emacs-news}). | 128 | Display news of recent Emacs changes (@code{view-emacs-news}). |
| 129 | @item C-h o @var{symbol} | ||
| 130 | Display documentation of the Lisp symbol named @var{symbol} | ||
| 131 | (@code{describe-symbol}). This will show the documentation of all | ||
| 132 | kinds of symbols: functions, variables, and faces. | ||
| 129 | @item C-h p | 133 | @item C-h p |
| 130 | Find packages by topic keyword (@code{finder-by-keyword}). This lists | 134 | Find packages by topic keyword (@code{finder-by-keyword}). This lists |
| 131 | packages using a package menu buffer. @xref{Packages}. | 135 | packages using a package menu buffer. @xref{Packages}. |
| @@ -272,6 +276,14 @@ source files installed (@pxref{Hyperlinking}). | |||
| 272 | (@code{Info-goto-emacs-command-node}). This knows about various | 276 | (@code{Info-goto-emacs-command-node}). This knows about various |
| 273 | manuals, not just the Emacs manual, and finds the right one. | 277 | manuals, not just the Emacs manual, and finds the right one. |
| 274 | 278 | ||
| 279 | @kindex C-h o | ||
| 280 | @findex describe-symbol | ||
| 281 | @kbd{C-h o} (@code{describe-symbol}) is like @kbd{C-h f} and | ||
| 282 | @kbd{C-h v}, but it describes any symbol, be it a function, a | ||
| 283 | variable, or a face. If the symbol has more than one definition, like | ||
| 284 | it has both definition as a function and as a variable, this command | ||
| 285 | will show the documentation of all of them, one after the other. | ||
| 286 | |||
| 275 | @node Apropos | 287 | @node Apropos |
| 276 | @section Apropos | 288 | @section Apropos |
| 277 | @cindex apropos | 289 | @cindex apropos |