]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/python.el (run-python): Use read-shell-command.
authorEric Hanchrow <eric.hanchrow@gmail.com>
Thu, 12 Jun 2014 01:45:33 +0000 (21:45 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 12 Jun 2014 01:45:33 +0000 (21:45 -0400)
lisp/ChangeLog
lisp/progmodes/python.el

index 3df94a7392932f17c7fb548ecd0e8c81557fbbda..845202b3931a3471d66276179aeb78c7f487f211 100644 (file)
@@ -1,3 +1,7 @@
+2014-05-18  Eric Hanchrow  <eric.hanchrow@gmail.com>
+
+       * progmodes/python.el (run-python): Use read-shell-command.
+
 2014-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * rect.el: Make it possible to move bounds past EOL or into TABs.
index 436442da2d00b824a747384287057453789c4784..79fbe7faa277236064471239e106db6eda0a8ba5 100644 (file)
@@ -2005,7 +2005,7 @@ process buffer for a list of commands.)"
   (interactive
    (if current-prefix-arg
        (list
-        (read-string "Run Python: " (python-shell-parse-command))
+        (read-shell-command "Run Python: " (python-shell-parse-command))
         (y-or-n-p "Make dedicated process? ")
         (= (prefix-numeric-value current-prefix-arg) 4))
      (list (python-shell-parse-command) nil t)))