aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/help.el
Commit message (Collapse)AuthorAgeFilesLines
* (help-key-description): Show the untranslated keysStefan Monnier2002-07-161-1/+2
| | | | when they start with ESC and the ESC was not translated.
* (help-map): Add binding for info-emacs-manual.Richard M. Stallman2002-07-121-2/+5
| | | | (print-help-return-message): Doc fix.
* (view-todo): New function.Richard M. Stallman2002-05-011-1/+8
| | | | | (help-map): Bind C-h C-t to view-todo. (help-for-help): Change the text.
* (string-key-binding): Deal with margin events.Gerd Moellmann2002-04-121-3/+4
|
* (help-key-description): New fun.Stefan Monnier2002-04-021-15/+32
| | | | | (describe-key-briefly, describe-key): Use it and this-single-command-raw-keys plus new arg `untranslated'.
* (describe-key-briefly, describe-key): Interpret `undefined' like notPavel Janík2002-03-041-2/+2
| | | | defined at all.
* (where-is): Use remap-command.Kim F. Storm2002-02-231-8/+6
|
* (describe-key-briefly): Make output in INSERT caseRichard M. Stallman2002-02-151-5/+3
| | | | look just like what is displayed in the normal case.
* (where-is): Report remapped commands.Kim F. Storm2002-02-061-3/+10
|
* (describe-distribution): Really call view-file.Richard M. Stallman2002-01-171-1/+1
|
* Fix previous change.Richard M. Stallman2002-01-141-2/+1
|
* Fix previous change.Richard M. Stallman2002-01-141-8/+0
|
* (view-echo-area-messages): New function.Richard M. Stallman2002-01-141-20/+48
| | | | | | | | | | | (help-map): Add `e' binding. Delete obsolete `d' binding. Change old Info bindings C-f, C-k and C-i to F, K, S. Move view-emacs-FAQ from F to C-f. Move view-emacs-problems from P to C-e. Bindings moved here from mule-cmds.el. C-l binding for describe-language-environment deleted. Bind C-h like h, to view-hello-file. (help-for-help): Update for all these changes.
* (describe-mode): Call help-setup-xref in the help buffer.Richard M. Stallman2002-01-121-37/+41
| | | | Switch buffers only after calling `help-buffer'.
* (describe-key): Doc fix.Richard M. Stallman2001-12-281-1/+3
|
* (view-order-manuals, view-emacs-news, describe-copying)Richard M. Stallman2001-12-221-8/+5
| | | | (describe-distribution, describe-project): Use view-file.
* (view-lossage): Call help-setup-xref correctly and earlier.Stefan Monnier2001-10-111-13/+11
| | | | | | (describe-bindings): Call help-setup-xref earlier. (describe-key): Call help-setup-xref. Fix call to describe-function-1. (describe-mode): Don't autoload. Call help-setup-xref earlier.
* (describe-bindings-internal): New fun moved from keymap.c.Stefan Monnier2001-10-111-4/+18
|
* Don't require `view' when compiling.Miles Bader2001-10-091-1219/+223
| | | | | | | | | | | | | | | | | | | | | | | (help-with-tutorial, describe-function, describe-function-1) (variable-at-point, describe-variable, locate-library): Functions moved into `help-funs.el'. (help-manyarg-func-alist): Variable moved into `help-funs.el'. (help-mode, help-mode-setup, help-mode-finish, help-button-action) (help-setup-xref, help-xref-following, help-make-xrefs) (help-xref-button, help-insert-xref-button, help-xref-interned) (help-xref-go-back, help-go-back, help-do-xref, help-follow) (help-xref-on-pp): Functions moved into `help-mode.el' (help-mode-map, help-xref-stack, help-xref-stack-item) (help-highlight-p, help-highlight-face, help-back-label) (help-xref-symbol-regexp, help-xref-mule-regexp) (help-xref-info-regexp): Variables moved into `help-mode.el'. (help-symbol, help-back, help-info, help-customize-variable) (help-function-def, help-variable-def): Button-types moved into `help-mode.el'. (load-symbol-file-load-history, symbol-file): Functions moved into `subr.el'. (symbol-file-load-history-loaded): Variable moved into `subr.el'. (view-lossage): Call `help-setup-xref' instead of doing it manually.
* (help-mode): Use define-derived-mode.Stefan Monnier2001-10-081-70/+79
| | | | | | | | | | (describe-mode): Add optional `buffer' arg. Use it instead of going through help-xref-mode. Avoid doubling the word `minor' when prettifying. (describe-function-1): List the corresponding key bindings. (describe-variable): Say if the var is automatically buffer-local. If the source is `loaddefs.el', look for the real source. (help-xref-mode): Remove.
* (help-mode-map): Make button-buffer-map our parent.Miles Bader2001-10-071-195/+142
| | | | | | | | | | | | | | | | | | | | | | Don't bind mouse events or tab/backtab. (help-function, help-variable, help-face, help-coding-system) (help-input-method, help-character-set, help-back, help-info) (help-customize-variable, help-function-def, help-variable-def): New button types. (help-button-action): New function. (describe-function-1): Pass help button-types to `help-xref-button' rather than help function and help-echo string. Don't put multiple help-function args in a list to pass them to help-xref-button, just pass them as multiple arguments. Use `help-insert-xref-button' to make [back]-button, rather than `help-xref-button'. (help-xref-button): Take a button-type TYPE as a parameter rather than a function. Remove HELP-ECHO parameter. Remove DATA parameter and add a &rest parameter ARGS to serve the same purpose. Use `make-text-button' to add the button. (help-insert-xref-button): Use `insert-text-button' to add the button. (help-follow-mouse, help-next-ref, help-previous-ref): Functions removed. (help-do-xref): New function. (help-follow): Use `push-button' and `help-do-xref' to do most of the work.
* (help-for-help): Doc fix. From [email protected] (Pavel Janik).Eli Zaretskii2001-10-011-1/+1
|
* (describe-function-1): Save precomputed `file-name' ratherStefan Monnier2001-09-041-5/+7
| | | | than recomputing it (incorrectly) with `symbol-file'.
* (describe-function-1): UseGerd Moellmann2001-08-061-7/+10
| | | | | find-function-search-for-symbol instead of find-functin-noselect because the latter follows aliases.
* (describe-function-1): When printing FUNCTION'sGerd Moellmann2001-07-101-1/+1
| | | | documentation, don't assume FUNCTION is a symbol.
* (locate-library): Enable code that looks for compressedEli Zaretskii2001-07-031-15/+13
| | | | libraries if auto-compression-mode is on.
* (describe-variable): Put value on same lineRichard M. Stallman2001-06-011-2/+10
| | | | with preceding text, if it is short enough to look good that way.
* (help-xref-symbol-regexp): Recognize "source of"Richard M. Stallman2001-05-051-10/+21
| | | | | | and friends, meaning make a link to the source file. (help-make-xrefs): Handle "source of" and friends by constructing a link that visits the source file.
* (view-lossage): Mention open-dribble-file in the docEli Zaretskii2001-03-251-1/+3
| | | | string. Suggested by Riku Saikkonen <[email protected]>.
* (string-key-binding): Don't call event-start onGerd Moellmann2001-03-131-1/+2
| | | | a non-list.
* (string-key-binding): Renamed fromGerd Moellmann2001-03-091-13/+20
| | | | | mode-line-key-binding. Handle any event on a string. Check for `keymap' properties as well as `local-map' properties.
* (describe-project): Display the file THE-GNU-PROJECT.Gerd Moellmann2001-02-261-1/+1
|
* (view-order-manuals): Use goto-address.Gerd Moellmann2001-02-261-1/+2
|
* (view-order-manuals): New function.Gerd Moellmann2001-02-221-1/+8
| | | | (toplevel): Bind C-h C-m to this function.
* Comment changes.Richard M. Stallman2001-02-211-3/+1
|
* (load-symbol-file-load-history): New function extractedGerd Moellmann2001-01-111-7/+13
| | | | | from function symbol-file. (symbol-file): Use it.
* (help-for-help): Fix a typo in a doc string. From [email protected] (Karl Heuer).Eli Zaretskii2001-01-041-1/+1
|
* (describe-function-1): Regexp-quote function nameGerd Moellmann2000-11-291-1/+1
| | | | when used as part of a regexp.
* (help-make-xrefs): Delete extraneous newlines at the end of the docstring.Miles Bader2000-11-271-1/+4
|
* (help-manyarg-func-alist): Correct entry for `vconcat'.Miles Bader2000-11-271-1/+1
|
* (view-emacs-news): Use ONEWS.* instead of NEWS.* files.Gerd Moellmann2000-11-021-1/+1
|
* (resize-temp-buffer-window): Use `fit-window-to-buffer'.Miles Bader2000-10-211-7/+5
|
* (resize-temp-buffer-window): Use `set-window-text-height'Miles Bader2000-10-201-4/+1
| | | | instead of `enlarge-window' & `mode-line-window-height-fudge'.
* (resize-temp-buffer-window): Use `mode-line-window-height-fudge'.Miles Bader2000-10-201-6/+3
|
* (resize-temp-buffer-window): Add hack to avoid last lineMiles Bader2000-10-171-0/+5
| | | | being obscured by whizzy mode-lines on graphical displays.
* Provide `help' for the sake of define-minor-modeGerd Moellmann2000-10-161-0/+5
| | | | which generates defcustoms with requires.
* Missing paren.Stefan Monnier2000-10-051-1/+1
|
* (help-xref-on-pp): Use match-string.Stefan Monnier2000-10-051-53/+32
| | | | | | (describe-variable): New arg BUFFER. Store the current buffer in the help-xref-stack. (temp-buffer-resize-mode): Use define-minor-mode.
* Fix typo in a doc string of help-insert-xref-button.Eli Zaretskii2000-09-081-3/+2
|
* (help-make-xrefs): Adjusted for the change ofKenichi Handa2000-09-071-7/+30
| | | | | help-xref-mule-regexp. (help-insert-xref-button): New function.