aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/gnus-art.el12
1 files changed, 3 insertions, 9 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 5745bf12bde..a937e232ff4 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -268,21 +268,15 @@ This can also be a list of the above values."
268 :type 'plist 268 :type 'plist
269 :group 'gnus-article-hiding) 269 :group 'gnus-article-hiding)
270 270
271;; Fixme: This isn't the right thing for mixed graphical and non-graphical 271(defcustom gnus-article-x-face-command (and (gnus-image-type-available-p 'pbm)
272;; frames in a session. 272 'gnus-display-x-face-in-from)
273(defcustom gnus-article-x-face-command
274 (if (gnus-image-type-available-p 'pbm)
275 'gnus-display-x-face-in-from
276 "{ echo \
277'/* Format_version=1, Width=48, Height=48, Depth=1, Valid_bits_per_item=16 */'\
278; uncompface; } | icontopbm | display -")
279 "String or function to be executed to display an X-Face header. 273 "String or function to be executed to display an X-Face header.
280If it is a string, the command will be executed in a sub-shell 274If it is a string, the command will be executed in a sub-shell
281asynchronously. The compressed face will be piped to this command." 275asynchronously. The compressed face will be piped to this command."
282 :type '(choice string 276 :type '(choice string
283 (function-item gnus-display-x-face-in-from) 277 (function-item gnus-display-x-face-in-from)
284 function) 278 function)
285 :version "21.1" 279 :version "27.1"
286 :group 'gnus-picon 280 :group 'gnus-picon
287 :group 'gnus-article-washing) 281 :group 'gnus-article-washing)
288 282