comparison lisp/progmodes/cperl-mode.el @ 71304:7293b63aa3ba

(cperl-short-docs): Fix quoting in doc string.
author Andreas Schwab <schwab@suse.de>
date Sat, 10 Jun 2006 09:05:31 +0000
parents dc49655f57ae
children a72761a099d3 138027c8c982
comparison
equal deleted inserted replaced
71303:9e7ccf711815 71304:7293b63aa3ba
6296 $^D The value of the perl debug (-D) flags. 6296 $^D The value of the perl debug (-D) flags.
6297 $^E Information about the last system error other than that provided by $!. 6297 $^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.
6305 $^T The time the script was started. Used by -A/-M/-C file tests. 6305 $^T The time the script was started. Used by -A/-M/-C file tests.
6306 $^W True if warnings are requested (perl -w flag). 6306 $^W True if warnings are requested (perl -w flag).
6378 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match. 6378 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match.
6379 ?PATTERN? One-time pattern match. 6379 ?PATTERN? One-time pattern match.
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).
6391 \\c Control character, e.g. \\c[ . 6391 \\c Control character, e.g. \\c[ .
6392 \\e Escape character (octal 033). 6392 \\e Escape character (octal 033).
6653 uc [ EXPR ] Returns upcased EXPR. 6653 uc [ EXPR ] Returns upcased EXPR.
6654 ucfirst [ EXPR ] Returns EXPR with upcased first letter. 6654 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?).
6662 =over [ NUMBER ] Start list. 6662 =over [ NUMBER ] Start list.
6663 =item [ TITLE ] Start new item in the list. 6663 =item [ TITLE ] Start new item in the list.