aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/gen_statem.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdlib/src/gen_statem.erl')
-rw-r--r--lib/stdlib/src/gen_statem.erl9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/stdlib/src/gen_statem.erl b/lib/stdlib/src/gen_statem.erl
index dd980daddb..e6ad7ab0be 100644
--- a/lib/stdlib/src/gen_statem.erl
+++ b/lib/stdlib/src/gen_statem.erl
@@ -156,11 +156,10 @@
Actions :: [action()] | action()} |
{'keep_state', % {keep_state,NewData,[]}
NewData :: data()} |
- {'keep_state',
+ {'keep_state', % Keep state, change data
NewData :: data(),
Actions :: [action()] | action()} |
- {'keep_state_and_data'} | % {keep_state_and_data,[]}
- {'keep_state_and_data',
+ {'keep_state_and_data', % Keep state and data -> only actions
Actions :: [action()] | action()}.
@@ -880,10 +879,6 @@ loop_event_result(
loop_event_actions(
Parent, Debug, S, Events, Event,
State, State, NewData, Actions);
- {keep_state_and_data} ->
- loop_event_actions(
- Parent, Debug, S, Events, Event,
- State, State, Data, []);
{keep_state_and_data,Actions} ->
loop_event_actions(
Parent, Debug, S, Events, Event,