diff options
author | Hans Bolinder <[email protected]> | 2015-06-30 16:25:49 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-09-15 14:15:49 +0200 |
commit | 7fd49429e85a1fe2c24b76bd5d3d8dfddc908822 (patch) | |
tree | 79b8f5dfcdeb4764e6fa9032d6f3a5c988739a56 /lib/debugger | |
parent | d9daff6d87c217ba7d3cba00642710e473e9b226 (diff) | |
download | otp-7fd49429e85a1fe2c24b76bd5d3d8dfddc908822.tar.gz otp-7fd49429e85a1fe2c24b76bd5d3d8dfddc908822.tar.bz2 otp-7fd49429e85a1fe2c24b76bd5d3d8dfddc908822.zip |
debugger: Fix a bug related to the use of the erl_anno module
The (harmless) bug was introduced in 541e87f.
Diffstat (limited to 'lib/debugger')
-rw-r--r-- | lib/debugger/src/dbg_iload.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/src/dbg_iload.erl b/lib/debugger/src/dbg_iload.erl index 2a8bcd32d8..7746a06fcb 100644 --- a/lib/debugger/src/dbg_iload.erl +++ b/lib/debugger/src/dbg_iload.erl @@ -541,7 +541,7 @@ fun_clauses([]) -> []. new_map(Fs0, Anno, F) -> Line = ln(Anno), Fs1 = map_fields(Fs0, F), - Fs2 = [{ln(A),K,V} || {map_field_assoc,A,K,V} <- Fs1], + Fs2 = [{L,K,V} || {map_field_assoc,L,K,V} <- Fs1], try {value,Line,map_literal(Fs2, #{})} catch |