aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoam Postavsky2017-12-03 00:24:21 -0500
committerNoam Postavsky2017-12-03 10:01:12 -0500
commitafb04f7f3cb75c7c744d8fa8cd1cd70ad1755e6f (patch)
tree390e042e8347441808d613c9fb156c412e74325f
parent04e5b28ff1691345e023a944dc6a6a9e9573bd07 (diff)
downloademacs-afb04f7f3cb75c7c744d8fa8cd1cd70ad1755e6f.tar.gz
emacs-afb04f7f3cb75c7c744d8fa8cd1cd70ad1755e6f.zip
Use forward slashes for python w32 config example (Bug#21656)
* lisp/progmodes/python.el: Use forward slashes for Windows path example, it doesn't require doubling of slashes which reduces chances of confusion.
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 9e09bfc5941..9d3e428e23c 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -91,9 +91,9 @@
91;; is as follows (of course you need to modify the paths according to 91;; is as follows (of course you need to modify the paths according to
92;; your system): 92;; your system):
93 93
94;; (setq python-shell-interpreter "C:\\Python27\\python.exe" 94;; (setq python-shell-interpreter "C:/Python27/python.exe"
95;; python-shell-interpreter-args 95;; python-shell-interpreter-args
96;; "-i C:\\Python27\\Scripts\\ipython-script.py") 96;; "-i C:/Python27/Scripts/ipython-script.py")
97 97
98;; Missing or delayed output used to happen due to differences between 98;; Missing or delayed output used to happen due to differences between
99;; Operating Systems' pipe buffering (e.g. CPython 3.3.4 in Windows 7. 99;; Operating Systems' pipe buffering (e.g. CPython 3.3.4 in Windows 7.