comparison lisp/ChangeLog @ 66820:bd3b98af64fe

*** empty log message ***
author Kim F. Storm <storm@cua.dk>
date Sat, 12 Nov 2005 00:08:35 +0000
parents 2fc24a2b40a5
children 669bbd470d8f
comparison
equal deleted inserted replaced
66819:82d9f69e4e3c 66820:bd3b98af64fe
1 2005-11-12 Kim F. Storm <storm@cua.dk>
2
3 * apropos.el (apropos-match-face): Doc fix.
4 (apropos-sort-by-scores): Add new choice `verbose'.
5 (apropos-documentation-sort-by-scores): New defcustom.
6 (apropos-pattern): Now contains the pattern entered by the user.
7 (apropos-pattern-quoted): New defvar.
8 (apropos-regexp): New defvar, containing the regexp corresponding
9 to apropos-pattern.
10 (apropos-all-words-regexp): Renamed from apropos-all-regexp.
11 (apropos-read-pattern): New defun. Use it to read pattern arg in
12 interactive calls; returns list of words for a word list, and
13 string for a regexp.
14 (apropos-parse-pattern): Renamed from apropos-rewrite-regexp. Now
15 parses a list of words or regexp as returned by apropos-read-pattern.
16 (apropos-calc-scores): Return nil if apropos-regexp doesn't match.
17 (apropos-score-doc): Return a very high score if the string
18 entered by the user matches literally.
19 (apropos-variable): Doc fix. Use apropos-read-pattern.
20 (apropos-command): Doc fix. Use apropos-read-pattern and
21 apropos-parse-pattern. Call apropos-print with nosubst=t.
22 (apropos, apropos-value): Doc fix. Use apropos-read-pattern and
23 apropos-parse-pattern.
24 (apropos-documentation): Doc fix. Use apropos-read-pattern and
25 apropos-parse-pattern. Locally bind apropos-sort-by-scores to
26 apropos-documentation-sort-by-scores. Call apropos-print with
27 nosubst=t.
28 (apropos-documentation-internal): Pass doc string through
29 substitute-key-definition before adding text properties.
30 Highlight substring matching literal user input if possible.
31 (apropos-documentation-check-doc-file): Remove locals beg and end.
32 Fix calculation of score (as added twice). Pass doc string through
33 substitute-key-definition before adding text properties.
34 (apropos-documentation-check-elc-file): Pass doc string through
35 substitute-key-definition before adding text properties.
36 Highlight substring matching literal user input if possible.
37 (apropos-print): Add new arg NOSUBST; if set, command and variable
38 doc strings have already been passed through substitute-key-definition.
39 Add code to handle apropos-accumulator items without score element
40 for backwards compatibility (e.g. with woman package).
41 Only show scores if apropos-sort-by-scores is `verbose'.
42
1 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca> 43 2005-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
2 44
3 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist. 45 * jka-cmpr-hook.el (jka-compr-install): Use push and dolist.
4 Add jka-compr-load-suffixes to load-suffixes. 46 Add jka-compr-load-suffixes to load-suffixes.
5 47