From: Richard M. Stallman Date: Sun, 24 Nov 2002 18:58:35 +0000 (+0000) Subject: (custom-declare-face): Add face-defface-spec prop after applying the X-Git-Tag: ttn-vms-21-2-B4~12289 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b5188bcde8280375a922492f04a472ebeb4aa466;p=emacs.git (custom-declare-face): Add face-defface-spec prop after applying the face spec. --- diff --git a/lisp/cus-face.el b/lisp/cus-face.el index 2f4e91a900a..f6b00ed17b1 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -37,7 +37,6 @@ (defun custom-declare-face (face spec doc &rest args) "Like `defface', but FACE is evaluated as a normal argument." (unless (get face 'face-defface-spec) - (put face 'face-defface-spec spec) (when (fboundp 'facep) (unless (facep face) ;; If the user has already created the face, respect that. @@ -46,7 +45,7 @@ frame) ;; Create global face. (make-empty-face face) - ;; Create frame local faces + ;; Create frame-local faces (while frames (setq frame (car frames) frames (cdr frames)) @@ -54,6 +53,8 @@ ;; When making a face after frames already exist (if (memq window-system '(x w32)) (make-face-x-resource-internal face)))) + ;; Don't record SPEC until we see it causes no errors. + (put face 'face-defface-spec spec) (when (and doc (null (face-documentation face))) (set-face-documentation face (purecopy doc))) (custom-handle-all-keywords face args 'custom-face)