summaryrefslogtreecommitdiff
path: root/hv.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-03-30 23:20:46 +0000
committerNicholas Clark <nick@ccl4.org>2008-03-30 23:20:46 +0000
commita380fcf718a3797529b634251411eecec3b14b89 (patch)
tree1f484ef4955d186aad7dd0bbd2e9a28ef24d1a85 /hv.h
parent8c2008eacc4ddad29e41ce142dc0dc35b013f90b (diff)
downloadperl-a380fcf718a3797529b634251411eecec3b14b89.tar.gz
Integrate:
[ 32860] Typo fix [ 32872] Subject: [PATCH] \X is equivalent to an atomic group From: Moritz Lenz <moritz@casella.verplant.org> Date: Sat, 05 Jan 2008 17:14:44 +0100 Message-ID: <477FACF4.5030801@casella.verplant.org> [ 32925] Fix prototype in regexp code following #32851, and regen [the regen part, for 32860] [ 33129] Assorted POD nits from the Debian bug list. [ 33241] New blade [ 33257] Subject: [perl #50364] [PATCH] perlop.pod - misnomer in % operator documentation From: mhasch@cpan.org (via RT) <perlbug-followup@perl.org> Date: Mon, 28 Jan 2008 16:56:07 -0800 Message-ID: <rt-3.6.HEAD-4355-1201568166-693.50364-75-0@perl.org> p4raw-link: @33257 on //depot/perl: f88ee2835df514f44bb51184f4a3ed935a4b48d0 p4raw-link: @33241 on //depot/perl: 913ba1b7a56ad7973e0983adb246d6506e5719e4 p4raw-link: @33129 on //depot/perl: 384f06ae49854089e0cf13ffe34560627ea86f8a p4raw-link: @32925 on //depot/perl: 0a0b43fa5b4c00dcd9c6c26dea968d2368fc6eae p4raw-link: @32872 on //depot/perl: e1f17637d1ade6d468d3aebe31c7b7a17f6fc053 p4raw-link: @32860 on //depot/perl: 62a1a1efb41483ae8589f3158be0ce9a1c21e8e2 p4raw-id: //depot/maint-5.10/perl@33610 p4raw-integrated: from //depot/perl@33604 'copy in' pod/perllol.pod (@16769..) pod/perlunicode.pod (@32461..) pod/perlre.pod (@32872..) 'merge in' README.hpux (@32954..) p4raw-integrated: from //depot/perl@33257 'copy in' pod/perlop.pod (@32870..) p4raw-integrated: from //depot/perl@32925 'merge in' pod/perlapi.pod (@32838..) p4raw-integrated: from //depot/perl@32860 'merge in' hv.h (@32820..)
Diffstat (limited to 'hv.h')
-rw-r--r--hv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hv.h b/hv.h
index 7eb96363ad..1f0d0f06df 100644
--- a/hv.h
+++ b/hv.h
@@ -1,7 +1,7 @@
/* hv.h
*
* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999,
- * 2000, 2001, 2002, 2003, 2005, 2006, 2007, by Larry Wall and others
+ * 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -233,7 +233,7 @@ efficient.
=for apidoc Am|char*|HeUTF8|HE* he|STRLEN len
Returns whether the C<char *> value returned by C<HePV> is encoded in UTF-8,
doing any necessary dereferencing of possibly C<SV*> keys. The value returned
-will be 0 or non-0, not necesarily 1 (or even a value with any low bits set),
+will be 0 or non-0, not necessarily 1 (or even a value with any low bits set),
so B<do not> blindly assign this to a C<bool> variable, as C<bool> may be a
typedef for C<char>.