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/textmodes | |
| 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/textmodes')
| -rw-r--r-- | lisp/textmodes/bibtex.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 2177f72fd0d..50d8ccad764 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el | |||
| @@ -2522,7 +2522,8 @@ of a word, all strings are listed. Return completion." | |||
| 2522 | (message "Making completion list...") | 2522 | (message "Making completion list...") |
| 2523 | (with-output-to-temp-buffer "*Completions*" | 2523 | (with-output-to-temp-buffer "*Completions*" |
| 2524 | (display-completion-list (all-completions part-of-word | 2524 | (display-completion-list (all-completions part-of-word |
| 2525 | completions))) | 2525 | completions) |
| 2526 | part-of-word)) | ||
| 2526 | (message "Making completion list...done") | 2527 | (message "Making completion list...done") |
| 2527 | ;; return value is handled by choose-completion-string-functions | 2528 | ;; return value is handled by choose-completion-string-functions |
| 2528 | nil)))) | 2529 | nil)))) |