Date: Wed, 3 Jan 2001 10:42:53 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Martin Str|mberg cc: djgpp-workers AT delorie DOT com Subject: Re: Two glitches for autoconf 2.49b In-Reply-To: <200101021925.UAA28994@father.ludd.luth.se> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 2 Jan 2001, Martin Str|mberg wrote: > Would it be similarly easy to change man to support the mapping "::" > -> "/"? No, this is not simple. `man' looks for suitable files by calling readdir and fnmatch (since there's no portable way to get files which match a wildcard directly from the file system). Mapping to "/" will thus require additional recursion(s) into the subdirectories. So this is not a simple string manipulation problem, it's a non-trivial change in program's control flow.