diff options
| author | Charles Brunet <charles.brunet@optelgroup.com> | 2025-09-23 11:20:49 -0400 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-09-24 08:13:04 -0700 |
| commit | 97e9e2fb66895d2fc1b4a714a428468aeebf9648 (patch) | |
| tree | 6189ef4480fe5703e5fabc6445e937f9031c141f /test cases/format/1 default | |
| parent | b91fede6d263286fa1e20d424f92d1e10668a8ed (diff) | |
| download | meson-97e9e2fb66895d2fc1b4a714a428468aeebf9648.tar.gz | |
format: Fix indentation with parentheses
- Split long expressions in () according to max line length
- Partly revert d028502 . Fixes #14935.
- Fixes #15032.
Diffstat (limited to 'test cases/format/1 default')
| -rw-r--r-- | test cases/format/1 default/indentation.meson | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/format/1 default/indentation.meson b/test cases/format/1 default/indentation.meson index f18b23072..7b26e49b1 100644 --- a/test cases/format/1 default/indentation.meson +++ b/test cases/format/1 default/indentation.meson @@ -100,3 +100,13 @@ n = [ 2, 3, ] + +# Overindent regressions (issue #14935) +if (host_cpu_family == 'x86' and host_system in [ + 'cygwin', + 'windows', + 'os2', + 'interix', +]) + message('hi') +endif |
