From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.devel Subject: Re: line-move-visual & invisible text Date: Thu, 18 Sep 2008 16:29:03 +0900 Organization: Emacsen advocacy group Message-ID: References: <48D1EFF8.4000001@gmx.at> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1221723137 23404 80.91.229.12 (18 Sep 2008 07:32:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 18 Sep 2008 07:32:17 +0000 (UTC) Cc: emacs-devel@gnu.org To: martin rudalics Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Sep 18 09:33:14 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KgDyB-0007mC-FC for ged-emacs-devel@m.gmane.org; Thu, 18 Sep 2008 09:30:31 +0200 Original-Received: from localhost ([127.0.0.1]:48342 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KgDxA-0003YX-CN for ged-emacs-devel@m.gmane.org; Thu, 18 Sep 2008 03:29:28 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KgDx3-0003YQ-V4 for emacs-devel@gnu.org; Thu, 18 Sep 2008 03:29:21 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KgDx1-0003Ww-S2 for emacs-devel@gnu.org; Thu, 18 Sep 2008 03:29:20 -0400 Original-Received: from [199.232.76.173] (port=34303 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KgDx1-0003Ws-NT for emacs-devel@gnu.org; Thu, 18 Sep 2008 03:29:19 -0400 Original-Received: from mx20.gnu.org ([199.232.41.8]:37819) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KgDx1-0005rU-Vh for emacs-devel@gnu.org; Thu, 18 Sep 2008 03:29:20 -0400 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KgDwy-0002QD-Eq for emacs-devel@gnu.org; Thu, 18 Sep 2008 03:29:16 -0400 Original-Received: from localhost ([127.0.0.1]:44553) by orlando.hostforweb.net with esmtpa (Exim 4.69) (envelope-from ) id 1KgDwr-0001ky-M0; Thu, 18 Sep 2008 02:29:10 -0500 X-Hashcash: 1:20:080918:rudalics@gmx.at::pAP8NVUSLei55wdj:001nLP X-Hashcash: 1:20:080918:emacs-devel@gnu.org::1s8HrlSanS37xzmg:0000000000000000000000000000000000000000008Li/ 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.110011 (No Gnus v0.11) Emacs/23.0.60 (gnu/linux) Cancel-Lock: sha1:1XveqOiWwQ7LfSpgNnNxeeyamAs= X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.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-Source: X-Source-Args: X-Source-Dir: X-detected-kernel: by mx20.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:103932 Archived-At: >>>>> martin rudalics wrote: >> I use (setq line-move-visual nil) but I realized I need at least: >> >> (add-hook 'Info-mode-hook >> (lambda nil >> (set (make-local-variable 'line-move-visual) t))) >> >> It enables C-n and C-e to work on the title lines of Info pages. >> For instance, in the top of the Gnus Info, there is the line >> displayed as: >> >> The Gnus Newsreader >> >> But just under it, there is actually the invisible line: >> >> ******************* >> >> This seems to be the cause of the malfunction of C-n and C-e, >> performed on such places, in the case where `line-move-visual' >> is nil. It might not be so serious, but is a bug. > I suppose Chong's recent change to `vertical-motion' fixed this. Can > you try it? Oh, I see the point moves smoothly over the Info title lines just now, even if line-move-visual is nil. It must have been fixed. Thank you.