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