ossp-pkg/string-divert/Divert.pod 1.2 -> 1.3
--- Divert.pod 2003/05/23 11:09:57 1.2
+++ Divert.pod 2003/05/29 18:43:50 1.3
@@ -157,7 +157,18 @@
I<Overwrite Mode>. Retrieves the current overwrite mode of string object
C<$x> or sets a new overwrite mode. The mode can be C<"none"> (no
overwriting), C<"once"> (no overwriting once on next B<append> operation
-only), or C<"always"> (overwriting on every B<append> operation).
+only), or C<"always"> (overwriting on every B<append> operation). The
+default is C<"none">.
+
+=item SAPI: C<$mode = $x-E<gt>>B<storage>C<;>
+
+=item SAPI: [C<$old_mode =>] C<$x-E<gt>>B<storage>C<($new_mode);>
+
+I<Storage Mode>. Retrieves the current storage mode of string object
+C<$x> or sets a new storage mode. The mode can be C<"none"> (neither
+contents nor foldings is stored), C<"fold"> (only foldings are stored),
+or C<"all"> (both contents and foldings are stored). The default is
+C<"all">.
=back
@@ -274,11 +285,17 @@
=item SAPI: [C<$x =>] C<$x-E<gt>>B<undivert>C<($num);>
+=item SAPI: [C<$x =>] C<$x-E<gt>>B<undivert>C<($name);>
+
=item XAPI: C<$x E<lt>E<lt> $num;>
+=item XAPI: C<$x E<lt>E<lt> $name;>
+
I<Content Diversion Deactivation>. This deactivates the last C<$num>
activated diversions. If C<$num> is C<0>, deactivates all activated
-diversions.
+diversions. If C<$name> is given (i.e. the argument is not numeric), it
+deactivates all last activated diversion up to and including the one to
+the string object named C<$name>.
=item SAPI: C<$y = $x-E<gt>>B<diversion>C<;>
|
|