all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Herbert Euler <herberteuler@hotmail.com>
To: St/n_P/rm/n <stan@sandpframing.com>, <emacs-devel@gnu.org>
Subject: RE: regexp-quote missing escapes in grouping constructs - Bug?
Date: Fri, 13 Jun 2008 14:20:22 +0800	[thread overview]
Message-ID: <BAY143-W14AAC08CBDAA5013C4EBD9DAAC0@phx.gbl> (raw)
In-Reply-To: <d2afcfda0806121639g2d7a9762kf84edc9372645dd1@mail.gmail.com>


> (regexp-quote "[0-9]\{2,4\}\(-\|/\)[0-9]?+\(-\|/\)[0-9]\{2,4\}")
> 
> ---> "\\[0-9]{2,4}(-|/)\\[0-9]\\?\\+(-|/)\\[0-9]{2,4}"
> 
> Am I misunderstanding something?
> Shouldn't passing that string to regexp-quote give back something more
> like this:
> 
> ---> "[0-9]\\{2,4\\}\\(-\\|/\\)[0-9]?+(-\\|/)[0-9]\\{2,4\\}"

I think this is because `regexp-quote' sees the string being processed
by the Lisp reader, i.e. "\{" ==> "{" in the internal representation,
while "\\{" ==> "\{":

     ELISP> (regexp-quote "[0-9]\{2,4\}")
     "\\[0-9]{2,4}"
     ELISP> (regexp-quote "[0-9]\\{2,4\\}")
     "\\[0-9]\\\\{2,4\\\\}"
     ELISP>

Regards,
Guanpeng Xu
_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE




      parent reply	other threads:[~2008-06-13  6:20 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-12 23:39 regexp-quote missing escapes in grouping constructs - Bug? St/n_P/rm/n
2008-06-13  6:17 ` Miles Bader
2008-06-13 17:36   ` MON KEY
2008-06-13 22:21     ` Stefan Monnier
2008-06-14  4:16     ` tomas
2008-06-13  6:20 ` Herbert Euler [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BAY143-W14AAC08CBDAA5013C4EBD9DAAC0@phx.gbl \
    --to=herberteuler@hotmail.com \
    --cc=emacs-devel@gnu.org \
    --cc=stan@sandpframing.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.