##// END OF EJS Templates
Fix color scheme error in ipython.el. Closes #149
jdh2358 -
Show More
@@ -1,5 +1,8 b''
1 2007-04-26 Fernando Perez <Fernando.Perez@colorado.edu>
1 2007-04-26 Fernando Perez <Fernando.Perez@colorado.edu>
2
2
3 * ipython.el: fix incorrect color scheme, reported by Stefan.
4 Closes #149.
5
3 * IPython/PyColorize.py (Parser.format2): fix state-handling
6 * IPython/PyColorize.py (Parser.format2): fix state-handling
4 logic. I still don't like how that code handles state, but at
7 logic. I still don't like how that code handles state, but at
5 least now it should be correct, if inelegant. Closes #146.
8 least now it should be correct, if inelegant. Closes #146.
@@ -6,7 +6,7 b''
6 ;; URL: http://ipython.scipy.org
6 ;; URL: http://ipython.scipy.org
7 ;; Compatibility: Emacs21, XEmacs21
7 ;; Compatibility: Emacs21, XEmacs21
8 ;; FIXME: #$@! INPUT RING
8 ;; FIXME: #$@! INPUT RING
9 (defconst ipython-version "$Revision: 2232 $"
9 (defconst ipython-version "$Revision: 2275 $"
10 "VC version number.")
10 "VC version number.")
11
11
12 ;;; Commentary
12 ;;; Commentary
@@ -215,7 +215,7 b' the second for a \'normal\' command, and the third for a multiline command.")'
215 (list "-colors"
215 (list "-colors"
216 (cond
216 (cond
217 ((eq frame-background-mode 'dark)
217 ((eq frame-background-mode 'dark)
218 "DarkBG")
218 "Linux")
219 ((eq frame-background-mode 'light)
219 ((eq frame-background-mode 'light)
220 "LightBG")
220 "LightBG")
221 (t ; default (backg-mode isn't always set by XEmacs)
221 (t ; default (backg-mode isn't always set by XEmacs)
General Comments 0
You need to be logged in to leave comments. Login now