From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] acme: hiding certain files in dir windows From: "rob pike" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20011108045104.03B38199BB@mail.cse.psu.edu> Date: Wed, 7 Nov 2001 23:51:01 -0500 Topicbox-Message-UUID: 18cde908-eaca-11e9-9e20-41e7f4b1d025 Don't you want the regexp to be inherited when you descend the hierarchy? > By the way, why doesn't acme use regexp(2)? Regexp(2) uses longjmps, which are a bad idea in a threaded world. The original version of acme was in Alef, which doesn't even have longjmp, so its regexp library used a threading trick to manage errors. It's actually a pretty trick that I was happy to keep in the C version of acme; in fact, I used it in several places. -rob