diff options
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r-- | lisp/progmodes/python.el | 4 |
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 @@ :link '(emacs-commentary-link "python")) ;;;###autoload -(add-to-list 'interpreter-mode-alist '("jython" . jython-mode)) +(add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode)) ;;;###autoload -(add-to-list 'interpreter-mode-alist '("python" . python-mode)) +(add-to-list 'interpreter-mode-alist (cons (purecopy "python") 'python-mode)) ;;;###autoload (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode)) (add-to-list 'same-window-buffer-names (purecopy "*Python*")) |