From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mathias Dahl Newsgroups: gmane.emacs.devel Subject: Re: (setq blink-matching-paren-dont-ignore-comments nil) ignored? Date: Wed, 15 Feb 2006 00:26:28 +0100 Message-ID: <7dbe73ed0602141526w5e7a0afas7becde59f3ddafc6@mail.gmail.com> References: <200602071909.k17J95s5029362@chlr5836.ch.intel.com> <17393.57643.99565.332674@chlr5836.ch.intel.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1139970277 12993 80.91.229.2 (15 Feb 2006 02:24:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 15 Feb 2006 02:24:37 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 15 03:24:35 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F9CLI-00009p-D6 for ged-emacs-devel@m.gmane.org; Wed, 15 Feb 2006 03:24:33 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F9CLH-0000TY-Cz for ged-emacs-devel@m.gmane.org; Tue, 14 Feb 2006 21:24:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F99Z7-0000rd-PC for emacs-devel@gnu.org; Tue, 14 Feb 2006 18:26:37 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F99Z5-0000qi-AE for emacs-devel@gnu.org; Tue, 14 Feb 2006 18:26:36 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F99Z4-0000qZ-S6 for emacs-devel@gnu.org; Tue, 14 Feb 2006 18:26:35 -0500 Original-Received: from [66.249.82.199] (helo=xproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1F99dq-0001hA-SX for emacs-devel@gnu.org; Tue, 14 Feb 2006 18:31:30 -0500 Original-Received: by xproxy.gmail.com with SMTP id h30so931828wxd for ; Tue, 14 Feb 2006 15:26:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=nrcH9C1q7x7R7q+lg+bNyu9IEVHD7XA/b2hhxddgW17mv7q5PPmaM73S0U+YwXtZVy4Kbk7com2R7/o00s7MVjdnMcte4UR3UCqV1mdnzzVvk92IIMjPpmNZxiIKFqYz1xGHsqO8Lg7SmFG+Ne3URL9a3weGgeWpE/dicyLnStk= Original-Received: by 10.70.110.12 with SMTP id i12mr4746856wxc; Tue, 14 Feb 2006 15:26:28 -0800 (PST) Original-Received: by 10.70.105.1 with HTTP; Tue, 14 Feb 2006 15:26:28 -0800 (PST) Original-To: "Andrew M. Scott" In-Reply-To: <17393.57643.99565.332674@chlr5836.ch.intel.com> Content-Disposition: inline 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:50547 Archived-At: > Unfortunately, even after reading the updated docstring several times > and experimenting > ... > Documentation: > *nil means `blink-matching-paren' ignores comments. > More precisely, when looking for the matching parenthesis, > it skips the contents of comments that end before point. The docstring gives the impression of handling the following case: ( ;;;;;;;; ( <=3D=3D=3D This is skipped )<-- Point When point is at the position marked above, the correct paren will be matched if the value of this variable is nil. Useful. However, when I set it to `t' it still skips the one in the comment. I tested in the *scratch* buffer.