[PATCH] scan-build: Remove useless whitespace in File path

Honggyu Kim nexus226 at gmail.com
Sun Jun 7 17:14:22 PDT 2015


On Sun, Jun 07, 2015 at 02:51:50PM +0200, Sylvestre Ledru wrote:
> LGTM and glad to see that fixed.
> Do you need someone to commit that for you?
Yes, please commit it instead of me if you don't find any other
problem on the other environment.
I just slightly modified commit message only without code change as
PATCH v2. So please commit this version.
Thanks for the review.

Honggyu

> 
> Le 07/06/2015 12:24, Honggyu Kim a ?crit :
> > This patch removes useless whitespace in File path in index.html
> > Previously, when a File directory path is copied and pasted as below:
> >   arch /arm /kernel /stacktrace.c
> >
> > This patch removes the whitespace between directories and makes the
> > copied string as below:
> >   arch/arm/kernel/stacktrace.c
> >
> > The output looks same in html format, but it makes the copied directory
> > path can be pasted as it looks.
> >
> > Signed-off-by: Honggyu Kim <hong.gyu.kim at lge.com>
> > ---
> >  tools/scan-build/scan-build |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build
> > index ea18536..74aaaae 100755
> > --- a/tools/scan-build/scan-build
> > +++ b/tools/scan-build/scan-build
> > @@ -766,7 +766,7 @@ ENDTEXT
> >            my $x = shift @fname;
> >            print OUT $x;
> >            if ($#fname >= 0) {
> > -            print OUT "<span class=\"W\"> </span>/";
> > +            print OUT "/";
> >            }
> >          }
> >        }
> 
> 
> _______________________________________________
> cfe-commits mailing list
> cfe-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits



More information about the cfe-commits mailing list