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


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-face.el
Date: Sun, 13 Jun 2004 17:58:27 -0400

Index: emacs/lisp/cus-face.el
diff -c emacs/lisp/cus-face.el:1.33 emacs/lisp/cus-face.el:1.34
*** emacs/lisp/cus-face.el:1.33 Mon Sep  1 15:45:09 2003
--- emacs/lisp/cus-face.el      Sun Jun 13 21:56:49 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]