diff options
author | Karl Williamson <khw@cpan.org> | 2019-08-30 14:05:27 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-09-02 21:52:11 -0600 |
commit | 148280d3f755d89c8c24a6243599c54183813a26 (patch) | |
tree | 7cee1a2228287e356c1411d15fc16162fc9fffeb /dump.c | |
parent | 926d75807a731d7f1a4414f5c877bc11f68a4681 (diff) | |
download | perl-148280d3f755d89c8c24a6243599c54183813a26.tar.gz |
dump.c: Note that constants to pass are documented
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -132,6 +132,16 @@ sequences, whereas C<"%"> is not a particularly common character in patterns. Returns a pointer to the escaped text as held by C<dsv>. +=for apidoc Amnh||PERL_PV_ESCAPE_ALL +=for apidoc Amnh||PERL_PV_ESCAPE_FIRSTCHAR +=for apidoc Amnh||PERL_PV_ESCAPE_NOBACKSLASH +=for apidoc Amnh||PERL_PV_ESCAPE_NOCLEAR +=for apidoc Amnh||PERL_PV_ESCAPE_NONASCII +=for apidoc Amnh||PERL_PV_ESCAPE_QUOTE +=for apidoc Amnh||PERL_PV_ESCAPE_RE +=for apidoc Amnh||PERL_PV_ESCAPE_UNI +=for apidoc Amnh||PERL_PV_ESCAPE_UNI_DETECT + =cut */ #define PV_ESCAPE_OCTBUFSIZE 32 @@ -267,6 +277,10 @@ any quotes or ellipses. Returns a pointer to the prettified text as held by C<dsv>. +=for apidoc Amnh||PERL_PV_PRETTY_QUOTE +=for apidoc Amnh||PERL_PV_PRETTY_LTGT +=for apidoc Amnh||PERL_PV_PRETTY_ELLIPSES + =cut */ |