aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorMasatake YAMATO2005-10-18 04:31:16 +0000
committerMasatake YAMATO2005-10-18 04:31:16 +0000
commit283780dc8842d1deb8f7e223f6b88771e256bcb2 (patch)
tree8f1852d1be2262d70182b15478bc1e5a3cfc67fc /lisp/textmodes
parent50071f01ec3b93c87656bc88b9ae796585912855 (diff)
downloademacs-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/textmodes')
-rw-r--r--lisp/textmodes/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index b9542c9fce7..7f0d257e5f6 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -2844,7 +2844,7 @@ At all other locations, this simply calls `ispell-complete-word'."
2844 (message "Making completion list...") 2844 (message "Making completion list...")
2845 (let ((list (sort (all-completions pattern table) 'string<))) 2845 (let ((list (sort (all-completions pattern table) 'string<)))
2846 (with-output-to-temp-buffer "*Completions*" 2846 (with-output-to-temp-buffer "*Completions*"
2847 (display-completion-list list))) 2847 (display-completion-list list pattern)))
2848 (message "Making completion list...%s" "done")))))) 2848 (message "Making completion list...%s" "done"))))))
2849 2849
2850;;; Comments, TODO and DEADLINE 2850;;; Comments, TODO and DEADLINE