On Sat, Jun 11, 2011 at 5:31 PM, Layman123 <romanhorn...@web.de> wrote: > Thank you! Of course, I will read the posting guidelines. A subscriber helped > me via e-mail telling me to use the grep-command, that is type in: grep > "somename" *.c. For Windows users it's: findstr "somename" *.c.
The problem here is that this will also find every time that function is called in the C files. And also anytime something called somename2 is mentioned. Most decent programmers editors will parse code files and construct a little database of where all your functions are defined so you can quickly jump to the definition of a function. In emacs this is done with a thing called 'etags'. But this is now beyond the scope of R-help... Barry ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.