Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / progmodes / perl-mode.el
blob2edcc72fe98c65a647aff7c9d59d30d092bac70c
1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs -*- lexical-binding:t -*-
3 ;; Copyright (C) 1990, 1994, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: William F. Mann
6 ;; Maintainer: FSF
7 ;; Adapted-By: ESR
8 ;; Keywords: languages
10 ;; Adapted from C code editing commands 'c-mode.el', Copyright 1987 by the
11 ;; Free Software Foundation, under terms of its General Public License.
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;;; Commentary:
30 ;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode")
31 ;; to your init file and change the first line of your perl script to:
32 ;; #!/usr/bin/perl -- # -*-Perl-*-
33 ;; With arguments to perl:
34 ;; #!/usr/bin/perl -P- # -*-Perl-*-
35 ;; To handle files included with do 'filename.pl';, add something like
36 ;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode))
37 ;; auto-mode-alist))
38 ;; to your init file; otherwise the .pl suffix defaults to prolog-mode.
40 ;; This code is based on the 18.53 version c-mode.el, with extensive
41 ;; rewriting. Most of the features of c-mode survived intact.
43 ;; I added a new feature which adds functionality to TAB; it is controlled
44 ;; by the variable perl-tab-to-comment. With it enabled, TAB does the
45 ;; first thing it can from the following list: change the indentation;
46 ;; move past leading white space; delete an empty comment; reindent a
47 ;; comment; move to end of line; create an empty comment; tell you that
48 ;; the line ends in a quoted string, or has a # which should be a \#.
50 ;; If your machine is slow, you may want to remove some of the bindings
51 ;; to perl-electric-terminator. I changed the indenting defaults to be
52 ;; what Larry Wall uses in perl/lib, but left in all the options.
54 ;; I also tuned a few things: comments and labels starting in column
55 ;; zero are left there by perl-indent-exp; perl-beginning-of-function
56 ;; goes back to the first open brace/paren in column zero, the open brace
57 ;; in 'sub ... {', or the equal sign in 'format ... ='; perl-indent-exp
58 ;; (meta-^q) indents from the current line through the close of the next
59 ;; brace/paren, so you don't need to start exactly at a brace or paren.
61 ;; It may be good style to put a set of redundant braces around your
62 ;; main program. This will let you reindent it with meta-^q.
64 ;; Known problems (these are all caused by limitations in the Emacs Lisp
65 ;; parsing routine (parse-partial-sexp), which was not designed for such
66 ;; a rich language; writing a more suitable parser would be a big job):
67 ;; 2) The globbing syntax <pattern> is not recognized, so special
68 ;; characters in the pattern string must be backslashed.
69 ;; 3) The << quoting operators are not recognized; see below.
70 ;; 5) To make '$' work correctly, $' is not recognized as a variable.
71 ;; Use "$'" or $POSTMATCH instead.
73 ;; If you don't use font-lock, additional problems will appear:
74 ;; 1) Regular expression delimiters do not act as quotes, so special
75 ;; characters such as `'"#:;[](){} may need to be backslashed
76 ;; in regular expressions and in both parts of s/// and tr///.
77 ;; 4) The q and qq quoting operators are not recognized; see below.
78 ;; 5) To make variables such a $' and $#array work, perl-mode treats
79 ;; $ just like backslash, so '$' is not treated correctly.
80 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
81 ;; unmatched }. See below.
82 ;; 7) When ' (quote) is used as a package name separator, perl-mode
83 ;; doesn't understand, and thinks it is seeing a quoted string.
85 ;; Here are some ugly tricks to bypass some of these problems: the perl
86 ;; expression /`/ (that's a back-tick) usually evaluates harmlessly,
87 ;; but will trick perl-mode into starting a quoted string, which
88 ;; can be ended with another /`/. Assuming you have no embedded
89 ;; back-ticks, this can used to help solve problem 3:
91 ;; /`/; $ugly = q?"'$?; /`/;
93 ;; The same trick can be used for problem 6 as in:
94 ;; /{/; while (<${glob_me}>)
95 ;; but a simpler solution is to add a space between the $ and the {:
96 ;; while (<$ {glob_me}>)
98 ;; Problem 7 is even worse, but this 'fix' does work :-(
99 ;; $DB'stop#'
100 ;; [$DB'line#'
101 ;; ] =~ s/;9$//;
103 ;;; Code:
105 (defgroup perl nil
106 "Major mode for editing Perl code."
107 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
108 :prefix "perl-"
109 :group 'languages)
111 (defvar perl-mode-abbrev-table nil
112 "Abbrev table in use in perl-mode buffers.")
113 (define-abbrev-table 'perl-mode-abbrev-table ())
115 (defvar perl-mode-map
116 (let ((map (make-sparse-keymap)))
117 (define-key map "\e\C-a" 'perl-beginning-of-function)
118 (define-key map "\e\C-e" 'perl-end-of-function)
119 (define-key map "\e\C-h" 'perl-mark-function)
120 (define-key map "\e\C-q" 'perl-indent-exp)
121 (define-key map "\177" 'backward-delete-char-untabify)
122 map)
123 "Keymap used in Perl mode.")
125 (defvar perl-mode-syntax-table
126 (let ((st (make-syntax-table (standard-syntax-table))))
127 (modify-syntax-entry ?\n ">" st)
128 (modify-syntax-entry ?# "<" st)
129 ;; `$' is also a prefix char so I was tempted to say "/ p",
130 ;; but the `p' thingy basically overrides the `/' :-( -- Stef
131 (modify-syntax-entry ?$ "/" st)
132 (modify-syntax-entry ?% ". p" st)
133 (modify-syntax-entry ?@ ". p" st)
134 (modify-syntax-entry ?& "." st)
135 (modify-syntax-entry ?\' "\"" st)
136 (modify-syntax-entry ?* "." st)
137 (modify-syntax-entry ?+ "." st)
138 (modify-syntax-entry ?- "." st)
139 (modify-syntax-entry ?/ "." st)
140 (modify-syntax-entry ?< "." st)
141 (modify-syntax-entry ?= "." st)
142 (modify-syntax-entry ?> "." st)
143 (modify-syntax-entry ?\\ "\\" st)
144 (modify-syntax-entry ?` "\"" st)
145 (modify-syntax-entry ?| "." st)
147 "Syntax table in use in `perl-mode' buffers.")
149 (defvar perl-imenu-generic-expression
150 '(;; Functions
151 (nil "^[ \t]*sub\\s-+\\([-[:alnum:]+_:]+\\)" 1)
152 ;;Variables
153 ("Variables" "^\\(?:my\\|our\\)\\s-+\\([$@%][-[:alnum:]+_:]+\\)\\s-*=" 1)
154 ("Packages" "^[ \t]*package\\s-+\\([-[:alnum:]+_:]+\\);" 1)
155 ("Doc sections" "^=head[0-9][ \t]+\\(.*\\)" 1))
156 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
158 ;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and
159 ;; Jim Campbell <jec@murzim.ca.boeing.com>.
161 (defconst perl--prettify-symbols-alist
162 '(("->" . ?→)
163 ("=>" . ?⇒)
164 ("::" . ?∷)))
166 (defconst perl-font-lock-keywords-1
167 '(;; What is this for?
168 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
170 ;; Fontify preprocessor statements as we do in `c-font-lock-keywords'.
171 ;; Ilya Zakharevich <ilya@math.ohio-state.edu> thinks this is a bad idea.
172 ;; ("^#[ \t]*include[ \t]+\\(<[^>\"\n]+>\\)" 1 font-lock-string-face)
173 ;; ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face)
174 ;; ("^#[ \t]*if\\>"
175 ;; ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
176 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t)))
177 ;; ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
178 ;; (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t))
180 ;; Fontify function and package names in declarations.
181 ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?"
182 (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t))
183 ("\\<\\(import\\|no\\|require\\|use\\)\\>[ \t]*\\(\\sw+\\)?"
184 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)))
185 "Subdued level highlighting for Perl mode.")
187 (defconst perl-font-lock-keywords-2
188 (append
189 perl-font-lock-keywords-1
190 `( ;; Fontify keywords, except those fontified otherwise.
191 ,(concat "\\<"
192 (regexp-opt '("if" "until" "while" "elsif" "else" "unless"
193 "do" "dump" "for" "foreach" "exit" "die"
194 "BEGIN" "END" "return" "exec" "eval") t)
195 "\\>")
197 ;; Fontify local and my keywords as types.
198 ("\\<\\(local\\|my\\)\\>" . font-lock-type-face)
200 ;; Fontify function, variable and file name references.
201 ("&\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-function-name-face)
202 ;; Additionally underline non-scalar variables. Maybe this is a bad idea.
203 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face)
204 ("[$*]{?\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-variable-name-face)
205 ("\\([@%]\\|\\$#\\)\\(\\sw+\\(::\\sw+\\)*\\)"
206 (2 (cons font-lock-variable-name-face '(underline))))
207 ("<\\(\\sw+\\)>" 1 font-lock-constant-face)
209 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
210 ("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
211 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
212 ("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face)))
213 "Gaudy level highlighting for Perl mode.")
215 (defvar perl-font-lock-keywords perl-font-lock-keywords-1
216 "Default expressions to highlight in Perl mode.")
218 (defvar perl-quote-like-pairs
219 '((?\( . ?\)) (?\[ . ?\]) (?\{ . ?\}) (?\< . ?\>)))
221 ;; FIXME: handle here-docs and regexps.
222 ;; <<EOF <<"EOF" <<'EOF' (no space)
223 ;; see `man perlop'
224 ;; ?...?
225 ;; /.../
226 ;; m [...]
227 ;; m /.../
228 ;; q /.../ = '...'
229 ;; qq /.../ = "..."
230 ;; qx /.../ = `...`
231 ;; qr /.../ = precompiled regexp =~=~ m/.../
232 ;; qw /.../
233 ;; s /.../.../
234 ;; s <...> /.../
235 ;; s '...'...'
236 ;; tr /.../.../
237 ;; y /.../.../
239 ;; <file*glob>
240 (defun perl-syntax-propertize-function (start end)
241 (let ((case-fold-search nil))
242 (goto-char start)
243 (perl-syntax-propertize-special-constructs end)
244 (funcall
245 (syntax-propertize-rules
246 ;; Turn POD into b-style comments. Place the cut rule first since it's
247 ;; more specific.
248 ("^=cut\\>.*\\(\n\\)" (1 "> b"))
249 ("^\\(=\\)\\sw" (1 "< b"))
250 ;; Catch ${ so that ${var} doesn't screw up indentation.
251 ;; This also catches $' to handle 'foo$', although it should really
252 ;; check that it occurs inside a '..' string.
253 ("\\(\\$\\)[{']" (1 ". p"))
254 ;; Handle funny names like $DB'stop.
255 ("\\$ ?{?^?[_[:alpha:]][_[:alnum:]]*\\('\\)[_[:alpha:]]" (1 "_"))
256 ;; format statements
257 ("^[ \t]*format.*=[ \t]*\\(\n\\)"
258 (1 (prog1 "\"" (perl-syntax-propertize-special-constructs end))))
259 ;; Funny things in `sub' arg-specs like `sub myfun ($)' or `sub ($)'.
260 ;; Be careful not to match "sub { (...) ... }".
261 ("\\<sub\\(?:[[:space:]]+[^{}[:punct:][:space:]]+\\)?[[:space:]]*(\\([^)]+\\))"
262 (1 "."))
263 ;; Turn __DATA__ trailer into a comment.
264 ("^\\(_\\)_\\(?:DATA\\|END\\)__[ \t]*\\(?:\\(\n\\)#.-\\*-.*perl.*-\\*-\\|\n.*\\)"
265 (1 "< c") (2 "> c")
266 (0 (ignore (put-text-property (match-beginning 0) (match-end 0)
267 'syntax-multiline t))))
268 ;; Regexp and funny quotes. Distinguishing a / that starts a regexp
269 ;; match from the division operator is ...interesting.
270 ;; Basically, / is a regexp match if it's preceded by an infix operator
271 ;; (or some similar separator), or by one of the special keywords
272 ;; corresponding to builtin functions that can take their first arg
273 ;; without parentheses. Of course, that presume we're looking at the
274 ;; *opening* slash. We can afford to mis-match the closing ones
275 ;; here, because they will be re-treated separately later in
276 ;; perl-font-lock-special-syntactic-constructs.
277 ((concat "\\(?:\\(?:^\\|[^$@&%[:word:]]\\)"
278 (regexp-opt '("split" "if" "unless" "until" "while" "split"
279 "grep" "map" "not" "or" "and"))
280 "\\|[?:.,;=!~({[]\\|\\(^\\)\\)[ \t\n]*\\(/\\)")
281 (2 (ignore
282 (if (and (match-end 1) ; / at BOL.
283 (save-excursion
284 (goto-char (match-end 1))
285 (forward-comment (- (point-max)))
286 (put-text-property (point) (match-end 2)
287 'syntax-multiline t)
288 (not (memq (char-before)
289 '(?? ?: ?. ?, ?\; ?= ?! ?~ ?\( ?\[)))))
290 nil ;; A division sign instead of a regexp-match.
291 (put-text-property (match-beginning 2) (match-end 2)
292 'syntax-table (string-to-syntax "\""))
293 (perl-syntax-propertize-special-constructs end)))))
294 ("\\(^\\|[?:.,;=!~({[ \t]\\)\\([msy]\\|q[qxrw]?\\|tr\\)\\>\\s-*\\(?:\\([^])}>= \n\t]\\)\\|\\(?3:=\\)[^>]\\)"
295 ;; Nasty cases:
296 ;; /foo/m $a->m $#m $m @m %m
297 ;; \s (appears often in regexps).
298 ;; -s file
299 ;; y => 3
300 ;; sub tr {...}
301 (3 (ignore
302 (if (save-excursion (goto-char (match-beginning 0))
303 (forward-word -1)
304 (looking-at-p "sub[ \t\n]"))
305 ;; This is defining a function.
307 (put-text-property (match-beginning 3) (match-end 3)
308 'syntax-table
309 (if (assoc (char-after (match-beginning 3))
310 perl-quote-like-pairs)
311 (string-to-syntax "|")
312 (string-to-syntax "\"")))
313 (perl-syntax-propertize-special-constructs end)))))
314 ;; Here documents.
315 ;; TODO: Handle <<WORD. These are trickier because you need to
316 ;; disambiguate with the shift operator.
317 ("<<[ \t]*\\('[^'\n]*'\\|\"[^\"\n]*\"\\|\\\\[[:alpha:]][[:alnum:]]*\\).*\\(\n\\)"
318 (2 (let* ((st (get-text-property (match-beginning 2) 'syntax-table))
319 (name (match-string 1)))
320 (goto-char (match-end 1))
321 (if (save-excursion (nth 8 (syntax-ppss (match-beginning 0))))
322 ;; Leave the property of the newline unchanged.
324 (cons (car (string-to-syntax "< c"))
325 ;; Remember the names of heredocs found on this line.
326 (cons (pcase (aref name 0)
327 (`?\\ (substring name 1))
328 (_ (substring name 1 -1)))
329 (cdr st)))))))
330 ;; We don't call perl-syntax-propertize-special-constructs directly
331 ;; from the << rule, because there might be other elements (between
332 ;; the << and the \n) that need to be propertized.
333 ("\\(?:$\\)\\s<"
334 (0 (ignore (perl-syntax-propertize-special-constructs end))))
336 (point) end)))
338 (defvar perl-empty-syntax-table
339 (let ((st (copy-syntax-table)))
340 ;; Make all chars be of punctuation syntax.
341 (dotimes (i 256) (aset st i '(1)))
342 (modify-syntax-entry ?\\ "\\" st)
344 "Syntax table used internally for processing quote-like operators.")
346 (defun perl-quote-syntax-table (char)
347 (let ((close (cdr (assq char perl-quote-like-pairs)))
348 (st (copy-syntax-table perl-empty-syntax-table)))
349 (if (not close)
350 (modify-syntax-entry char "\"" st)
351 (modify-syntax-entry char "(" st)
352 (modify-syntax-entry close ")" st))
353 st))
355 (defun perl-syntax-propertize-special-constructs (limit)
356 "Propertize special constructs like regexps and formats."
357 (let ((state (syntax-ppss))
358 char)
359 (cond
360 ((eq 2 (nth 7 state))
361 ;; A Here document.
362 (let ((names (cdr (get-text-property (nth 8 state) 'syntax-table))))
363 (when (cdr names)
364 (setq names (reverse names))
365 ;; Multiple heredocs on a single line, we have to search from the
366 ;; beginning, since we don't know which names might be
367 ;; before point.
368 (goto-char (nth 8 state)))
369 (while (and names
370 (re-search-forward
371 (concat "^" (regexp-quote (pop names)) "\n")
372 limit 'move))
373 (unless names
374 (put-text-property (1- (point)) (point) 'syntax-table
375 (string-to-syntax "> c"))))))
376 ((or (null (setq char (nth 3 state)))
377 (and (characterp char) (eq (char-syntax (nth 3 state)) ?\")))
378 ;; Normal text, or comment, or docstring, or normal string.
379 nil)
380 ((eq (nth 3 state) ?\n)
381 ;; A `format' command.
382 (when (re-search-forward "^\\s *\\.\\s *\n" limit 'move)
383 (put-text-property (1- (point)) (point)
384 'syntax-table (string-to-syntax "\""))))
386 ;; This is regexp like quote thingy.
387 (setq char (char-after (nth 8 state)))
388 (let ((startpos (point))
389 (twoargs (save-excursion
390 (goto-char (nth 8 state))
391 (skip-syntax-backward " ")
392 (skip-syntax-backward "w")
393 (member (buffer-substring
394 (point) (progn (forward-word 1) (point)))
395 '("tr" "s" "y"))))
396 (close (cdr (assq char perl-quote-like-pairs)))
397 (st (perl-quote-syntax-table char)))
398 (when (with-syntax-table st
399 (if close
400 ;; For paired delimiters, Perl allows nesting them, but
401 ;; since we treat them as strings, Emacs does not count
402 ;; those delimiters in `state', so we don't know how deep
403 ;; we are: we have to go back to the beginning of this
404 ;; "string" and count from there.
405 (condition-case nil
406 (progn
407 ;; Start after the first char since it doesn't have
408 ;; paren-syntax (an alternative would be to let-bind
409 ;; parse-sexp-lookup-properties).
410 (goto-char (1+ (nth 8 state)))
411 (up-list 1)
413 ;; In case of error, make sure we don't move backward.
414 (scan-error (goto-char startpos) nil))
415 (not (or (nth 8 (parse-partial-sexp
416 ;; Since we don't know if point is within
417 ;; the first or the scond arg, we have to
418 ;; start from the beginning.
419 (if twoargs (1+ (nth 8 state)) (point))
420 limit nil nil state 'syntax-table))
421 ;; If we have a self-paired opener and a twoargs
422 ;; command, the form is s/../../ so we have to skip
423 ;; a second time.
424 ;; In the case of s{...}{...}, we only handle the
425 ;; first part here and the next below.
426 (when (and twoargs (not close))
427 (nth 8 (parse-partial-sexp
428 (point) limit
429 nil nil state 'syntax-table)))))))
430 ;; Point is now right after the arg(s).
431 (when (eq (char-before (1- (point))) ?$)
432 (put-text-property (- (point) 2) (1- (point))
433 'syntax-table '(1)))
434 (put-text-property (1- (point)) (point)
435 'syntax-table
436 (if close
437 (string-to-syntax "|")
438 (string-to-syntax "\"")))
439 ;; If we have two args with a non-self-paired starter (e.g.
440 ;; s{...}{...}) we're right after the first arg, so we still have to
441 ;; handle the second part.
442 (when (and twoargs close)
443 ;; Skip whitespace and make sure that font-lock will
444 ;; refontify the second part in the proper context.
445 (put-text-property
446 (point) (progn (forward-comment (point-max)) (point))
447 'syntax-multiline t)
449 (when (< (point) limit)
450 (put-text-property (point) (1+ (point))
451 'syntax-table
452 (if (assoc (char-after)
453 perl-quote-like-pairs)
454 ;; Put an `e' in the cdr to mark this
455 ;; char as "second arg starter".
456 (string-to-syntax "|e")
457 (string-to-syntax "\"e")))
458 (forward-char 1)
459 ;; Re-use perl-syntax-propertize-special-constructs to handle the
460 ;; second part (the first delimiter of second part can't be
461 ;; preceded by "s" or "tr" or "y", so it will not be considered
462 ;; as twoarg).
463 (perl-syntax-propertize-special-constructs limit)))))))))
465 (defun perl-font-lock-syntactic-face-function (state)
466 (cond
467 ((and (nth 3 state)
468 (eq ?e (cdr-safe (get-text-property (nth 8 state) 'syntax-table)))
469 ;; This is a second-arg of s{..}{...} form; let's check if this second
470 ;; arg is executable code rather than a string. For that, we need to
471 ;; look for an "e" after this second arg, so we have to hunt for the
472 ;; end of the arg. Depending on whether the whole arg has already
473 ;; been syntax-propertized or not, the end-char will have different
474 ;; syntaxes, so let's ignore syntax-properties temporarily so we can
475 ;; pretend it has not been syntax-propertized yet.
476 (let* ((parse-sexp-lookup-properties nil)
477 (char (char-after (nth 8 state)))
478 (paired (assq char perl-quote-like-pairs)))
479 (with-syntax-table (perl-quote-syntax-table char)
480 (save-excursion
481 (if (not paired)
482 (parse-partial-sexp (point) (point-max)
483 nil nil state 'syntax-table)
484 (condition-case nil
485 (progn
486 (goto-char (1+ (nth 8 state)))
487 (up-list 1))
488 (scan-error (goto-char (point-max)))))
489 (put-text-property (nth 8 state) (point)
490 'jit-lock-defer-multiline t)
491 (looking-at "[ \t]*\\sw*e")))))
492 nil)
493 (t (funcall (default-value 'font-lock-syntactic-face-function) state))))
495 (defcustom perl-indent-level 4
496 "Indentation of Perl statements with respect to containing block."
497 :type 'integer)
499 ;; Is is not unusual to put both things like perl-indent-level and
500 ;; cperl-indent-level in the local variable section of a file. If only
501 ;; one of perl-mode and cperl-mode is in use, a warning will be issued
502 ;; about the variable. Autoload these here, so that no warning is
503 ;; issued when using either perl-mode or cperl-mode.
504 ;;;###autoload(put 'perl-indent-level 'safe-local-variable 'integerp)
505 ;;;###autoload(put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
506 ;;;###autoload(put 'perl-continued-brace-offset 'safe-local-variable 'integerp)
507 ;;;###autoload(put 'perl-brace-offset 'safe-local-variable 'integerp)
508 ;;;###autoload(put 'perl-brace-imaginary-offset 'safe-local-variable 'integerp)
509 ;;;###autoload(put 'perl-label-offset 'safe-local-variable 'integerp)
511 (defcustom perl-continued-statement-offset 4
512 "Extra indent for lines not starting new statements."
513 :type 'integer)
514 (defcustom perl-continued-brace-offset -4
515 "Extra indent for substatements that start with open-braces.
516 This is in addition to `perl-continued-statement-offset'."
517 :type 'integer)
518 (defcustom perl-brace-offset 0
519 "Extra indentation for braces, compared with other text in same context."
520 :type 'integer)
521 (defcustom perl-brace-imaginary-offset 0
522 "Imagined indentation of an open brace that actually follows a statement."
523 :type 'integer)
524 (defcustom perl-label-offset -2
525 "Offset of Perl label lines relative to usual indentation."
526 :type 'integer)
527 (defcustom perl-indent-continued-arguments nil
528 "If non-nil offset of argument lines relative to usual indentation.
529 If nil, continued arguments are aligned with the first argument."
530 :type '(choice integer (const nil)))
532 (defcustom perl-indent-parens-as-block nil
533 "Non-nil means that non-block ()-, {}- and []-groups are indented as blocks.
534 The closing bracket is aligned with the line of the opening bracket,
535 not the contents of the brackets."
536 :version "24.3"
537 :type 'boolean)
539 (defcustom perl-tab-always-indent tab-always-indent
540 "Non-nil means TAB in Perl mode always indents the current line.
541 Otherwise it inserts a tab character if you type it past the first
542 nonwhite character on the line."
543 :type 'boolean)
545 ;; I changed the default to nil for consistency with general Emacs
546 ;; conventions -- rms.
547 (defcustom perl-tab-to-comment nil
548 "Non-nil means TAB moves to eol or makes a comment in some cases.
549 For lines which don't need indenting, TAB either indents an
550 existing comment, moves to end-of-line, or if at end-of-line already,
551 create a new comment."
552 :type 'boolean)
554 (defcustom perl-nochange "\f"
555 "Lines starting with this regular expression are not auto-indented."
556 :type 'regexp
557 :options '(";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"))
559 ;; Outline support
561 (defvar perl-outline-regexp
562 (concat (mapconcat 'cadr perl-imenu-generic-expression "\\|")
563 "\\|^=cut\\>"))
565 (defun perl-outline-level ()
566 (cond
567 ((looking-at "[ \t]*\\(package\\)\\s-")
568 (- (match-beginning 1) (match-beginning 0)))
569 ((looking-at "[ \t]*s\\(ub\\)\\s-")
570 (- (match-beginning 1) (match-beginning 0)))
571 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?0))
572 ((looking-at "=cut") 1)
573 (t 3)))
575 (defun perl-current-defun-name ()
576 "The `add-log-current-defun' function in Perl mode."
577 (save-excursion
578 (if (re-search-backward "^sub[ \t]+\\([^({ \t\n]+\\)" nil t)
579 (match-string-no-properties 1))))
582 (defvar perl-mode-hook nil
583 "Normal hook to run when entering Perl mode.")
585 ;;;###autoload
586 (define-derived-mode perl-mode prog-mode "Perl"
587 "Major mode for editing Perl code.
588 Expression and list commands understand all Perl brackets.
589 Tab indents for Perl code.
590 Comments are delimited with # ... \\n.
591 Paragraphs are separated by blank lines only.
592 Delete converts tabs to spaces as it moves back.
593 \\{perl-mode-map}
594 Variables controlling indentation style:
595 `perl-tab-always-indent'
596 Non-nil means TAB in Perl mode should always indent the current line,
597 regardless of where in the line point is when the TAB command is used.
598 `perl-tab-to-comment'
599 Non-nil means that for lines which don't need indenting, TAB will
600 either delete an empty comment, indent an existing comment, move
601 to end-of-line, or if at end-of-line already, create a new comment.
602 `perl-nochange'
603 Lines starting with this regular expression are not auto-indented.
604 `perl-indent-level'
605 Indentation of Perl statements within surrounding block.
606 The surrounding block's indentation is the indentation
607 of the line on which the open-brace appears.
608 `perl-continued-statement-offset'
609 Extra indentation given to a substatement, such as the
610 then-clause of an if or body of a while.
611 `perl-continued-brace-offset'
612 Extra indentation given to a brace that starts a substatement.
613 This is in addition to `perl-continued-statement-offset'.
614 `perl-brace-offset'
615 Extra indentation for line if it starts with an open brace.
616 `perl-brace-imaginary-offset'
617 An open brace following other text is treated as if it were
618 this far to the right of the start of its line.
619 `perl-label-offset'
620 Extra indentation for line that is a label.
621 `perl-indent-continued-arguments'
622 Offset of argument lines relative to usual indentation.
624 Various indentation styles: K&R BSD BLK GNU LW
625 perl-indent-level 5 8 0 2 4
626 perl-continued-statement-offset 5 8 4 2 4
627 perl-continued-brace-offset 0 0 0 0 -4
628 perl-brace-offset -5 -8 0 0 0
629 perl-brace-imaginary-offset 0 0 4 0 0
630 perl-label-offset -5 -8 -2 -2 -2
632 Turning on Perl mode runs the normal hook `perl-mode-hook'."
633 :abbrev-table perl-mode-abbrev-table
634 (setq-local paragraph-start (concat "$\\|" page-delimiter))
635 (setq-local paragraph-separate paragraph-start)
636 (setq-local paragraph-ignore-fill-prefix t)
637 (setq-local indent-line-function #'perl-indent-line)
638 (setq-local comment-start "# ")
639 (setq-local comment-end "")
640 (setq-local comment-start-skip "\\(^\\|\\s-\\);?#+ *")
641 (setq-local comment-indent-function #'perl-comment-indent)
642 (setq-local parse-sexp-ignore-comments t)
644 ;; Tell font-lock.el how to handle Perl.
645 (setq font-lock-defaults '((perl-font-lock-keywords
646 perl-font-lock-keywords-1
647 perl-font-lock-keywords-2)
648 nil nil ((?\_ . "w")) nil
649 (font-lock-syntactic-face-function
650 . perl-font-lock-syntactic-face-function)))
651 (setq-local prettify-symbols-alist perl--prettify-symbols-alist)
652 (setq-local syntax-propertize-function #'perl-syntax-propertize-function)
653 (add-hook 'syntax-propertize-extend-region-functions
654 #'syntax-propertize-multiline 'append 'local)
655 ;; Electricity.
656 ;; FIXME: setup electric-layout-rules.
657 (setq-local electric-indent-chars
658 (append '(?\{ ?\} ?\; ?\:) electric-indent-chars))
659 (add-hook 'electric-indent-functions #'perl-electric-noindent-p nil t)
660 ;; Tell imenu how to handle Perl.
661 (setq-local imenu-generic-expression perl-imenu-generic-expression)
662 (setq imenu-case-fold-search nil)
663 ;; Setup outline-minor-mode.
664 (setq-local outline-regexp perl-outline-regexp)
665 (setq-local outline-level 'perl-outline-level)
666 (setq-local add-log-current-defun-function #'perl-current-defun-name))
668 ;; This is used by indent-for-comment
669 ;; to decide how much to indent a comment in Perl code
670 ;; based on its context.
671 (defun perl-comment-indent ()
672 (if (and (bolp) (not (eolp)))
673 0 ;Existing comment at bol stays there.
674 comment-column))
676 (define-obsolete-function-alias 'electric-perl-terminator
677 'perl-electric-terminator "22.1")
678 (defun perl-electric-noindent-p (_char)
679 (unless (eolp) 'no-indent))
681 (defun perl-electric-terminator (arg)
682 "Insert character and maybe adjust indentation.
683 If at end-of-line, and not in a comment or a quote, correct the indentation."
684 (interactive "P")
685 (let ((insertpos (point)))
686 (and (not arg) ; decide whether to indent
687 (eolp)
688 (save-excursion
689 (beginning-of-line)
690 (and (not ; eliminate comments quickly
691 (and comment-start-skip
692 (re-search-forward comment-start-skip insertpos t)) )
693 (or (/= last-command-event ?:)
694 ;; Colon is special only after a label ....
695 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
696 (let ((pps (parse-partial-sexp
697 (perl-beginning-of-function) insertpos)))
698 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
699 (progn ; must insert, indent, delete
700 (insert-char last-command-event 1)
701 (perl-indent-line)
702 (delete-char -1))))
703 (self-insert-command (prefix-numeric-value arg)))
704 (make-obsolete 'perl-electric-terminator 'electric-indent-mode "24.4")
706 ;; not used anymore, but may be useful someday:
707 ;;(defun perl-inside-parens-p ()
708 ;; (condition-case ()
709 ;; (save-excursion
710 ;; (save-restriction
711 ;; (narrow-to-region (point)
712 ;; (perl-beginning-of-function))
713 ;; (goto-char (point-max))
714 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
715 ;; (error nil)))
717 (defun perl-indent-command (&optional arg)
718 "Indent Perl code in the active region or current line.
719 In Transient Mark mode, when the region is active, reindent the region.
720 Otherwise, with a prefix argument, reindent the current line
721 unconditionally.
723 Otherwise, if `perl-tab-always-indent' is nil and point is not in
724 the indentation area at the beginning of the line, insert a tab.
726 Otherwise, indent the current line. If point was within the
727 indentation area, it is moved to the end of the indentation area.
728 If the line was already indented properly and point was not
729 within the indentation area, and if `perl-tab-to-comment' is
730 non-nil (the default), then do the first possible action from the
731 following list:
733 1) delete an empty comment
734 2) move forward to start of comment, indenting if necessary
735 3) move forward to end of line
736 4) create an empty comment
737 5) move backward to start of comment, indenting if necessary."
738 (interactive "P")
739 (cond ((use-region-p) ; indent the active region
740 (indent-region (region-beginning) (region-end)))
741 (arg
742 (perl-indent-line "\f")) ; just indent this line
743 ((and (not perl-tab-always-indent)
744 (> (current-column) (current-indentation)))
745 (insert-tab))
747 (let* ((oldpnt (point))
748 (lsexp (progn (beginning-of-line) (point)))
749 (bof (perl-beginning-of-function))
750 (delta (progn
751 (goto-char oldpnt)
752 (perl-indent-line "\f\\|;?#" bof))))
753 (and perl-tab-to-comment
754 (= oldpnt (point)) ; done if point moved
755 (if (listp delta) ; if line starts in a quoted string
756 (setq lsexp (or (nth 2 delta) bof))
757 (= delta 0)) ; done if indenting occurred
758 (let ((eol (progn (end-of-line) (point)))
759 state)
760 (cond ((= (char-after bof) ?=)
761 (if (= oldpnt eol)
762 (message "In a format statement")))
763 ((progn (setq state (parse-partial-sexp lsexp eol))
764 (nth 3 state))
765 (if (= oldpnt eol) ; already at eol in a string
766 (message "In a string which starts with a %c."
767 (nth 3 state))))
768 ((not (nth 4 state))
769 (if (= oldpnt eol) ; no comment, create one?
770 (indent-for-comment)))
771 ((progn (beginning-of-line)
772 (and comment-start-skip
773 (re-search-forward
774 comment-start-skip eol 'move)))
775 (if (eolp)
776 (progn ; delete existing comment
777 (goto-char (match-beginning 0))
778 (skip-chars-backward " \t")
779 (delete-region (point) eol))
780 (if (or (< oldpnt (point)) (= oldpnt eol))
781 (indent-for-comment) ; indent existing comment
782 (end-of-line))))
783 ((/= oldpnt eol)
784 (end-of-line))
786 (message "Use backslash to quote # characters.")
787 (ding t)))))))))
788 (make-obsolete 'perl-indent-command 'indent-according-to-mode "24.4")
790 (defun perl-indent-line (&optional nochange parse-start)
791 "Indent current line as Perl code.
792 Return the amount the indentation
793 changed by, or (parse-state) if line starts in a quoted string."
794 (let ((case-fold-search nil)
795 (pos (- (point-max) (point)))
796 (bof (or parse-start (save-excursion
797 ;; Don't consider text on this line as a
798 ;; valid BOF from which to indent.
799 (goto-char (line-end-position 0))
800 (perl-beginning-of-function))))
801 beg indent shift-amt)
802 (beginning-of-line)
803 (setq beg (point))
804 (setq shift-amt
805 (cond ((eq (char-after bof) ?=) 0)
806 ((listp (setq indent (perl-calculate-indent bof))) indent)
807 ((eq 'noindent indent) indent)
808 ((looking-at (or nochange perl-nochange)) 0)
810 (skip-chars-forward " \t\f")
811 (setq indent (perl-indent-new-calculate nil indent bof))
812 (- indent (current-column)))))
813 (skip-chars-forward " \t\f")
814 (if (and (numberp shift-amt) (/= 0 shift-amt))
815 (progn (delete-region beg (point))
816 (indent-to indent)))
817 ;; If initial point was within line's indentation,
818 ;; position after the indentation. Else stay at same point in text.
819 (if (> (- (point-max) pos) (point))
820 (goto-char (- (point-max) pos)))
821 shift-amt))
823 (defun perl-continuation-line-p (limit)
824 "Move to end of previous line and return non-nil if continued."
825 ;; Statement level. Is it a continuation or a new statement?
826 ;; Find previous non-comment character.
827 (perl-backward-to-noncomment)
828 ;; Back up over label lines, since they don't
829 ;; affect whether our line is a continuation.
830 (while (or (eq (preceding-char) ?\,)
831 (and (eq (preceding-char) ?:)
832 (memq (char-syntax (char-after (- (point) 2)))
833 '(?w ?_))))
834 (if (eq (preceding-char) ?\,)
835 (perl-backward-to-start-of-continued-exp limit)
836 (beginning-of-line))
837 (perl-backward-to-noncomment))
838 ;; Now we get the answer.
839 (not (memq (preceding-char) '(?\; ?\} ?\{))))
841 (defun perl-hanging-paren-p ()
842 "Non-nil if we are right after a hanging parenthesis-like char."
843 (and (looking-at "[ \t]*$")
844 (save-excursion
845 (skip-syntax-backward " (") (not (bolp)))))
847 (defun perl-indent-new-calculate (&optional virtual default parse-start)
849 (and virtual (save-excursion (skip-chars-backward " \t") (bolp))
850 (current-column))
851 (and (looking-at "\\(\\w\\|\\s_\\)+:[^:]")
852 (max 1 (+ (or default (perl-calculate-indent parse-start))
853 perl-label-offset)))
854 (and (= (char-syntax (following-char)) ?\))
855 (save-excursion
856 (forward-char 1)
857 (forward-sexp -1)
858 (perl-indent-new-calculate
859 ;; Recalculate the parsing-start, since we may have jumped
860 ;; dangerously close (typically in the case of nested functions).
861 'virtual nil (save-excursion (perl-beginning-of-function)))))
862 (and (and (= (following-char) ?{)
863 (save-excursion (forward-char) (perl-hanging-paren-p)))
864 (+ (or default (perl-calculate-indent parse-start))
865 perl-brace-offset))
866 (or default (perl-calculate-indent parse-start))))
868 (defun perl-calculate-indent (&optional parse-start)
869 "Return appropriate indentation for current line as Perl code.
870 In usual case returns an integer: the column to indent to.
871 Returns (parse-state) if line starts inside a string.
872 Optional argument PARSE-START should be the position of `beginning-of-defun'."
873 (save-excursion
874 (let ((indent-point (point))
875 (case-fold-search nil)
876 (colon-line-end 0)
877 state containing-sexp)
878 (if parse-start ;used to avoid searching
879 (goto-char parse-start)
880 (perl-beginning-of-function))
881 ;; We might be now looking at a local function that has nothing to
882 ;; do with us because `indent-point' is past it. In this case
883 ;; look further back up for another `perl-beginning-of-function'.
884 (while (and (looking-at "{")
885 (save-excursion
886 (beginning-of-line)
887 (looking-at "\\s-+sub\\>"))
888 (> indent-point (save-excursion
889 (condition-case nil
890 (forward-sexp 1)
891 (scan-error nil))
892 (point))))
893 (perl-beginning-of-function))
894 (while (< (point) indent-point) ;repeat until right sexp
895 (setq state (parse-partial-sexp (point) indent-point 0))
896 ;; state = (depth_in_parens innermost_containing_list
897 ;; last_complete_sexp string_terminator_or_nil inside_commentp
898 ;; following_quotep minimum_paren-depth_this_scan)
899 ;; Parsing stops if depth in parentheses becomes equal to third arg.
900 (setq containing-sexp (nth 1 state)))
901 (cond ((nth 3 state) 'noindent) ; In a quoted string?
902 ((null containing-sexp) ; Line is at top level.
903 (skip-chars-forward " \t\f")
904 (if (memq (following-char)
905 (if perl-indent-parens-as-block '(?\{ ?\( ?\[) '(?\{)))
906 0 ; move to beginning of line if it starts a function body
907 ;; indent a little if this is a continuation line
908 (perl-backward-to-noncomment)
909 (if (or (bobp)
910 (memq (preceding-char) '(?\; ?\})))
911 0 perl-continued-statement-offset)))
912 ((/= (char-after containing-sexp) ?{)
913 ;; line is expression, not statement:
914 ;; indent to just after the surrounding open.
915 (goto-char (1+ containing-sexp))
916 (if (perl-hanging-paren-p)
917 ;; We're indenting an arg of a call like:
918 ;; $a = foobarlongnamefun (
919 ;; arg1
920 ;; arg2
921 ;; );
922 (progn
923 (skip-syntax-backward "(")
924 (condition-case nil
925 (while (save-excursion
926 (skip-syntax-backward " ") (not (bolp)))
927 (forward-sexp -1))
928 (scan-error nil))
929 (+ (current-column) perl-indent-level))
930 (if perl-indent-continued-arguments
931 (+ perl-indent-continued-arguments (current-indentation))
932 (skip-chars-forward " \t")
933 (current-column))))
935 ;; Statement level. Is it a continuation or a new statement?
936 (if (perl-continuation-line-p containing-sexp)
937 ;; This line is continuation of preceding line's statement;
938 ;; indent perl-continued-statement-offset more than the
939 ;; previous line of the statement.
940 (progn
941 (perl-backward-to-start-of-continued-exp containing-sexp)
942 (+ (if (save-excursion
943 (perl-continuation-line-p containing-sexp))
944 ;; If the continued line is itself a continuation
945 ;; line, then align, otherwise add an offset.
946 0 perl-continued-statement-offset)
947 (current-column)
948 (if (save-excursion (goto-char indent-point)
949 (looking-at
950 (if perl-indent-parens-as-block
951 "[ \t]*[{(\[]" "[ \t]*{")))
952 perl-continued-brace-offset 0)))
953 ;; This line starts a new statement.
954 ;; Position at last unclosed open.
955 (goto-char containing-sexp)
957 ;; Is line first statement after an open-brace?
958 ;; If no, find that first statement and indent like it.
959 (save-excursion
960 (forward-char 1)
961 ;; Skip over comments and labels following openbrace.
962 (while (progn
963 (skip-chars-forward " \t\f\n")
964 (cond ((looking-at ";?#")
965 (forward-line 1) t)
966 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
967 (setq colon-line-end (line-end-position))
968 (search-forward ":")))))
969 ;; The first following code counts
970 ;; if it is before the line we want to indent.
971 (and (< (point) indent-point)
972 (if (> colon-line-end (point))
973 (- (current-indentation) perl-label-offset)
974 (current-column))))
975 ;; If no previous statement,
976 ;; indent it relative to line brace is on.
977 ;; For open paren in column zero, don't let statement
978 ;; start there too. If perl-indent-level is zero,
979 ;; use perl-brace-offset + perl-continued-statement-offset
980 ;; For open-braces not the first thing in a line,
981 ;; add in perl-brace-imaginary-offset.
982 (+ (if (and (bolp) (zerop perl-indent-level))
983 (+ perl-brace-offset perl-continued-statement-offset)
984 perl-indent-level)
985 ;; Move back over whitespace before the openbrace.
986 ;; If openbrace is not first nonwhite thing on the line,
987 ;; add the perl-brace-imaginary-offset.
988 (progn (skip-chars-backward " \t")
989 (if (bolp) 0 perl-brace-imaginary-offset))
990 ;; If the openbrace is preceded by a parenthesized exp,
991 ;; move to the beginning of that;
992 ;; possibly a different line
993 (progn
994 (if (eq (preceding-char) ?\))
995 (forward-sexp -1))
996 ;; Get initial indentation of the line we are on.
997 (current-indentation))))))))))
999 (defun perl-backward-to-noncomment ()
1000 "Move point backward to after the first non-white-space, skipping comments."
1001 (interactive)
1002 (forward-comment (- (point-max))))
1004 (defun perl-backward-to-start-of-continued-exp (lim)
1005 (if (= (preceding-char) ?\))
1006 (forward-sexp -1))
1007 (beginning-of-line)
1008 (if (<= (point) lim)
1009 (goto-char (1+ lim)))
1010 (skip-chars-forward " \t\f"))
1012 ;; note: this may be slower than the c-mode version, but I can understand it.
1013 (defalias 'indent-perl-exp 'perl-indent-exp)
1014 (defun perl-indent-exp ()
1015 "Indent each line of the Perl grouping following point."
1016 (interactive)
1017 (let* ((case-fold-search nil)
1018 (oldpnt (point-marker))
1019 (bof-mark (save-excursion
1020 (end-of-line 2)
1021 (perl-beginning-of-function)
1022 (point-marker)))
1023 eol last-mark lsexp-mark delta)
1024 (if (= (char-after (marker-position bof-mark)) ?=)
1025 (message "Can't indent a format statement")
1026 (message "Indenting Perl expression...")
1027 (setq eol (line-end-position))
1028 (save-excursion ; locate matching close paren
1029 (while (and (not (eobp)) (<= (point) eol))
1030 (parse-partial-sexp (point) (point-max) 0))
1031 (setq last-mark (point-marker)))
1032 (setq lsexp-mark bof-mark)
1033 (beginning-of-line)
1034 (while (< (point) (marker-position last-mark))
1035 (setq delta (perl-indent-line nil (marker-position bof-mark)))
1036 (if (numberp delta) ; unquoted start-of-line?
1037 (progn
1038 (if (eolp)
1039 (delete-horizontal-space))
1040 (setq lsexp-mark (point-marker))))
1041 (end-of-line)
1042 (setq eol (point))
1043 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
1044 (progn ; line ends in a comment
1045 (beginning-of-line)
1046 (if (or (not (looking-at "\\s-*;?#"))
1047 (listp delta)
1048 (and (/= 0 delta)
1049 (= (- (current-indentation) delta) comment-column)))
1050 (if (and comment-start-skip
1051 (re-search-forward comment-start-skip eol t))
1052 (indent-for-comment))))) ; indent existing comment
1053 (forward-line 1))
1054 (goto-char (marker-position oldpnt))
1055 (message "Indenting Perl expression...done"))))
1057 (defun perl-beginning-of-function (&optional arg)
1058 "Move backward to next beginning-of-function, or as far as possible.
1059 With argument, repeat that many times; negative args move forward.
1060 Returns new value of point in all cases."
1061 (interactive "p")
1062 (or arg (setq arg 1))
1063 (if (< arg 0) (forward-char 1))
1064 (and (/= arg 0)
1065 (re-search-backward
1066 "^\\s(\\|^\\s-*sub\\b[ \t\n]*\\_<[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
1067 nil 'move arg)
1068 (goto-char (1- (match-end 0))))
1069 (point))
1071 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
1072 ;; no bugs have been removed :-)
1073 (defun perl-end-of-function (&optional arg)
1074 "Move forward to next end-of-function.
1075 The end of a function is found by moving forward from the beginning of one.
1076 With argument, repeat that many times; negative args move backward."
1077 (interactive "p")
1078 (or arg (setq arg 1))
1079 (let ((first t))
1080 (while (and (> arg 0) (< (point) (point-max)))
1081 (let ((pos (point)))
1082 (while (progn
1083 (if (and first
1084 (progn
1085 (forward-char 1)
1086 (perl-beginning-of-function 1)
1087 (not (bobp))))
1089 (or (bobp) (forward-char -1))
1090 (perl-beginning-of-function -1))
1091 (setq first nil)
1092 (forward-list 1)
1093 (skip-chars-forward " \t")
1094 (if (looking-at "[#\n]")
1095 (forward-line 1))
1096 (<= (point) pos))))
1097 (setq arg (1- arg)))
1098 (while (< arg 0)
1099 (let ((pos (point)))
1100 (perl-beginning-of-function 1)
1101 (forward-sexp 1)
1102 (forward-line 1)
1103 (if (>= (point) pos)
1104 (if (progn (perl-beginning-of-function 2) (not (bobp)))
1105 (progn
1106 (forward-list 1)
1107 (skip-chars-forward " \t")
1108 (if (looking-at "[#\n]")
1109 (forward-line 1)))
1110 (goto-char (point-min)))))
1111 (setq arg (1+ arg)))))
1113 (defalias 'mark-perl-function 'perl-mark-function)
1114 (defun perl-mark-function ()
1115 "Put mark at end of Perl function, point at beginning."
1116 (interactive)
1117 (push-mark (point))
1118 (perl-end-of-function)
1119 (push-mark (point))
1120 (perl-beginning-of-function)
1121 (backward-paragraph))
1123 (provide 'perl-mode)
1125 ;;; perl-mode.el ends here