[Lxr-commits] CVS: lxr diff,1.15,1.15.2.1 genxref,1.36,1.36.2.1
Brought to you by:
ajlittoz
From: Malcolm B. <mb...@us...> - 2005-02-22 23:12:33
|
Update of /cvsroot/lxr/lxr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20271 Modified Files: Tag: bk-dev-branch diff genxref Log Message: Fix Files initialisation in genxref Fix diff Update tests and bk repository Index: diff =================================================================== RCS file: /cvsroot/lxr/lxr/diff,v retrieving revision 1.15 retrieving revision 1.15.2.1 diff -u -d -r1.15 -r1.15.2.1 --- diff 26 Oct 2004 17:08:07 -0000 1.15 +++ diff 22 Feb 2005 23:12:06 -0000 1.15.2.1 @@ -31,6 +31,7 @@ use LXR::Common qw(:html); use Local; +use FileHandle; sub htmlsub { my ($s, $l) = @_; Index: genxref =================================================================== RCS file: /cvsroot/lxr/lxr/genxref,v retrieving revision 1.36 retrieving revision 1.36.2.1 diff -u -d -r1.36 -r1.36.2.1 --- genxref 21 Jul 2004 20:44:30 -0000 1.36 +++ genxref 22 Feb 2005 23:12:08 -0000 1.36.2.1 @@ -51,6 +51,7 @@ --version=VERSION Generate tokens for the given version of the code. --allversions Generate tokens for all versions of the code (default). --reindexall Purges existing index data + Report bugs at http://sourceforge.net/projects/lxr/. END_HELP exit 0; @@ -67,7 +68,7 @@ die("No matching configuration") unless $config->sourceroot; -$files = new LXR::Files($config->sourceroot); +$files = new LXR::Files($config->sourceroot, $config->sourceparams); die "Can't create file access object " . $config->sourceroot if !defined($files); $index = new LXR::Index($config->dbname, O_RDWR | O_CREAT); |