From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Steve Purcell Newsgroups: gmane.emacs.devel Subject: Re: Date: Tue, 9 Feb 2016 08:05:26 +1300 Message-ID: <947A3DE2-06B1-43EB-B3B3-DA1DE7EFA611@sanityinc.com> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1454958371 29598 80.91.229.3 (8 Feb 2016 19:06:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 8 Feb 2016 19:06:11 +0000 (UTC) To: bruce.connor.am@gmail.com, emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 08 20:06:04 2016 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 1aSr8N-0003Do-I7 for ged-emacs-devel@m.gmane.org; Mon, 08 Feb 2016 20:06:03 +0100 Original-Received: from localhost ([::1]:47971 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSr8M-0000jl-Uk for ged-emacs-devel@m.gmane.org; Mon, 08 Feb 2016 14:06:02 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51259) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSr80-0000io-FC for emacs-devel@gnu.org; Mon, 08 Feb 2016 14:05:44 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aSr7w-0006Bc-Ab for emacs-devel@gnu.org; Mon, 08 Feb 2016 14:05:40 -0500 Original-Received: from purcellpeople.com ([85.214.32.38]:40931 helo=h1189701.stratoserver.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSr7w-0006BK-3y for emacs-devel@gnu.org; Mon, 08 Feb 2016 14:05:36 -0500 Original-Received: from [192.168.0.10] (unknown [210.54.38.34]) by h1189701.stratoserver.net (Postfix) with ESMTPSA id B956527AC0B7; Mon, 8 Feb 2016 20:05:32 +0100 (CET) In-Reply-To: X-Mailer: Apple Mail (2.3112) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 85.214.32.38 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:199545 Archived-At: > On 9 Feb 2016, at 01:56, Artur Malabarba = wrote: > > - :prompt-regexp "^\\w*=3D[#>] " > > + :prompt-regexp "^[[:alpha:]_]*=3D[#>] " >=20 > One thing that comes to mind is that \\w and :alpha: are generally not = the same thing. So \\(\\w\\|_\\) might be more appropriate. >=20 Yes, possibly. And in fact :alnum: would be better than :alpha:, of = course=E2=80=A6 And since the rules for database names are probably much the same as for = other SQL identifiers, there=E2=80=99s a chance \\s (symbol constituent) = would work too.=