Update the documentation of get_sv() to note that it calls Perl_gv_fetchpv(),
[p5sagit/p5-mst-13.2.git] / util.c
diff --git a/util.c b/util.c
index 86c06f5..521a8c2 100644 (file)
--- a/util.c
+++ b/util.c
@@ -1454,7 +1454,7 @@ sidestepping the normal C order of execution. See C<warn>.
 If you want to throw an exception object, assign the object to
 C<$@> and then pass C<NULL> to croak():
 
-   errsv = get_sv("@", TRUE);
+   errsv = get_sv("@", GV_ADD);
    sv_setsv(errsv, exception_object);
    croak(NULL);