emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/cus-face.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-face.el [emacs-unicode-2]
Date: Mon, 28 Jun 2004 04:54:38 -0400

Index: emacs/lisp/cus-face.el
diff -c emacs/lisp/cus-face.el:1.32.6.1 emacs/lisp/cus-face.el:1.32.6.2
*** emacs/lisp/cus-face.el:1.32.6.1     Fri Apr 16 12:49:48 2004
--- emacs/lisp/cus-face.el      Mon Jun 28 07:28:27 2004
***************
*** 39,53 ****
      (when (fboundp 'facep)
        (unless (facep face)
        ;; If the user has already created the face, respect that.
!       (let ((value (or (get face 'saved-face) spec))
!             (frames (frame-list))
!             frame)
          ;; Create global face.
          (make-empty-face face)
          ;; Create frame-local faces
!         (while frames
!           (setq frame (car frames)
!                 frames (cdr frames))
            (face-spec-set face value frame)))
        ;; When making a face after frames already exist
        (if (memq window-system '(x w32))
--- 39,49 ----
      (when (fboundp 'facep)
        (unless (facep face)
        ;; If the user has already created the face, respect that.
!       (let ((value (or (get face 'saved-face) spec)))
          ;; Create global face.
          (make-empty-face face)
          ;; Create frame-local faces
!         (dolist (frame (frame-list))
            (face-spec-set face value frame)))
        ;; When making a face after frames already exist
        (if (memq window-system '(x w32))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]