diff options
| author | Masatake YAMATO | 2005-10-16 09:31:48 +0000 |
|---|---|---|
| committer | Masatake YAMATO | 2005-10-16 09:31:48 +0000 |
| commit | f5fab556d45e13d12f83b2d8cd49fe343546c2f6 (patch) | |
| tree | b7b647699c7aaf6d26553dbfe2090e0bead36fd2 /lisp/gnus | |
| parent | 2416ec641247bc8d59cca8cac038cd00eba646f9 (diff) | |
| download | emacs-f5fab556d45e13d12f83b2d8cd49fe343546c2f6.tar.gz emacs-f5fab556d45e13d12f83b2d8cd49fe343546c2f6.zip | |
* message.el (message-expand-group): Pass the common
prefix substring of completion to `display-completion-list'.
* mh-comp.el (mh-complete-word): Pass the common
prefix substring of completion to `display-completion-list'.
* dabbrev.el (dabbrev-completion): Pass the common
prefix substring of completion to `display-completion-list'.
* filecache.el (file-cache-minibuffer-complete)
(file-cache-complete): Ditto.
* tempo.el (tempo-display-completions): Ditto.
* wid-edit.el (widget-file-complete, widget-color-complete): Ditto.
* emacs-lisp/lisp.el (lisp-complete-symbol): Ditto.
* eshell/em-hist.el (eshell-list-history): Ditto.
* mail/mailabbrev.el (mail-abbrev-complete-alias): Ditto.
* progmodes/etags.el (complete-tag): Ditto.
* progmodes/make-mode.el (makefile-complete): Ditto.
* progmodes/meta-mode.el (meta-complete-symbol): Ditto.
* progmodes/octave-mod.el (octave-complete-symbol): Ditto.
* progmodes/pascal.el (pascal-complete-word)
(pascal-show-completions): Ditto.
* textmodes/bibtex.el (bibtex-complete-internal): Ditto.
* simple.el (completion-common-substring): New variable.
(completion-setup-function): Use `completion-common-substring'
to put faces.
* minibuf.c (Fdisplay_completion_list): Add new optional
argument COMMON_SUBSTRING. Bind `completion-common-substring'
to the optional argument during running `completion-setup-hook'.
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index abbfb096ab1..ba1298f3650 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-10-16 Masatake YAMATO <jet@gyve.org> | ||
| 2 | |||
| 3 | * message.el (message-expand-group): Pass the common | ||
| 4 | prefix substring of completion to `display-completion-list'. | ||
| 5 | |||
| 1 | 2005-10-09 Daniel Brockman <daniel@brockman.se> | 6 | 2005-10-09 Daniel Brockman <daniel@brockman.se> |
| 2 | 7 | ||
| 3 | * format-spec.el (format-spec): Propagate text properties of % spec. | 8 | * format-spec.el (format-spec): Propagate text properties of % spec. |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index d64d8dbd2bf..b7607ad30e0 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -6691,7 +6691,7 @@ those headers." | |||
| 6691 | (let ((buffer-read-only nil)) | 6691 | (let ((buffer-read-only nil)) |
| 6692 | (erase-buffer) | 6692 | (erase-buffer) |
| 6693 | (let ((standard-output (current-buffer))) | 6693 | (let ((standard-output (current-buffer))) |
| 6694 | (display-completion-list (sort completions 'string<))) | 6694 | (display-completion-list (sort completions 'string<) string)) |
| 6695 | (goto-char (point-min)) | 6695 | (goto-char (point-min)) |
| 6696 | (delete-region (point) (progn (forward-line 3) (point)))))))))) | 6696 | (delete-region (point) (progn (forward-line 3) (point)))))))))) |
| 6697 | 6697 | ||