[Python-checkins] python/dist/src/Misc python-mode.el,4.17,4.18

bwarsaw@sourceforge.net bwarsaw@sourceforge.net
Thu, 25 Apr 2002 14:46:35 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv29605

Modified Files:
	python-mode.el 
Log Message:
Fix typo in the setup of interpreter-mode-alist.


Index: python-mode.el
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/python-mode.el,v
retrieving revision 4.17
retrieving revision 4.18
diff -C2 -d -r4.17 -r4.18
*** python-mode.el	25 Apr 2002 21:31:47 -0000	4.17
--- python-mode.el	25 Apr 2002 21:46:33 -0000	4.18
***************
*** 1150,1154 ****
    (while modes
      (when (not (assoc (car modes) interpreter-mode-alist))
!       (push modes interpreter-mode-alist))
      (setq modes (cdr modes))))
  
--- 1150,1154 ----
    (while modes
      (when (not (assoc (car modes) interpreter-mode-alist))
!       (push (car modes) interpreter-mode-alist))
      (setq modes (cdr modes))))