diff options
author | Dan Gudmundsson <[email protected]> | 2009-12-18 13:03:24 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2009-12-18 13:03:24 +0100 |
commit | 90312bd9c8fbbcc2974b0f0bccd772298bd5d37c (patch) | |
tree | 87e20d18917a8070fbe6c40a899183f081cc970c /lib/tools/emacs/test.erl.orig | |
parent | 55e80d74897ec16b80632fd7acdabdca764aea57 (diff) | |
download | otp-90312bd9c8fbbcc2974b0f0bccd772298bd5d37c.tar.gz otp-90312bd9c8fbbcc2974b0f0bccd772298bd5d37c.tar.bz2 otp-90312bd9c8fbbcc2974b0f0bccd772298bd5d37c.zip |
Emacs: Added indentation inside parenthesis
Used in records or tuple creation:
-record(record3, {a = 8#42423 bor
8#4234,
b = 8#5432
bor 2#1010101
c = 123 +
234,
d}).
and in functions calls
call(2#42423 bor
#4234,
2#5432,
other_arg),
Diffstat (limited to 'lib/tools/emacs/test.erl.orig')
-rw-r--r-- | lib/tools/emacs/test.erl.orig | 39 |
1 files changed, 33 insertions, 6 deletions
diff --git a/lib/tools/emacs/test.erl.orig b/lib/tools/emacs/test.erl.orig index 499961cbb1..9b4203120b 100644 --- a/lib/tools/emacs/test.erl.orig +++ b/lib/tools/emacs/test.erl.orig @@ -44,6 +44,24 @@ b }). +-record(record3, {a = 8#42423 bor + 8#4234, + b = 8#5432 + bor 2#1010101 + c = 123 + +234, + d}). + +-record(record4, { + a = 8#42423 bor + 8#4234, + b = 8#5432 + bor 2#1010101 + c = 123 + + 234, + d}). + + -define(MACRO_1, macro). -define(MACRO_2(_), macro). @@ -120,13 +138,19 @@ t15(),t20(),t21(), t22(),t25()}. -spec mod:t2() -> any(). -spec handle_cast(Cast :: {'exchange', node(), [[name(),...]]} - | {'del_member', name(), pid()}, - #state{}) -> {'noreply', #state{}}. + | {'del_member', name(), pid()}, + #state{}) -> {'noreply', #state{}}. -spec handle_cast(Cast :: - {'exchange', node(), [[name(),...]]} - | {'del_member', name(), pid()}, - #state{}) -> {'noreply', #state{}}. + {'exchange', node(), [[name(),...]]} + | {'del_member', name(), pid()}, + #state{}) -> {'noreply', #state{}}. + + +-spec get_closest_pid(term()) -> + Return :: pid() + | {'error', {'no_process', term()} + | {'no_such_group', term()}}. -opaque attributes_data() :: [{'column', column()} | {'line', info_line()} | @@ -294,7 +318,10 @@ Y =:= 4711 -> c ), - + call(2#42423 bor + #4234, + 2#5432, + other_arg), ok; indent_basics(Xlongname, #struct{a=Foo, |