From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.help Subject: Re: how do I have a mode where '#' is a comment but '.#.' isn't? Date: Wed, 17 Dec 2008 15:06:47 +0100 Message-ID: References: <5fd737ce-449e-4da0-bd54-a467d23faef2@w39g2000prb.googlegroups.com> <1c71984d-9178-4c67-bb35-f46c50421afd@r15g2000prd.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1229523178 20033 80.91.229.12 (17 Dec 2008 14:12:58 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 17 Dec 2008 14:12:58 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "Xah Lee" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Dec 17 15:14:01 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LCxA1-0007lh-1D for geh-help-gnu-emacs@m.gmane.org; Wed, 17 Dec 2008 15:14:01 +0100 Original-Received: from localhost ([127.0.0.1]:40095 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCx8o-0004Pp-SV for geh-help-gnu-emacs@m.gmane.org; Wed, 17 Dec 2008 09:12:46 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LCx35-0000zZ-6S for help-gnu-emacs@gnu.org; Wed, 17 Dec 2008 09:06:51 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LCx33-0000yq-KB for help-gnu-emacs@gnu.org; Wed, 17 Dec 2008 09:06:50 -0500 Original-Received: from [199.232.76.173] (port=50868 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LCx33-0000yd-Eh for help-gnu-emacs@gnu.org; Wed, 17 Dec 2008 09:06:49 -0500 Original-Received: from an-out-0708.google.com ([209.85.132.251]:24184) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LCx33-0005Mx-1h for help-gnu-emacs@gnu.org; Wed, 17 Dec 2008 09:06:49 -0500 Original-Received: by an-out-0708.google.com with SMTP id c38so1489141ana.21 for ; Wed, 17 Dec 2008 06:06:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=Rd5MJneH3PAv5nxwVQjPA1qo8TGEOD9RW5xMsivGuiw=; b=XoD6+l1Rym8abd8QaeIv669r9TkPtTLQripsRD8lDaa7v//WSLatgUFlW0lDtm1oJE hyehnKYH6tJ780lZ5+JoQ7HFrSxQriLV1WF1ubY7OMM0Hv5Pwe9hHUFhWRk+UOclROIB +MtfJvzkf/EMzi0hncAFoHssBgzDZOshZqCHk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=ln78oBV/yEb4WcnKWfhaC+VNTKDgSlaVBy1GwHVB67xexM9ZhClSuSV1V4CwQMMZku OnyaEaxzhW1c/iaFNIxmr0dv+wxIXzyDaagdYrSSktaflQdlxlAvHk88Z47ymLRpAlAU 3F2cpiqXQeaUDatEyC2SmOPi/PEI8G61axGzQ= Original-Received: by 10.100.210.9 with SMTP id i9mr437703ang.132.1229522807152; Wed, 17 Dec 2008 06:06:47 -0800 (PST) Original-Received: by 10.100.13.13 with HTTP; Wed, 17 Dec 2008 06:06:47 -0800 (PST) In-Reply-To: <1c71984d-9178-4c67-bb35-f46c50421afd@r15g2000prd.googlegroups.com> Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:60733 Archived-At: On Wed, Dec 17, 2008 at 13:18, Xah Lee wrote: > (unicode has some at least 4 thousand chars) http://www.unicode.org/versions/Unicode5.1.0/ "Unicode 5.1.0 contains over 100,000 characters, [...]" > One curiosity question is where can i > find the lisp or C code that defines the default syntax table where > every mode inherits. Take a look at Vstandard_syntax_table, in src/syntax.c. Juanma