From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.devel Subject: Re: 24.2.90: Confusion in "Top" "nn%" and "Bot". Date: Sun, 02 Dec 2012 03:08:33 +0200 Organization: JURTA Message-ID: <87txs5b6r2.fsf@mail.jurta.org> References: <20121130214558.GA3163@acm.acm> <838v9hubuj.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1354410564 21456 80.91.229.3 (2 Dec 2012 01:09:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 2 Dec 2012 01:09:24 +0000 (UTC) Cc: acm@muc.de, Andreas Schwab , emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Dec 02 02:09:36 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Tey3p-0006bK-85 for ged-emacs-devel@m.gmane.org; Sun, 02 Dec 2012 02:09:33 +0100 Original-Received: from localhost ([::1]:49132 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tey3d-0007Md-Fn for ged-emacs-devel@m.gmane.org; Sat, 01 Dec 2012 20:09:21 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:59498) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tey3b-0007MY-Et for emacs-devel@gnu.org; Sat, 01 Dec 2012 20:09:20 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tey3a-0007O0-Ig for emacs-devel@gnu.org; Sat, 01 Dec 2012 20:09:19 -0500 Original-Received: from ps18281.dreamhost.com ([69.163.218.105]:42342 helo=ps18281.dreamhostps.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tey3Z-0007KT-8f; Sat, 01 Dec 2012 20:09:17 -0500 Original-Received: from localhost (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id 8E017451E1D4; Sat, 1 Dec 2012 17:09:15 -0800 (PST) In-Reply-To: <838v9hubuj.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 01 Dec 2012 15:43:32 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] X-Received-From: 69.163.218.105 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:155167 Archived-At: > A simple fix is not to hide the last newline. This is from the end of > Info-fontify-node: > > ;; Hide empty lines at the end of the node. > (goto-char (point-max)) > (skip-chars-backward "\n") > (when (< (1+ (point)) (1- (point-max))) > (put-text-property (1+ (point)) (1- (point-max)) 'invisible t)) > > where I decremented point-max in 2 last instances. This will display 2 empty lines defeating the request of bug#12272. I'll post another patch to bug#12272.