From: Ulf Jasper Date: Sun, 15 Jun 2008 08:04:13 +0000 (+0000) Subject: Moved some faces from newst-plainview to newst-reader. X-Git-Tag: emacs-pretest-23.0.90~4768 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0d00764ae592431354fd21d62819233721390af6;p=emacs.git Moved some faces from newst-plainview to newst-reader. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 42b7c94c6aa..2e6b3e019cb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2008-06-15 Ulf Jasper + + * net/newst-plainview.el (newsticker-faces, newsticker-feed-face) + (newsticker-extra-face, newsticker-enclosure-face): Moved to + net/newst-reader.el. + + * net/newst-reader.el (newsticker-faces, newsticker-feed-face) + (newsticker-extra-face, newsticker-enclosure-face): Moved from + net/newst-reader.el. + 2008-06-15 Stefan Monnier * international/encoded-kb.el (encoded-kbd-self-insert-utf-8): diff --git a/lisp/net/newst-plainview.el b/lisp/net/newst-plainview.el index 831e09b3f0a..49bae4fae65 100644 --- a/lisp/net/newst-plainview.el +++ b/lisp/net/newst-plainview.el @@ -6,7 +6,7 @@ ;; Author: Ulf Jasper ;; Filename: newst-plainview.el ;; URL: http://www.nongnu.org/newsticker -;; Time-stamp: "13. Juni 2008, 19:28:15 (ulf)" +;; Time-stamp: "15. Juni 2008, 09:41:55 (ulf)" ;; ====================================================================== @@ -154,17 +154,6 @@ The following printf-like specifiers can be used: ;; ====================================================================== ;; faces -(defgroup newsticker-faces nil - "Settings for the faces of the feed reader." - :group 'newsticker-plainview) - -(defface newsticker-feed-face - '((((class color) (background dark)) - (:family "helvetica" :bold t :height 1.2 :foreground "misty rose")) - (((class color) (background light)) - (:family "helvetica" :bold t :height 1.2 :foreground "black"))) - "Face for news feeds." - :group 'newsticker-faces) (defface newsticker-new-item-face '((((class color) (background dark)) @@ -214,22 +203,6 @@ The following printf-like specifiers can be used: "Face for newsticker dates." :group 'newsticker-faces) -(defface newsticker-enclosure-face - '((((class color) (background dark)) - (:bold t :background "orange")) - (((class color) (background light)) - (:bold t :background "orange"))) - "Face for enclosed elements." - :group 'newsticker-faces) - -(defface newsticker-extra-face - '((((class color) (background dark)) - (:italic t :foreground "gray50" :height 0.8)) - (((class color) (background light)) - (:italic t :foreground "gray50" :height 0.8))) - "Face for newsticker dates." - :group 'newsticker-faces) - (defface newsticker-default-face '((((class color) (background dark)) (:inherit default)) diff --git a/lisp/net/newst-reader.el b/lisp/net/newst-reader.el index 67ab5086932..bed8b8f2a97 100644 --- a/lisp/net/newst-reader.el +++ b/lisp/net/newst-reader.el @@ -6,7 +6,7 @@ ;; Author: Ulf Jasper ;; Filename: newst-reader.el ;; URL: http://www.nongnu.org/newsticker -;; Time-stamp: "13. Juni 2008, 19:28:41 (ulf)" +;; Time-stamp: "15. Juni 2008, 09:42:01 (ulf)" ;; ====================================================================== @@ -141,6 +141,34 @@ See `format-time-string' for a list of valid specifiers." :set 'newsticker--set-customvar-formatting :group 'newsticker-reader) +(defgroup newsticker-faces nil + "Settings for the faces of the feed reader." + :group 'newsticker-reader) + +(defface newsticker-feed-face + '((((class color) (background dark)) + (:family "helvetica" :bold t :height 1.2 :foreground "misty rose")) + (((class color) (background light)) + (:family "helvetica" :bold t :height 1.2 :foreground "black"))) + "Face for news feeds." + :group 'newsticker-faces) + +(defface newsticker-extra-face + '((((class color) (background dark)) + (:italic t :foreground "gray50" :height 0.8)) + (((class color) (background light)) + (:italic t :foreground "gray50" :height 0.8))) + "Face for newsticker dates." + :group 'newsticker-faces) + +(defface newsticker-enclosure-face + '((((class color) (background dark)) + (:bold t :background "orange")) + (((class color) (background light)) + (:bold t :background "orange"))) + "Face for enclosed elements." + :group 'newsticker-faces) + ;; ====================================================================== ;;; Utility functions ;; ======================================================================