]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-declare-face): Simplify code.
authorRichard M. Stallman <rms@gnu.org>
Sun, 13 Jun 2004 21:56:49 +0000 (21:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 13 Jun 2004 21:56:49 +0000 (21:56 +0000)
lisp/cus-face.el

index 1ff07c4c361e2f1261b0fb74e7f3877005b9a34c..e3134e8f1ea8f378765182a0d154cf0375eddc7f 100644 (file)
     (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)
+       (let ((value (or (get face 'saved-face) spec)))
          ;; Create global face.
          (make-empty-face face)
          ;; Create frame-local faces
-         (while frames
-           (setq frame (car frames)
-                 frames (cdr frames))
+         (dolist (frame (frame-list))
            (face-spec-set face value frame)))
        ;; When making a face after frames already exist
        (if (memq window-system '(x w32))