From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Masatake YAMATO Newsgroups: gmane.emacs.devel Subject: parenthesis in ps-mode-syntax-table Date: Mon, 15 Mar 2004 17:00:53 +0900 (JST) Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20040315.170053.142552009.jet@gyve.org> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1079338280 28114 80.91.224.253 (15 Mar 2004 08:11:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 15 Mar 2004 08:11:20 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Mar 15 09:11:11 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1B2nBn-0004U1-00 for ; Mon, 15 Mar 2004 09:11:11 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1B2nBn-0006S1-00 for ; Mon, 15 Mar 2004 09:11:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1B2n5J-0006jm-Jk for emacs-devel@quimby.gnus.org; Mon, 15 Mar 2004 03:04:29 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1B2n31-0006Q2-31 for emacs-devel@gnu.org; Mon, 15 Mar 2004 03:02:07 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1B2n23-0005HT-H1 for emacs-devel@gnu.org; Mon, 15 Mar 2004 03:01:39 -0500 Original-Received: from [210.130.136.40] (helo=r-maa.spacetown.ne.jp) by monty-python.gnu.org with esmtp (Exim 4.30) id 1B2n22-0005ET-Ro for emacs-devel@gnu.org; Mon, 15 Mar 2004 03:01:07 -0500 Original-Received: from localhost (nat-pool.jp.redhat.com [219.120.63.249]) by r-maa.spacetown.ne.jp (8.11.6) with ESMTP id i2F80sq03527; Mon, 15 Mar 2004 17:00:55 +0900 (JST) Original-To: Peter Kleiweg X-Mailer: Mew version 4.0.62 on Emacs 21.3.50 / Mule 5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:20494 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:20494 Hi, I'm inspecting your ps-mode.el. I wonder why parenthesis specifying string in postscript is not in ps-mode-syntax-table. Any strong reason or am I missing something? Regards, Masatake YAMATO Index: lisp/progmodes/ps-mode.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/progmodes/ps-mode.el,v retrieving revision 1.12 diff -u -r1.12 ps-mode.el --- lisp/progmodes/ps-mode.el 1 Sep 2003 15:45:35 -0000 1.12 +++ lisp/progmodes/ps-mode.el 15 Mar 2004 07:47:41 -0000 @@ -450,6 +450,9 @@ (modify-syntax-entry ?\< "(>" ps-mode-syntax-table) (modify-syntax-entry ?\> ")<" ps-mode-syntax-table) + (modify-syntax-entry ?\( "\"" ps-mode-syntax-table) + (modify-syntax-entry ?\) "\"" ps-mode-syntax-table) + (modify-syntax-entry ?\! "w " ps-mode-syntax-table) (modify-syntax-entry ?\" "w " ps-mode-syntax-table) (modify-syntax-entry ?\# "w " ps-mode-syntax-table)