unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#20655: According to docs non-greedy regexp should work in guile but they don't
@ 2015-05-25 21:58 Michael Gerdau
  2016-06-23 20:41 ` Andy Wingo
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Gerdau @ 2015-05-25 21:58 UTC (permalink / raw)
  To: 20655

[-- Attachment #1: Type: text/plain, Size: 1698 bytes --]

Hi list,

the guile documentation under
https://www.gnu.org/software/guile/manual/html_node/Regular-Expressions.html#index-regular-expressions
directly references Regular expressions used in Emacs which do
support non-greedy regexp.

However in the archive of the guile-devel ML I found a thread that seems
to indicate that guile simply does not support non-greedy regexp, which
is perfectly in line with my findings (see below).
The thread I'm referring to is found under
https://www.mail-archive.com/guile-devel%40gnu.org/msg12022.html

Testcase:
If non-greedy regexp do work the following two statements should provide
the exakt same strings:
(match:substring (string-match "_(.*?)_" "a_ä_ö_de_fü_") 1)
(match:substring (string-match "_([^_]*)_" "a_ä_ö_de_fü_") 1)

However for me they don't. Here is a log how I tested it:
$ guile
GNU Guile 2.0.11
Copyright (C) 1995-2014 Free Software Foundation, Inc.

Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.

Enter `,help' for help.
scheme@(guile-user)> (match:substring (string-match "_(.*?)_"
"a_ä_ö_de_fü_") 1)
$1 = "ä_ö_de_fü"
scheme@(guile-user)> (match:substring (string-match "_([^_]*)_"
"a_ä_ö_de_fü_") 1)
$2 = "ä"
scheme@(guile-user)> ,q

For the record:
I check the same regexp in Perl where they provide the same result.


AFAICT this is either misleading if not an outright documentation bug,
or a missing feature in guile.

Kind regards,
Michael
-- 
 Michael Gerdau       email: mgd@qata.de
 GPG-keys available on request or at public keyserver

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* bug#20655: According to docs non-greedy regexp should work in guile but they don't
  2015-05-25 21:58 bug#20655: According to docs non-greedy regexp should work in guile but they don't Michael Gerdau
@ 2016-06-23 20:41 ` Andy Wingo
  0 siblings, 0 replies; 2+ messages in thread
From: Andy Wingo @ 2016-06-23 20:41 UTC (permalink / raw)
  To: Michael Gerdau; +Cc: 20655-done

On Mon 25 May 2015 23:58, Michael Gerdau <mgd@qata.de> writes:

> the guile documentation under
> https://www.gnu.org/software/guile/manual/html_node/Regular-Expressions.html#index-regular-expressions
> directly references Regular expressions used in Emacs which do
> support non-greedy regexp.
>
> However in the archive of the guile-devel ML I found a thread that seems
> to indicate that guile simply does not support non-greedy regexp, which
> is perfectly in line with my findings (see below).
>
> AFAICT this is either misleading if not an outright documentation bug,
> or a missing feature in guile.

A documentation bug indeed.  Fixed in git by Diogo Ramos.

Thanks for the report,

Andy





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-06-23 20:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-25 21:58 bug#20655: According to docs non-greedy regexp should work in guile but they don't Michael Gerdau
2016-06-23 20:41 ` Andy Wingo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).