From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from groucho.cs.psu.edu ([130.203.2.10]) by hawkwind.utcs.toronto.edu with SMTP id <2732>; Tue, 8 Dec 1992 23:56:09 -0500 Received: from localhost by groucho.cs.psu.edu with SMTP id <2541>; Tue, 8 Dec 1992 23:55:17 -0500 To: Paul Haahr , sam-fans@hawkwind.utcs.toronto.edu Subject: Re: regexps Date: Tue, 8 Dec 1992 23:54:47 -0500 From: Scott Schwartz Message-Id: <92Dec8.235517est.2541@groucho.cs.psu.edu> Here's another question: Given a file containing foo dir foo bar dir bar ,x/[^a-z]dir[^a-z]/s/dir/path/ yields foo path foo bar path bar and leaves "r path" in the last line selected. That's odd, because running ,x/[^a-z]dir[^a-z]/p leaves " dir " selected, and then running s/dir/path leaves " path " selected, as I would have expected.