[Lxr-commits] CVS: lxr/lib/LXR/Lang C.pm,1.13,1.14
Brought to you by:
ajlittoz
From: Andre-Littoz <ajl...@us...> - 2013-11-08 08:59:53
|
Update of /cvsroot/lxr/lxr/lib/LXR/Lang In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv10882/lib/LXR/Lang Modified Files: C.pm Log Message: C.pm: fix for bug #247 (newline suppression) Returning unused portion of #include fragment was forgotten Index: C.pm =================================================================== RCS file: /cvsroot/lxr/lxr/lib/LXR/Lang/C.pm,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- C.pm 21 Sep 2013 12:54:53 -0000 1.13 +++ C.pm 8 Nov 2013 08:59:50 -0000 1.14 @@ -80,7 +80,8 @@ . $spacer . $lsep . $link - . $rsep; + . $rsep + . $source; } 1; |