[Lxr-commits] CVS: lxr/lib/LXR/Lang Java.pm,1.3,1.4 generic.conf,1.6,1.7
Brought to you by:
ajlittoz
|
From: Malcolm B. <mb...@us...> - 2001-11-14 15:27:39
|
Update of /cvsroot/lxr/lxr/lib/LXR/Lang
In directory usw-pr-cvs1:/tmp/cvs-serv24731/lib/LXR/Lang
Modified Files:
generic.conf
Added Files:
Java.pm
Log Message:
Adds proper import/package hyperlinking for Java.
Fixes bug #447979
Also fixes problem with the example lxr.conf and the new tabwidth code
Index: generic.conf
===================================================================
RCS file: /cvsroot/lxr/lxr/lib/LXR/Lang/generic.conf,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- generic.conf 2001/11/14 15:03:29 1.6
+++ generic.conf 2001/11/14 15:27:36 1.7
@@ -1,4 +1,4 @@
-# -*- mode: perl -*-
+# -*- mode: perl, tab-width: 2 -*-
# Configure options for the generic language support
{
@@ -79,12 +79,15 @@
'throws', 'instanceof', 'super', 'this',
'native', 'null'],
- 'spec' => ['atom' => ('\\\\.', ''),
- 'comment' => ('/\*', '\*/'),
- 'comment' => ('//', "\$"),
- 'string' => ('"', '"'),
- 'string' => ("'", "'"),
- 'include' => ('import', "\$")],
+ 'spec' => ['atom' => ('\\\\.', ''),
+ 'comment' => ('/\*', '\*/'),
+ 'comment' => ('//', "\$"),
+ 'string' => ('"', '"'),
+ 'string' => ("'", "'"),
+ 'include' => ('import', "\$"),
+ 'include' => ('package', "\$"),
+ ],
+
},
'Fortran' => {
|