From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Fabrice Popineau Newsgroups: gmane.emacs.devel Subject: Re: Lisp mode syntax table Date: Tue, 18 Feb 2014 06:53:30 +0100 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=047d7b62430680d80704f2a7e55a X-Trace: ger.gmane.org 1392702828 20056 80.91.229.3 (18 Feb 2014 05:53:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 18 Feb 2014 05:53:48 +0000 (UTC) Cc: Emacs developers To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 18 06:53:57 2014 Return-path: Envelope-to: ged-emacs-devel@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 1WFdcx-000768-Gn for ged-emacs-devel@m.gmane.org; Tue, 18 Feb 2014 06:53:55 +0100 Original-Received: from localhost ([::1]:46420 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFdcx-0006sh-7t for ged-emacs-devel@m.gmane.org; Tue, 18 Feb 2014 00:53:55 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45229) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFdcv-0006sc-1q for emacs-devel@gnu.org; Tue, 18 Feb 2014 00:53:53 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WFdcu-0000Fx-7q for emacs-devel@gnu.org; Tue, 18 Feb 2014 00:53:52 -0500 Original-Received: from mail-ee0-x22e.google.com ([2a00:1450:4013:c00::22e]:42076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFdcu-0000Fj-06 for emacs-devel@gnu.org; Tue, 18 Feb 2014 00:53:52 -0500 Original-Received: by mail-ee0-f46.google.com with SMTP id c13so7463583eek.19 for ; Mon, 17 Feb 2014 21:53:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=kcXUsm8OusH4NRvsPWtfhVArG256kMYJszveD0MhJag=; b=i+nx8rxW3VyBuoY8lHbJdRu8ISngh/yp0pVgEzV+wtQDoNfyLRpt1/QgUCVmPn69Sa Jmxjrj1Ia1Yd4E5IHc5wKcTz0VYtld9RwFnaIAjkOslVEgvEo82HihP5PWcqeM2rUaYO Qp9OUGezu8tlYvsDZrZaA9pia2K+OOvAlvuI1py3+ufKgeUe5Qhq/53MmsR9Otk8F9zv WfDVHLlalmYgRcLeC+TY4O1PZ09h8fYH67d+IkH53u+5pP9jO1efv+txl2D6sGpOuTPX rpEq8qqByStUH0D6zQWvB+ZE3V2pvpso/hJY4io/VXNJhill1iKlAqCWquDixp8IsKKT pQCg== X-Received: by 10.14.175.193 with SMTP id z41mr365999eel.108.1392702830727; Mon, 17 Feb 2014 21:53:50 -0800 (PST) Original-Received: by 10.14.8.196 with HTTP; Mon, 17 Feb 2014 21:53:30 -0800 (PST) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c00::22e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:169733 Archived-At: --047d7b62430680d80704f2a7e55a Content-Type: text/plain; charset=ISO-8859-1 > > > Might be a problem in smartparen. What does it do that you dislike? > > > The problem may not be the class of ?| per se, but the interaction with ?: . The whole thing |rdf|:|someClass| should be considered as a symbol. At the moment, using smartparen to push a ?) through this symbol, you start by putting it here : |rdf|):|someClass| then here |rdf| :)|someParen| (notice that a space has been added) and last here |rdf| : |someClass|) Smartparen relies on syntax tables for motion and categorizing symbols. Its author pointed me to the syntax class of ?|, and I actually wonder in CL if ?| shouldn't be part of the symbol rather than a string delimiter. In CL standard syntax, it is also used in multi lines comments #| ... |# There maybe other uses I don't remember. Fabrice --047d7b62430680d80704f2a7e55a Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

Might be a problem in smartparen. =A0What does it do that you dislike= ?


The problem may not be the class of ?| = per se, but the interaction with ?: .
The whole thing |rdf|:|some= Class| should be considered as a symbol.
At the moment, using sma= rtparen to push a ?) through this symbol,
you start by putting it here :
|rdf|):|someClass|
= then here
|rdf| :)|someParen|
(notice that a space has = been added)
and last here=A0
|rdf| : |someClass|)
Smartparen relies on syntax tables for motion and categorizing symbols= .
Its author pointed me to the syntax class of ?|, and I actually= wonder in CL
if ?| shouldn't be part of the symbol rather th= an a string delimiter.
In CL standard syntax, it is also used in multi lines comments
#| ... |#
There maybe other uses I don't remember.

Fabrice
--047d7b62430680d80704f2a7e55a--