Gnus development mailing list
 help / color / mirror / Atom feed
From: pmlists@free.fr (Peter Münster)
To: ding@gnus.org
Subject: Re: setting face in gnus-user-format-function-x (solved)
Date: Wed, 13 Jul 2011 11:15:04 +0200	[thread overview]
Message-ID: <87ei1u35k7.fsf_-_@micropit.couberia.bzh> (raw)
In-Reply-To: <m3zkkzj7ty.fsf@quimbies.gnus.org>

On Fri, Jul 01 2011, Lars Magne Ingebrigtsen wrote:

> Uhm...  try edebugging through `gnus-summary-update-article-line' and
> see what happens.  :-)

Ok, it seems, that `gnus-summary-update-article-line' should only be
called, when the summary buffer has already been prepared. So I have to
avoid calling `my-summary-update' when creating a new summary buffer.

This works for me now:

--8<---------------cut here---------------start------------->8---
(defun my-summary-prepared ()
  (setq gnus-summary-update-hook '(my-summary-update)))

(defun my-summary-exit ()
  (setq gnus-summary-update-hook nil))

(defun my-summary-update ()
  (my-summary-exit)
  (gnus-summary-update-article-line
   (gnus-summary-article-number)
   (gnus-summary-article-header (gnus-summary-article-number)))
  (my-summary-prepared))

(defun gnus-user-format-function-x (header)
  (propertize (format "%c" gnus-tmp-unread) 'face
              (if (equal gnus-tmp-unread gnus-ancient-mark)
                  gnus-face-2 gnus-face-3) 'gnus-face t))

(setq gnus-summary-prepared-hook '(my-summary-prepared))
(setq gnus-summary-exit-hook '(my-summary-exit))

(setq gnus-summary-line-format
      "%ux%R%3P %-10&user-date; %-17,17f(%4k)%* %B%s\n")
--8<---------------cut here---------------end--------------->8---

What do you think? Any suggestions for doing this better?

Cheers,
-- 
           Peter




  reply	other threads:[~2011-07-13  9:15 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-23 18:04 setting face in gnus-user-format-function-x Peter Münster
2011-05-24  6:18 ` Reiner Steib
2011-05-25 13:38   ` Peter Münster
2011-05-26  6:37     ` Reiner Steib
2011-05-27  8:26       ` Peter Münster
2011-05-27  9:44         ` Michael Piotrowski
2011-05-30 18:10 ` Lars Magne Ingebrigtsen
2011-05-31  7:06   ` Peter Münster
2011-06-07 16:24     ` Michael Piotrowski
2011-06-23  8:47       ` Peter Münster
2011-06-26 10:06         ` Lars Magne Ingebrigtsen
2011-06-27 12:46           ` Peter Münster
2011-06-30  2:23             ` Lars Magne Ingebrigtsen
2011-06-30  5:14               ` Peter Münster
2011-06-30 22:03                 ` Lars Magne Ingebrigtsen
2011-07-13  9:15                   ` Peter Münster [this message]
2011-07-13 11:35                     ` setting face in gnus-user-format-function-x (solved) Peter Münster
2011-07-14  8:12                     ` Peter Münster
2011-07-14 19:09                       ` Reiner Steib
2011-07-11 16:57         ` setting face in gnus-user-format-function-x Michael Piotrowski
2011-07-13  7:36           ` Peter Münster
2011-07-18 21:09   ` special face for marks (was: setting face in gnus-user-format-function-x) Peter Münster
2011-07-19 10:09     ` special face for marks lee
2011-07-19 10:58       ` Peter Münster
2011-07-19 17:51         ` lee
2011-09-29  9:41           ` Ted Zlatanov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ei1u35k7.fsf_-_@micropit.couberia.bzh \
    --to=pmlists@free.fr \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).