[(pushed)] gcc-changelog: temporarily disable check_line_start

Message ID ff799b68-b3d6-7a97-d203-dfb2a427bb5d@suse.cz
State Committed
Commit a5878983d53db7513edb0e6bd99250dbb0c7d147
Headers
Series [(pushed)] gcc-changelog: temporarily disable check_line_start |

Commit Message

Martin Liška Nov. 14, 2022, 2:52 a.m. UTC
  The following patch will be needed for ChangeLog entry emission
of the reverted Sphinx commits.

Pushed.
Martin

contrib/ChangeLog:

	* gcc-changelog/git_commit.py: Temporarily disable
	check_line.start.
---
 contrib/gcc-changelog/git_commit.py | 2 ++
 1 file changed, 2 insertions(+)
  

Patch

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 '):