aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison2012-05-17 00:03:38 -0300
committerFabián Ezequiel Gallina2012-05-17 00:03:38 -0300
commit799aa2afb2718db4df657fdaf1348cbfec21dd66 (patch)
tree1afd1e03790462cc3e6e48b6deea847195bca115
parent53df7818c0d296953333efceefcdde6cba51cfcf (diff)
downloademacs-799aa2afb2718db4df657fdaf1348cbfec21dd66.tar.gz
emacs-799aa2afb2718db4df657fdaf1348cbfec21dd66.zip
Use `completion-at-point` instead of `comint-dynamic-complete` in shell completion
-rw-r--r--lisp/progmodes/python.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index b1d52926ec0..6d9ca2f09d7 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1799,7 +1799,7 @@ to complete."
1799 (buffer-substring (comint-line-beginning-position) 1799 (buffer-substring (comint-line-beginning-position)
1800 (point-marker))) 1800 (point-marker)))
1801 (indent-for-tab-command) 1801 (indent-for-tab-command)
1802 (comint-dynamic-complete))) 1802 (completion-at-point)))
1803 1803
1804 1804
1805;;; PDB Track integration 1805;;; PDB Track integration