diff options
author | 2006-04-01 21:24:36 +0000 | |
---|---|---|
committer | 2006-04-01 21:24:36 +0000 | |
commit | 88d58c0bbc99ce83cd0114b3bd5d9b3cc56db46c (patch) | |
tree | 26a900f5a1b424d642f759d8cca9e28a9c36922a | |
parent | Fix typo; E<GT> -> E<gt>. From jmc@ (diff) | |
download | wireguard-openbsd-88d58c0bbc99ce83cd0114b3bd5d9b3cc56db46c.tar.xz wireguard-openbsd-88d58c0bbc99ce83cd0114b3bd5d9b3cc56db46c.zip |
Remove index entries for \n since nroff will try to expand this.
No one uses the index entries anyway...
-rw-r--r-- | gnu/usr.bin/perl/pod/perlop.pod | 4 | ||||
-rw-r--r-- | gnu/usr.bin/perl/pod/perlre.pod | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/perl/pod/perlop.pod b/gnu/usr.bin/perl/pod/perlop.pod index fd490ec69e8..df8417baccb 100644 --- a/gnu/usr.bin/perl/pod/perlop.pod +++ b/gnu/usr.bin/perl/pod/perlop.pod @@ -899,7 +899,7 @@ from the next line. This allows you to write: The following escape sequences are available in constructs that interpolate and in transliterations. -X<\t> X<\n> X<\r> X<\f> X<\b> X<\a> X<\e> X<\x> X<\0> X<\c> X<\N> +X<\t> X<\r> X<\f> X<\b> X<\a> X<\e> X<\x> X<\0> X<\c> X<\N> \t tab (HT, TAB) \n newline (NL) @@ -949,7 +949,7 @@ and although they often accept just C<"\012">, they seldom tolerate just C<"\015">. If you get in the habit of using C<"\n"> for networking, you may be burned some day. X<newline> X<line terminator> X<eol> X<end of line> -X<\n> X<\r> X<\r\n> +X<\r> For constructs that do interpolate, variables beginning with "C<$>" or "C<@>" are interpolated. Subscripted variables such as C<$a[3]> or diff --git a/gnu/usr.bin/perl/pod/perlre.pod b/gnu/usr.bin/perl/pod/perlre.pod index aa78722780a..2884ff1ceee 100644 --- a/gnu/usr.bin/perl/pod/perlre.pod +++ b/gnu/usr.bin/perl/pod/perlre.pod @@ -161,7 +161,7 @@ X<?> X<*?> X<+?> X<??> X<{n}?> X<{n,}?> X<{n,m}?> Because patterns are processed as double quoted strings, the following also work: -X<\t> X<\n> X<\r> X<\f> X<\a> X<\l> X<\u> X<\L> X<\U> X<\E> X<\Q> +X<\t> X<\r> X<\f> X<\a> X<\l> X<\u> X<\L> X<\U> X<\E> X<\Q> X<\0> X<\c> X<\N> X<\x> \t tab (HT, TAB) |