* gnus-art.el (gnus-face-properties-alist): Moved here from
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 16 Apr 2006 07:30:34 +0000 (07:30 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sun, 16 Apr 2006 07:30:34 +0000 (07:30 +0000)
gnus-fun.

* gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.

lisp/ChangeLog
lisp/gnus-art.el
lisp/gnus-fun.el

index bda07f0..e805e76 100644 (file)
@@ -1,3 +1,10 @@
+2006-04-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-art.el (gnus-face-properties-alist): Moved here from
+       gnus-fun.
+
+       * gnus-fun.el (gnus-face-properties-alist): Move to gnus-art.
+
 2006-04-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * message.el (message-strip-forbidden-properties): Only display on
index ce2598d..ffe3cc1 100644 (file)
@@ -794,6 +794,31 @@ be displayed by the first non-nil matching CONTENT face."
                               (item :tag "skip" nil)
                               (face :value default)))))
 
+(defcustom gnus-face-properties-alist (if (featurep 'xemacs)
+                                         '((xface . (:face gnus-x-face)))
+                                       '((pbm . (:face gnus-x-face))
+                                         (png . nil)))
+  "Alist of image types and properties applied to Face and X-Face images.
+Here are examples:
+
+;; Specify the altitude of Face images in the From header.
+\(setq gnus-face-properties-alist
+      '((pbm . (:face gnus-x-face :ascent 80))
+       (png . (:ascent 80))))
+
+;; Show Face images as pressed buttons.
+\(setq gnus-face-properties-alist
+      '((pbm . (:face gnus-x-face :relief -2))
+       (png . (:relief -2))))
+
+See the manual for the valid properties for various image types.
+Currently, `pbm' is used for X-Face images and `png' is used for Face
+images in Emacs.  Only the `:face' property is effective on the `xface'
+image type in XEmacs if it is built with the libcompface library."
+  :version "23.0" ;; No Gnus
+  :group 'gnus-article-headers
+  :type '(repeat (cons :format "%v" (symbol :tag "Image type") plist)))
+
 (defcustom gnus-article-decode-hook
   '(article-decode-charset article-decode-encoded-words
                           article-decode-group-name article-decode-idna-rhs)
index 9747e4b..0a07352 100644 (file)
@@ -78,31 +78,6 @@ PNG format."
                        "convert -scale 48x48! %s -colors %d png:-")
                 (string)))
 
-(defcustom gnus-face-properties-alist (if (featurep 'xemacs)
-                                         '((xface . (:face gnus-x-face)))
-                                       '((pbm . (:face gnus-x-face))
-                                         (png . nil)))
-  "Alist of image types and properties applied to Face and X-Face images.
-Here are examples:
-
-;; Specify the altitude of Face images in the From header.
-\(setq gnus-face-properties-alist
-      '((pbm . (:face gnus-x-face :ascent 80))
-       (png . (:ascent 80))))
-
-;; Show Face images as pressed buttons.
-\(setq gnus-face-properties-alist
-      '((pbm . (:face gnus-x-face :relief -2))
-       (png . (:relief -2))))
-
-See the manual for the valid properties for various image types.
-Currently, `pbm' is used for X-Face images and `png' is used for Face
-images in Emacs.  Only the `:face' property is effective on the `xface'
-image type in XEmacs if it is built with the libcompface library."
-  :version "23.0" ;; No Gnus
-  :group 'gnus-fun
-  :type '(repeat (cons :format "%v" (symbol :tag "Image type") plist)))
-
 (defun gnus-shell-command-to-string (command)
   "Like `shell-command-to-string' except not mingling ERROR."
   (with-output-to-string