diff options
author | Jeffrey Friedl <jfriedl@regex.info> | 2001-07-13 16:25:12 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-14 09:18:09 +0000 |
commit | 7be5a6cf23d140a25c85e50799cf50395576a4e8 (patch) | |
tree | c5b67320865db71c971364ddde90b1ee0f229466 /pod/perlre.pod | |
parent | 80b3ef997d1e7ec82fb63942a04027d0ec078dc2 (diff) | |
download | perl-7be5a6cf23d140a25c85e50799cf50395576a4e8.tar.gz |
patch to add DEL to [:cntrl:]
Message-Id: <200107140625.XAA01517@ventrue.corp.yahoo.com>
p4raw-id: //depot/perl@11371
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 61907f8a48..e5f9066ebb 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -260,7 +260,8 @@ Any control character. Usually characters that don't produce output as such but instead control the terminal somehow: for example newline and backspace are control characters. All characters with ord() less than 32 are most often classified as control characters (assuming ASCII, -the ISO Latin character sets, and Unicode). +the ISO Latin character sets, and Unicode), as is the character with +the ord() value of 127 (C<DEL>). =item graph |