changeset 2715:9caee9338229

* faces.el: Call internal-set-face-1, not internat-set-face-1. * faces.el: Don't set frame-creation-function here; x-win.el is the appropriate place to set it. * faces.el: Only apply x-initialize-frame-faces to X frames; pass over terminal frames. * faces.el: Provide 'faces.
author Jim Blandy <jimb@redhat.com>
date Sun, 09 May 1993 23:48:41 +0000
parents bfe999b19082
children acd678e58602
files lisp/faces.el
diffstat 1 files changed, 11 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/faces.el	Sun May 09 23:38:29 1993 +0000
+++ b/lisp/faces.el	Sun May 09 23:48:41 1993 +0000
@@ -102,12 +102,12 @@
  (aref (internal-get-face face frame) 7))
 
 
-(defun internat-set-face-1 (face name value index frame)
+(defun internal-set-face-1 (face name value index frame)
   (let ((inhibit-quit t))
     (if (null frame)
 	(let ((frames (frame-list)))
 	  (while frames
-	    (internat-set-face-1 (face-name face) name value index (car frames))
+	    (internal-set-face-1 (face-name face) name value index (car frames))
 	    (setq frames (cdr frames)))
 	  (aset (internal-get-face (if (symbolp face) face (face-name face)) t)
 		index value)
@@ -146,21 +146,21 @@
 If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "font"))
-  (internat-set-face-1 face 'font font 3 frame))
+  (internal-set-face-1 face 'font font 3 frame))
 
 (defsubst set-face-foreground (face color &optional frame)
   "Change the foreground color of face FACE to COLOR (a string).
 If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "foreground"))
-  (internat-set-face-1 face 'foreground color 4 frame))
+  (internal-set-face-1 face 'foreground color 4 frame))
 
 (defsubst set-face-background (face color &optional frame)
   "Change the background color of face FACE to COLOR (a string).
 If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "background"))
-  (internat-set-face-1 face 'background color 5 frame))
+  (internal-set-face-1 face 'background color 5 frame))
 
 (defsubst set-face-background-pixmap (face name &optional frame)
   "Change the background pixmap of face FACE to PIXMAP.
@@ -174,14 +174,14 @@
 If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "background-pixmap"))
-  (internat-set-face-1 face 'background-pixmap name 6 frame))
+  (internal-set-face-1 face 'background-pixmap name 6 frame))
 
 (defsubst set-face-underline-p (face underline-p &optional frame)
   "Specify whether face FACE is underlined.  (Yes if UNDERLINE-P is non-nil.)
 If the optional FRAME argument is provided, change only
 in that frame; otherwise change each frame."
   (interactive (internal-face-interactive "underline-p" "underlined"))
-  (internat-set-face-1 face 'underline underline-p 7 frame))
+  (internal-set-face-1 face 'underline underline-p 7 frame))
 
 
 (defun make-face (name)
@@ -730,12 +730,13 @@
 ;;;	(set-face-foreground modeline (face-foreground default frame) frame))
     frame))
 
-(setq frame-creation-function 'x-create-frame-with-faces)
-
 ;; Set up the faces of all existing frames.
 (let ((frames (frame-list)))
   (while frames
-    (x-initialize-frame-faces (car frames))
+    (if (eq (framep (car frames)) 'x)
+	(x-initialize-frame-faces (car frames)))
     (setq frames (cdr frames))))
 
+(provide 'faces)
+
 ;;; faces.el ends here