From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 25 03:10:54 2017 Received: (at submit) by debbugs.gnu.org; 25 Jan 2017 08:10:54 +0000 Received: from localhost ([127.0.0.1]:41453 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWIfM-0006eL-Sl for submit@debbugs.gnu.org; Wed, 25 Jan 2017 03:10:54 -0500 Received: from eggs.gnu.org ([208.118.235.92]:60105) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cWIfK-0006e9-Ru for submit@debbugs.gnu.org; Wed, 25 Jan 2017 03:10:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWIfE-0004oX-Uu for submit@debbugs.gnu.org; Wed, 25 Jan 2017 03:10:45 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:53847) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cWIfE-0004oQ-NI for submit@debbugs.gnu.org; Wed, 25 Jan 2017 03:10:44 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51050) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWIfD-00050V-9K for bug-gnu-emacs@gnu.org; Wed, 25 Jan 2017 03:10:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWIf9-0004n2-Oz for bug-gnu-emacs@gnu.org; Wed, 25 Jan 2017 03:10:43 -0500 Received: from mail-hampton.hostforweb.net ([205.234.186.191]:39681 helo=hampton.hostforweb.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cWIf9-0004N7-Kv for bug-gnu-emacs@gnu.org; Wed, 25 Jan 2017 03:10:39 -0500 Received: from s70.gtokyofl21.vectant.ne.jp ([202.215.75.70]:60000 helo=localhost) by hampton.hostforweb.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.87) (envelope-from ) id 1cWIeO-000IS0-2g; Wed, 25 Jan 2017 02:09:53 -0600 Date: Wed, 25 Jan 2017 17:09:51 +0900 Message-ID: From: Katsumi Yamaoka To: bug-gnu-emacs@gnu.org Subject: 26.0.50; Gnus sometimes doesn't show article header fully Organization: Emacsen advocacy group X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (i686-pc-cygwin) Cancel-Lock: sha1:qCtZrnNMl4N9WX1v7/rBCZOWBC4= MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-OutGoing-Spam-Status: No, score=-2.9 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - hampton.hostforweb.net X-AntiAbuse: Original Domain - gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Get-Message-Sender-Via: hampton.hostforweb.net: authenticated_id: yamaoka/from_h X-Authenticated-Sender: hampton.hostforweb.net: yamaoka@jpl.org X-Source: X-Source-Args: X-Source-Dir: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (barebone) [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hi, This is a very minor bug, but happens in a certain condition. Here is a recipe: =E3=83=BBFind an artile that contains a Face image or shows a gravatar image. =E3=83=BBScroll the article window so that the header is shown fully. =E3=83=BBAdjust the frame height so that the article window shows a single empty line just beneath the whole header. =E3=83=BBType `g' to reselect the article. Then you may see the header is shown not fully. If not, try the following in order to adjust the face height so as not to be integral-multiplication of the default font height: (setq gnus-face-properties-alist '((png :relief 2))) (setq gnus-gravatar-properties '(:relief 2)) I was sometimes annoyed with this problem, but I have found neither a cause of it nor a solution so far. But this is a workaround I found today: (add-hook 'gnus-article-prepare-hook (lambda () (save-selected-window (select-window (get-buffer-window gnus-article-buffer)) (goto-char (point-min))))) Regards, From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 11 18:34:19 2018 Received: (at 25526) by debbugs.gnu.org; 11 Apr 2018 22:34:19 +0000 Received: from localhost ([127.0.0.1]:46735 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6OJn-00049y-2M for submit@debbugs.gnu.org; Wed, 11 Apr 2018 18:34:19 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:50283) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6OJj-00049p-Cu for 25526@debbugs.gnu.org; Wed, 11 Apr 2018 18:34:15 -0400 Received: from 46.67.12.60.tmi.telenormobil.no ([46.67.12.60] helo=corrigan) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1f6OJg-0008NI-1y; Thu, 12 Apr 2018 00:34:14 +0200 Received: from larsi by corrigan with local (Exim 4.89) (envelope-from ) id 1f6OJa-00034v-Dw; Thu, 12 Apr 2018 00:34:06 +0200 From: Lars Ingebrigtsen To: Katsumi Yamaoka Subject: Re: bug#25526: 26.0.50; Gnus sometimes doesn't show article header fully References: Date: Thu, 12 Apr 2018 00:34:06 +0200 In-Reply-To: (Katsumi Yamaoka's message of "Wed, 25 Jan 2017 17:09:51 +0900") Message-ID: <87k1tdv0dd.fsf@mouse.gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 25526 Cc: 25526@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Katsumi Yamaoka writes: > I was sometimes annoyed with this problem, but I have found > neither a cause of it nor a solution so far. But this is a > workaround I found today: > > (add-hook > 'gnus-article-prepare-hook > (lambda () > (save-selected-window > (select-window (get-buffer-window gnus-article-buffer)) > (goto-char (point-min))))) Did you try to do the same thing, only just putting it into the Gnus source code? :-) It kinda looks like the right thing to do, but I don't know anymore what with the hooks and stuff for dedicated windows and stuff... -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 01:53:14 2018 Received: (at 25526) by debbugs.gnu.org; 12 Apr 2018 05:53:14 +0000 Received: from localhost ([127.0.0.1]:46958 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6VAX-0003V9-Ui for submit@debbugs.gnu.org; Thu, 12 Apr 2018 01:53:14 -0400 Received: from blue.oak.relay.mailchannels.net ([23.83.215.20]:45703) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6VAR-0003Uw-Sk for 25526@debbugs.gnu.org; Thu, 12 Apr 2018 01:53:12 -0400 Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 4D5DA680375; Thu, 12 Apr 2018 05:53:06 +0000 (UTC) Received: from hampton.hostforweb.net (unknown [100.96.12.37]) (Authenticated sender: tih5qno0ow) by relay.mailchannels.net (Postfix) with ESMTPA id E0187681623; Thu, 12 Apr 2018 05:52:50 +0000 (UTC) Received: from hampton.hostforweb.net (hampton.hostforweb.net [172.19.38.121]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.14.1); Thu, 12 Apr 2018 05:53:06 +0000 Received: from s70.gtokyofl21.vectant.ne.jp ([202.215.75.70]:60000 helo=localhost) by hampton.hostforweb.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89_1) (envelope-from ) id 1f6VA3-003ZXs-TN; Thu, 12 Apr 2018 00:52:45 -0500 Date: Thu, 12 Apr 2018 14:52:43 +0900 Message-ID: From: Katsumi Yamaoka To: Lars Ingebrigtsen Subject: Re: bug#25526: 26.0.50; Gnus sometimes doesn't show article header fully References: <87k1tdv0dd.fsf@mouse.gnus.org> Organization: Emacsen advocacy group X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (x86_64-unknown-cygwin) Cancel-Lock: sha1:PsGdUrENWXMryxls0bhf0LxV9s0= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-OutGoing-Spam-Status: No, score=-1.0 X-AuthUser: yamaoka@hampton.hostforweb.net X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 25526 Cc: 25526@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 12 Apr 2018 00:34:06 +0200, Lars Ingebrigtsen wrote: > Katsumi Yamaoka writes: >> I was sometimes annoyed with this problem, but I have found >> neither a cause of it nor a solution so far. But this is a >> workaround I found today: >> (add-hook >> 'gnus-article-prepare-hook >> (lambda () >> (save-selected-window >> (select-window (get-buffer-window gnus-article-buffer)) >> (goto-char (point-min))))) Oh, I totally forgot the problem bacause of having set this hook, but by removing the hook I confirmed it still exists. Thank you for following this up. > Did you try to do the same thing, only just putting it into the Gnus > source code? :-) It kinda looks like the right thing to do, but I > don't know anymore what with the hooks and stuff for dedicated windows > and stuff... I tried this, --- gnus-art.el~ 2018-03-25 21:34:24.056766300 +0000 +++ gnus-art.el 2018-04-12 05:50:51.190490800 +0000 @@ -4699,2 +4699,6 @@ (gnus-configure-windows 'article) + ;; Make sure the article begins with the top of the header. + (save-selected-window + (select-window (get-buffer-window gnus-article-buffer)) + (goto-char (point-min))) (gnus-run-hooks 'gnus-article-prepare-hook) and verified it does the trick, too. The point is that to select the article window while performing (goto-char (point-min)). Regards, From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 07:19:50 2018 Received: (at 25526) by debbugs.gnu.org; 12 Apr 2018 11:19:50 +0000 Received: from localhost ([127.0.0.1]:47122 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6aGc-0006yU-2F for submit@debbugs.gnu.org; Thu, 12 Apr 2018 07:19:50 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:50353) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6aGa-0006yM-Ew for 25526@debbugs.gnu.org; Thu, 12 Apr 2018 07:19:49 -0400 Received: from 46.67.12.60.tmi.telenormobil.no ([46.67.12.60] helo=corrigan) by hermes.netfonds.no with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1f6aGW-00076k-Fe; Thu, 12 Apr 2018 13:19:46 +0200 Received: from larsi by corrigan with local (Exim 4.89) (envelope-from ) id 1f6aGL-0003lC-FF; Thu, 12 Apr 2018 13:19:33 +0200 From: Lars Ingebrigtsen To: Katsumi Yamaoka Subject: Re: bug#25526: 26.0.50; Gnus sometimes doesn't show article header fully References: <87k1tdv0dd.fsf@mouse.gnus.org> Date: Thu, 12 Apr 2018 13:19:32 +0200 In-Reply-To: (Katsumi Yamaoka's message of "Thu, 12 Apr 2018 14:52:43 +0900") Message-ID: <87zi28smd7.fsf@mouse.gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 25526 Cc: 25526@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Katsumi Yamaoka writes: > --- gnus-art.el~ 2018-03-25 21:34:24.056766300 +0000 > +++ gnus-art.el 2018-04-12 05:50:51.190490800 +0000 > @@ -4699,2 +4699,6 @@ > (gnus-configure-windows 'article) > + ;; Make sure the article begins with the top of the header. > + (save-selected-window > + (select-window (get-buffer-window gnus-article-buffer)) > + (goto-char (point-min))) > (gnus-run-hooks 'gnus-article-prepare-hook) > > and verified it does the trick, too. The point is that to select > the article window while performing (goto-char (point-min)). Looks good to me; please apply to Emacs master. :-) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 19:20:02 2018 Received: (at 25526-done) by debbugs.gnu.org; 12 Apr 2018 23:20:02 +0000 Received: from localhost ([127.0.0.1]:48762 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6lVZ-0008D1-VV for submit@debbugs.gnu.org; Thu, 12 Apr 2018 19:20:02 -0400 Received: from common.maple.relay.mailchannels.net ([23.83.214.38]:44990) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6lVY-0008Ce-AY for 25526-done@debbugs.gnu.org; Thu, 12 Apr 2018 19:20:00 -0400 X-Sender-Id: tih5qno0ow|x-authuser|yamaoka@hampton.hostforweb.net Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 16E15681C8E; Thu, 12 Apr 2018 23:19:59 +0000 (UTC) Received: from hampton.hostforweb.net (unknown [100.96.20.22]) (Authenticated sender: tih5qno0ow) by relay.mailchannels.net (Postfix) with ESMTPA id E5252681D1E; Thu, 12 Apr 2018 23:19:45 +0000 (UTC) X-Sender-Id: tih5qno0ow|x-authuser|yamaoka@hampton.hostforweb.net Received: from hampton.hostforweb.net (hampton.hostforweb.net [172.19.42.253]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384) by 0.0.0.0:2500 (trex/5.14.1); Thu, 12 Apr 2018 23:19:59 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: tih5qno0ow|x-authuser|yamaoka@hampton.hostforweb.net X-MailChannels-Auth-Id: tih5qno0ow X-Stupid-Cure: 570c30f92ea1f24a_1523575186256_1909851744 X-MC-Loop-Signature: 1523575186256:1305381692 X-MC-Ingress-Time: 1523575186255 Received: from s70.gtokyofl21.vectant.ne.jp ([202.215.75.70]:60000 helo=localhost) by hampton.hostforweb.net with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.89_1) (envelope-from ) id 1f6lVB-004J6U-TF; Thu, 12 Apr 2018 18:19:39 -0500 Date: Fri, 13 Apr 2018 08:19:38 +0900 Message-ID: From: Katsumi Yamaoka To: Lars Ingebrigtsen Subject: Re: bug#25526: 26.0.50; Gnus sometimes doesn't show article header fully References: <87k1tdv0dd.fsf@mouse.gnus.org> <87zi28smd7.fsf@mouse.gnus.org> Organization: Emacsen advocacy group X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (x86_64-unknown-cygwin) Cancel-Lock: sha1:CZicgKHDNn3utVOjCEGFLAe9uqA= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-OutGoing-Spam-Status: No, score=-1.0 X-AuthUser: yamaoka@hampton.hostforweb.net X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 25526-done Cc: 25526-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Thu, 12 Apr 2018 13:19:32 +0200, Lars Ingebrigtsen wrote: > Looks good to me; please apply to Emacs master. :-) Thanks. Done. From unknown Fri Sep 05 14:42:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 11 May 2018 11:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator