summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/eldoc.el
Commit message (Collapse)AuthorAgeFilesLines
* Add arch taglinesMiles Bader2003-09-011-1/+2
|
* (eldoc-echo-area-use-multiline-p): Don't quote nil and t in docstrings.Juanma Barranquero2003-05-061-4/+4
|
* (eldoc-echo-area-multiline-supported-p, eldoc-use-idle-timer-p): Remove.Stefan Monnier2003-02-111-93/+35
| | | | | | (timer): Never require. It only works in current Emacs anyway. (eldoc-mode, eldoc-message, eldoc-display-message-p) (eldoc-docstring-format-sym-doc, eldoc-remove-command): Simplify.
* Update copyright.John Paul Wallington2003-01-031-2/+2
|
* (eldoc-get-var-docstring): Only return aJohn Paul Wallington2003-01-031-11/+12
| | | | documentation string when `sym' is non-nil.
* (eldoc-print-current-symbol-info):Stefan Monnier2002-11-191-163/+24
| | | | | | | | | | Turn errors into messages so they don't get ignored. (eldoc-get-fnsym-args-string): Use help-split-fundoc. (eldoc-beginning-of-sexp): Simplify. (eldoc-function-arglist): Remove. (eldoc-function-argstring): Use help-function-arglist instead. (eldoc-function-argstring-from-docstring-method-table) (eldoc-function-argstring-from-docstring): Remove.
* (eldoc-minor-mode-string): Fix custom type.Richard M. Stallman2002-01-081-3/+3
|
* (eldoc-mode): Use define-minor-mode.Stefan Monnier2001-11-161-47/+17
|
* (eldoc): Don't make parent of itself.Andreas Schwab2000-12-021-2/+1
|
* (eldoc-minor-mode-string): Add autoload cookie; otherwise autoloadedNoah Friedman2000-07-241-41/+87
| | | | | | | | | | | | | | | | | add-minor-mode call complains in Emacs 21. Use add-minor-mode to set minor-mode-alist, if available. (eldoc-echo-area-use-multiline-p): New user option. (eldoc-echo-area-multiline-supported-p): New variable. (eldoc-docstring-format-sym-doc): Use them. (eldoc-mode): If not using idle timers, append to local post and pre command hooks. Suggested by David Byers <davby@ida.liu.se>. (eldoc-display-message-no-interference-p): Don't interfere with edebug. Add autoload cookie for eldoc-mode minor-mode-alist initialization. (eldoc-function-arglist): New function. (eldoc-function-argstring): Use it.
* (eldoc-argument-case): Fix customize type.Andreas Schwab1998-10-301-2/+4
|
* (eldoc-message): Check for 1-arg case, and store string inNoah Friedman1998-09-191-104/+126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | eldoc-last-message without consing a new string. Rearrange logic from nested if's into cond's. (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string. Do not print message; just return string. (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring. Do not print message; just return string. Cache that string in eldoc-last-data. (eldoc-last-data): Make into a vector. (eldoc-get-fnsym-args-string): Use new data form of structure. (eldoc-get-var-docstring): Here also. (eldoc-last-data-store): New function. (eldoc-get-fnsym-args-string): Use it. (eldoc-get-var-docstring): Here also. (eldoc-docstring-first-line): Minimize interim string consing. Call substitute-command-keys on the result. (eldoc-print-var-docstrings, eldoc-print-docstring, eldoc-docstring-message): Functions removed. (eldoc-docstring-format-sym-doc): New function, functionality ripped out of eldoc-docstring-message. (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
* [top level]: Add `up-list' and `down-list' to eldoc-message-commands.Noah Friedman1997-07-091-2/+3
|
* (eldoc-message-commands): Move docstring into comments, since this isn'tNoah Friedman1997-05-221-27/+36
| | | | | | | | | | | | | | | | | | | a user variable. (eldoc-message-commands-table-size, eldoc-use-idle-timer-p, eldoc-function-argstring-from-docstring-method-table): Use defvar, not defconst. (eldoc-last-data): Use cons explicitly; don't rely on dotted pair read syntax. I'm worried the latter might get compiled as read-only data someday. (eldoc-docstring-message): If truncating symbol name, show ending of name rather than beginning. The former is generally more unique. (eldoc-function-argstring-from-docstring-method-table): Handle pathological `save-restriction' case. [top level]: Add `indent-for-tab-command' to eldoc-message-commands.
* Add defgroup; use defcustom for user vars.Richard M. Stallman1997-04-141-9/+21
|
* (eldoc-idle-delay): Make defvar, not defconst.Noah Friedman1997-03-271-4/+4
| | | | | (eldoc-minor-mode-string): Make defvar, not defconst. (eldoc-argument-case): Make defvar, not defconst.
* (eldoc-message-commands): Doc fixes.Noah Friedman1997-02-191-138/+184
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (eldoc-message): Make function, not macro. (eldoc-last-message): New internal variable. (eldoc-mode): Initialize it to nil. (eldoc-message): Use it. (eldoc-print-current-symbol-info): Use it. (eldoc-pre-command-refresh-echo-area): New function. (eldoc-mode): Put it on pre-command-hook if in XEmacs or using idle timers in Emacs. (eldoc-message-commands-table-size): New constant. (eldoc-add-command): Use it to initialize eldoc-message-commands. (eldoc-display-message-no-interference-p): New function. (eldoc-display-message-p): Use it. (eldoc-print-fnsym-args, eldoc-print-var-docstring): Arg sym no longer optional. Do not initialize arg if nil. (eldoc-forward-sexp-safe): Function deleted. (eldoc-beginning-of-sexp): New function. (eldoc-fnsym-in-current-sexp): Use eldoc-beginning-of-sexp. Use eldoc-current-symbol to get symbol at point. (eldoc-function-argstring-from-docstring-method-table): Forge docstrings for `and', `or', `list', `+', and `-'. (eldoc-add-command-completions): New function. (eldoc-add-command): Take list of args. No longer interactive. (eldoc-remove-command-completions): New function. (eldoc-remove-command): Take list of args. No longer interactive. top level: Initialize eldoc-message-commands using eldoc-add-command-completions.
* (eldoc-display-message-p): New function.Noah Friedman1997-02-041-13/+23
| | | | | | | Return nil if cursor-in-echo-area, or using idle timers and a command is still active. (eldoc-print-current-symbol-info): Use eldoc-display-message-p.
* Update copyright notice to reflect assignment to FSF and incorporationNoah Friedman1997-02-031-203/+278
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into Emacs. Attempt to load `timer'. (eldoc-idle-delay): Make defconst. (eldoc-minor-mode-string): Make defconst. (eldoc-argument-case): Make defconst. (eldoc-message-commands): Renamed from eldoc-mode-message-commands. All callers changed. Add `mouse-set-point' as a default candidate. (eldoc-use-idle-timer-p): New constant. (eldoc-timer): New variable. (eldoc-current-idle-delay): New variable. (eldoc-schedule-timer): New function. (eldoc-mode): Use idle timers if supported. (eldoc-add-command): Provide completion on interactive commands only, not all bound functions. (eldoc-print-current-symbol-info): Renamed from eldoc-mode-print-current-symbol-info. All callers changed. Check whether using idle timers or being run from post-command hooks. Use `executing-kbd-macro' instead of `executing-macro'. (eldoc-print-fnsym-args): Don't make interactive. Cache current symbol name in eldoc-last-data; it was forgetting to do this previously. If subr args cannot be determined, show single-line docstring for it instead. (eldoc-docstring-message): New function. (eldoc-print-docstring): New function. (eldoc-print-var-docstring): Use them. (eldoc-function-argstring-from-docstring-method-table): New constant. (eldoc-function-argstring-from-docstring): Use it.
* (eldoc-function-argstring-from-docstring): Add search that finds arglistNoah Friedman1996-10-041-3/+11
| | | | for `start-process'; possibly others.
* (eldoc-mode): Toggle eldoc-mode if no prefix given.Noah Friedman1996-07-141-4/+6
|
* (eldoc-message): New macro.Noah Friedman1995-11-251-9/+16
| | | | (eldoc-print-var-docstring, eldoc-print-fnsym-args): Use it.
* (eldoc-mode-print-current-symbol-info): Do nothing if executing-macro.Noah Friedman1995-11-211-2/+3
|
* (eldoc-minor-mode-string): New variable.Noah Friedman1995-11-181-3/+6
|
* (top level): Make sure to set global minor-mode-alist, not local one.Noah Friedman1995-11-131-11/+25
| | | | | | (eldoc-mode-print-current-symbol-info): Make sure this-command is a symbol. (eldoc-function-argstring): If fn is a macro, skip leading `macro' elt. (eldoc-function-argstring-from-docstring): Look for `condition-case' pattern.
* Initial revisionNoah Friedman1995-11-121-0/+423