# HG changeset patch # User Richard M. Stallman # Date 923429067 0 # Node ID 82cf6c4c1e03f532b1c1cda077fa11488f5a8559 # Parent 9bd8fd06673b60caf500e03b4bce4870edf17da8 (face-set-after-frame-default): Obey the `customized-face' for new faces. diff -r 9bd8fd06673b -r 82cf6c4c1e03 lisp/faces.el --- a/lisp/faces.el Tue Apr 06 20:02:45 1999 +0000 +++ b/lisp/faces.el Tue Apr 06 20:04:27 1999 +0000 @@ -1443,7 +1443,8 @@ ;; Set up each face, first from the defface information, ;; then the global face data, and then the X resources. (let* ((face (car (car rest))) - (spec (or (get face 'saved-face) + (spec (or (get face 'customized-face) + (get face 'saved-face) (get face 'face-defface-spec))) (global (cdr (assq face global-face-data))) (local (cdr (car rest))))