aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src
diff options
context:
space:
mode:
authorZandra <[email protected]>2015-12-28 12:08:32 +0100
committerZandra <[email protected]>2015-12-28 12:08:32 +0100
commit7be5ba1d5aa0809021c69e26ddbecf29e65c1fce (patch)
tree343d12f9bc0dc0cd73ffbbc3338d4591d1b67db0 /lib/stdlib/src
parent7dc1b19582a61281742fd1dcc880899b72e6becb (diff)
parent4f2d5c08a08e25e9b5b1b2011a8efe2fea441049 (diff)
downloadotp-7be5ba1d5aa0809021c69e26ddbecf29e65c1fce.tar.gz
otp-7be5ba1d5aa0809021c69e26ddbecf29e65c1fce.tar.bz2
otp-7be5ba1d5aa0809021c69e26ddbecf29e65c1fce.zip
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r--lib/stdlib/src/erl_eval.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/erl_eval.erl b/lib/stdlib/src/erl_eval.erl
index ca3cc43b19..568eb1c852 100644
--- a/lib/stdlib/src/erl_eval.erl
+++ b/lib/stdlib/src/erl_eval.erl
@@ -1184,7 +1184,7 @@ match_tuple([], _, _, Bs, _BBs) ->
match_map([{map_field_exact, _, K, V}|Fs], Map, Bs0, BBs) ->
Vm = try
- {value, Ke, _} = expr(K, Bs0),
+ {value, Ke, _} = expr(K, BBs),
maps:get(Ke,Map)
catch error:_ ->
throw(nomatch)