diff options
author | Cons T Åhs <cons@erlang.org> | 2022-04-07 15:28:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 15:28:26 +0200 |
commit | fcf28f8cbde46f0c0183f29831176aa607b946c1 (patch) | |
tree | ea298132c013f1a8221a9a55262139eec620440f /lib/stdlib/src | |
parent | fbe8f2342e7af729d08baaf7a6b2636106ffff6a (diff) | |
parent | f6162e76256a82f6ce12d88fe99ca3597faa781c (diff) | |
download | erlang-fcf28f8cbde46f0c0183f29831176aa607b946c1.tar.gz |
Merge pull request #5859 from lisztspace/cons/features/essential-meta-chunk
OTP-18052
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/beam_lib.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/beam_lib.erl b/lib/stdlib/src/beam_lib.erl index 43e925f6b4..5eed3c06b6 100644 --- a/lib/stdlib/src/beam_lib.erl +++ b/lib/stdlib/src/beam_lib.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2000-2021. All Rights Reserved. +%% Copyright Ericsson AB 2000-2022. 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. @@ -953,13 +953,13 @@ error(Reason) -> %% The following chunks must be kept when stripping a BEAM file. significant_chunks() -> - ["Line", "Type", "Meta" | md5_chunks()]. + ["Line", "Type" | md5_chunks()]. %% The following chunks are significant when calculating the MD5 %% for a module. They are listed in the order that they should be MD5:ed. md5_chunks() -> - ["Atom", "AtU8", "Code", "StrT", "ImpT", "ExpT", "FunT", "LitT"]. + ["Atom", "AtU8", "Code", "StrT", "ImpT", "ExpT", "FunT", "LitT", "Meta"]. %% The following chunks are mandatory in every Beam file. |