Fix typo in the setup of interpreter-mode-alist.

This commit is contained in:
Barry Warsaw 2002-04-25 21:46:33 +00:00
parent 884916112e
commit cf22c826a6
1 changed files with 1 additions and 1 deletions

View File

@ -1149,7 +1149,7 @@ It is added to `interpreter-mode-alist' and `py-choose-shell'.
("python" . python-mode))))
(while modes
(when (not (assoc (car modes) interpreter-mode-alist))
(push modes interpreter-mode-alist))
(push (car modes) interpreter-mode-alist))
(setq modes (cdr modes))))
(when (not (or (rassq 'python-mode auto-mode-alist)