On Fri, 2006-04-14 at 11:44 +0300, Eli Zaretskii wrote: > In addition, I think the current algorithm for searching the sources > is described in the user's manual; please see if there's something in > that description that needs to be updated with your changes. I looked at it (7.4 Specifying source directories). The algorithm that is described is the one in lookup_(partial_)symtab, and I don't think I'll change that (my patch only modifies the dwarf2 line-info reading). While reading that part, I think that I spotted a very minor issue. One sentence there reads : « Note that the executable search path is not used to locate the source files. Neither is the current working directory, unless it happens to be in the source path. » Which isn't false, but I don't think that the user has the ability to specify an empty source path, it at least always contains $cdir and $cwd. This means that the current working directory will always be used to locate source files. Also there are 2 mentions below that to 'resetting the source path to empty', but as I said, the source path is never really empty. If I'm not mistaken and if its not too much nitpicking, shall I commit something like the attached patch?