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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-face.el [lexbind]
Date: Tue, 06 Jul 2004 07:05:45 -0400

Index: emacs/lisp/cus-face.el
diff -c emacs/lisp/cus-face.el:1.29.2.2 emacs/lisp/cus-face.el:1.29.2.3
*** emacs/lisp/cus-face.el:1.29.2.2     Tue Oct 14 23:50:52 2003
--- emacs/lisp/cus-face.el      Tue Jul  6 10:10:46 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]