diff options
author | Hans Bolinder <[email protected]> | 2018-02-05 12:35:23 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-02-06 14:40:53 +0100 |
commit | 8a0804939d0402730b4f07235b18893803472894 (patch) | |
tree | 494da03ab9d9a569e80d8038e0a6225fdaa05fca /lib/parsetools/include | |
parent | 4e3405a381e023aca9b194e929868bea8ba112d2 (diff) | |
download | otp-8a0804939d0402730b4f07235b18893803472894.tar.gz otp-8a0804939d0402730b4f07235b18893803472894.tar.bz2 otp-8a0804939d0402730b4f07235b18893803472894.zip |
parsetools: Do not call erlang:get_stacktrace()
Diffstat (limited to 'lib/parsetools/include')
-rw-r--r-- | lib/parsetools/include/yeccpre.hrl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/parsetools/include/yeccpre.hrl b/lib/parsetools/include/yeccpre.hrl index 91d6cd49a6..53e8124aaa 100644 --- a/lib/parsetools/include/yeccpre.hrl +++ b/lib/parsetools/include/yeccpre.hrl @@ -56,8 +56,7 @@ return_error(Line, Message) -> yeccpars0(Tokens, Tzr, State, States, Vstack) -> try yeccpars1(Tokens, Tzr, State, States, Vstack) catch - error: Error -> - Stacktrace = erlang:get_stacktrace(), + error: Error: Stacktrace -> try yecc_error_type(Error, Stacktrace) of Desc -> erlang:raise(error, {yecc_bug, ?CODE_VERSION, Desc}, |