:unique saga continues.
Jarkko Hietaniemi [Sun, 9 Jun 2002 20:47:53 +0000 (20:47 +0000)]
p4raw-id: //depot/perl@17147

pod/perldelta.pod
pod/perlfunc.pod

index d14e208..09e138f 100644 (file)
@@ -566,6 +566,12 @@ is a NaN.  Previously the behaviour was unspecified.
 
 =item *
 
+C<our> can now have an experimental optional attribute C<unique> that
+affects how global variables are shared among multiple interpreters,
+see L<perlfunc/our>.
+
+=item *
+
 The following builtin functions are now overridable: each(), keys(),
 pop(), push(), shift(), splice(), unshift(). [561]
 
index cbd58c8..026e134 100644 (file)
@@ -3112,9 +3112,8 @@ to have its own copy of the global.)  Examples:
     our $VERSION : unique = "1.00";
 
 Note that this attribute also has the effect of making the global
-readonly in the main interpreter after the first new interpreter
-has been cloned (for example, after the first new thread has been
-created).
+readonly after the first new interpreter has been cloned (for example,
+after the first new thread has been created).
 
 Multi-interpreter environments can come to being either through the
 fork() emulation on Windows platforms, or by embedding perl in a