* lisp/progmodes/perl-mode.el (perl-syntax-propertize-function): Add "foreach"
[bpt/emacs.git] / lisp / progmodes / perl-mode.el
CommitLineData
8ffa1a0b 1;;; perl-mode.el --- Perl code editing commands for GNU Emacs -*- lexical-binding:t -*-
4821e2af 2
ba318903 3;; Copyright (C) 1990, 1994, 2001-2014 Free Software Foundation, Inc.
3a801d0c 4
4821e2af 5;; Author: William F. Mann
34dc21db 6;; Maintainer: emacs-devel@gnu.org
4821e2af 7;; Adapted-By: ESR
d7b4d18f 8;; Keywords: languages
4821e2af 9
2076c87c
JB
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.
12
4da31937
RS
13;; This file is part of GNU Emacs.
14
b1fc2b50 15;; GNU Emacs is free software: you can redistribute it and/or modify
4da31937 16;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
17;; the Free Software Foundation, either version 3 of the License, or
18;; (at your option) any later version.
4da31937
RS
19
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.
24
25;; You should have received a copy of the GNU General Public License
b1fc2b50 26;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
2076c87c 27
4821e2af
ER
28;;; Commentary:
29
2076c87c 30;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode")
865fe16f 31;; to your init file and change the first line of your perl script to:
2076c87c 32;; #!/usr/bin/perl -- # -*-Perl-*-
a7acbbe4 33;; With arguments to perl:
2076c87c
JB
34;; #!/usr/bin/perl -P- # -*-Perl-*-
35;; To handle files included with do 'filename.pl';, add something like
c6818db9 36;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode))
2076c87c 37;; auto-mode-alist))
865fe16f 38;; to your init file; otherwise the .pl suffix defaults to prolog-mode.
2076c87c
JB
39
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.
42
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 \#.
49
50;; If your machine is slow, you may want to remove some of the bindings
4b8dfb43 51;; to perl-electric-terminator. I changed the indenting defaults to be
2076c87c
JB
52;; what Larry Wall uses in perl/lib, but left in all the options.
53
54;; I also tuned a few things: comments and labels starting in column
4b8dfb43 55;; zero are left there by perl-indent-exp; perl-beginning-of-function
2076c87c 56;; goes back to the first open brace/paren in column zero, the open brace
4b8dfb43 57;; in 'sub ... {', or the equal sign in 'format ... ='; perl-indent-exp
2076c87c
JB
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.
60
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.
63
282d89c0 64;; Known problems (these are all caused by limitations in the Emacs Lisp
2076c87c
JB
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):
2076c87c
JB
67;; 2) The globbing syntax <pattern> is not recognized, so special
68;; characters in the pattern string must be backslashed.
d3627c47 69;; 3) The << quoting operators are not recognized; see below.
4a0aa1d9
SM
70;; 5) To make '$' work correctly, $' is not recognized as a variable.
71;; Use "$'" or $POSTMATCH instead.
4a0aa1d9
SM
72;;
73;; If you don't use font-lock, additional problems will appear:
d3627c47
SM
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.
2076c87c 78;; 5) To make variables such a $' and $#array work, perl-mode treats
4a0aa1d9 79;; $ just like backslash, so '$' is not treated correctly.
2076c87c
JB
80;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
81;; unmatched }. See below.
d3627c47
SM
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.
2076c87c
JB
84
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:
90;;
91;; /`/; $ugly = q?"'$?; /`/;
92;;
d3627c47
SM
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}>)
a1506d29 97;;
2076c87c
JB
98;; Problem 7 is even worse, but this 'fix' does work :-(
99;; $DB'stop#'
100;; [$DB'line#'
101;; ] =~ s/;9$//;
102
4821e2af 103;;; Code:
2076c87c 104
5636765c
SE
105(defgroup perl nil
106 "Major mode for editing Perl code."
8ec3bce0 107 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
5636765c
SE
108 :prefix "perl-"
109 :group 'languages)
110
9f2e5ef3
RS
111(defvar perl-mode-abbrev-table nil
112 "Abbrev table in use in perl-mode buffers.")
113(define-abbrev-table 'perl-mode-abbrev-table ())
114
4b8dfb43
SM
115(defvar perl-mode-map
116 (let ((map (make-sparse-keymap)))
4b8dfb43
SM
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)
4b8dfb43 122 map)
4a0aa1d9 123 "Keymap used in Perl mode.")
2076c87c 124
4b8dfb43
SM
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)
42be8f2e 129 ;; `$' is also a prefix char so I was tempted to say "/ p",
8ffa1a0b 130 ;; but the `p' thingy basically overrides the `/' :-( -- Stef
42be8f2e 131 (modify-syntax-entry ?$ "/" st)
d3627c47
SM
132 (modify-syntax-entry ?% ". p" st)
133 (modify-syntax-entry ?@ ". p" st)
4b8dfb43
SM
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)
146 st)
147 "Syntax table in use in `perl-mode' buffers.")
2076c87c 148
f42484a2 149(defvar perl-imenu-generic-expression
4b8dfb43 150 '(;; Functions
323885fd 151 (nil "^[ \t]*sub\\s-+\\([-[:alnum:]+_:]+\\)" 1)
f42484a2 152 ;;Variables
323885fd
SM
153 ("Variables" "^\\(?:my\\|our\\)\\s-+\\([$@%][-[:alnum:]+_:]+\\)\\s-*=" 1)
154 ("Packages" "^[ \t]*package\\s-+\\([-[:alnum:]+_:]+\\);" 1)
35c5f5d3 155 ("Doc sections" "^=head[0-9][ \t]+\\(.*\\)" 1))
f42484a2
RS
156 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
157
3e7fc8bd
SM
158;; Regexps updated with help from Tom Tromey <tromey@cambric.colorado.edu> and
159;; Jim Campbell <jec@murzim.ca.boeing.com>.
160
79b3e376 161(defconst perl--prettify-symbols-alist
3ca0d0b4 162 '(("->" . ?→)
79b3e376 163 ("=>" . ?⇒)
3ca0d0b4 164 ("::" . ?∷)))
79b3e376 165
3e7fc8bd
SM
166(defconst perl-font-lock-keywords-1
167 '(;; What is this for?
168 ;;("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
169 ;;
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.
4b8dfb43
SM
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))
3e7fc8bd
SM
179 ;;
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+\\)?"
883212ce 184 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)))
3e7fc8bd
SM
185 "Subdued level highlighting for Perl mode.")
186
187(defconst perl-font-lock-keywords-2
79b3e376
SM
188 (append
189 perl-font-lock-keywords-1
190 `( ;; Fontify keywords, except those fontified otherwise.
191 ,(concat "\\<"
a81ad225
SM
192 (regexp-opt '("if" "until" "while" "elsif" "else" "unless"
193 "do" "dump" "for" "foreach" "exit" "die"
194 "BEGIN" "END" "return" "exec" "eval") t)
195 "\\>")
196 ;;
197 ;; Fontify local and my keywords as types.
79b3e376 198 ("\\<\\(local\\|my\\)\\>" . font-lock-type-face)
a81ad225
SM
199 ;;
200 ;; Fontify function, variable and file name references.
79b3e376 201 ("&\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-function-name-face)
a81ad225
SM
202 ;; Additionally underline non-scalar variables. Maybe this is a bad idea.
203 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face)
79b3e376
SM
204 ("[$*]{?\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-variable-name-face)
205 ("\\([@%]\\|\\$#\\)\\(\\sw+\\(::\\sw+\\)*\\)"
3e7fc8bd 206 (2 (cons font-lock-variable-name-face '(underline))))
79b3e376 207 ("<\\(\\sw+\\)>" 1 font-lock-constant-face)
a81ad225
SM
208 ;;
209 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
79b3e376 210 ("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
883212ce 211 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
3ca0d0b4 212 ("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face)))
3e7fc8bd
SM
213 "Gaudy level highlighting for Perl mode.")
214
215(defvar perl-font-lock-keywords perl-font-lock-keywords-1
216 "Default expressions to highlight in Perl mode.")
217
d3627c47
SM
218(defvar perl-quote-like-pairs
219 '((?\( . ?\)) (?\[ . ?\]) (?\{ . ?\}) (?\< . ?\>)))
220
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 /.../.../
238;;
239;; <file*glob>
cf38dd42
SM
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)
cf38dd42
SM
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.
323885fd 255 ("\\$ ?{?^?[_[:alpha:]][_[:alnum:]]*\\('\\)[_[:alpha:]]" (1 "_"))
cf38dd42
SM
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 "."))
3225dcaa
SM
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))))
cf38dd42
SM
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"
8a7fd442 279 "grep" "map" "not" "or" "and" "for" "foreach"))
cf38dd42
SM
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)))))
a5daf810 294 ("\\(^\\|[?:.,;=!~({[ \t]\\)\\([msy]\\|q[qxrw]?\\|tr\\)\\>\\s-*\\(?:\\([^])}>= \n\t]\\)\\|\\(?3:=\\)[^>]\\)"
cf38dd42
SM
295 ;; Nasty cases:
296 ;; /foo/m $a->m $#m $m @m %m
297 ;; \s (appears often in regexps).
298 ;; -s file
a5daf810 299 ;; y => 3
cf38dd42
SM
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.
306 nil
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 "\"")))
323885fd
SM
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.
323 st
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))))
335 )
cf38dd42 336 (point) end)))
d3627c47
SM
337
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)
343 st)
344 "Syntax table used internally for processing quote-like operators.")
345
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))
4a0aa1d9 354
cf38dd42
SM
355(defun perl-syntax-propertize-special-constructs (limit)
356 "Propertize special constructs like regexps and formats."
8b9e43d1
SM
357 (let ((state (syntax-ppss))
358 char)
cf38dd42 359 (cond
323885fd
SM
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"))))))
cf38dd42
SM
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 "\""))))
385 (t
386 ;; This is regexp like quote thingy.
387 (setq char (char-after (nth 8 state)))
ab0a61d0
SM
388 (let ((startpos (point))
389 (twoargs (save-excursion
cf38dd42
SM
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
81fdff00 406 (progn
cf38dd42
SM
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)
412 t)
ab0a61d0
SM
413 ;; In case of error, make sure we don't move backward.
414 (scan-error (goto-char startpos) nil))
cf38dd42 415 (not (or (nth 8 (parse-partial-sexp
663b1677
SM
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))
cf38dd42
SM
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)
81fdff00
SM
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))
cf38dd42 447 'syntax-multiline t)
81fdff00 448 ;;
cf38dd42 449 (when (< (point) limit)
81fdff00
SM
450 (put-text-property (point) (1+ (point))
451 'syntax-table
452 (if (assoc (char-after)
453 perl-quote-like-pairs)
cf38dd42
SM
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)))))))))
464
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))))
9e551477 494
5636765c 495(defcustom perl-indent-level 4
fb7ada5f 496 "Indentation of Perl statements with respect to containing block."
8ffa1a0b 497 :type 'integer)
ee0fb228 498
2d5590e0 499;; Is is not unusual to put both things like perl-indent-level and
ee0fb228
DN
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
2d5590e0 502;; about the variable. Autoload these here, so that no warning is
ee0fb228
DN
503;; issued when using either perl-mode or cperl-mode.
504;;;###autoload(put 'perl-indent-level 'safe-local-variable 'integerp)
2d5590e0
DN
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)
ee0fb228 510
5636765c 511(defcustom perl-continued-statement-offset 4
fb7ada5f 512 "Extra indent for lines not starting new statements."
8ffa1a0b 513 :type 'integer)
5636765c 514(defcustom perl-continued-brace-offset -4
fb7ada5f 515 "Extra indent for substatements that start with open-braces.
5636765c 516This is in addition to `perl-continued-statement-offset'."
8ffa1a0b 517 :type 'integer)
5636765c 518(defcustom perl-brace-offset 0
fb7ada5f 519 "Extra indentation for braces, compared with other text in same context."
8ffa1a0b 520 :type 'integer)
5636765c 521(defcustom perl-brace-imaginary-offset 0
fb7ada5f 522 "Imagined indentation of an open brace that actually follows a statement."
8ffa1a0b 523 :type 'integer)
5636765c 524(defcustom perl-label-offset -2
fb7ada5f 525 "Offset of Perl label lines relative to usual indentation."
8ffa1a0b 526 :type 'integer)
df3fd736 527(defcustom perl-indent-continued-arguments nil
fb7ada5f 528 "If non-nil offset of argument lines relative to usual indentation.
df3fd736 529If nil, continued arguments are aligned with the first argument."
8ffa1a0b 530 :type '(choice integer (const nil)))
5636765c 531
fc72b15c
PO
532(defcustom perl-indent-parens-as-block nil
533 "Non-nil means that non-block ()-, {}- and []-groups are indented as blocks.
534The closing bracket is aligned with the line of the opening bracket,
535not the contents of the brackets."
2a1e2476 536 :version "24.3"
8ffa1a0b 537 :type 'boolean)
fc72b15c 538
bbce4eb4
SM
539(defcustom perl-tab-always-indent tab-always-indent
540 "Non-nil means TAB in Perl mode always indents the current line.
10e6ca88 541Otherwise it inserts a tab character if you type it past the first
5636765c 542nonwhite character on the line."
8ffa1a0b 543 :type 'boolean)
2076c87c 544
15cb2300
RS
545;; I changed the default to nil for consistency with general Emacs
546;; conventions -- rms.
5636765c 547(defcustom perl-tab-to-comment nil
fb7ada5f 548 "Non-nil means TAB moves to eol or makes a comment in some cases.
10e6ca88
RS
549For lines which don't need indenting, TAB either indents an
550existing comment, moves to end-of-line, or if at end-of-line already,
5636765c 551create a new comment."
8ffa1a0b 552 :type 'boolean)
5636765c 553
8ffa1a0b 554(defcustom perl-nochange "\f"
fb7ada5f 555 "Lines starting with this regular expression are not auto-indented."
f5307782 556 :type 'regexp
8ffa1a0b 557 :options '(";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"))
35c5f5d3
SM
558
559;; Outline support
560
561(defvar perl-outline-regexp
562 (concat (mapconcat 'cadr perl-imenu-generic-expression "\\|")
563 "\\|^=cut\\>"))
564
565(defun perl-outline-level ()
566 (cond
79b3e376
SM
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)))
35c5f5d3
SM
571 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?0))
572 ((looking-at "=cut") 1)
573 (t 3)))
ba03d0d9
CY
574
575(defun perl-current-defun-name ()
576 "The `add-log-current-defun' function in Perl mode."
9dffb5b6
CY
577 (save-excursion
578 (if (re-search-backward "^sub[ \t]+\\([^({ \t\n]+\\)" nil t)
579 (match-string-no-properties 1))))
580
2076c87c 581\f
8eac6e91
RS
582(defvar perl-mode-hook nil
583 "Normal hook to run when entering Perl mode.")
584
d06ad999 585;;;###autoload
175069ef 586(define-derived-mode perl-mode prog-mode "Perl"
2076c87c
JB
587 "Major mode for editing Perl code.
588Expression and list commands understand all Perl brackets.
589Tab indents for Perl code.
590Comments are delimited with # ... \\n.
591Paragraphs are separated by blank lines only.
592Delete converts tabs to spaces as it moves back.
593\\{perl-mode-map}
594Variables controlling indentation style:
df3fd736 595 `perl-tab-always-indent'
2076c87c
JB
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.
df3fd736 598 `perl-tab-to-comment'
2076c87c 599 Non-nil means that for lines which don't need indenting, TAB will
a1506d29 600 either delete an empty comment, indent an existing comment, move
2076c87c 601 to end-of-line, or if at end-of-line already, create a new comment.
df3fd736 602 `perl-nochange'
10e6ca88 603 Lines starting with this regular expression are not auto-indented.
df3fd736 604 `perl-indent-level'
2076c87c
JB
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.
df3fd736 608 `perl-continued-statement-offset'
2076c87c
JB
609 Extra indentation given to a substatement, such as the
610 then-clause of an if or body of a while.
df3fd736 611 `perl-continued-brace-offset'
2076c87c 612 Extra indentation given to a brace that starts a substatement.
10e6ca88 613 This is in addition to `perl-continued-statement-offset'.
df3fd736 614 `perl-brace-offset'
2076c87c 615 Extra indentation for line if it starts with an open brace.
df3fd736 616 `perl-brace-imaginary-offset'
2076c87c
JB
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.
df3fd736 619 `perl-label-offset'
2076c87c 620 Extra indentation for line that is a label.
df3fd736
GM
621 `perl-indent-continued-arguments'
622 Offset of argument lines relative to usual indentation.
2076c87c
JB
623
624Various 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
631
10e6ca88 632Turning on Perl mode runs the normal hook `perl-mode-hook'."
175069ef 633 :abbrev-table perl-mode-abbrev-table
92eadba5
CY
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)
3ca0d0b4 643
3e7fc8bd 644 ;; Tell font-lock.el how to handle Perl.
8fc57765
TZ
645 (setq font-lock-defaults '((perl-font-lock-keywords
646 perl-font-lock-keywords-1
647 perl-font-lock-keywords-2)
3ca0d0b4 648 nil nil ((?\_ . "w")) nil
cf38dd42
SM
649 (font-lock-syntactic-face-function
650 . perl-font-lock-syntactic-face-function)))
14dd22d2 651 (setq-local prettify-symbols-alist perl--prettify-symbols-alist)
92eadba5 652 (setq-local syntax-propertize-function #'perl-syntax-propertize-function)
cf38dd42
SM
653 (add-hook 'syntax-propertize-extend-region-functions
654 #'syntax-propertize-multiline 'append 'local)
79b3e376
SM
655 ;; Electricity.
656 ;; FIXME: setup electric-layout-rules.
92eadba5
CY
657 (setq-local electric-indent-chars
658 (append '(?\{ ?\} ?\; ?\:) electric-indent-chars))
79b3e376 659 (add-hook 'electric-indent-functions #'perl-electric-noindent-p nil t)
f42484a2 660 ;; Tell imenu how to handle Perl.
92eadba5 661 (setq-local imenu-generic-expression perl-imenu-generic-expression)
23d107d7 662 (setq imenu-case-fold-search nil)
35c5f5d3 663 ;; Setup outline-minor-mode.
92eadba5 664 (setq-local outline-regexp perl-outline-regexp)
ba03d0d9
CY
665 (setq-local outline-level 'perl-outline-level)
666 (setq-local add-log-current-defun-function #'perl-current-defun-name))
2076c87c
JB
667\f
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.
4b8dfb43
SM
674 comment-column))
675
79b3e376
SM
676(define-obsolete-function-alias 'electric-perl-terminator
677 'perl-electric-terminator "22.1")
8ffa1a0b 678(defun perl-electric-noindent-p (_char)
79b3e376
SM
679 (unless (eolp) 'no-indent))
680
4b8dfb43 681(defun perl-electric-terminator (arg)
8943cfb0
GM
682 "Insert character and maybe adjust indentation.
683If at end-of-line, and not in a comment or a quote, correct the indentation."
2076c87c
JB
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
5b1bdb5f
RS
691 (and comment-start-skip
692 (re-search-forward comment-start-skip insertpos t)) )
1ba983e8 693 (or (/= last-command-event ?:)
2076c87c
JB
694 ;; Colon is special only after a label ....
695 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
a1506d29 696 (let ((pps (parse-partial-sexp
2076c87c
JB
697 (perl-beginning-of-function) insertpos)))
698 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
699 (progn ; must insert, indent, delete
1ba983e8 700 (insert-char last-command-event 1)
2076c87c
JB
701 (perl-indent-line)
702 (delete-char -1))))
703 (self-insert-command (prefix-numeric-value arg)))
79b3e376 704(make-obsolete 'perl-electric-terminator 'electric-indent-mode "24.4")
2076c87c
JB
705
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)))
716\f
717(defun perl-indent-command (&optional arg)
bdd9d085
CY
718 "Indent Perl code in the active region or current line.
719In Transient Mark mode, when the region is active, reindent the region.
720Otherwise, with a prefix argument, reindent the current line
721unconditionally.
2076c87c 722
bdd9d085
CY
723Otherwise, if `perl-tab-always-indent' is nil and point is not in
724the indentation area at the beginning of the line, insert a tab.
2076c87c 725
bdd9d085
CY
726Otherwise, indent the current line. If point was within the
727indentation area, it is moved to the end of the indentation area.
728If the line was already indented properly and point was not
729within the indentation area, and if `perl-tab-to-comment' is
730non-nil (the default), then do the first possible action from the
731following list:
2076c87c
JB
732
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")
bdd9d085
CY
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))
746 (t
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)))
2076c87c 775 (if (eolp)
bdd9d085 776 (progn ; delete existing comment
2076c87c
JB
777 (goto-char (match-beginning 0))
778 (skip-chars-backward " \t")
a89d4ed8 779 (delete-region (point) eol))
2076c87c
JB
780 (if (or (< oldpnt (point)) (= oldpnt eol))
781 (indent-for-comment) ; indent existing comment
bdd9d085
CY
782 (end-of-line))))
783 ((/= oldpnt eol)
784 (end-of-line))
785 (t
2076c87c 786 (message "Use backslash to quote # characters.")
bdd9d085 787 (ding t)))))))))
79b3e376 788(make-obsolete 'perl-indent-command 'indent-according-to-mode "24.4")
2076c87c
JB
789
790(defun perl-indent-line (&optional nochange parse-start)
10e6ca88 791 "Indent current line as Perl code.
a1506d29 792Return the amount the indentation
2076c87c
JB
793changed by, or (parse-state) if line starts in a quoted string."
794 (let ((case-fold-search nil)
795 (pos (- (point-max) (point)))
8ffa1a0b
SM
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))))
2076c87c
JB
801 beg indent shift-amt)
802 (beginning-of-line)
803 (setq beg (point))
804 (setq shift-amt
8ab2646a 805 (cond ((eq (char-after bof) ?=) 0)
4b8dfb43 806 ((listp (setq indent (perl-calculate-indent bof))) indent)
81fdff00 807 ((eq 'noindent indent) indent)
2076c87c
JB
808 ((looking-at (or nochange perl-nochange)) 0)
809 (t
810 (skip-chars-forward " \t\f")
92aba9ab 811 (setq indent (perl-indent-new-calculate nil indent bof))
2076c87c
JB
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))
822
4a0aa1d9
SM
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) '(?\; ?\} ?\{))))
840
2a4407be
SM
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)))))
846
92aba9ab
SM
847(defun perl-indent-new-calculate (&optional virtual default parse-start)
848 (or
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)
66f50b12
SM
857 (when (condition-case nil (progn (forward-sexp -1) t)
858 (scan-error nil))
859 (perl-indent-new-calculate
860 ;; Recalculate the parsing-start, since we may have jumped
861 ;; dangerously close (typically in the case of nested functions).
862 'virtual nil (save-excursion (perl-beginning-of-function))))))
92aba9ab
SM
863 (and (and (= (following-char) ?{)
864 (save-excursion (forward-char) (perl-hanging-paren-p)))
865 (+ (or default (perl-calculate-indent parse-start))
866 perl-brace-offset))
867 (or default (perl-calculate-indent parse-start))))
868
4b8dfb43 869(defun perl-calculate-indent (&optional parse-start)
2076c87c
JB
870 "Return appropriate indentation for current line as Perl code.
871In usual case returns an integer: the column to indent to.
d3627c47
SM
872Returns (parse-state) if line starts inside a string.
873Optional argument PARSE-START should be the position of `beginning-of-defun'."
2076c87c 874 (save-excursion
2076c87c
JB
875 (let ((indent-point (point))
876 (case-fold-search nil)
877 (colon-line-end 0)
878 state containing-sexp)
879 (if parse-start ;used to avoid searching
880 (goto-char parse-start)
881 (perl-beginning-of-function))
4b8dfb43
SM
882 ;; We might be now looking at a local function that has nothing to
883 ;; do with us because `indent-point' is past it. In this case
884 ;; look further back up for another `perl-beginning-of-function'.
885 (while (and (looking-at "{")
886 (save-excursion
887 (beginning-of-line)
888 (looking-at "\\s-+sub\\>"))
8943cfb0
GM
889 (> indent-point (save-excursion
890 (condition-case nil
891 (forward-sexp 1)
892 (scan-error nil))
893 (point))))
4b8dfb43 894 (perl-beginning-of-function))
2076c87c 895 (while (< (point) indent-point) ;repeat until right sexp
2076c87c 896 (setq state (parse-partial-sexp (point) indent-point 0))
d3627c47
SM
897 ;; state = (depth_in_parens innermost_containing_list
898 ;; last_complete_sexp string_terminator_or_nil inside_commentp
899 ;; following_quotep minimum_paren-depth_this_scan)
900 ;; Parsing stops if depth in parentheses becomes equal to third arg.
2076c87c 901 (setq containing-sexp (nth 1 state)))
81fdff00 902 (cond ((nth 3 state) 'noindent) ; In a quoted string?
2076c87c
JB
903 ((null containing-sexp) ; Line is at top level.
904 (skip-chars-forward " \t\f")
fc72b15c
PO
905 (if (memq (following-char)
906 (if perl-indent-parens-as-block '(?\{ ?\( ?\[) '(?\{)))
d3627c47 907 0 ; move to beginning of line if it starts a function body
2076c87c
JB
908 ;; indent a little if this is a continuation line
909 (perl-backward-to-noncomment)
910 (if (or (bobp)
911 (memq (preceding-char) '(?\; ?\})))
912 0 perl-continued-statement-offset)))
913 ((/= (char-after containing-sexp) ?{)
914 ;; line is expression, not statement:
915 ;; indent to just after the surrounding open.
916 (goto-char (1+ containing-sexp))
2a4407be
SM
917 (if (perl-hanging-paren-p)
918 ;; We're indenting an arg of a call like:
919 ;; $a = foobarlongnamefun (
920 ;; arg1
921 ;; arg2
922 ;; );
923 (progn
924 (skip-syntax-backward "(")
e02f48d7 925 (condition-case nil
2a4407be
SM
926 (while (save-excursion
927 (skip-syntax-backward " ") (not (bolp)))
928 (forward-sexp -1))
929 (scan-error nil))
930 (+ (current-column) perl-indent-level))
931 (if perl-indent-continued-arguments
932 (+ perl-indent-continued-arguments (current-indentation))
933 (skip-chars-forward " \t")
934 (current-column))))
2076c87c
JB
935 (t
936 ;; Statement level. Is it a continuation or a new statement?
4a0aa1d9 937 (if (perl-continuation-line-p containing-sexp)
2076c87c
JB
938 ;; This line is continuation of preceding line's statement;
939 ;; indent perl-continued-statement-offset more than the
940 ;; previous line of the statement.
941 (progn
942 (perl-backward-to-start-of-continued-exp containing-sexp)
4a0aa1d9
SM
943 (+ (if (save-excursion
944 (perl-continuation-line-p containing-sexp))
945 ;; If the continued line is itself a continuation
946 ;; line, then align, otherwise add an offset.
947 0 perl-continued-statement-offset)
948 (current-column)
2076c87c 949 (if (save-excursion (goto-char indent-point)
fc72b15c
PO
950 (looking-at
951 (if perl-indent-parens-as-block
952 "[ \t]*[{(\[]" "[ \t]*{")))
2076c87c
JB
953 perl-continued-brace-offset 0)))
954 ;; This line starts a new statement.
955 ;; Position at last unclosed open.
956 (goto-char containing-sexp)
957 (or
2a4407be
SM
958 ;; Is line first statement after an open-brace?
959 ;; If no, find that first statement and indent like it.
960 (save-excursion
d3627c47
SM
961 (forward-char 1)
962 ;; Skip over comments and labels following openbrace.
963 (while (progn
964 (skip-chars-forward " \t\f\n")
965 (cond ((looking-at ";?#")
966 (forward-line 1) t)
8a525646 967 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
5ed619e0 968 (setq colon-line-end (line-end-position))
d3627c47
SM
969 (search-forward ":")))))
970 ;; The first following code counts
971 ;; if it is before the line we want to indent.
972 (and (< (point) indent-point)
973 (if (> colon-line-end (point))
974 (- (current-indentation) perl-label-offset)
975 (current-column))))
976 ;; If no previous statement,
977 ;; indent it relative to line brace is on.
978 ;; For open paren in column zero, don't let statement
979 ;; start there too. If perl-indent-level is zero,
980 ;; use perl-brace-offset + perl-continued-statement-offset
981 ;; For open-braces not the first thing in a line,
982 ;; add in perl-brace-imaginary-offset.
983 (+ (if (and (bolp) (zerop perl-indent-level))
984 (+ perl-brace-offset perl-continued-statement-offset)
985 perl-indent-level)
986 ;; Move back over whitespace before the openbrace.
987 ;; If openbrace is not first nonwhite thing on the line,
988 ;; add the perl-brace-imaginary-offset.
989 (progn (skip-chars-backward " \t")
990 (if (bolp) 0 perl-brace-imaginary-offset))
991 ;; If the openbrace is preceded by a parenthesized exp,
992 ;; move to the beginning of that;
993 ;; possibly a different line
994 (progn
995 (if (eq (preceding-char) ?\))
996 (forward-sexp -1))
997 ;; Get initial indentation of the line we are on.
998 (current-indentation))))))))))
2076c87c
JB
999
1000(defun perl-backward-to-noncomment ()
1001 "Move point backward to after the first non-white-space, skipping comments."
d3627c47 1002 (interactive)
df3fd736 1003 (forward-comment (- (point-max))))
2076c87c
JB
1004
1005(defun perl-backward-to-start-of-continued-exp (lim)
1006 (if (= (preceding-char) ?\))
1007 (forward-sexp -1))
1008 (beginning-of-line)
1009 (if (<= (point) lim)
1010 (goto-char (1+ lim)))
1011 (skip-chars-forward " \t\f"))
1012\f
1013;; note: this may be slower than the c-mode version, but I can understand it.
4b8dfb43
SM
1014(defalias 'indent-perl-exp 'perl-indent-exp)
1015(defun perl-indent-exp ()
2076c87c
JB
1016 "Indent each line of the Perl grouping following point."
1017 (interactive)
1018 (let* ((case-fold-search nil)
1019 (oldpnt (point-marker))
1020 (bof-mark (save-excursion
1021 (end-of-line 2)
1022 (perl-beginning-of-function)
1023 (point-marker)))
1024 eol last-mark lsexp-mark delta)
1025 (if (= (char-after (marker-position bof-mark)) ?=)
1026 (message "Can't indent a format statement")
1027 (message "Indenting Perl expression...")
5ed619e0 1028 (setq eol (line-end-position))
2076c87c
JB
1029 (save-excursion ; locate matching close paren
1030 (while (and (not (eobp)) (<= (point) eol))
1031 (parse-partial-sexp (point) (point-max) 0))
1032 (setq last-mark (point-marker)))
1033 (setq lsexp-mark bof-mark)
1034 (beginning-of-line)
1035 (while (< (point) (marker-position last-mark))
1036 (setq delta (perl-indent-line nil (marker-position bof-mark)))
1037 (if (numberp delta) ; unquoted start-of-line?
a1506d29 1038 (progn
2076c87c
JB
1039 (if (eolp)
1040 (delete-horizontal-space))
1041 (setq lsexp-mark (point-marker))))
1042 (end-of-line)
1043 (setq eol (point))
1044 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
1045 (progn ; line ends in a comment
1046 (beginning-of-line)
1047 (if (or (not (looking-at "\\s-*;?#"))
1048 (listp delta)
1049 (and (/= 0 delta)
1050 (= (- (current-indentation) delta) comment-column)))
5b1bdb5f
RS
1051 (if (and comment-start-skip
1052 (re-search-forward comment-start-skip eol t))
2076c87c
JB
1053 (indent-for-comment))))) ; indent existing comment
1054 (forward-line 1))
1055 (goto-char (marker-position oldpnt))
1056 (message "Indenting Perl expression...done"))))
1057\f
1058(defun perl-beginning-of-function (&optional arg)
1059 "Move backward to next beginning-of-function, or as far as possible.
1060With argument, repeat that many times; negative args move forward.
1061Returns new value of point in all cases."
1062 (interactive "p")
1063 (or arg (setq arg 1))
1064 (if (< arg 0) (forward-char 1))
1065 (and (/= arg 0)
cbe8cf2a
SM
1066 (re-search-backward
1067 "^\\s(\\|^\\s-*sub\\b[ \t\n]*\\_<[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
1068 nil 'move arg)
2076c87c
JB
1069 (goto-char (1- (match-end 0))))
1070 (point))
1071
1072;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
1073;; no bugs have been removed :-)
1074(defun perl-end-of-function (&optional arg)
1075 "Move forward to next end-of-function.
1076The end of a function is found by moving forward from the beginning of one.
1077With argument, repeat that many times; negative args move backward."
1078 (interactive "p")
1079 (or arg (setq arg 1))
1080 (let ((first t))
1081 (while (and (> arg 0) (< (point) (point-max)))
bbce4eb4 1082 (let ((pos (point)))
2076c87c
JB
1083 (while (progn
1084 (if (and first
1085 (progn
1086 (forward-char 1)
1087 (perl-beginning-of-function 1)
1088 (not (bobp))))
1089 nil
1090 (or (bobp) (forward-char -1))
1091 (perl-beginning-of-function -1))
1092 (setq first nil)
1093 (forward-list 1)
1094 (skip-chars-forward " \t")
1095 (if (looking-at "[#\n]")
1096 (forward-line 1))
1097 (<= (point) pos))))
1098 (setq arg (1- arg)))
1099 (while (< arg 0)
1100 (let ((pos (point)))
1101 (perl-beginning-of-function 1)
1102 (forward-sexp 1)
1103 (forward-line 1)
1104 (if (>= (point) pos)
1105 (if (progn (perl-beginning-of-function 2) (not (bobp)))
1106 (progn
1107 (forward-list 1)
1108 (skip-chars-forward " \t")
1109 (if (looking-at "[#\n]")
1110 (forward-line 1)))
1111 (goto-char (point-min)))))
1112 (setq arg (1+ arg)))))
1113
4b8dfb43
SM
1114(defalias 'mark-perl-function 'perl-mark-function)
1115(defun perl-mark-function ()
2076c87c
JB
1116 "Put mark at end of Perl function, point at beginning."
1117 (interactive)
1118 (push-mark (point))
1119 (perl-end-of-function)
1120 (push-mark (point))
1121 (perl-beginning-of-function)
1122 (backward-paragraph))
1123
86175613
RS
1124(provide 'perl-mode)
1125
1126;;; perl-mode.el ends here