ctags

Bernd Schubert bernd-schubert at web.de
Sun Dec 21 21:58:50 GMT 2003


Hello,

the current ctags implementation doesn't work reliable. One simple workaround
is to write a ctags-wrapper script, that ignores all given options and simply runs:
'ctags -R -n'

Another way is to use the following patch, so just using the '-R ' instead of '-L'. Is there 
a good reason why '-L' ist currently used?

Thanks,
	Bernd


--- kdevelop-031219.old/parts/ctags/ctagspart.cpp	2003-12-17 04:44:50.000000000 +0100
+++ kdevelop-031219/parts/ctags/ctagspart.cpp	2003-12-21 20:50:29.000000000 +0100
@@ -310,8 +310,10 @@
 
 	proc << "ctags";
 	proc << "-n";
-        proc << "-L" << ifile.name();
+	proc << "-R";
 
        QApplication::setOverrideCursor(Qt::waitCursor);
        bool success = proc.start(KProcess::Block);

-
to unsubscribe from this list send an email to kdevelop-request at kdevelop.org with the following body:
unsubscribe »your-email-address«



More information about the KDevelop mailing list