Date: Mon, 2 Dec 1996 19:09:23 +0200 (IST) From: Eli Zaretskii To: Artur Zaroda cc: djgpp AT delorie DOT com Subject: Re: RHIDE: Testing beta 6 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Mon, 2 Dec 1996, Artur Zaroda wrote: > 2. In "Debug/List of functions" one cannot use regular expression "*" to > get the list of all functions (empty expression "" and expression "?*" > both work fine). "*" is not a valid regular expression. RHIDE uses GNU regex library, with which you must use fully-qualified regular expressions. Use ".*" instead of "*" (`.' means "any character" and `*' means "repeated zero or more times") and you will get what you want.