aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabián Ezequiel Gallina2012-05-17 00:03:29 -0300
committerFabián Ezequiel Gallina2012-05-17 00:03:29 -0300
commit2bdce3883b7a3014aea3ae3a9decf77ecee8dd40 (patch)
tree3114c46b2efd01454f1728e649c2f99ce0af27f3
parent279c9272ee87a6bdbf40ac8ddb0cbffa09a9afc6 (diff)
downloademacs-2bdce3883b7a3014aea3ae3a9decf77ecee8dd40.tar.gz
emacs-2bdce3883b7a3014aea3ae3a9decf77ecee8dd40.zip
Renamed indentity occurrences to identity in previous commmit
-rw-r--r--lisp/progmodes/python.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 777436cf89b..f5b75686f50 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1232,11 +1232,11 @@ uniqueness for different types of configurations."
1232 python-shell-prompt-block-regexp 1232 python-shell-prompt-block-regexp
1233 python-shell-prompt-output-regexp 1233 python-shell-prompt-output-regexp
1234 (mapconcat #'symbol-value python-shell-setup-codes "") 1234 (mapconcat #'symbol-value python-shell-setup-codes "")
1235 (mapconcat #'indentity python-shell-process-environment "") 1235 (mapconcat #'identity python-shell-process-environment "")
1236 (mapconcat #'indentity python-shell-extra-pythonpaths "") 1236 (mapconcat #'identity python-shell-extra-pythonpaths "")
1237 (mapconcat #'indentity python-shell-exec-path "") 1237 (mapconcat #'identity python-shell-exec-path "")
1238 (or python-shell-virtualenv-path "") 1238 (or python-shell-virtualenv-path "")
1239 (mapconcat #'indentity python-shell-exec-path ""))))) 1239 (mapconcat #'identity python-shell-exec-path "")))))
1240 1240
1241(defun python-shell-parse-command () 1241(defun python-shell-parse-command ()
1242 "Calculate the string used to execute the inferior Python process." 1242 "Calculate the string used to execute the inferior Python process."