1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

Fix import completion.

* lisp/progmodes/python.el (python-shell-completion-get-completions):
Fix import case regexp.

Fixes: debbugs:18582
This commit is contained in:
Fabián Ezequiel Gallina 2014-10-12 12:12:04 -03:00
parent a9789a1d8c
commit b1be0eda33
2 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2014-10-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
Fix import completion. (Bug#18582)
* progmodes/python.el (python-shell-completion-get-completions):
Fix import case regexp.
2014-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo

View file

@ -2695,10 +2695,7 @@ LINE is used to detect the context on how to complete given INPUT."
(save-excursion
(buffer-substring-no-properties
(line-beginning-position) ;End of prompt.
(progn
(re-search-backward "^")
(python-util-forward-comment) ;FIXME: Why?
(point)))))
(re-search-backward "^"))))
(completion-code
;; Check whether a prompt matches a pdb string, an import
;; statement or just the standard prompt and use the
@ -2713,7 +2710,7 @@ LINE is used to detect the context on how to complete given INPUT."
(t nil)))
(input
(if (string-match
(python-rx (+ space) (or "from" "import") space)
(python-rx line-start (* space) (or "from" "import") space)
line)
line
input)))