Gnus development mailing list
 help / color / mirror / Atom feed
From: Karl Kleinpaste <karl@kleinpaste.org>
To: ding@gnus.org
Subject: fix for bad temporary value for gnus-buffer-configuration
Date: Sun, 30 Aug 2009 15:08:30 -0400	[thread overview]
Message-ID: <vxk4orpktld.fsf@awol.kleinpaste.org> (raw)

Consequent to needing a frame-width-sensitive change to my
gnus-buffer-configuration choices due to using a really small display
(65x15), I discovered that gnus-buffer-configuration causes trouble if
the 'article selection element displays no Summary.  Code in gnus-art.el
needs a visible summary, and if that's not available, it inserts a
temporary value.  The problem is that the temporary value is missing a
needed level of parenthesization.  It looks like this code was never
tested.

This can be checked by seeing what happens after...
  (gnus-add-configuration
   '(article
     (vertical 1.0 (article 1.0 point))))       ;; no summary displayed
...if you then try to update an already-displayed article using `W w' or
switch its MIMEd plain -vs- html displays with `b'.

Would someone review to make sure this is sane, and commit it if so?

diff -u -r7.293 gnus-art.el
--- lisp/gnus-art.el	12 Aug 2009 08:27:50 -0000	7.293
+++ lisp/gnus-art.el	30 Aug 2009 18:58:31 -0000
@@ -6361,9 +6361,9 @@
 		 (gnus-configure-windows 'article)
 		 (unless (setq win (get-buffer-window summary-buffer 'visible))
 		   (let ((gnus-buffer-configuration
-			  '(article ((vertical 1.0
-					       (summary 0.25 point)
-					       (article 1.0))))))
+			  '((article ((vertical 1.0
+						(summary 0.25 point)
+						(article 1.0)))))))
 		     (gnus-configure-windows 'article))
 		   (setq win (get-buffer-window summary-buffer 'visible)))
 		 (gnus-select-frame-set-input-focus (window-frame win))



             reply	other threads:[~2009-08-30 19:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-30 19:08 Karl Kleinpaste [this message]
2009-09-02 23:16 ` Katsumi Yamaoka

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=vxk4orpktld.fsf@awol.kleinpaste.org \
    --to=karl@kleinpaste.org \
    --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).