From 5b2155f3474d1596b7027cd7639709e715612f04 Mon Sep 17 00:00:00 2001 From: Hiroo HAYASHI <24754036+hirooih@users.noreply.github.com> Date: Thu, 26 Aug 2021 22:08:22 +0900 Subject: [PATCH 1/2] build-sys: editorconfig: replace fnmatch and gnu_regex with gnulib This had to be done in #3054 and #3101. --- .editorconfig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 88281c1773..3f432c9e05 100644 --- a/.editorconfig +++ b/.editorconfig @@ -29,10 +29,7 @@ indent_size = 4 indent_style = tab trim_trailing_whitespace = true -[fnmatch/*.{c,h}] -tab_width = 8 - -[gnu_regex/*.{c,h}] +[gnulib/*.{c,h}] tab_width = 8 [misc/optlib2c] From 417682e0325e578fb2dd404595f3d0c8f47f2fe4 Mon Sep 17 00:00:00 2001 From: Hiroo HAYASHI <24754036+hirooih@users.noreply.github.com> Date: Thu, 26 Aug 2021 22:11:50 +0900 Subject: [PATCH 2/2] build-sys: editorconfig: apply rule for Makefile to Makefile* --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 3f432c9e05..ca516fccab 100644 --- a/.editorconfig +++ b/.editorconfig @@ -19,7 +19,7 @@ indent_size = 4 indent_style = space trim_trailing_whitespace = true -[*.mak] +[{Makefile*,*.mak}] indent_size = 8 indent_style = tab trim_trailing_whitespace = true