diff options
author | Hans Bolinder <[email protected]> | 2019-02-21 08:06:38 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2019-02-21 08:06:38 +0100 |
commit | f06f5bf23a3cd1f040c8ab6f059097d22161abc7 (patch) | |
tree | 6f9dbf55ff5f8eeb9c4e8db77a56f7f9295f8981 /lib/stdlib/src | |
parent | 13ca9d9111244f44a32329d5d527c76d8123101a (diff) | |
parent | 9502b4256d5c310fcac7355c71c3024851ad6751 (diff) | |
download | otp-f06f5bf23a3cd1f040c8ab6f059097d22161abc7.tar.gz otp-f06f5bf23a3cd1f040c8ab6f059097d22161abc7.tar.bz2 otp-f06f5bf23a3cd1f040c8ab6f059097d22161abc7.zip |
Merge branch 'hasse/stdlib/fix_erl_pp/ERL-818/OTP-15592' into maint
* hasse/stdlib/fix_erl_pp/ERL-818/OTP-15592:
stdlib: Fix a bug in the Erlang Pretty Printer
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/erl_pp.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/stdlib/src/erl_pp.erl b/lib/stdlib/src/erl_pp.erl index dd302a2880..ada3ff5de3 100644 --- a/lib/stdlib/src/erl_pp.erl +++ b/lib/stdlib/src/erl_pp.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2018. All Rights Reserved. +%% Copyright Ericsson AB 1996-2019. 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. @@ -697,6 +697,8 @@ fun_info(Extra) -> %% BITS: +bit_grp([], _Opts) -> + leaf("<<>>"); bit_grp(Fs, Opts) -> append([['<<'], [bit_elems(Fs, Opts)], ['>>']]). |