all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* regexp bug?
@ 2002-09-13  9:05 coriordan
  2002-09-13  9:30 ` Juanma Barranquero
  0 siblings, 1 reply; 9+ messages in thread
From: coriordan @ 2002-09-13  9:05 UTC (permalink / raw)


hello.

I think I have found a bug in Emacs.  I was searching
for sentences that were separated with only one space
so I used the regexp search with "\. [^ ]".  My
search kept matching sentences with two spaces.
The minibuffer was showing my regexp as "\.\s-+[^ ]".

Hope I'm not missing something, please CC me if there
is any discussion as I am not on this list.

Thanks.
Ciaran O'Riordan

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

* Re: regexp bug?
  2002-09-13  9:05 coriordan
@ 2002-09-13  9:30 ` Juanma Barranquero
  2002-09-13 10:47   ` coriordan
  0 siblings, 1 reply; 9+ messages in thread
From: Juanma Barranquero @ 2002-09-13  9:30 UTC (permalink / raw)
  Cc: bug-gnu-emacs

On Fri, 13 Sep 2002 10:05:51 +0100, coriordan@compsoc.com wrote:

> I was searching
> for sentences that were separated with only one space
> so I used the regexp search with "\. [^ ]".  My
> search kept matching sentences with two spaces.
> The minibuffer was showing my regexp as "\.\s-+[^ ]".

I bet that happened while you used `isearch-forward-regexp'.

Please check the docstring of the variable `search-whitespace-regexp'.


                                                           /L/e/k/t/u

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

* Re: regexp bug?
  2002-09-13  9:30 ` Juanma Barranquero
@ 2002-09-13 10:47   ` coriordan
  2002-09-13 11:32     ` Juanma Barranquero
  0 siblings, 1 reply; 9+ messages in thread
From: coriordan @ 2002-09-13 10:47 UTC (permalink / raw)
  Cc: bug-gnu-emacs

On Fri, Sep 13, 2002 at 11:30:45AM +0200, Juanma Barranquero wrote:
> 
> > I was searching[...]
> 
> I bet that happened while you used `isearch-forward-regexp'.
> 
> Please check the docstring of the variable `search-whitespace-regexp'.

oh, it's a feature ;)

sorry for my laziness, thanks.

Ciaran O'Riordan

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

* Re: regexp bug?
  2002-09-13 10:47   ` coriordan
@ 2002-09-13 11:32     ` Juanma Barranquero
  0 siblings, 0 replies; 9+ messages in thread
From: Juanma Barranquero @ 2002-09-13 11:32 UTC (permalink / raw)
  Cc: bug-gnu-emacs

On Fri, 13 Sep 2002 11:47:37 +0100, coriordan@compsoc.com wrote:

> oh, it's a feature ;)

That I didn't know, I found it while researching your bug report.

> sorry for my laziness, thanks.

No problem.

BTW, I you don't know already, I'll suggest taking a look into
`highlight-lines-matching-regexp' (from hi-lock.el), `occur' and
`re-builder'. Very handy.


                                                           /L/e/k/t/u

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

* regexp bug?
@ 2006-11-16 13:03 David Abrahams
  2006-11-16 13:11 ` David Abrahams
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: David Abrahams @ 2006-11-16 13:03 UTC (permalink / raw)



If I put point on a letter, like this "x", (looking-at " *") returns t
but (looking-at "\s *") returns nil.

Is that intended?  Is it documented?

Thanks in advance,

-- 
Dave Abrahams
Boost Consulting
www.boost-consulting.com

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

* Re: regexp bug?
  2006-11-16 13:03 regexp bug? David Abrahams
@ 2006-11-16 13:11 ` David Abrahams
  2006-11-16 13:20 ` Kim F. Storm
  2006-11-16 13:29 ` David Kastrup
  2 siblings, 0 replies; 9+ messages in thread
From: David Abrahams @ 2006-11-16 13:11 UTC (permalink / raw)


David Abrahams <dave@boost-consulting.com> writes:

> If I put point on a letter, like this "x", (looking-at " *") returns t
> but (looking-at "\s *") returns nil.
>
> Is that intended?  Is it documented?

Gah!  Sorry, missing the double backslash!

Nevermind.

-- 
Dave Abrahams
Boost Consulting
www.boost-consulting.com

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

* Re: regexp bug?
  2006-11-16 13:03 regexp bug? David Abrahams
  2006-11-16 13:11 ` David Abrahams
@ 2006-11-16 13:20 ` Kim F. Storm
  2006-11-16 13:29 ` David Kastrup
  2 siblings, 0 replies; 9+ messages in thread
From: Kim F. Storm @ 2006-11-16 13:20 UTC (permalink / raw)
  Cc: emacs-devel

David Abrahams <dave@boost-consulting.com> writes:

> If I put point on a letter, like this "x", (looking-at " *") returns t
> but (looking-at "\s *") returns nil.

Try (looking-at "\\s *") 

-- 
Kim F. Storm  http://www.cua.dk

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

* Re: regexp bug?
  2006-11-16 13:03 regexp bug? David Abrahams
  2006-11-16 13:11 ` David Abrahams
  2006-11-16 13:20 ` Kim F. Storm
@ 2006-11-16 13:29 ` David Kastrup
  2006-11-16 14:01   ` Kim F. Storm
  2 siblings, 1 reply; 9+ messages in thread
From: David Kastrup @ 2006-11-16 13:29 UTC (permalink / raw)
  Cc: emacs-devel

David Abrahams <dave@boost-consulting.com> writes:

> If I put point on a letter, like this "x", (looking-at " *") returns t
> but (looking-at "\s *") returns nil.
>
> Is that intended?  Is it documented?

Yes.  But in

(info "(elisp) Syntax for Strings")

instead of

(info "(elisp) Syntax of Regexps")

since

(looking-at "\s *") is the same as (looking-at "s *"),

You probably want (looking-at "\\s *") instead.

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

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

* Re: regexp bug?
  2006-11-16 13:29 ` David Kastrup
@ 2006-11-16 14:01   ` Kim F. Storm
  0 siblings, 0 replies; 9+ messages in thread
From: Kim F. Storm @ 2006-11-16 14:01 UTC (permalink / raw)
  Cc: David Abrahams, emacs-devel

David Kastrup <dak@gnu.org> writes:

> (looking-at "\s *") is the same as (looking-at "s *"),

In emacs 22, it is the same as (looking-at "  *"),

-- 
Kim F. Storm  http://www.cua.dk

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

end of thread, other threads:[~2006-11-16 14:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-16 13:03 regexp bug? David Abrahams
2006-11-16 13:11 ` David Abrahams
2006-11-16 13:20 ` Kim F. Storm
2006-11-16 13:29 ` David Kastrup
2006-11-16 14:01   ` Kim F. Storm
  -- strict thread matches above, loose matches on Subject: below --
2002-09-13  9:05 coriordan
2002-09-13  9:30 ` Juanma Barranquero
2002-09-13 10:47   ` coriordan
2002-09-13 11:32     ` Juanma Barranquero

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.