aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/shell.erl
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2016-07-14 11:22:30 +0200
committerErlang/OTP <[email protected]>2016-07-14 11:22:30 +0200
commit0076aef1e9c531389050b947fe09d6d7ebe6f2e4 (patch)
tree03f3b2d069a91bb667f5f4cb4df1821a31788f56 /lib/stdlib/src/shell.erl
parent0573efbc18fc20f8646cf3ff64d2affd06e03cb8 (diff)
parent9f9bf4a6db455575d68eba4850c76341b08614d6 (diff)
downloadotp-0076aef1e9c531389050b947fe09d6d7ebe6f2e4.tar.gz
otp-0076aef1e9c531389050b947fe09d6d7ebe6f2e4.tar.bz2
otp-0076aef1e9c531389050b947fe09d6d7ebe6f2e4.zip
Merge branch 'hasse/stdlib/fix_shell_records/ERL-182/OTP-13719' into maint-19
* hasse/stdlib/fix_shell_records/ERL-182/OTP-13719: stdlib: Correct a bug regarding records in the shell
Diffstat (limited to 'lib/stdlib/src/shell.erl')
-rw-r--r--lib/stdlib/src/shell.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/stdlib/src/shell.erl b/lib/stdlib/src/shell.erl
index 82a3a2be4f..28f37ef8bf 100644
--- a/lib/stdlib/src/shell.erl
+++ b/lib/stdlib/src/shell.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 1996-2015. All Rights Reserved.
+%% Copyright Ericsson AB 1996-2016. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
@@ -768,6 +768,8 @@ used_records({call,_,{atom,_,record_info},[A,{atom,_,Name}]}) ->
{name, Name, A};
used_records({call,Line,{tuple,_,[M,F]},As}) ->
used_records({call,Line,{remote,Line,M,F},As});
+used_records({type,_,record,[{atom,_,Name}|Fs]}) ->
+ {name, Name, Fs};
used_records(T) when is_tuple(T) ->
{expr, tuple_to_list(T)};
used_records(E) ->