diff lisp/prim/faces.el @ 193:f53b5ca2e663 r20-3b23

Import from CVS: tag r20-3b23
author cvs
date Mon, 13 Aug 2007 09:58:30 +0200
parents 6075d714658b
children acd284d43ca1
line wrap: on
line diff
--- a/lisp/prim/faces.el	Mon Aug 13 09:57:40 2007 +0200
+++ b/lisp/prim/faces.el	Mon Aug 13 09:58:30 2007 +0200
@@ -1446,9 +1446,19 @@
 (make-face 'primary-selection)
 (make-face 'secondary-selection)
 
-(loop for color in '("red" "green" "blue" "yellow") do
-      (make-face (intern color) (concat color " text"))
-      (set-face-foreground (intern color) color nil 'color))
+;; The loop macro isn't defined until loaddefs.el is read
+;;(loop for color in '("red" "green" "blue" "yellow") do
+;;      (make-face (intern color) (concat color " text"))
+;;      (set-face-foreground (intern color) color nil 'color))
+(make-face 'red "red text")
+(set-face-foreground 'red "red" nil 'color)
+(make-face 'green "green text")
+(set-face-foreground 'green "green" nil 'color)
+(make-face 'blue "blue text")
+(set-face-foreground 'blue "blue" nil 'color)
+(make-face 'yellow "yellow text")
+(set-face-foreground 'yellow "yellow" nil 'color)
+
 
 ;; Make some useful faces.  This happens very early, before creating
 ;; the first non-stream device.  We initialize the tty global values here.