Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
From: "Jérémie Galarneau via lttng-dev" <lttng-dev@lists.lttng.org>
To: Anders Wallin <wallinux@gmail.com>
Cc: lttng-dev <lttng-dev@lists.lttng.org>
Subject: Re: [lttng-dev] [PATCH lttng-tools] Extras: Perl 5.26 requires { to be escaped by \
Date: Fri, 4 Dec 2020 16:37:35 -0500	[thread overview]
Message-ID: <CA+jJMxuVXpebURuJuV7TixXsAq798-TPGWfXBDYUwtW5D7NJyg@mail.gmail.com> (raw)
In-Reply-To: <20201125083140.25923-1-wallinux@gmail.com>

Merged in master.

Thanks!
Jérémie

On Wed, 25 Nov 2020 at 03:31, Anders Wallin via lttng-dev
<lttng-dev@lists.lttng.org> wrote:
>
> Unescaped literal "{" characters in regular expression patterns are no
> longer permissible
>
> Signed-off-by: Anders Wallin <wallinux@gmail.com>
> ---
>  extras/checkpatch.pl | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/extras/checkpatch.pl b/extras/checkpatch.pl
> index 286c94de..14e16fae 100755
> --- a/extras/checkpatch.pl
> +++ b/extras/checkpatch.pl
> @@ -2433,8 +2433,8 @@ sub process {
>
>  # function brace can't be on same line, except for #defines of do while,
>  # or if closed on same line
> -               if (($line=~/$Type\s*$Ident\(.*\).*\s{/) and
> -                   !($line=~/\#\s*define.*do\s{/) and !($line=~/}/)) {
> +               if (($line=~/$Type\s*$Ident\(.*\).*\s\{/) and
> +                   !($line=~/\#\s*define.*do\s\{/) and !($line=~/\}/)) {
>                         ERROR("OPEN_BRACE",
>                               "open brace '{' following function declarations go on the next line\n" . $herecurr);
>                 }
> @@ -2709,8 +2709,8 @@ sub process {
>  ##             }
>
>  #need space before brace following if, while, etc
> -               if (($line =~ /\(.*\){/ && $line !~ /\($Type\){/) ||
> -                   $line =~ /do{/) {
> +               if (($line =~ /\(.*\)\{/ && $line !~ /\($Type\)\{/) ||
> +                   $line =~ /do\{/) {
>                         ERROR("SPACING",
>                               "space required before the open brace '{'\n" . $herecurr);
>                 }
> @@ -3005,7 +3005,7 @@ sub process {
>                             $dstat !~ /^for\s*$Constant$/ &&                            # for (...)
>                             $dstat !~ /^for\s*$Constant\s+(?:$Ident|-?$Constant)$/ &&   # for (...) bar()
>                             $dstat !~ /^do\s*{/ &&                                      # do {...
> -                           $dstat !~ /^\({/)                                           # ({...
> +                           $dstat !~ /^\(\{/)                                          # ({...
>                         {
>                                 $ctx =~ s/\n*$//;
>                                 my $herectx = $here . "\n";
> --
> 2.29.2
>
> _______________________________________________
> lttng-dev mailing list
> lttng-dev@lists.lttng.org
> https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev



-- 
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com
_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
https://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

      reply	other threads:[~2020-12-04 21:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-25  8:31 Anders Wallin via lttng-dev
2020-12-04 21:37 ` Jérémie Galarneau via lttng-dev [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CA+jJMxuVXpebURuJuV7TixXsAq798-TPGWfXBDYUwtW5D7NJyg@mail.gmail.com \
    --to=lttng-dev@lists.lttng.org \
    --cc=jeremie.galarneau@efficios.com \
    --cc=wallinux@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox