From: Richard M. Stallman Date: Sun, 18 Jul 1993 04:44:27 +0000 (+0000) Subject: (face-equal): Don't mess with face-background-pixmap. X-Git-Tag: emacs-19.34~11729 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=11872f7e1ec1e23d95893b88c3c8f51d0581b840;p=emacs.git (face-equal): Don't mess with face-background-pixmap. --- diff --git a/lisp/faces.el b/lisp/faces.el index fb418ec5b29..a79803c71ca 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -322,8 +322,9 @@ to face NEW-NAME on frame NEW-FRAME." (and (equal (face-foreground face1 frame) (face-foreground face2 frame)) (equal (face-background face1 frame) (face-background face2 frame)) (equal (face-font face1 frame) (face-font face2 frame)) - (equal (face-background-pixmap face1 frame) - (face-background-pixmap face2 frame)))) +;; (equal (face-background-pixmap face1 frame) +;; (face-background-pixmap face2 frame)) + )) (defun face-differs-from-default-p (face &optional frame) "True if face FACE displays differently from the default face, on FRAME.