]> code.delx.au - gnu-emacs/blob - lisp/progmodes/perl-mode.el
Unify mouse-highlight code for all GUI and TTY sessions.
[gnu-emacs] / lisp / progmodes / perl-mode.el
1 ;;; perl-mode.el --- Perl code editing commands for GNU Emacs
2
3 ;; Copyright (C) 1990, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2008, 2009, 2010 Free Software Foundation, Inc.
5
6 ;; Author: William F. Mann
7 ;; Maintainer: FSF
8 ;; Adapted-By: ESR
9 ;; Keywords: languages
10
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
14 ;; This file is part of GNU Emacs.
15
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
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
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28
29 ;;; Commentary:
30
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-*-
34 ;; With arguments to perl:
35 ;; #!/usr/bin/perl -P- # -*-Perl-*-
36 ;; To handle files included with do 'filename.pl';, add something like
37 ;; (setq auto-mode-alist (append (list (cons "\\.pl\\'" 'perl-mode))
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
52 ;; to perl-electric-terminator. I changed the indenting defaults to be
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
56 ;; zero are left there by perl-indent-exp; perl-beginning-of-function
57 ;; goes back to the first open brace/paren in column zero, the open brace
58 ;; in 'sub ... {', or the equal sign in 'format ... ='; perl-indent-exp
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
65 ;; Known problems (these are all caused by limitations in the Emacs Lisp
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):
68 ;; 2) The globbing syntax <pattern> is not recognized, so special
69 ;; characters in the pattern string must be backslashed.
70 ;; 3) The << quoting operators are not recognized; see below.
71 ;; 5) To make '$' work correctly, $' is not recognized as a variable.
72 ;; Use "$'" or $POSTMATCH instead.
73 ;;
74 ;; If you don't use font-lock, additional problems will appear:
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.
79 ;; 5) To make variables such a $' and $#array work, perl-mode treats
80 ;; $ just like backslash, so '$' is not treated correctly.
81 ;; 6) Unfortunately, treating $ like \ makes ${var} be treated as an
82 ;; unmatched }. See below.
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.
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 ;;
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}>)
98 ;;
99 ;; Problem 7 is even worse, but this 'fix' does work :-(
100 ;; $DB'stop#'
101 ;; [$DB'line#'
102 ;; ] =~ s/;9$//;
103
104 ;;; Code:
105
106 (eval-when-compile (require 'cl))
107
108 (defvar font-lock-comment-face)
109 (defvar font-lock-doc-face)
110 (defvar font-lock-string-face)
111
112 (defgroup perl nil
113 "Major mode for editing Perl code."
114 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
115 :prefix "perl-"
116 :group 'languages)
117
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
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)
135 "Keymap used in Perl mode.")
136
137 (autoload 'c-macro-expand "cmacexp"
138 "Display the result of expanding all C macros occurring in the region.
139 The expansion is entirely correct because it uses the C preprocessor."
140 t)
141
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)
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)
149 (modify-syntax-entry ?% ". p" st)
150 (modify-syntax-entry ?@ ". p" st)
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.")
165
166 (defvar perl-imenu-generic-expression
167 '(;; Functions
168 (nil "^sub\\s-+\\([-A-Za-z0-9+_:]+\\)" 1)
169 ;;Variables
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))
173 "Imenu generic expression for Perl mode. See `imenu-generic-expression'.")
174
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.
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))
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+\\)?"
196 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)))
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.
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 "\\>")
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.
214 '("&\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-function-name-face)
215 ;; Additionally underline non-scalar variables. Maybe this is a bad idea.
216 ;;'("[$@%*][#{]?\\(\\sw+\\)" 1 font-lock-variable-name-face)
217 '("[$*]{?\\(\\sw+\\(::\\sw+\\)*\\)" 1 font-lock-variable-name-face)
218 '("\\([@%]\\|\\$#\\)\\(\\sw+\\(::\\sw+\\)*\\)"
219 (2 (cons font-lock-variable-name-face '(underline))))
220 '("<\\(\\sw+\\)>" 1 font-lock-constant-face)
221 ;;
222 ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
223 '("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
224 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
225 '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face)))
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
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>
253 (defun perl-syntax-propertize-function (start end)
254 (let ((case-fold-search nil))
255 (goto-char start)
256 (perl-syntax-propertize-special-constructs end)
257 ;; TODO: here-documents ("<<\\(\\sw\\|['\"]\\)")
258 (funcall
259 (syntax-propertize-rules
260 ;; Turn POD into b-style comments. Place the cut rule first since it's
261 ;; more specific.
262 ("^=cut\\>.*\\(\n\\)" (1 "> b"))
263 ("^\\(=\\)\\sw" (1 "< b"))
264 ;; Catch ${ so that ${var} doesn't screw up indentation.
265 ;; This also catches $' to handle 'foo$', although it should really
266 ;; check that it occurs inside a '..' string.
267 ("\\(\\$\\)[{']" (1 ". p"))
268 ;; Handle funny names like $DB'stop.
269 ("\\$ ?{?^?[_a-zA-Z][_a-zA-Z0-9]*\\('\\)[_a-zA-Z]" (1 "_"))
270 ;; format statements
271 ("^[ \t]*format.*=[ \t]*\\(\n\\)"
272 (1 (prog1 "\"" (perl-syntax-propertize-special-constructs end))))
273 ;; Funny things in `sub' arg-specs like `sub myfun ($)' or `sub ($)'.
274 ;; Be careful not to match "sub { (...) ... }".
275 ("\\<sub\\(?:[[:space:]]+[^{}[:punct:][:space:]]+\\)?[[:space:]]*(\\([^)]+\\))"
276 (1 "."))
277 ;; Turn __DATA__ trailer into a comment.
278 ("^\\(_\\)_\\(?:DATA\\|END\\)__[ \t]*\\(?:\\(\n\\)#.-\\*-.*perl.*-\\*-\\|\n.*\\)"
279 (1 "< c") (2 "> c")
280 (0 (ignore (put-text-property (match-beginning 0) (match-end 0)
281 'syntax-multiline t))))
282 ;; Regexp and funny quotes. Distinguishing a / that starts a regexp
283 ;; match from the division operator is ...interesting.
284 ;; Basically, / is a regexp match if it's preceded by an infix operator
285 ;; (or some similar separator), or by one of the special keywords
286 ;; corresponding to builtin functions that can take their first arg
287 ;; without parentheses. Of course, that presume we're looking at the
288 ;; *opening* slash. We can afford to mis-match the closing ones
289 ;; here, because they will be re-treated separately later in
290 ;; perl-font-lock-special-syntactic-constructs.
291 ((concat "\\(?:\\(?:^\\|[^$@&%[:word:]]\\)"
292 (regexp-opt '("split" "if" "unless" "until" "while" "split"
293 "grep" "map" "not" "or" "and"))
294 "\\|[?:.,;=!~({[]\\|\\(^\\)\\)[ \t\n]*\\(/\\)")
295 (2 (ignore
296 (if (and (match-end 1) ; / at BOL.
297 (save-excursion
298 (goto-char (match-end 1))
299 (forward-comment (- (point-max)))
300 (put-text-property (point) (match-end 2)
301 'syntax-multiline t)
302 (not (memq (char-before)
303 '(?? ?: ?. ?, ?\; ?= ?! ?~ ?\( ?\[)))))
304 nil ;; A division sign instead of a regexp-match.
305 (put-text-property (match-beginning 2) (match-end 2)
306 'syntax-table (string-to-syntax "\""))
307 (perl-syntax-propertize-special-constructs end)))))
308 ("\\(^\\|[?:.,;=!~({[ \t]\\)\\([msy]\\|q[qxrw]?\\|tr\\)\\>\\s-*\\([^])}> \n\t]\\)"
309 ;; Nasty cases:
310 ;; /foo/m $a->m $#m $m @m %m
311 ;; \s (appears often in regexps).
312 ;; -s file
313 ;; sub tr {...}
314 (3 (ignore
315 (if (save-excursion (goto-char (match-beginning 0))
316 (forward-word -1)
317 (looking-at-p "sub[ \t\n]"))
318 ;; This is defining a function.
319 nil
320 (put-text-property (match-beginning 3) (match-end 3)
321 'syntax-table
322 (if (assoc (char-after (match-beginning 3))
323 perl-quote-like-pairs)
324 (string-to-syntax "|")
325 (string-to-syntax "\"")))
326 (perl-syntax-propertize-special-constructs end))))))
327 (point) end)))
328
329 (defvar perl-empty-syntax-table
330 (let ((st (copy-syntax-table)))
331 ;; Make all chars be of punctuation syntax.
332 (dotimes (i 256) (aset st i '(1)))
333 (modify-syntax-entry ?\\ "\\" st)
334 st)
335 "Syntax table used internally for processing quote-like operators.")
336
337 (defun perl-quote-syntax-table (char)
338 (let ((close (cdr (assq char perl-quote-like-pairs)))
339 (st (copy-syntax-table perl-empty-syntax-table)))
340 (if (not close)
341 (modify-syntax-entry char "\"" st)
342 (modify-syntax-entry char "(" st)
343 (modify-syntax-entry close ")" st))
344 st))
345
346 (defun perl-syntax-propertize-special-constructs (limit)
347 "Propertize special constructs like regexps and formats."
348 (let ((state (syntax-ppss))
349 char)
350 (cond
351 ((or (null (setq char (nth 3 state)))
352 (and (characterp char) (eq (char-syntax (nth 3 state)) ?\")))
353 ;; Normal text, or comment, or docstring, or normal string.
354 nil)
355 ((eq (nth 3 state) ?\n)
356 ;; A `format' command.
357 (when (re-search-forward "^\\s *\\.\\s *\n" limit 'move)
358 (put-text-property (1- (point)) (point)
359 'syntax-table (string-to-syntax "\""))))
360 (t
361 ;; This is regexp like quote thingy.
362 (setq char (char-after (nth 8 state)))
363 (let ((twoargs (save-excursion
364 (goto-char (nth 8 state))
365 (skip-syntax-backward " ")
366 (skip-syntax-backward "w")
367 (member (buffer-substring
368 (point) (progn (forward-word 1) (point)))
369 '("tr" "s" "y"))))
370 (close (cdr (assq char perl-quote-like-pairs)))
371 (st (perl-quote-syntax-table char)))
372 (when (with-syntax-table st
373 (if close
374 ;; For paired delimiters, Perl allows nesting them, but
375 ;; since we treat them as strings, Emacs does not count
376 ;; those delimiters in `state', so we don't know how deep
377 ;; we are: we have to go back to the beginning of this
378 ;; "string" and count from there.
379 (condition-case nil
380 (progn
381 ;; Start after the first char since it doesn't have
382 ;; paren-syntax (an alternative would be to let-bind
383 ;; parse-sexp-lookup-properties).
384 (goto-char (1+ (nth 8 state)))
385 (up-list 1)
386 t)
387 (scan-error nil))
388 (not (or (nth 8 (parse-partial-sexp
389 (point) limit nil nil state 'syntax-table))
390 ;; If we have a self-paired opener and a twoargs
391 ;; command, the form is s/../../ so we have to skip
392 ;; a second time.
393 ;; In the case of s{...}{...}, we only handle the
394 ;; first part here and the next below.
395 (when (and twoargs (not close))
396 (nth 8 (parse-partial-sexp
397 (point) limit
398 nil nil state 'syntax-table)))))))
399 ;; Point is now right after the arg(s).
400 (when (eq (char-before (1- (point))) ?$)
401 (put-text-property (- (point) 2) (1- (point))
402 'syntax-table '(1)))
403 (put-text-property (1- (point)) (point)
404 'syntax-table
405 (if close
406 (string-to-syntax "|")
407 (string-to-syntax "\"")))
408 ;; If we have two args with a non-self-paired starter (e.g.
409 ;; s{...}{...}) we're right after the first arg, so we still have to
410 ;; handle the second part.
411 (when (and twoargs close)
412 ;; Skip whitespace and make sure that font-lock will
413 ;; refontify the second part in the proper context.
414 (put-text-property
415 (point) (progn (forward-comment (point-max)) (point))
416 'syntax-multiline t)
417 ;;
418 (when (< (point) limit)
419 (put-text-property (point) (1+ (point))
420 'syntax-table
421 (if (assoc (char-after)
422 perl-quote-like-pairs)
423 ;; Put an `e' in the cdr to mark this
424 ;; char as "second arg starter".
425 (string-to-syntax "|e")
426 (string-to-syntax "\"e")))
427 (forward-char 1)
428 ;; Re-use perl-syntax-propertize-special-constructs to handle the
429 ;; second part (the first delimiter of second part can't be
430 ;; preceded by "s" or "tr" or "y", so it will not be considered
431 ;; as twoarg).
432 (perl-syntax-propertize-special-constructs limit)))))))))
433
434 (defun perl-font-lock-syntactic-face-function (state)
435 (cond
436 ((and (nth 3 state)
437 (eq ?e (cdr-safe (get-text-property (nth 8 state) 'syntax-table)))
438 ;; This is a second-arg of s{..}{...} form; let's check if this second
439 ;; arg is executable code rather than a string. For that, we need to
440 ;; look for an "e" after this second arg, so we have to hunt for the
441 ;; end of the arg. Depending on whether the whole arg has already
442 ;; been syntax-propertized or not, the end-char will have different
443 ;; syntaxes, so let's ignore syntax-properties temporarily so we can
444 ;; pretend it has not been syntax-propertized yet.
445 (let* ((parse-sexp-lookup-properties nil)
446 (char (char-after (nth 8 state)))
447 (paired (assq char perl-quote-like-pairs)))
448 (with-syntax-table (perl-quote-syntax-table char)
449 (save-excursion
450 (if (not paired)
451 (parse-partial-sexp (point) (point-max)
452 nil nil state 'syntax-table)
453 (condition-case nil
454 (progn
455 (goto-char (1+ (nth 8 state)))
456 (up-list 1))
457 (scan-error (goto-char (point-max)))))
458 (put-text-property (nth 8 state) (point)
459 'jit-lock-defer-multiline t)
460 (looking-at "[ \t]*\\sw*e")))))
461 nil)
462 (t (funcall (default-value 'font-lock-syntactic-face-function) state))))
463
464 (defcustom perl-indent-level 4
465 "*Indentation of Perl statements with respect to containing block."
466 :type 'integer
467 :group 'perl)
468
469 ;; Is is not unusual to put both things like perl-indent-level and
470 ;; cperl-indent-level in the local variable section of a file. If only
471 ;; one of perl-mode and cperl-mode is in use, a warning will be issued
472 ;; about the variable. Autoload these here, so that no warning is
473 ;; issued when using either perl-mode or cperl-mode.
474 ;;;###autoload(put 'perl-indent-level 'safe-local-variable 'integerp)
475 ;;;###autoload(put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
476 ;;;###autoload(put 'perl-continued-brace-offset 'safe-local-variable 'integerp)
477 ;;;###autoload(put 'perl-brace-offset 'safe-local-variable 'integerp)
478 ;;;###autoload(put 'perl-brace-imaginary-offset 'safe-local-variable 'integerp)
479 ;;;###autoload(put 'perl-label-offset 'safe-local-variable 'integerp)
480
481 (defcustom perl-continued-statement-offset 4
482 "*Extra indent for lines not starting new statements."
483 :type 'integer
484 :group 'perl)
485 (defcustom perl-continued-brace-offset -4
486 "*Extra indent for substatements that start with open-braces.
487 This is in addition to `perl-continued-statement-offset'."
488 :type 'integer
489 :group 'perl)
490 (defcustom perl-brace-offset 0
491 "*Extra indentation for braces, compared with other text in same context."
492 :type 'integer
493 :group 'perl)
494 (defcustom perl-brace-imaginary-offset 0
495 "*Imagined indentation of an open brace that actually follows a statement."
496 :type 'integer
497 :group 'perl)
498 (defcustom perl-label-offset -2
499 "*Offset of Perl label lines relative to usual indentation."
500 :type 'integer
501 :group 'perl)
502 (defcustom perl-indent-continued-arguments nil
503 "*If non-nil offset of argument lines relative to usual indentation.
504 If nil, continued arguments are aligned with the first argument."
505 :type '(choice integer (const nil))
506 :group 'perl)
507
508 (defcustom perl-tab-always-indent tab-always-indent
509 "Non-nil means TAB in Perl mode always indents the current line.
510 Otherwise it inserts a tab character if you type it past the first
511 nonwhite character on the line."
512 :type 'boolean
513 :group 'perl)
514
515 ;; I changed the default to nil for consistency with general Emacs
516 ;; conventions -- rms.
517 (defcustom perl-tab-to-comment nil
518 "*Non-nil means TAB moves to eol or makes a comment in some cases.
519 For lines which don't need indenting, TAB either indents an
520 existing comment, moves to end-of-line, or if at end-of-line already,
521 create a new comment."
522 :type 'boolean
523 :group 'perl)
524
525 (defcustom perl-nochange ";?#\\|\f\\|\\s(\\|\\(\\w\\|\\s_\\)+:[^:]"
526 "*Lines starting with this regular expression are not auto-indented."
527 :type 'regexp
528 :group 'perl)
529
530 ;; Outline support
531
532 (defvar perl-outline-regexp
533 (concat (mapconcat 'cadr perl-imenu-generic-expression "\\|")
534 "\\|^=cut\\>"))
535
536 (defun perl-outline-level ()
537 (cond
538 ((looking-at "package\\s-") 0)
539 ((looking-at "sub\\s-") 1)
540 ((looking-at "=head[0-9]") (- (char-before (match-end 0)) ?0))
541 ((looking-at "=cut") 1)
542 (t 3)))
543 \f
544 (defvar perl-mode-hook nil
545 "Normal hook to run when entering Perl mode.")
546
547 ;;;###autoload
548 (defun perl-mode ()
549 "Major mode for editing Perl code.
550 Expression and list commands understand all Perl brackets.
551 Tab indents for Perl code.
552 Comments are delimited with # ... \\n.
553 Paragraphs are separated by blank lines only.
554 Delete converts tabs to spaces as it moves back.
555 \\{perl-mode-map}
556 Variables controlling indentation style:
557 `perl-tab-always-indent'
558 Non-nil means TAB in Perl mode should always indent the current line,
559 regardless of where in the line point is when the TAB command is used.
560 `perl-tab-to-comment'
561 Non-nil means that for lines which don't need indenting, TAB will
562 either delete an empty comment, indent an existing comment, move
563 to end-of-line, or if at end-of-line already, create a new comment.
564 `perl-nochange'
565 Lines starting with this regular expression are not auto-indented.
566 `perl-indent-level'
567 Indentation of Perl statements within surrounding block.
568 The surrounding block's indentation is the indentation
569 of the line on which the open-brace appears.
570 `perl-continued-statement-offset'
571 Extra indentation given to a substatement, such as the
572 then-clause of an if or body of a while.
573 `perl-continued-brace-offset'
574 Extra indentation given to a brace that starts a substatement.
575 This is in addition to `perl-continued-statement-offset'.
576 `perl-brace-offset'
577 Extra indentation for line if it starts with an open brace.
578 `perl-brace-imaginary-offset'
579 An open brace following other text is treated as if it were
580 this far to the right of the start of its line.
581 `perl-label-offset'
582 Extra indentation for line that is a label.
583 `perl-indent-continued-arguments'
584 Offset of argument lines relative to usual indentation.
585
586 Various indentation styles: K&R BSD BLK GNU LW
587 perl-indent-level 5 8 0 2 4
588 perl-continued-statement-offset 5 8 4 2 4
589 perl-continued-brace-offset 0 0 0 0 -4
590 perl-brace-offset -5 -8 0 0 0
591 perl-brace-imaginary-offset 0 0 4 0 0
592 perl-label-offset -5 -8 -2 -2 -2
593
594 Turning on Perl mode runs the normal hook `perl-mode-hook'."
595 (interactive)
596 (kill-all-local-variables)
597 (use-local-map perl-mode-map)
598 (setq major-mode 'perl-mode)
599 (setq mode-name "Perl")
600 (setq local-abbrev-table perl-mode-abbrev-table)
601 (set-syntax-table perl-mode-syntax-table)
602 (make-local-variable 'paragraph-start)
603 (setq paragraph-start (concat "$\\|" page-delimiter))
604 (make-local-variable 'paragraph-separate)
605 (setq paragraph-separate paragraph-start)
606 (make-local-variable 'paragraph-ignore-fill-prefix)
607 (setq paragraph-ignore-fill-prefix t)
608 (make-local-variable 'indent-line-function)
609 (setq indent-line-function 'perl-indent-line)
610 (make-local-variable 'require-final-newline)
611 (setq require-final-newline mode-require-final-newline)
612 (make-local-variable 'comment-start)
613 (setq comment-start "# ")
614 (make-local-variable 'comment-end)
615 (setq comment-end "")
616 (make-local-variable 'comment-start-skip)
617 (setq comment-start-skip "\\(^\\|\\s-\\);?#+ *")
618 (make-local-variable 'comment-indent-function)
619 (setq comment-indent-function 'perl-comment-indent)
620 (make-local-variable 'parse-sexp-ignore-comments)
621 (setq parse-sexp-ignore-comments t)
622 ;; Tell font-lock.el how to handle Perl.
623 (setq font-lock-defaults '((perl-font-lock-keywords
624 perl-font-lock-keywords-1
625 perl-font-lock-keywords-2)
626 nil nil ((?\_ . "w")) nil
627 (font-lock-syntactic-face-function
628 . perl-font-lock-syntactic-face-function)))
629 (set (make-local-variable 'syntax-propertize-function)
630 #'perl-syntax-propertize-function)
631 (add-hook 'syntax-propertize-extend-region-functions
632 #'syntax-propertize-multiline 'append 'local)
633 ;; Tell imenu how to handle Perl.
634 (set (make-local-variable 'imenu-generic-expression)
635 perl-imenu-generic-expression)
636 (setq imenu-case-fold-search nil)
637 ;; Setup outline-minor-mode.
638 (set (make-local-variable 'outline-regexp) perl-outline-regexp)
639 (set (make-local-variable 'outline-level) 'perl-outline-level)
640 (run-mode-hooks 'perl-mode-hook))
641 \f
642 ;; This is used by indent-for-comment
643 ;; to decide how much to indent a comment in Perl code
644 ;; based on its context.
645 (defun perl-comment-indent ()
646 (if (and (bolp) (not (eolp)))
647 0 ;Existing comment at bol stays there.
648 comment-column))
649
650 (defalias 'electric-perl-terminator 'perl-electric-terminator)
651 (defun perl-electric-terminator (arg)
652 "Insert character and adjust indentation.
653 If at end-of-line, and not in a comment or a quote, correct the's indentation."
654 (interactive "P")
655 (let ((insertpos (point)))
656 (and (not arg) ; decide whether to indent
657 (eolp)
658 (save-excursion
659 (beginning-of-line)
660 (and (not ; eliminate comments quickly
661 (and comment-start-skip
662 (re-search-forward comment-start-skip insertpos t)) )
663 (or (/= last-command-event ?:)
664 ;; Colon is special only after a label ....
665 (looking-at "\\s-*\\(\\w\\|\\s_\\)+$"))
666 (let ((pps (parse-partial-sexp
667 (perl-beginning-of-function) insertpos)))
668 (not (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))
669 (progn ; must insert, indent, delete
670 (insert-char last-command-event 1)
671 (perl-indent-line)
672 (delete-char -1))))
673 (self-insert-command (prefix-numeric-value arg)))
674
675 ;; not used anymore, but may be useful someday:
676 ;;(defun perl-inside-parens-p ()
677 ;; (condition-case ()
678 ;; (save-excursion
679 ;; (save-restriction
680 ;; (narrow-to-region (point)
681 ;; (perl-beginning-of-function))
682 ;; (goto-char (point-max))
683 ;; (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
684 ;; (error nil)))
685 \f
686 (defun perl-indent-command (&optional arg)
687 "Indent Perl code in the active region or current line.
688 In Transient Mark mode, when the region is active, reindent the region.
689 Otherwise, with a prefix argument, reindent the current line
690 unconditionally.
691
692 Otherwise, if `perl-tab-always-indent' is nil and point is not in
693 the indentation area at the beginning of the line, insert a tab.
694
695 Otherwise, indent the current line. If point was within the
696 indentation area, it is moved to the end of the indentation area.
697 If the line was already indented properly and point was not
698 within the indentation area, and if `perl-tab-to-comment' is
699 non-nil (the default), then do the first possible action from the
700 following list:
701
702 1) delete an empty comment
703 2) move forward to start of comment, indenting if necessary
704 3) move forward to end of line
705 4) create an empty comment
706 5) move backward to start of comment, indenting if necessary."
707 (interactive "P")
708 (cond ((use-region-p) ; indent the active region
709 (indent-region (region-beginning) (region-end)))
710 (arg
711 (perl-indent-line "\f")) ; just indent this line
712 ((and (not perl-tab-always-indent)
713 (> (current-column) (current-indentation)))
714 (insert-tab))
715 (t
716 (let* ((oldpnt (point))
717 (lsexp (progn (beginning-of-line) (point)))
718 (bof (perl-beginning-of-function))
719 (delta (progn
720 (goto-char oldpnt)
721 (perl-indent-line "\f\\|;?#" bof))))
722 (and perl-tab-to-comment
723 (= oldpnt (point)) ; done if point moved
724 (if (listp delta) ; if line starts in a quoted string
725 (setq lsexp (or (nth 2 delta) bof))
726 (= delta 0)) ; done if indenting occurred
727 (let ((eol (progn (end-of-line) (point)))
728 state)
729 (cond ((= (char-after bof) ?=)
730 (if (= oldpnt eol)
731 (message "In a format statement")))
732 ((progn (setq state (parse-partial-sexp lsexp eol))
733 (nth 3 state))
734 (if (= oldpnt eol) ; already at eol in a string
735 (message "In a string which starts with a %c."
736 (nth 3 state))))
737 ((not (nth 4 state))
738 (if (= oldpnt eol) ; no comment, create one?
739 (indent-for-comment)))
740 ((progn (beginning-of-line)
741 (and comment-start-skip
742 (re-search-forward
743 comment-start-skip eol 'move)))
744 (if (eolp)
745 (progn ; delete existing comment
746 (goto-char (match-beginning 0))
747 (skip-chars-backward " \t")
748 (delete-region (point) eol))
749 (if (or (< oldpnt (point)) (= oldpnt eol))
750 (indent-for-comment) ; indent existing comment
751 (end-of-line))))
752 ((/= oldpnt eol)
753 (end-of-line))
754 (t
755 (message "Use backslash to quote # characters.")
756 (ding t)))))))))
757
758 (defun perl-indent-line (&optional nochange parse-start)
759 "Indent current line as Perl code.
760 Return the amount the indentation
761 changed by, or (parse-state) if line starts in a quoted string."
762 (let ((case-fold-search nil)
763 (pos (- (point-max) (point)))
764 (bof (or parse-start (save-excursion (perl-beginning-of-function))))
765 beg indent shift-amt)
766 (beginning-of-line)
767 (setq beg (point))
768 (setq shift-amt
769 (cond ((eq (char-after bof) ?=) 0)
770 ((listp (setq indent (perl-calculate-indent bof))) indent)
771 ((looking-at (or nochange perl-nochange)) 0)
772 (t
773 (skip-chars-forward " \t\f")
774 (setq indent (perl-indent-new-calculate nil indent bof))
775 (- indent (current-column)))))
776 (skip-chars-forward " \t\f")
777 (if (and (numberp shift-amt) (/= 0 shift-amt))
778 (progn (delete-region beg (point))
779 (indent-to indent)))
780 ;; If initial point was within line's indentation,
781 ;; position after the indentation. Else stay at same point in text.
782 (if (> (- (point-max) pos) (point))
783 (goto-char (- (point-max) pos)))
784 shift-amt))
785
786 (defun perl-continuation-line-p (limit)
787 "Move to end of previous line and return non-nil if continued."
788 ;; Statement level. Is it a continuation or a new statement?
789 ;; Find previous non-comment character.
790 (perl-backward-to-noncomment)
791 ;; Back up over label lines, since they don't
792 ;; affect whether our line is a continuation.
793 (while (or (eq (preceding-char) ?\,)
794 (and (eq (preceding-char) ?:)
795 (memq (char-syntax (char-after (- (point) 2)))
796 '(?w ?_))))
797 (if (eq (preceding-char) ?\,)
798 (perl-backward-to-start-of-continued-exp limit)
799 (beginning-of-line))
800 (perl-backward-to-noncomment))
801 ;; Now we get the answer.
802 (not (memq (preceding-char) '(?\; ?\} ?\{))))
803
804 (defun perl-hanging-paren-p ()
805 "Non-nil if we are right after a hanging parenthesis-like char."
806 (and (looking-at "[ \t]*$")
807 (save-excursion
808 (skip-syntax-backward " (") (not (bolp)))))
809
810 (defun perl-indent-new-calculate (&optional virtual default parse-start)
811 (or
812 (and virtual (save-excursion (skip-chars-backward " \t") (bolp))
813 (current-column))
814 (and (looking-at "\\(\\w\\|\\s_\\)+:[^:]")
815 (max 1 (+ (or default (perl-calculate-indent parse-start))
816 perl-label-offset)))
817 (and (= (char-syntax (following-char)) ?\))
818 (save-excursion
819 (forward-char 1)
820 (forward-sexp -1)
821 (perl-indent-new-calculate
822 ;; Recalculate the parsing-start, since we may have jumped
823 ;; dangerously close (typically in the case of nested functions).
824 'virtual nil (save-excursion (perl-beginning-of-function)))))
825 (and (and (= (following-char) ?{)
826 (save-excursion (forward-char) (perl-hanging-paren-p)))
827 (+ (or default (perl-calculate-indent parse-start))
828 perl-brace-offset))
829 (or default (perl-calculate-indent parse-start))))
830
831 (defun perl-calculate-indent (&optional parse-start)
832 "Return appropriate indentation for current line as Perl code.
833 In usual case returns an integer: the column to indent to.
834 Returns (parse-state) if line starts inside a string.
835 Optional argument PARSE-START should be the position of `beginning-of-defun'."
836 (save-excursion
837 (let ((indent-point (point))
838 (case-fold-search nil)
839 (colon-line-end 0)
840 state containing-sexp)
841 (if parse-start ;used to avoid searching
842 (goto-char parse-start)
843 (perl-beginning-of-function))
844 ;; We might be now looking at a local function that has nothing to
845 ;; do with us because `indent-point' is past it. In this case
846 ;; look further back up for another `perl-beginning-of-function'.
847 (while (and (looking-at "{")
848 (save-excursion
849 (beginning-of-line)
850 (looking-at "\\s-+sub\\>"))
851 (> indent-point (save-excursion (forward-sexp 1) (point))))
852 (perl-beginning-of-function))
853 (while (< (point) indent-point) ;repeat until right sexp
854 (setq state (parse-partial-sexp (point) indent-point 0))
855 ;; state = (depth_in_parens innermost_containing_list
856 ;; last_complete_sexp string_terminator_or_nil inside_commentp
857 ;; following_quotep minimum_paren-depth_this_scan)
858 ;; Parsing stops if depth in parentheses becomes equal to third arg.
859 (setq containing-sexp (nth 1 state)))
860 (cond ((nth 3 state) state) ; In a quoted string?
861 ((null containing-sexp) ; Line is at top level.
862 (skip-chars-forward " \t\f")
863 (if (= (following-char) ?{)
864 0 ; move to beginning of line if it starts a function body
865 ;; indent a little if this is a continuation line
866 (perl-backward-to-noncomment)
867 (if (or (bobp)
868 (memq (preceding-char) '(?\; ?\})))
869 0 perl-continued-statement-offset)))
870 ((/= (char-after containing-sexp) ?{)
871 ;; line is expression, not statement:
872 ;; indent to just after the surrounding open.
873 (goto-char (1+ containing-sexp))
874 (if (perl-hanging-paren-p)
875 ;; We're indenting an arg of a call like:
876 ;; $a = foobarlongnamefun (
877 ;; arg1
878 ;; arg2
879 ;; );
880 (progn
881 (skip-syntax-backward "(")
882 (condition-case err
883 (while (save-excursion
884 (skip-syntax-backward " ") (not (bolp)))
885 (forward-sexp -1))
886 (scan-error nil))
887 (+ (current-column) perl-indent-level))
888 (if perl-indent-continued-arguments
889 (+ perl-indent-continued-arguments (current-indentation))
890 (skip-chars-forward " \t")
891 (current-column))))
892 (t
893 ;; Statement level. Is it a continuation or a new statement?
894 (if (perl-continuation-line-p containing-sexp)
895 ;; This line is continuation of preceding line's statement;
896 ;; indent perl-continued-statement-offset more than the
897 ;; previous line of the statement.
898 (progn
899 (perl-backward-to-start-of-continued-exp containing-sexp)
900 (+ (if (save-excursion
901 (perl-continuation-line-p containing-sexp))
902 ;; If the continued line is itself a continuation
903 ;; line, then align, otherwise add an offset.
904 0 perl-continued-statement-offset)
905 (current-column)
906 (if (save-excursion (goto-char indent-point)
907 (looking-at "[ \t]*{"))
908 perl-continued-brace-offset 0)))
909 ;; This line starts a new statement.
910 ;; Position at last unclosed open.
911 (goto-char containing-sexp)
912 (or
913 ;; Is line first statement after an open-brace?
914 ;; If no, find that first statement and indent like it.
915 (save-excursion
916 (forward-char 1)
917 ;; Skip over comments and labels following openbrace.
918 (while (progn
919 (skip-chars-forward " \t\f\n")
920 (cond ((looking-at ";?#")
921 (forward-line 1) t)
922 ((looking-at "\\(\\w\\|\\s_\\)+:[^:]")
923 (save-excursion
924 (end-of-line)
925 (setq colon-line-end (point)))
926 (search-forward ":")))))
927 ;; The first following code counts
928 ;; if it is before the line we want to indent.
929 (and (< (point) indent-point)
930 (if (> colon-line-end (point))
931 (- (current-indentation) perl-label-offset)
932 (current-column))))
933 ;; If no previous statement,
934 ;; indent it relative to line brace is on.
935 ;; For open paren in column zero, don't let statement
936 ;; start there too. If perl-indent-level is zero,
937 ;; use perl-brace-offset + perl-continued-statement-offset
938 ;; For open-braces not the first thing in a line,
939 ;; add in perl-brace-imaginary-offset.
940 (+ (if (and (bolp) (zerop perl-indent-level))
941 (+ perl-brace-offset perl-continued-statement-offset)
942 perl-indent-level)
943 ;; Move back over whitespace before the openbrace.
944 ;; If openbrace is not first nonwhite thing on the line,
945 ;; add the perl-brace-imaginary-offset.
946 (progn (skip-chars-backward " \t")
947 (if (bolp) 0 perl-brace-imaginary-offset))
948 ;; If the openbrace is preceded by a parenthesized exp,
949 ;; move to the beginning of that;
950 ;; possibly a different line
951 (progn
952 (if (eq (preceding-char) ?\))
953 (forward-sexp -1))
954 ;; Get initial indentation of the line we are on.
955 (current-indentation))))))))))
956
957 (defun perl-backward-to-noncomment ()
958 "Move point backward to after the first non-white-space, skipping comments."
959 (interactive)
960 (forward-comment (- (point-max))))
961
962 (defun perl-backward-to-start-of-continued-exp (lim)
963 (if (= (preceding-char) ?\))
964 (forward-sexp -1))
965 (beginning-of-line)
966 (if (<= (point) lim)
967 (goto-char (1+ lim)))
968 (skip-chars-forward " \t\f"))
969 \f
970 ;; note: this may be slower than the c-mode version, but I can understand it.
971 (defalias 'indent-perl-exp 'perl-indent-exp)
972 (defun perl-indent-exp ()
973 "Indent each line of the Perl grouping following point."
974 (interactive)
975 (let* ((case-fold-search nil)
976 (oldpnt (point-marker))
977 (bof-mark (save-excursion
978 (end-of-line 2)
979 (perl-beginning-of-function)
980 (point-marker)))
981 eol last-mark lsexp-mark delta)
982 (if (= (char-after (marker-position bof-mark)) ?=)
983 (message "Can't indent a format statement")
984 (message "Indenting Perl expression...")
985 (save-excursion (end-of-line) (setq eol (point)))
986 (save-excursion ; locate matching close paren
987 (while (and (not (eobp)) (<= (point) eol))
988 (parse-partial-sexp (point) (point-max) 0))
989 (setq last-mark (point-marker)))
990 (setq lsexp-mark bof-mark)
991 (beginning-of-line)
992 (while (< (point) (marker-position last-mark))
993 (setq delta (perl-indent-line nil (marker-position bof-mark)))
994 (if (numberp delta) ; unquoted start-of-line?
995 (progn
996 (if (eolp)
997 (delete-horizontal-space))
998 (setq lsexp-mark (point-marker))))
999 (end-of-line)
1000 (setq eol (point))
1001 (if (nth 4 (parse-partial-sexp (marker-position lsexp-mark) eol))
1002 (progn ; line ends in a comment
1003 (beginning-of-line)
1004 (if (or (not (looking-at "\\s-*;?#"))
1005 (listp delta)
1006 (and (/= 0 delta)
1007 (= (- (current-indentation) delta) comment-column)))
1008 (if (and comment-start-skip
1009 (re-search-forward comment-start-skip eol t))
1010 (indent-for-comment))))) ; indent existing comment
1011 (forward-line 1))
1012 (goto-char (marker-position oldpnt))
1013 (message "Indenting Perl expression...done"))))
1014 \f
1015 (defun perl-beginning-of-function (&optional arg)
1016 "Move backward to next beginning-of-function, or as far as possible.
1017 With argument, repeat that many times; negative args move forward.
1018 Returns new value of point in all cases."
1019 (interactive "p")
1020 (or arg (setq arg 1))
1021 (if (< arg 0) (forward-char 1))
1022 (and (/= arg 0)
1023 (re-search-backward
1024 "^\\s(\\|^\\s-*sub\\b[ \t\n]*\\_<[^{]+{\\|^\\s-*format\\b[^=]*=\\|^\\."
1025 nil 'move arg)
1026 (goto-char (1- (match-end 0))))
1027 (point))
1028
1029 ;; note: this routine is adapted directly from emacs lisp.el, end-of-defun;
1030 ;; no bugs have been removed :-)
1031 (defun perl-end-of-function (&optional arg)
1032 "Move forward to next end-of-function.
1033 The end of a function is found by moving forward from the beginning of one.
1034 With argument, repeat that many times; negative args move backward."
1035 (interactive "p")
1036 (or arg (setq arg 1))
1037 (let ((first t))
1038 (while (and (> arg 0) (< (point) (point-max)))
1039 (let ((pos (point)))
1040 (while (progn
1041 (if (and first
1042 (progn
1043 (forward-char 1)
1044 (perl-beginning-of-function 1)
1045 (not (bobp))))
1046 nil
1047 (or (bobp) (forward-char -1))
1048 (perl-beginning-of-function -1))
1049 (setq first nil)
1050 (forward-list 1)
1051 (skip-chars-forward " \t")
1052 (if (looking-at "[#\n]")
1053 (forward-line 1))
1054 (<= (point) pos))))
1055 (setq arg (1- arg)))
1056 (while (< arg 0)
1057 (let ((pos (point)))
1058 (perl-beginning-of-function 1)
1059 (forward-sexp 1)
1060 (forward-line 1)
1061 (if (>= (point) pos)
1062 (if (progn (perl-beginning-of-function 2) (not (bobp)))
1063 (progn
1064 (forward-list 1)
1065 (skip-chars-forward " \t")
1066 (if (looking-at "[#\n]")
1067 (forward-line 1)))
1068 (goto-char (point-min)))))
1069 (setq arg (1+ arg)))))
1070
1071 (defalias 'mark-perl-function 'perl-mark-function)
1072 (defun perl-mark-function ()
1073 "Put mark at end of Perl function, point at beginning."
1074 (interactive)
1075 (push-mark (point))
1076 (perl-end-of-function)
1077 (push-mark (point))
1078 (perl-beginning-of-function)
1079 (backward-paragraph))
1080
1081 (provide 'perl-mode)
1082
1083 ;; arch-tag: 8c7ff68d-15f3-46a2-ade2-b7c41f176826
1084 ;;; perl-mode.el ends here