diff options
author | Dan Gudmundsson <[email protected]> | 2018-01-09 13:00:12 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2018-03-01 14:39:49 +0100 |
commit | e57a6ec75ed99d4695fb8fcd31dd625483951687 (patch) | |
tree | b826414affb3b67dabda17cec1e8713f11dfc43a /lib/tools/test/emacs_SUITE_data/funcs | |
parent | aa9054e0ea48a127f2aeafcdce1df4d1aec09574 (diff) | |
download | otp-e57a6ec75ed99d4695fb8fcd31dd625483951687.tar.gz otp-e57a6ec75ed99d4695fb8fcd31dd625483951687.tar.bz2 otp-e57a6ec75ed99d4695fb8fcd31dd625483951687.zip |
emacs: Indent tuple (and maps) elements as list elements
Avoid
From:
{
^^element1,
^^element2
}
To:
{
^element1,
^element2
}
Diffstat (limited to 'lib/tools/test/emacs_SUITE_data/funcs')
-rw-r--r-- | lib/tools/test/emacs_SUITE_data/funcs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/tools/test/emacs_SUITE_data/funcs b/lib/tools/test/emacs_SUITE_data/funcs index 2ad9d73262..b0c9716f0e 100644 --- a/lib/tools/test/emacs_SUITE_data/funcs +++ b/lib/tools/test/emacs_SUITE_data/funcs @@ -79,20 +79,20 @@ match1({[H|T], match2( { - [H|T], - Other + [H|T], + Other }, M2A2 ) -> ok. match3({ - M3A1, - [ - H | - T - ], - Other + M3A1, + [ + H | + T + ], + Other }, M3A2 ) -> |