summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHunor Csomortáni <csomh@redhat.com>2022-12-02 14:37:49 +0100
committerHunor Csomortáni <csomh@redhat.com>2022-12-06 14:08:37 +0100
commit72a1791372ac45f19aa2406fd0670c47adeb1894 (patch)
treeb3116eacb8a099fe57cbacc891cefc03b0b96a33
parent1493bf96101308762fd9c799d0c817619d463846 (diff)
downloadmutter-72a1791372ac45f19aa2406fd0670c47adeb1894.tar.gz
check-style: Don't turn off formatting when the chunk starts on line 1
Before this, new files introduced by the range of commits checked were not considered for formatting b/c uncrustify was always turned off in the beginning of the files, and never turned back on. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2733>
-rwxr-xr-xcheck-style.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/check-style.py b/check-style.py
index 94dcd2ad9..29f719c43 100755
--- a/check-style.py
+++ b/check-style.py
@@ -42,7 +42,8 @@ def reformat_chunks(chunks, rewrite):
def create_temp_file(file, start, end):
with open(file) as f:
tmp = tempfile.NamedTemporaryFile()
- tmp.write(b'/** *INDENT-OFF* **/\n')
+ if start > 1:
+ tmp.write(b'/** *INDENT-OFF* **/\n')
for i, line in enumerate(f, start=1):
if i == start - 1:
tmp.write(b'/** *INDENT-ON* **/\n')