diff options
author | Hans Bolinder <[email protected]> | 2015-09-15 14:25:48 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-09-15 14:25:48 +0200 |
commit | 676b4aaf02b5ba4069ec19eff2c0b42074d30fce (patch) | |
tree | d6907817794d330611df1ef5a1969fe97ca8116f /lib/debugger/src | |
parent | 195393b00e0a5b83526a2bca504fe32edd6dc989 (diff) | |
parent | d16c327bd35493a3687f7e07e2b332d2d18c5bc8 (diff) | |
download | otp-676b4aaf02b5ba4069ec19eff2c0b42074d30fce.tar.gz otp-676b4aaf02b5ba4069ec19eff2c0b42074d30fce.tar.bz2 otp-676b4aaf02b5ba4069ec19eff2c0b42074d30fce.zip |
Merge branch 'hb/finish_line_abstraction/OTP-12861'
* hb/finish_line_abstraction/OTP-12861:
syntax_tools: Use the erl_anno module a bit more
test_server: Fix a bug related to the use of the erl_anno module
debugger: Fix a bug related to the use of the erl_anno module
stdlib: Remove deprecated functions in erl_parse and erl_scan
Diffstat (limited to 'lib/debugger/src')
-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 |