diff options
| author | Masatake YAMATO | 2005-10-18 04:31:16 +0000 |
|---|---|---|
| committer | Masatake YAMATO | 2005-10-18 04:31:16 +0000 |
| commit | 283780dc8842d1deb8f7e223f6b88771e256bcb2 (patch) | |
| tree | 8f1852d1be2262d70182b15478bc1e5a3cfc67fc /lisp/progmodes/python.el | |
| parent | 50071f01ec3b93c87656bc88b9ae796585912855 (diff) | |
| download | emacs-283780dc8842d1deb8f7e223f6b88771e256bcb2.tar.gz emacs-283780dc8842d1deb8f7e223f6b88771e256bcb2.zip | |
Install to the CVS repository what I forgot to install in my
2005-10-16 changes.
* progmodes/python.el (python-complete-symbol): Pass the common
prefix substring of completion to `display-completion-list'.
* textmodes/org.el (org-complete): Ditto.
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index f7788404350..6ed2e39e4e8 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -1652,7 +1652,7 @@ Repeating the command scrolls the completion window." | |||
| 1652 | (t | 1652 | (t |
| 1653 | (message "Making completion list...") | 1653 | (message "Making completion list...") |
| 1654 | (with-output-to-temp-buffer "*Completions*" | 1654 | (with-output-to-temp-buffer "*Completions*" |
| 1655 | (display-completion-list completions)) | 1655 | (display-completion-list completions symbol)) |
| 1656 | (message "Making completion list...%s" "done")))))))) | 1656 | (message "Making completion list...%s" "done")))))))) |
| 1657 | 1657 | ||
| 1658 | (eval-when-compile (require 'hippie-exp)) | 1658 | (eval-when-compile (require 'hippie-exp)) |