From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Gutov Newsgroups: gmane.emacs.help Subject: Re: A problem in using font-lock-add-keywords Date: Tue, 05 Mar 2013 12:50:43 +0400 Message-ID: <87d2vexmak.fsf@yandex.ru> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1362473482 25352 80.91.229.3 (5 Mar 2013 08:51:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Mar 2013 08:51:22 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: source liu Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 05 09:51:43 2013 Return-path: Envelope-to: geh-help-gnu-emacs@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 1UCnb1-0000b5-FX for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Mar 2013 09:51:39 +0100 Original-Received: from localhost ([::1]:35359 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCnag-0001Vi-1E for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Mar 2013 03:51:18 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:47893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCnaL-0001Kt-59 for help-gnu-emacs@gnu.org; Tue, 05 Mar 2013 03:51:01 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCnaE-0002XX-Bg for help-gnu-emacs@gnu.org; Tue, 05 Mar 2013 03:50:57 -0500 Original-Received: from mail-la0-x22e.google.com ([2a00:1450:4010:c03::22e]:32865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCnaE-0002XL-4v for help-gnu-emacs@gnu.org; Tue, 05 Mar 2013 03:50:50 -0500 Original-Received: by mail-la0-f46.google.com with SMTP id fq12so5789607lab.5 for ; Tue, 05 Mar 2013 00:50:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-type:x-antivirus :x-antivirus-status; bh=q/RUe+0rSNv8s57W8eos45wgyav6ry0XDSBoReSWIfc=; b=rHhyIfK+xqZ9/2adZ1nnD+CZbGSMZjVohHs4hotGX8R3AnSz2mczGz4H7E8owiIdS5 Nq3rMRzX1z37K1nisknBIyPjtjFyyuqgCf2rxlVNYS+juZWR626RtmpOOlk5OOaPp4xN Uo209xqAyjf1AMLw4tflYW51Cj6hBnmGgNnRH7mzAoHOzN4EBb7XvrNX0oOEC4ltqVed 4XlrKQPoB0jSbbo5JlUGHYx/kpWjAsZ7uMGYESoLd0onFVPJyBF9hrb7AZs9yWiEwrrV 3dUHqNXBcX21Ik84PAt9DRz1T9R4+Ab5WnRAW+sNoETJ17xf1aDvOjmcmwT42lr8X1GA tuhw== X-Received: by 10.152.108.1 with SMTP id hg1mr20358456lab.12.1362473448988; Tue, 05 Mar 2013 00:50:48 -0800 (PST) Original-Received: from SOL ([178.252.98.87]) by mx.google.com with ESMTPS id go12sm13462441lab.3.2013.03.05.00.50.46 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Mar 2013 00:50:47 -0800 (PST) In-Reply-To: (source liu's message of "Tue, 5 Mar 2013 10:54:20 +0800") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (windows-nt) X-Antivirus: avast! (VPS 130304-2, 05.03.2013), Outbound message X-Antivirus-Status: Clean X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::22e X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:89360 Archived-At: source liu writes: > 2. by the way, does emacs list have a max length? > i find when the list is beyond about 4600 words, the bracket ")" cant > match "(" I'm not aware of any limits, aside from the obvious ones (the RAM size, etc). This returns a list with 100000 elements: (cl-loop for i from 1 to 100000 collect i) If my matching you mean visual display, then it's something to do with the minor mode that performs it. For example, see `blink-matching-paren-distance'.