diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-05-04 15:02:08 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-05-04 15:02:08 +0200 |
commit | 99782e35be86d92df5daa0659d4cb2351d4a36b9 (patch) | |
tree | 6c194c8e6029d1c5a03d170b8c2b2ec9fa8465d6 /cop.h | |
parent | 4e2ac26421efaa66f511dc5457604998dbcaa1da (diff) | |
parent | 7ce092845b50544ac127e66e60d73a2f7b707464 (diff) | |
download | perl-99782e35be86d92df5daa0659d4cb2351d4a36b9.tar.gz |
Merge remote branch 'zefram/zefram/reliable_exception' into blead
Conflicts:
pp_ctl.c
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -778,7 +778,7 @@ L<perlcall>. hash actions codes defined in hv.h */ #define G_EVAL 8 /* Assume eval {} around subroutine call. */ #define G_NOARGS 16 /* Don't construct a @_ array. */ -#define G_KEEPERR 32 /* Append errors to $@, don't overwrite it */ +#define G_KEEPERR 32 /* Warn for errors, don't overwrite $@ */ #define G_NODEBUG 64 /* Disable debugging at toplevel. */ #define G_METHOD 128 /* Calling method. */ #define G_FAKINGEVAL 256 /* Faking an eval context for call_sv or |