aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-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 ce54d2a0873..eff599c77a5 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -83,9 +83,9 @@
83 :link '(emacs-commentary-link "python")) 83 :link '(emacs-commentary-link "python"))
84 84
85;;;###autoload 85;;;###autoload
86(add-to-list 'interpreter-mode-alist '("jython" . jython-mode)) 86(add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode))
87;;;###autoload 87;;;###autoload
88(add-to-list 'interpreter-mode-alist '("python" . python-mode)) 88(add-to-list 'interpreter-mode-alist (cons (purecopy "python") 'python-mode))
89;;;###autoload 89;;;###autoload
90(add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode)) 90(add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
91(add-to-list 'same-window-buffer-names (purecopy "*Python*")) 91(add-to-list 'same-window-buffer-names (purecopy "*Python*"))