Skip to content

Commit

Permalink
Fix fmt in els_dodger
Browse files Browse the repository at this point in the history
  • Loading branch information
plux committed Dec 20, 2023
1 parent 836701d commit cf8ba10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/els_core/src/els_dodger.erl
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ quickscan_form([{'-', _L}, {'if', La} | _Ts]) ->
kill_form(La);
quickscan_form([{'-', _L}, {atom, La, elif} | _Ts]) ->
kill_form(La);
quickscan_form([{'-', _L}, {atom, La, else} | _Ts]) ->
quickscan_form([{'-', _L}, {atom, La, 'else'} | _Ts]) ->
kill_form(La);
quickscan_form([{'-', _L}, {atom, La, endif} | _Ts]) ->
kill_form(La);
Expand Down Expand Up @@ -791,13 +791,13 @@ scan_form([{'-', _L}, {atom, La, elif} | Ts], Opt) ->
{atom, La, 'elif'}
| scan_macros(Ts, Opt)
];
scan_form([{'-', _L}, {atom, La, else} | Ts], Opt) ->
scan_form([{'-', _L}, {atom, La, 'else'} | Ts], Opt) ->
[
{atom, La, ?pp_form},
{'(', La},
{')', La},
{'->', La},
{atom, La, else}
{atom, La, 'else'}
| scan_macros(Ts, Opt)
];
scan_form([{'-', _L}, {atom, La, endif} | Ts], Opt) ->
Expand Down

0 comments on commit cf8ba10

Please sign in to comment.