From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 585FB395BC78; Sun, 20 Nov 2022 11:58:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 585FB395BC78 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668945518; bh=YKGO38jwck/6c836mjKN9YiX0pXyiIDNycEluXG3svA=; h=From:To:Subject:Date:From; b=Jrmk3LIMLDngcSgBUdfvKiKSUEr+YDoRhX/wRvO80l/lLgnTnNCBCfXEOAkd7NbNQ iXRgtyRG3pQABxRaMd2U9T1uxjSDIp4SjEXwCqaHy1uqVoyjUqStliomEBUh9KwN0a hh7wkhOEyh/x14JFXx1kDphndqdpHrVOTXpQvwsY= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4174] gcc-changelog: temporarily disable check_line_start X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 6d82e0fea5f988e829912aaa70a9964a81ad4e5e X-Git-Newrev: 0275ff207027954d16e873ccdbd92f9881a14e72 Message-Id: <20221120115838.585FB395BC78@sourceware.org> Date: Sun, 20 Nov 2022 11:58:38 +0000 (GMT) List-Id: https://gcc.gnu.org/g:0275ff207027954d16e873ccdbd92f9881a14e72 commit r13-4174-g0275ff207027954d16e873ccdbd92f9881a14e72 Author: Martin Liska Date: Mon Nov 14 03:26:17 2022 +0100 gcc-changelog: temporarily disable check_line_start contrib/ChangeLog: * gcc-changelog/git_commit.py: Temporarily disable check_line.start. Diff: --- contrib/gcc-changelog/git_commit.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/gcc-changelog/git_commit.py b/contrib/gcc-changelog/git_commit.py index 3bd671011f2..59f96800da9 100755 --- a/contrib/gcc-changelog/git_commit.py +++ b/contrib/gcc-changelog/git_commit.py @@ -615,6 +615,8 @@ class GitCommit: self.errors.append(Error(msg, entry.parentheses_stack[-1])) def check_line_start(self): + # FIXME: temporarily disable + return for entry in self.changelog_entries: for line in entry.lines: if line.startswith('\t '):