[MLton-commit] r5304

Vesa Karvonen vesak at mlton.org
Fri Feb 23 03:15:32 PST 2007


Swapped the default def and use faces.  Now, by default, a def is green if
it has uses and pink if not.

----------------------------------------------------------------------

U   mlton/trunk/ide/emacs/def-use-mode.el

----------------------------------------------------------------------

Modified: mlton/trunk/ide/emacs/def-use-mode.el
===================================================================
--- mlton/trunk/ide/emacs/def-use-mode.el	2007-02-23 02:09:44 UTC (rev 5303)
+++ mlton/trunk/ide/emacs/def-use-mode.el	2007-02-23 11:15:01 UTC (rev 5304)
@@ -30,7 +30,7 @@
   :group 'matching)
 
 (defface def-use-def-face
-  '((((class color)) (:background "paleturquoise3"))
+  '((((class color)) (:background "darkseagreen3"))
     (t (:background "gray")))
   "Face for highlighting definitions."
   :group 'faces
@@ -44,7 +44,7 @@
   :group 'def-use)
 
 (defface def-use-use-face
-  '((((class color)) (:background "darkseagreen3"))
+  '((((class color)) (:background "paleturquoise3"))
     (t (:background "gray")))
   "Face for highlighting uses."
   :group 'faces




More information about the MLton-commit mailing list