File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
src/org/opensolaris/opengrok/analysis/c Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,11 @@ Number = (0[xX][0-9a-fA-F]+|[0-9]+\.[0-9]+|[1-9][0-9]*)(([eE][+-]?[0-9]+)?[ufdlU
102
102
/* {Hier}
103
103
{ out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
104
104
*/
105
- {Number} { out. write(" <span class=\" n\" >" ); out. write(yytext()); out. write(" </span>" ); }
105
+ {Number} {
106
+ disjointSpan(HtmlConsts . NUMBER_CLASS );
107
+ out. write(yytext());
108
+ disjointSpan(null );
109
+ }
106
110
107
111
\\\" | \\\' { out. write(htmlize(yytext())); }
108
112
\" {
Original file line number Diff line number Diff line change @@ -102,7 +102,11 @@ Number = (0[xX][0-9a-fA-F]+|[0-9]+\.[0-9]+|[1-9][0-9]*)(([eE][+-]?[0-9]+)?[ufdlU
102
102
/* {Hier}
103
103
{ out.write(Util.breadcrumbPath(urlPrefix+"defs=",yytext(),'.'));}
104
104
*/
105
- {Number} { out. write(" <span class=\" n\" >" ); out. write(yytext()); out. write(" </span>" ); }
105
+ {Number} {
106
+ disjointSpan(HtmlConsts . NUMBER_CLASS );
107
+ out. write(yytext());
108
+ disjointSpan(null );
109
+ }
106
110
107
111
\" {
108
112
pushSpan(STRING , HtmlConsts . STRING_CLASS );
You can’t perform that action at this time.
0 commit comments