Update FSF's address.
[bpt/emacs.git] / lisp / progmodes / perl-mode.el
1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs
2
3 ;; Copyright (C) 1990, 1994 Free Software Foundation, Inc.
4
5 ;; Author: William F. Mann
6 ;; Maintainer: FSF
7 ;; Adapted-By: ESR
8 ;; Keywords: languages
9
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
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
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
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
29
30 ;;; Commentary:
31
32 ;; To enter perl-mode automatically, add (autoload 'perl-mode "perl-mode")
33 ;; to your .emacs file and change the first line of your perl script to:
34 ;; #!/usr/bin/perl -- # -*-Perl-*-
35 ;; With arguments to perl:
36 ;; #!/usr/bin/perl -P- # -*-Perl-*-
37 ;; To handle files included with do 'filename.pl';, add something like
38 ;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode))
39 ;; auto-mode-alist))
40 ;; to your .emacs file; otherwise the .pl suffix defaults to prolog-mode.
41
42 ;; This code is based on the 18.53 version c-mode.el, with extensive
43 ;; rewriting. Most of the features of c-mode survived intact.
44
45 ;; I added a new feature which adds functionality to TAB; it is controlled
46 ;; by the variable perl-tab-to-comment. With it enabled, TAB does the
47 ;; first thing it can from the following list: change the indentation;
48 ;; move past leading white space; delete an empty comment; reindent a
49 ;; comment; move to end of line; create an empty comment; tell you that
50 ;; the line ends in a quoted string, or has a # which should be a \#.
51
52 ;; If your machine is slow, you may want to remove some of the bindings
53 ;; to electric-perl-terminator. I changed the indenting defaults to be
54 ;; what Larry Wall uses in perl/lib, but left in all the options.
55
56 ;; I also tuned a few things: comments and labels starting in column
57 ;; zero are left there by indent-perl-exp; perl-beginning-of-function
58 ;; goes back to the first open brace/paren in column zero, the open brace
59 ;; in 'sub ... {', or the equal sign in 'format ... ='; indent-perl-exp
60 ;; (meta-^q) indents from the current line through the close of the next
61 ;; brace/paren, so you don't need to start exactly at a brace or paren.
62
63 ;; It may be good style to put a set of redundant braces around your
64 ;; main program. This will let you reindent it with meta-^q.
65
66 ;; Known problems (these are all caused by limitations in the Emacs Lisp
67 ;; parsing routine (parse-partial-sexp), which was not designed for such
68 ;; a rich language; writing a more suitable parser would be a big job):
69 ;; 1) Regular expression delimiters do not act as quotes, so special
70 ;; characters such as `'"#:;[](){} may need to be backslashed
71 ;; in regular expressions and in both parts of s/// and tr///.
72 ;; 2) The globbing syntax <pattern> is not recognized, so special
73 ;; characters in the pattern string must be backslashed.
74 ;; 3) The q, qq, and << quoting operators are not recognized; see below.
75 ;; 4) \ (backslash) always quotes the next character, so '\' is
76 ;; treated as the start of a string. Use "\\" as a work-around.
77 ;; 5) To make variables such a $' and $#array work, perl-mode treats
78 ;; $ just like backslash, so '$' is the same as problem 5.
79 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
80 ;; unmatched }. See below.
81 ;; 7) When ' (quote) is used as a package name separator, perl-mode
82 ;; doesn't understand, and thinks it is seeing a quoted string.
83
84 ;; Here are some ugly tricks to bypass some of these problems: the perl
85 ;; expression /`/ (that's a back-tick) usually evaluates harmlessly,
86 ;; but will trick perl-mode into starting a quoted string, which
87 ;; can be ended with another /`/. Assuming you have no embedded
88 ;; back-ticks, this can used to help solve problem 3:
89 ;;
90 ;; /`/; $ugly = q?"'$?; /`/;
91 ;;
92 ;; To solve problem 6, add a /{/; before each use of ${var}:
93 ;; /{/; while (<${glob_me}>) ...
94 ;;
95 ;; Problem 7 is even worse, but this 'fix' does work :-(
96 ;; $DB'stop#'
97 ;; [$DB'line#'
98 ;; ] =~ s/;9$//;
99
100 ;;; Code:
101
102 (defvar perl-mode-abbrev-table nil
103 "Abbrev table in use in perl-mode buffers.")
104 (define-abbrev-table 'perl-mode-abbrev-table ())
105
106 (defvar perl-mode-map ()
107 "Keymap used in Perl mode.")
108 (if perl-mode-map
109 ()
110 (setq perl-mode-map (make-sparse-keymap))
111 (define-key perl-mode-map "{" 'electric-perl-terminator)
112 (define-key perl-mode-map "}" 'electric-perl-terminator)
113 (define-key perl-mode-map ";" 'electric-perl-terminator)
114 (define-key perl-mode-map ":" 'electric-perl-terminator)
115 (define-key perl-mode-map "\e\C-a" 'perl-beginning-of-function)
116 (define-key perl-mode-map "\e\C-e" 'perl-end-of-function)
117 (define-key perl-mode-map "\e\C-h" 'mark-perl-function)
118 (define-key perl-mode-map "\e\C-q" 'indent-perl-exp)
119 (define-key perl-mode-map "\177" 'backward-delete-char-untabify)
120 (define-key perl-mode-map "\t" 'perl-indent-command))
121
122 (autoload 'c-macro-expand "cmacexp"
123 "Display the result of expanding all C macros occurring in the region.
124 The expansion is entirely correct because it uses the C preprocessor."
125 t)
126
127 (defvar perl-mode-syntax-table nil
128 "Syntax table in use in perl-mode buffers.")
129
130 (if perl-mode-syntax-table
131 ()
132 (setq perl-mode-syntax-table (make-syntax-table (standard-syntax-table)))
133 (modify-syntax-entry ?\n ">" perl-mode-syntax-table)
134 (modify-syntax-entry ?# "<" perl-mode-syntax-table)
135 (modify-syntax-entry ?$ "/" perl-mode-syntax-table)
136 (modify-syntax-entry ?% "." perl-mode-syntax-table)
137 (modify-syntax-entry ?& "." perl-mode-syntax-table)
138 (modify-syntax-entry ?\' "\"" perl-mode-syntax-table)
139 (modify-syntax-entry ?* "." perl-mode-syntax-table)
140 (modify-syntax-entry ?+ "." perl-mode-syntax-table)
141 (modify-syntax-entry ?- "." perl-mode-syntax-table)
142 (modify-syntax-entry ?/ "." perl-mode-syntax-table)
143 (modify-syntax-entry ?< "." perl-mode-syntax-table)
144 (modify-syntax-entry ?= "." perl-mode-syntax-table)
145 (modify-syntax-entry ?> "." perl-mode-syntax-table)
146 (modify-syntax-entry ?\\ "\\" perl-mode-syntax-table)
147 (modify-syntax-entry ?` "\"" perl-mode-syntax-table)
148 (modify-syntax-entry ?| "." perl-mode-syntax-table)
149 )
150
151 (defvar perl-imenu-generic-expression
152 '(
153 ;; Functions
154 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)\\(\\s-\\|\n\\)*{" 1 )
155 ;;Variables
156 ("Variables" "^\\([$@%][-A-Za-z0-9+_:]+\\)\\s-*=" 1 )
157 )
158 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
159
160 (defvar perl-font-lock-keywords
161 (list
162 ; ("if" "until" "while" "elsif" "else" "unless" "for" "foreach" "continue"
163 ; "exit" "die" "last" "goto" "next" "redo" "return" "local" "exec")
164 (concat "\\<\\("
165 "continue\\|die\\|e\\(ls\\(e\\|if\\)\\|x\\(ec\\|it\\)\\)\\|"
166 "for\\(\\|each\\)\\|goto\\|if\\|l\\(ast\\|ocal\\)\\|next\\|"
167 "re\\(do\\|turn\\)\\|un\\(less\\|til\\)\\|while"
168 "\\)\\>")
169 ; ("#endif" "#else" "#ifdef" "#ifndef" "#if" "#include" "#define" "#undef")
170 (cons (concat "#\\(define\\|e\\(lse\\|ndif\\)\\|"
171 "i\\(f\\(\\|def\\|ndef\\)\\|nclude\\)\\|undef\\)\\>")
172 'font-lock-reference-face)
173 '("^[ \n\t]*sub[ \t]+\\([^ \t{]+\\)[ \t]*[{]" 1 font-lock-function-name-face)
174 '("[ \n\t{]*\\(eval\\)[ \n\t(;]" 1 font-lock-function-name-face)
175 '("\\(--- .* ---\\|=== .* ===\\)" . font-lock-string-face)
176 )
177 "Additional expressions to highlight in Perl mode.")
178
179 (defvar perl-indent-level 4
180 "*Indentation of Perl statements with respect to containing block.")
181 (defvar perl-continued-statement-offset 4
182 "*Extra indent for lines not starting new statements.")
183 (defvar perl-continued-brace-offset -4
184 "*Extra indent for substatements that start with open-braces.
185 This is in addition to `perl-continued-statement-offset'.")
186 (defvar perl-brace-offset 0
187 "*Extra indentation for braces, compared with other text in same context.")
188 (defvar perl-brace-imaginary-offset 0
189 "*Imagined indentation of an open brace that actually follows a statement.")
190 (defvar perl-label-offset -2
191 "*Offset of Perl label lines relative to usual indentation.")
192
193 (defvar perl-tab-always-indent t
194 "*Non-nil means TAB in Perl mode always indents the current line.
195 Otherwise it inserts a tab character if you type it past the first
196 nonwhite character on the line.")
197
198 ;; I changed the default to nil for consistency with general Emacs
199 ;; conventions -- rms.
200 (defvar perl-tab-to-comment nil
201 "*Non-nil means TAB moves to eol or makes a comment in some cases.
202 For lines which don't need indenting, TAB either indents an
203 existing comment, moves to end-of-line, or if at end-of-line already,
204 create a new comment.")
205
206 (defvar perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:"
207 "*Lines starting with this regular expression are not auto-indented.")
208 \f
209 ;;;###autoload
210 (defun perl-mode ()
211 "Major mode for editing Perl code.
212 Expression and list commands understand all Perl brackets.
213 Tab indents for Perl code.
214 Comments are delimited with # ... \\n.
215 Paragraphs are separated by blank lines only.
216 Delete converts tabs to spaces as it moves back.
217 \\{perl-mode-map}
218 Variables controlling indentation style:
219 perl-tab-always-indent
220 Non-nil means TAB in Perl mode should always indent the current line,
221 regardless of where in the line point is when the TAB command is used.
222 perl-tab-to-comment
223 Non-nil means that for lines which don't need indenting, TAB will
224 either delete an empty comment, indent an existing comment, move
225 to end-of-line, or if at end-of-line already, create a new comment.
226 perl-nochange
227 Lines starting with this regular expression are not auto-indented.
228 perl-indent-level
229 Indentation of Perl statements within surrounding block.
230 The surrounding block's indentation is the indentation
231 of the line on which the open-brace appears.
232 perl-continued-statement-offset
233 Extra indentation given to a substatement, such as the
234 then-clause of an if or body of a while.
235 perl-continued-brace-offset
236 Extra indentation given to a brace that starts a substatement.
237 This is in addition to `perl-continued-statement-offset'.
238 perl-brace-offset
239 Extra indentation for line if it starts with an open brace.
240 perl-brace-imaginary-offset
241 An open brace following other text is treated as if it were
242 this far to the right of the start of its line.
243 perl-label-offset
244 Extra indentation for line that is a label.
245
246 Various indentation styles: K&R BSD BLK GNU LW
247 perl-indent-level 5 8 0 2 4
248 perl-continued-statement-offset 5 8 4 2 4
249 perl-continued-brace-offset 0 0 0 0 -4
250 perl-brace-offset -5 -8 0 0 0
251 perl-brace-imaginary-offset 0 0 4 0 0
252 perl-label-offset -5 -8 -2 -2 -2
253
254 Turning on Perl mode runs the normal hook `perl-mode-hook'."
255 (interactive)
256 (kill-all-local-variables)
257 (use-local-map perl-mode-map)
258 (setq major-mode 'perl-mode)
259 (setq mode-name "Perl")
260 (setq local-abbrev-table perl-mode-abbrev-table)
261 (set-syntax-table perl-mode-syntax-table)
262 (make-local-variable 'paragraph-start)
263 (setq paragraph-start (concat "$\\|" page-delimiter))
264 (make-local-variable 'paragraph-separate)
265 (setq paragraph-separate paragraph-start)
266 (make-local-variable 'paragraph-ignore-fill-prefix)
267 (setq paragraph-ignore-fill-prefix t)
268 (make-local-variable 'indent-line-function)
269 (setq indent-line-function 'perl-indent-line)
270 (make-local-variable 'require-final-newline)
271 (setq require-final-newline t)
272 (make-local-variable 'comment-start)
273 (setq comment-start "# ")
274 (make-local-variable 'comment-end)
275 (setq comment-end "")
276 (make-local-variable 'comment-column)
277 (setq comment-column 32)
278 (make-local-variable 'comment-start-skip)
279 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *")
280 (make-local-variable 'comment-indent-function)
281 (setq comment-indent-function 'perl-comment-indent)
282 (make-local-variable 'parse-sexp-ignore-comments)
283 (setq parse-sexp-ignore-comments t)
284 (make-local-variable 'font-lock-defaults)
285 (setq font-lock-defaults '(perl-font-lock-keywords))
286 ;; Tell imenu how to handle Perl.
287 (make-local-variable 'imenu-generic-expression)
288 (setq imenu-generic-expression perl-imenu-generic-expression)
289 (run-hooks 'perl-mode-hook))
290 \f
291 ;; This is used by indent-for-comment
292 ;; to decide how much to indent a comment in Perl code
293 ;; based on its context.
294 (defun perl-comment-indent ()
295 (if (and (bolp) (not (eolp)))
296 0 ;Existing comment at bol stays there.
297 (save-excursion
298 (skip-chars-backward " \t")
299 (max (if (bolp) ;Else indent at comment column
300 0 ; except leave at least one space if
301 (1+ (current-column))) ; not at beginning of line.
302 comment-column))))
303
304 (defun electric-perl-terminator (arg)
305 "Insert character and adjust indentation.
306 If at end-of-line, and not in a comment or a quote, correct the's indentation."
307 (interactive "P")
308 (let ((insertpos (point)))
309 (and (not arg) ; decide whether to indent
310 (eolp)
311 (save-excursion
312 (beginning-of-line)
313 (and (not ; eliminate comments quickly
314 (re-search-forward comment-start-skip insertpos t))
315 (or (/= last-command-char ?:)
316 ;; Colon is special only after a label ....
317 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
318 (let ((pps (parse-partial-sexp
319 (perl-beginning-of-function) insertpos)))
320 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
321 (progn ; must insert, indent, delete
322 (insert-char last-command-char 1)
323 (perl-indent-line)
324 (delete-char -1))))
325 (self-insert-command (prefix-numeric-value arg)))
326
327 ;; not used anymore, but may be useful someday:
328 ;;(defun perl-inside-parens-p ()
329 ;; (condition-case ()
330 ;; (save-excursion
331 ;; (save-restriction
332 ;; (narrow-to-region (point)
333 ;; (perl-beginning-of-function))
334 ;; (goto-char (point-max))
335 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
336 ;; (error nil)))
337 \f
338 (defun perl-indent-command (&optional arg)
339 "Indent current line as Perl code, or optionally, insert a tab character.
340
341 With an argument, indent the current line, regardless of other options.
342
343 If `perl-tab-always-indent' is nil and point is not in the indentation
344 area at the beginning of the line, simply insert a tab.
345
346 Otherwise, indent the current line. If point was within the indentation
347 area it is moved to the end of the indentation area. If the line was
348 already indented properly and point was not within the indentation area,
349 and if `perl-tab-to-comment' is non-nil (the default), then do the first
350 possible action from the following list:
351
352 1) delete an empty comment
353 2) move forward to start of comment, indenting if necessary
354 3) move forward to end of line
355 4) create an empty comment
356 5) move backward to start of comment, indenting if necessary."
357 (interactive "P")
358 (if arg ; If arg, just indent this line
359 (perl-indent-line "\f")
360 (if (and (not perl-tab-always-indent)
361 (> (current-column) (current-indentation)))
362 (insert-tab)
363 (let (bof lsexp delta (oldpnt (point)))
364 (beginning-of-line)
365 (setq lsexp (point))
366 (setq bof (perl-beginning-of-function))
367 (goto-char oldpnt)
368 (setq delta (perl-indent-line "\f\\|;?#" bof))
369 (and perl-tab-to-comment
370 (= oldpnt (point)) ; done if point moved
371 (if (listp delta) ; if line starts in a quoted string
372 (setq lsexp (or (nth 2 delta) bof))
373 (= delta 0)) ; done if indenting occurred
374 (let (eol state)
375 (end-of-line)
376 (setq eol (point))
377 (if (= (char-after bof) ?=)
378 (if (= oldpnt eol)
379 (message "In a format statement"))
380 (setq state (parse-partial-sexp lsexp eol))
381 (if (nth 3 state)
382 (if (= oldpnt eol) ; already at eol in a string
383 (message "In a string which starts with a %c."
384 (nth 3 state)))
385 (if (not (nth 4 state))
386 (if (= oldpnt eol) ; no comment, create one?
387 (indent-for-comment))
388 (beginning-of-line)
389 (if (re-search-forward comment-start-skip eol 'move)
390 (if (eolp)
391 (progn ; kill existing comment
392 (goto-char (match-beginning 0))
393 (skip-chars-backward " \t")
394 (kill-region (point) eol))
395 (if (or (< oldpnt (point)) (= oldpnt eol))
396 (indent-for-comment) ; indent existing comment
397 (end-of-line)))
398 (if (/= oldpnt eol)
399 (end-of-line)
400 (message "Use backslash to quote # characters.")
401 (ding t))))))))))))
402
403 (defun perl-indent-line (&optional nochange parse-start)
404 "Indent current line as Perl code.
405 Return the amount the indentation
406 changed by, or (parse-state) if line starts in a quoted string."
407 (let ((case-fold-search nil)
408 (pos (- (point-max) (point)))
409 (bof (or parse-start (save-excursion (perl-beginning-of-function))))
410 beg indent shift-amt)
411 (beginning-of-line)
412 (setq beg (point))
413 (setq shift-amt
414 (cond ((= (char-after bof) ?=) 0)
415 ((listp (setq indent (calculate-perl-indent bof))) indent)
416 ((looking-at (or nochange perl-nochange)) 0)
417 (t
418 (skip-chars-forward " \t\f")
419 (cond ((looking-at "\\(\\w\\|\\s_\\)+:")
420 (setq indent (max 1 (+ indent perl-label-offset))))
421 ((= (following-char) ?})
422 (setq indent (- indent perl-indent-level)))
423 ((= (following-char) ?{)
424 (setq indent (+ indent perl-brace-offset))))
425 (- indent (current-column)))))
426 (skip-chars-forward " \t\f")
427 (if (and (numberp shift-amt) (/= 0 shift-amt))
428 (progn (delete-region beg (point))
429 (indent-to indent)))
430 ;; If initial point was within line's indentation,
431 ;; position after the indentation. Else stay at same point in text.
432 (if (> (- (point-max) pos) (point))
433 (goto-char (- (point-max) pos)))
434 shift-amt))
435
436 (defun calculate-perl-indent (&optional parse-start)
437 "Return appropriate indentation for current line as Perl code.
438 In usual case returns an integer: the column to indent to.
439 Returns (parse-state) if line starts inside a string."
440 (save-excursion
441 (beginning-of-line)
442 (let ((indent-point (point))
443 (case-fold-search nil)
444 (colon-line-end 0)
445 state containing-sexp)
446 (if parse-start ;used to avoid searching
447 (goto-char parse-start)
448 (perl-beginning-of-function))
449 (while (< (point) indent-point) ;repeat until right sexp
450 (setq parse-start (point))
451 (setq state (parse-partial-sexp (point) indent-point 0))
452 ; state = (depth_in_parens innermost_containing_list last_complete_sexp
453 ; string_terminator_or_nil inside_commentp following_quotep
454 ; minimum_paren-depth_this_scan)
455 ; Parsing stops if depth in parentheses becomes equal to third arg.
456 (setq containing-sexp (nth 1 state)))
457 (cond ((nth 3 state) state) ; In a quoted string?
458 ((null containing-sexp) ; Line is at top level.
459 (skip-chars-forward " \t\f")
460 (if (= (following-char) ?{)
461 0 ; move to beginning of line if it starts a function body
462 ;; indent a little if this is a continuation line
463 (perl-backward-to-noncomment)
464 (if (or (bobp)
465 (memq (preceding-char) '(?\; ?\})))
466 0 perl-continued-statement-offset)))
467 ((/= (char-after containing-sexp) ?{)
468 ;; line is expression, not statement:
469 ;; indent to just after the surrounding open.
470 (goto-char (1+ containing-sexp))
471 (current-column))
472 (t
473 ;; Statement level. Is it a continuation or a new statement?
474 ;; Find previous non-comment character.
475 (perl-backward-to-noncomment)
476 ;; Back up over label lines, since they don't
477 ;; affect whether our line is a continuation.
478 (while (or (eq (preceding-char) ?\,)
479 (and (eq (preceding-char) ?:)
480 (memq (char-syntax (char-after (- (point) 2)))
481 '(?w ?_))))
482 (if (eq (preceding-char) ?\,)
483 (perl-backward-to-start-of-continued-exp containing-sexp)
484 (beginning-of-line))
485 (perl-backward-to-noncomment))
486 ;; Now we get the answer.
487 (if (not (memq (preceding-char) '(?\; ?\} ?\{)))
488 ;; This line is continuation of preceding line's statement;
489 ;; indent perl-continued-statement-offset more than the
490 ;; previous line of the statement.
491 (progn
492 (perl-backward-to-start-of-continued-exp containing-sexp)
493 (+ perl-continued-statement-offset (current-column)
494 (if (save-excursion (goto-char indent-point)
495 (looking-at "[ \t]*{"))
496 perl-continued-brace-offset 0)))
497 ;; This line starts a new statement.
498 ;; Position at last unclosed open.
499 (goto-char containing-sexp)
500 (or
501 ;; If open paren is in col 0, close brace is special
502 (and (bolp)
503 (save-excursion (goto-char indent-point)
504 (looking-at "[ \t]*}"))
505 perl-indent-level)
506 ;; Is line first statement after an open-brace?
507 ;; If no, find that first statement and indent like it.
508 (save-excursion
509 (forward-char 1)
510 ;; Skip over comments and labels following openbrace.
511 (while (progn
512 (skip-chars-forward " \t\f\n")
513 (cond ((looking-at ";?#")
514 (forward-line 1) t)
515 ((looking-at "\\(\\w\\|\\s_\\)+:")
516 (save-excursion
517 (end-of-line)
518 (setq colon-line-end (point)))
519 (search-forward ":")))))
520 ;; The first following code counts
521 ;; if it is before the line we want to indent.
522 (and (< (point) indent-point)
523 (if (> colon-line-end (point))
524 (- (current-indentation) perl-label-offset)
525 (current-column))))
526 ;; If no previous statement,
527 ;; indent it relative to line brace is on.
528 ;; For open paren in column zero, don't let statement
529 ;; start there too. If perl-indent-level is zero,
530 ;; use perl-brace-offset + perl-continued-statement-offset
531 ;; For open-braces not the first thing in a line,
532 ;; add in perl-brace-imaginary-offset.
533 (+ (if (and (bolp) (zerop perl-indent-level))
534 (+ perl-brace-offset perl-continued-statement-offset)
535 perl-indent-level)
536 ;; Move back over whitespace before the openbrace.
537 ;; If openbrace is not first nonwhite thing on the line,
538 ;; add the perl-brace-imaginary-offset.
539 (progn (skip-chars-backward " \t")
540 (if (bolp) 0 perl-brace-imaginary-offset))
541 ;; If the openbrace is preceded by a parenthesized exp,
542 ;; move to the beginning of that;
543 ;; possibly a different line
544 (progn
545 (if (eq (preceding-char) ?\))
546 (forward-sexp -1))
547 ;; Get initial indentation of the line we are on.
548 (current-indentation))))))))))
549
550 (defun perl-backward-to-noncomment ()
551 "Move point backward to after the first non-white-space, skipping comments."
552 (interactive)
553 (let (opoint stop)
554 (while (not stop)
555 (setq opoint (point))
556 (beginning-of-line)
557 (if (re-search-forward comment-start-skip opoint 'move 1)
558 (progn (goto-char (match-end 1))
559 (skip-chars-forward ";")))
560 (skip-chars-backward " \t\f")
561 (setq stop (or (bobp)
562 (not (bolp))
563 (forward-char -1))))))
564
565 (defun perl-backward-to-start-of-continued-exp (lim)
566 (if (= (preceding-char) ?\))
567 (forward-sexp -1))
568 (beginning-of-line)
569 (if (<= (point) lim)
570 (goto-char (1+ lim)))
571 (skip-chars-forward " \t\f"))
572 \f
573 ;; note: this may be slower than the c-mode version, but I can understand it.
574 (defun indent-perl-exp ()
575 "Indent each line of the Perl grouping following point."
576 (interactive)
577 (let* ((case-fold-search nil)
578 (oldpnt (point-marker))
579 (bof-mark (save-excursion
580 (end-of-line 2)
581 (perl-beginning-of-function)
582 (point-marker)))
583 eol last-mark lsexp-mark delta)
584 (if (= (char-after (marker-position bof-mark)) ?=)
585 (message "Can't indent a format statement")
586 (message "Indenting Perl expression...")
587 (save-excursion (end-of-line) (setq eol (point)))
588 (save-excursion ; locate matching close paren
589 (while (and (not (eobp)) (<= (point) eol))
590 (parse-partial-sexp (point) (point-max) 0))
591 (setq last-mark (point-marker)))
592 (setq lsexp-mark bof-mark)
593 (beginning-of-line)
594 (while (< (point) (marker-position last-mark))
595 (setq delta (perl-indent-line nil (marker-position bof-mark)))
596 (if (numberp delta) ; unquoted start-of-line?
597 (progn
598 (if (eolp)
599 (delete-horizontal-space))
600 (setq lsexp-mark (point-marker))))
601 (end-of-line)
602 (setq eol (point))
603 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
604 (progn ; line ends in a comment
605 (beginning-of-line)
606 (if (or (not (looking-at "\\s-*;?#"))
607 (listp delta)
608 (and (/= 0 delta)
609 (= (- (current-indentation) delta) comment-column)))
610 (if (re-search-forward comment-start-skip eol t)
611 (indent-for-comment))))) ; indent existing comment
612 (forward-line 1))
613 (goto-char (marker-position oldpnt))
614 (message "Indenting Perl expression...done"))))
615 \f
616 (defun perl-beginning-of-function (&optional arg)
617 "Move backward to next beginning-of-function, or as far as possible.
618 With argument, repeat that many times; negative args move forward.
619 Returns new value of point in all cases."
620 (interactive "p")
621 (or arg (setq arg 1))
622 (if (< arg 0) (forward-char 1))
623 (and (/= arg 0)
624 (re-search-backward "^\\s(\\|^\\s-*sub\\b[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
625 nil 'move arg)
626 (goto-char (1- (match-end 0))))
627 (point))
628
629 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
630 ;; no bugs have been removed :-)
631 (defun perl-end-of-function (&optional arg)
632 "Move forward to next end-of-function.
633 The end of a function is found by moving forward from the beginning of one.
634 With argument, repeat that many times; negative args move backward."
635 (interactive "p")
636 (or arg (setq arg 1))
637 (let ((first t))
638 (while (and (> arg 0) (< (point) (point-max)))
639 (let ((pos (point)) npos)
640 (while (progn
641 (if (and first
642 (progn
643 (forward-char 1)
644 (perl-beginning-of-function 1)
645 (not (bobp))))
646 nil
647 (or (bobp) (forward-char -1))
648 (perl-beginning-of-function -1))
649 (setq first nil)
650 (forward-list 1)
651 (skip-chars-forward " \t")
652 (if (looking-at "[#\n]")
653 (forward-line 1))
654 (<= (point) pos))))
655 (setq arg (1- arg)))
656 (while (< arg 0)
657 (let ((pos (point)))
658 (perl-beginning-of-function 1)
659 (forward-sexp 1)
660 (forward-line 1)
661 (if (>= (point) pos)
662 (if (progn (perl-beginning-of-function 2) (not (bobp)))
663 (progn
664 (forward-list 1)
665 (skip-chars-forward " \t")
666 (if (looking-at "[#\n]")
667 (forward-line 1)))
668 (goto-char (point-min)))))
669 (setq arg (1+ arg)))))
670
671 (defun mark-perl-function ()
672 "Put mark at end of Perl function, point at beginning."
673 (interactive)
674 (push-mark (point))
675 (perl-end-of-function)
676 (push-mark (point))
677 (perl-beginning-of-function)
678 (backward-paragraph))
679
680 ;;;;;;;; That's all, folks! ;;;;;;;;;