Re-attempt to clear the hash in S_hfreeentries if anything adds to it.
[p5sagit/p5-mst-13.2.git] / pod / perlfunc.pod
index 0a87ece..e33b030 100644 (file)
@@ -4671,9 +4671,9 @@ X<rindex>
 
 =item rindex STR,SUBSTR
 
-Works just like index() except that it returns the position of the LAST
+Works just like index() except that it returns the position of the I<last>
 occurrence of SUBSTR in STR.  If POSITION is specified, returns the
-last occurrence at or before that position.
+last occurrence beginning at or before that position.
 
 =item rmdir FILENAME
 X<rmdir> X<rd> X<directory, remove>
@@ -4699,6 +4699,9 @@ Just like C<print>, but implicitly appends a newline.
 C<say LIST> is simply an abbreviation for C<print LIST, "\n">,
 and C<say()> works just like C<print($_, "\n")>.
 
+That means that a call to say() appends any output record separator
+I<after> the added newline.
+
 This keyword is only available when the "say" feature is
 enabled: see L<feature>.