diff options
| author | Andreas Schwab | 2006-06-10 09:05:31 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2006-06-10 09:05:31 +0000 |
| commit | d7584f0f0af5fb506d1d9a91c0d42304824ff760 (patch) | |
| tree | 7f963bb2d620ec0e3c555397100d86e45139843f | |
| parent | a61e1d8f22c467411d3d02d22f81c6eb6cdf5fd0 (diff) | |
| download | emacs-d7584f0f0af5fb506d1d9a91c0d42304824ff760.tar.gz emacs-d7584f0f0af5fb506d1d9a91c0d42304824ff760.zip | |
(cperl-short-docs): Fix quoting
in doc string.
| -rw-r--r-- | lisp/progmodes/cperl-mode.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 36f75b757b5..ad44753f352 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el | |||
| @@ -6298,7 +6298,7 @@ $^E Information about the last system error other than that provided by $!. | |||
| 6298 | $^F The highest system file descriptor, ordinarily 2. | 6298 | $^F The highest system file descriptor, ordinarily 2. |
| 6299 | $^H The current set of syntax checks enabled by `use strict'. | 6299 | $^H The current set of syntax checks enabled by `use strict'. |
| 6300 | $^I The value of the in-place edit extension (perl -i option). | 6300 | $^I The value of the in-place edit extension (perl -i option). |
| 6301 | $^L What formats output to perform a formfeed. Default is \f. | 6301 | $^L What formats output to perform a formfeed. Default is \\f. |
| 6302 | $^M A buffer for emergency memory allocation when running out of memory. | 6302 | $^M A buffer for emergency memory allocation when running out of memory. |
| 6303 | $^O The operating system name under which this copy of Perl was built. | 6303 | $^O The operating system name under which this copy of Perl was built. |
| 6304 | $^P Internal debugging flag. | 6304 | $^P Internal debugging flag. |
| @@ -6380,11 +6380,11 @@ $~ The name of the current report format. | |||
| 6380 | @ARGV Command line arguments (not including the command name - see $0). | 6380 | @ARGV Command line arguments (not including the command name - see $0). |
| 6381 | @INC List of places to look for perl scripts during do/include/use. | 6381 | @INC List of places to look for perl scripts during do/include/use. |
| 6382 | @_ Parameter array for subroutines; result of split() unless in list context. | 6382 | @_ Parameter array for subroutines; result of split() unless in list context. |
| 6383 | \\ Creates reference to what follows, like \$var, or quotes non-\w in strings. | 6383 | \\ Creates reference to what follows, like \\$var, or quotes non-\\w in strings. |
| 6384 | \\0 Octal char, e.g. \\033. | 6384 | \\0 Octal char, e.g. \\033. |
| 6385 | \\E Case modification terminator. See \\Q, \\L, and \\U. | 6385 | \\E Case modification terminator. See \\Q, \\L, and \\U. |
| 6386 | \\L Lowercase until \\E . See also \l, lc. | 6386 | \\L Lowercase until \\E . See also \\l, lc. |
| 6387 | \\U Upcase until \\E . See also \u, uc. | 6387 | \\U Upcase until \\E . See also \\u, uc. |
| 6388 | \\Q Quote metacharacters until \\E . See also quotemeta. | 6388 | \\Q Quote metacharacters until \\E . See also quotemeta. |
| 6389 | \\a Alarm character (octal 007). | 6389 | \\a Alarm character (octal 007). |
| 6390 | \\b Backspace character (octal 010). | 6390 | \\b Backspace character (octal 010). |
| @@ -6655,7 +6655,7 @@ ucfirst [ EXPR ] Returns EXPR with upcased first letter. | |||
| 6655 | untie VAR Unlink an object from a simple Perl variable. | 6655 | untie VAR Unlink an object from a simple Perl variable. |
| 6656 | use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'. | 6656 | use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'. |
| 6657 | ... xor ... Low-precedence synonym for exclusive or. | 6657 | ... xor ... Low-precedence synonym for exclusive or. |
| 6658 | prototype \&SUB Returns prototype of the function given a reference. | 6658 | prototype \\&SUB Returns prototype of the function given a reference. |
| 6659 | =head1 Top-level heading. | 6659 | =head1 Top-level heading. |
| 6660 | =head2 Second-level heading. | 6660 | =head2 Second-level heading. |
| 6661 | =head3 Third-level heading (is there such?). | 6661 | =head3 Third-level heading (is there such?). |