From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 5843D385B193; Fri, 25 Nov 2022 10:01:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5843D385B193 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669370473; bh=TVGKY0twxOVLFFKNZ2Or08xPcnQIRezhA8hg++1pqRQ=; h=From:To:Subject:Date:From; b=hz9UU7E/vXkmXd7qvhxCGYxNPL1jhzAVJM0g/N0qFE5+n7TA1Htio+cuVh8mxKIxJ fcu3SOkE90XmtPu73Kivh2dUUb9mVj2zodEoZn1F6md1Pw5kEys/GHevXkWNCb30+r 8WLSHYm/dx58GTTZpvZGnfxb6Fhx2FsrItgAw5s8= 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-4298] 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: a8404c07e7fca388c02c39077865f7d5fa928430 X-Git-Newrev: a5878983d53db7513edb0e6bd99250dbb0c7d147 Message-Id: <20221125100113.5843D385B193@sourceware.org> Date: Fri, 25 Nov 2022 10:01:13 +0000 (GMT) List-Id: https://gcc.gnu.org/g:a5878983d53db7513edb0e6bd99250dbb0c7d147 commit r13-4298-ga5878983d53db7513edb0e6bd99250dbb0c7d147 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 '):