diff options
| author | Kim F. Storm | 2005-11-12 00:10:40 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-11-12 00:10:40 +0000 |
| commit | 0820b753f7c0fcb341fdcdaecaf5a7ab21b80b7b (patch) | |
| tree | 7ed537c19c934dcfff60bd8d42b14bc6fe79c441 /lisp/ChangeLog | |
| parent | 42aad0f69a905f265c53297dfc7d5ea724421cc1 (diff) | |
| download | emacs-0820b753f7c0fcb341fdcdaecaf5a7ab21b80b7b.tar.gz emacs-0820b753f7c0fcb341fdcdaecaf5a7ab21b80b7b.zip | |
(apropos-match-face): Doc fix.
(apropos-sort-by-scores): Add new choice `verbose'.
(apropos-documentation-sort-by-scores): New defcustom.
(apropos-pattern): Now contains the pattern entered by the user.
(apropos-pattern-quoted): New defvar.
(apropos-regexp): New defvar, containing the regexp corresponding
to apropos-pattern.
(apropos-all-words-regexp): Renamed from apropos-all-regexp.
(apropos-read-pattern): New defun. Use it to read pattern arg in
interactive calls; returns list of words for a word list, and
string for a regexp.
(apropos-parse-pattern): Renamed from apropos-rewrite-regexp. Now
parses a list of words or regexp as returned by apropos-read-pattern.
(apropos-calc-scores): Return nil if apropos-regexp doesn't match.
(apropos-score-doc): Return a very high score if the string
entered by the user matches literally.
(apropos-variable): Doc fix. Use apropos-read-pattern.
(apropos-command): Doc fix. Use apropos-read-pattern and
apropos-parse-pattern. Call apropos-print with nosubst=t.
(apropos, apropos-value): Doc fix. Use apropos-read-pattern and
apropos-parse-pattern.
(apropos-documentation): Doc fix. Use apropos-read-pattern and
apropos-parse-pattern. Locally bind apropos-sort-by-scores to
apropos-documentation-sort-by-scores. Call apropos-print with
nosubst=t.
(apropos-documentation-internal): Pass doc string through
substitute-key-definition before adding text properties.
Highlight substring matching literal user input if possible.
(apropos-documentation-check-doc-file): Remove locals beg and end.
Fix calculation of score (as added twice). Pass doc string through
substitute-key-definition before adding text properties.
(apropos-documentation-check-elc-file): Pass doc string through
substitute-key-definition before adding text properties.
Highlight substring matching literal user input if possible.
(apropos-print): Add new arg NOSUBST; if set, command and variable
doc strings have already been passed through substitute-key-definition.
Add code to handle apropos-accumulator items without score element
for backwards compatibility (e.g. with woman package).
Only show scores if apropos-sort-by-scores is `verbose'.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 769339faf41..fa2ddc87533 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2005-11-12 Kim F. Storm <storm@cua.dk> | 1 | 2005-11-12 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * simple.el (what-cursor-position): Print (EOB) instead of (100%) | ||
| 4 | when point is at end-of-buffer. | ||
| 5 | |||
| 3 | * apropos.el (apropos-match-face): Doc fix. | 6 | * apropos.el (apropos-match-face): Doc fix. |
| 4 | (apropos-sort-by-scores): Add new choice `verbose'. | 7 | (apropos-sort-by-scores): Add new choice `verbose'. |
| 5 | (apropos-documentation-sort-by-scores): New defcustom. | 8 | (apropos-documentation-sort-by-scores): New defcustom. |