1 ;;; cperl-mode.el --- Perl code editing commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 ;; 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
7 ;; Author: Ilya Zakharevich and Bob Olson
8 ;; Maintainer: Ilya Zakharevich <ilyaz@cpan.org>
9 ;; Keywords: languages, Perl
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Corrections made by Ilya Zakharevich ilyaz@cpan.org
30 ;; You can either fine-tune the bells and whistles of this mode or
31 ;; bulk enable them by putting
33 ;; (setq cperl-hairy t)
35 ;; in your .emacs file. (Emacs rulers do not consider it politically
36 ;; correct to make whistles enabled by default.)
38 ;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<<
39 ;; or as help on variables `cperl-tips', `cperl-problems', <<<<<<
40 ;; `cperl-praise', `cperl-speed'. <<<<<<
42 ;; The mode information (on C-h m) provides some customization help.
43 ;; If you use font-lock feature of this mode, it is advisable to use
44 ;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock.
46 ;; Faces used now: three faces for first-class and second-class keywords
47 ;; and control flow words, one for each: comments, string, labels,
48 ;; functions definitions and packages, arrays, hashes, and variable
49 ;; definitions. If you do not see all these faces, your font-lock does
50 ;; not define them, so you need to define them manually.
52 ;; This mode supports font-lock, imenu and mode-compile. In the
53 ;; hairy version font-lock is on, but you should activate imenu
54 ;; yourself (note that mode-compile is not standard yet). Well, you
55 ;; can use imenu from keyboard anyway (M-x imenu), but it is better
56 ;; to bind it like that:
58 ;; (define-key global-map [M-S-down-mouse-3] 'imenu)
60 ;;; Font lock bugs as of v4.32:
62 ;; The following kinds of Perl code erroneously start strings:
64 ;; $opt::s $opt_s $opt{s} (s => ...) /\s+.../
65 ;; likewise with m, tr, y, q, qX instead of s
69 (defvar vc-rcs-header
)
70 (defvar vc-sccs-header
)
79 (defvar cperl-can-font-lock
80 (or (featurep 'xemacs
)
81 (and (boundp 'emacs-major-version
)
83 (> emacs-major-version
20)))))
84 (if cperl-can-font-lock
86 (defvar msb-menu-cond
)
87 (defvar gud-perldb-history
)
88 (defvar font-lock-background-mode
) ; not in Emacs
89 (defvar font-lock-display-type
) ; ditto
90 (defvar paren-backwards-message
) ; Not in newer XEmacs?
91 (or (fboundp 'defgroup
)
92 (defmacro defgroup
(name val doc
&rest arr
)
94 (or (fboundp 'custom-declare-variable
)
95 (defmacro defcustom
(name val doc
&rest arr
)
96 `(defvar ,name
,val
,doc
)))
97 (or (and (fboundp 'custom-declare-variable
)
98 (string< "19.31" emacs-version
)) ; Checked with 19.30: defface does not work
99 (defmacro defface
(&rest arr
)
101 ;; Avoid warning (tmp definitions)
102 (or (fboundp 'x-color-defined-p
)
103 (defmacro x-color-defined-p
(col)
104 (cond ((fboundp 'color-defined-p
) `(color-defined-p ,col
))
106 ((fboundp 'valid-color-name-p
) `(valid-color-name-p ,col
))
108 ((fboundp 'x-valid-color-name-p
) `(x-valid-color-name-p ,col
))
109 (t '(error "Cannot implement color-defined-p")))))
110 (defmacro cperl-is-face
(arg) ; Takes quoted arg
111 (cond ((fboundp 'find-face
)
113 (;;(and (fboundp 'face-list)
116 `(member ,arg
(and (fboundp 'face-list
)
120 (defmacro cperl-make-face
(arg descr
) ; Takes unquoted arg
121 (cond ((fboundp 'make-face
)
122 `(make-face (quote ,arg
)))
124 `(defvar ,arg
(quote ,arg
) ,descr
))))
125 (defmacro cperl-force-face
(arg descr
) ; Takes unquoted arg
127 (or (cperl-is-face (quote ,arg
))
128 (cperl-make-face ,arg
,descr
))
129 (or (boundp (quote ,arg
)) ; We use unquoted variants too
130 (defvar ,arg
(quote ,arg
) ,descr
))))
131 (if (featurep 'xemacs
)
132 (defmacro cperl-etags-snarf-tag
(file line
)
134 (beginning-of-line 2)
136 (defmacro cperl-etags-snarf-tag
(file line
)
138 (if (featurep 'xemacs
)
139 (defmacro cperl-etags-goto-tag-location
(elt)
141 ;; (switch-to-buffer (get-file-buffer (elt ,elt 0)))
142 ;; (set-buffer (get-file-buffer (elt ,elt 0)))
143 ;; Probably will not work due to some save-excursion???
144 ;; Or save-file-position?
145 ;; (message "Did I get to line %s?" (elt ,elt 1))
146 `(goto-line (string-to-int (elt ,elt
1))))
148 (defmacro cperl-etags-goto-tag-location
(elt)
149 `(etags-goto-tag-location ,elt
))))
151 (defvar cperl-can-font-lock
152 (or (featurep 'xemacs
)
153 (and (boundp 'emacs-major-version
)
155 (> emacs-major-version
20)))))
157 (defun cperl-choose-color (&rest list
)
161 (if (or (x-color-defined-p (car list
))
163 (setq answer
(car list
))))
164 (setq list
(cdr list
)))
168 "Major mode for editing Perl code."
173 (defgroup cperl-indentation-details nil
178 (defgroup cperl-affected-by-hairy nil
179 "Variables affected by `cperl-hairy'."
183 (defgroup cperl-autoinsert-details nil
184 "Auto-insert tuneup."
188 (defgroup cperl-faces nil
189 "Fontification colors."
190 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
194 (defgroup cperl-speed nil
195 "Speed vs. validity tuneup."
199 (defgroup cperl-help-system nil
200 "Help system tuneup."
205 (defcustom cperl-extra-newline-before-brace nil
206 "*Non-nil means that if, elsif, while, until, else, for, foreach
207 and do constructs look like:
218 :group
'cperl-autoinsert-details
)
220 (defcustom cperl-extra-newline-before-brace-multiline
221 cperl-extra-newline-before-brace
222 "*Non-nil means the same as `cperl-extra-newline-before-brace', but
223 for constructs with multiline if/unless/while/until/for/foreach condition."
225 :group
'cperl-autoinsert-details
)
227 (defcustom cperl-indent-level
2
228 "*Indentation of CPerl statements with respect to containing block."
230 :group
'cperl-indentation-details
)
232 ;; Is is not unusual to put both things like perl-indent-level and
233 ;; cperl-indent-level in the local variable section of a file. If only
234 ;; one of perl-mode and cperl-mode is in use, a warning will be issued
235 ;; about the variable. Autoload these here, so that no warning is
236 ;; issued when using either perl-mode or cperl-mode.
237 ;;;###autoload(put 'cperl-indent-level 'safe-local-variable 'integerp)
238 ;;;###autoload(put 'cperl-brace-offset 'safe-local-variable 'integerp)
239 ;;;###autoload(put 'cperl-continued-brace-offset 'safe-local-variable 'integerp)
240 ;;;###autoload(put 'cperl-label-offset 'safe-local-variable 'integerp)
241 ;;;###autoload(put 'cperl-continued-statement-offset 'safe-local-variable 'integerp)
242 ;;;###autoload(put 'cperl-extra-newline-before-brace 'safe-local-variable 'booleanp)
243 ;;;###autoload(put 'cperl-merge-trailing-else 'safe-local-variable 'booleanp)
245 (defcustom cperl-lineup-step nil
246 "*`cperl-lineup' will always lineup at multiple of this number.
247 If nil, the value of `cperl-indent-level' will be used."
248 :type
'(choice (const nil
) integer
)
249 :group
'cperl-indentation-details
)
251 (defcustom cperl-brace-imaginary-offset
0
252 "*Imagined indentation of a Perl open brace that actually follows a statement.
253 An open brace following other text is treated as if it were this far
254 to the right of the start of its line."
256 :group
'cperl-indentation-details
)
258 (defcustom cperl-brace-offset
0
259 "*Extra indentation for braces, compared with other text in same context."
261 :group
'cperl-indentation-details
)
262 (defcustom cperl-label-offset -
2
263 "*Offset of CPerl label lines relative to usual indentation."
265 :group
'cperl-indentation-details
)
266 (defcustom cperl-min-label-indent
1
267 "*Minimal offset of CPerl label lines."
269 :group
'cperl-indentation-details
)
270 (defcustom cperl-continued-statement-offset
2
271 "*Extra indent for lines not starting new statements."
273 :group
'cperl-indentation-details
)
274 (defcustom cperl-continued-brace-offset
0
275 "*Extra indent for substatements that start with open-braces.
276 This is in addition to cperl-continued-statement-offset."
278 :group
'cperl-indentation-details
)
279 (defcustom cperl-close-paren-offset -
1
280 "*Extra indent for substatements that start with close-parenthesis."
282 :group
'cperl-indentation-details
)
284 (defcustom cperl-indent-wrt-brace t
285 "*Non-nil means indent statements in if/etc block relative brace, not if/etc.
286 Versions 5.2 ... 5.20 behaved as if this were `nil'."
288 :group
'cperl-indentation-details
)
290 (defcustom cperl-auto-newline nil
291 "*Non-nil means automatically newline before and after braces,
292 and after colons and semicolons, inserted in CPerl code. The following
293 \\[cperl-electric-backspace] will remove the inserted whitespace.
294 Insertion after colons requires both this variable and
295 `cperl-auto-newline-after-colon' set."
297 :group
'cperl-autoinsert-details
)
299 (defcustom cperl-autoindent-on-semi nil
300 "*Non-nil means automatically indent after insertion of (semi)colon.
301 Active if `cperl-auto-newline' is false."
303 :group
'cperl-autoinsert-details
)
305 (defcustom cperl-auto-newline-after-colon nil
306 "*Non-nil means automatically newline even after colons.
307 Subject to `cperl-auto-newline' setting."
309 :group
'cperl-autoinsert-details
)
311 (defcustom cperl-tab-always-indent t
312 "*Non-nil means TAB in CPerl mode should always reindent the current line,
313 regardless of where in the line point is when the TAB command is used."
315 :group
'cperl-indentation-details
)
317 (defcustom cperl-font-lock nil
318 "*Non-nil (and non-null) means CPerl buffers will use `font-lock-mode'.
319 Can be overwritten by `cperl-hairy' if nil."
320 :type
'(choice (const null
) boolean
)
321 :group
'cperl-affected-by-hairy
)
323 (defcustom cperl-electric-lbrace-space nil
324 "*Non-nil (and non-null) means { after $ should be preceded by ` '.
325 Can be overwritten by `cperl-hairy' if nil."
326 :type
'(choice (const null
) boolean
)
327 :group
'cperl-affected-by-hairy
)
329 (defcustom cperl-electric-parens-string
"({[]})<"
330 "*String of parentheses that should be electric in CPerl.
331 Closing ones are electric only if the region is highlighted."
333 :group
'cperl-affected-by-hairy
)
335 (defcustom cperl-electric-parens nil
336 "*Non-nil (and non-null) means parentheses should be electric in CPerl.
337 Can be overwritten by `cperl-hairy' if nil."
338 :type
'(choice (const null
) boolean
)
339 :group
'cperl-affected-by-hairy
)
341 (defvar zmacs-regions
) ; Avoid warning
343 (defcustom cperl-electric-parens-mark
345 (or (and (boundp 'transient-mark-mode
) ; For Emacs
347 (and (boundp 'zmacs-regions
) ; For XEmacs
349 "*Not-nil means that electric parens look for active mark.
350 Default is yes if there is visual feedback on mark."
352 :group
'cperl-autoinsert-details
)
354 (defcustom cperl-electric-linefeed nil
355 "*If true, LFD should be hairy in CPerl, otherwise C-c LFD is hairy.
356 In any case these two mean plain and hairy linefeeds together.
357 Can be overwritten by `cperl-hairy' if nil."
358 :type
'(choice (const null
) boolean
)
359 :group
'cperl-affected-by-hairy
)
361 (defcustom cperl-electric-keywords nil
362 "*Not-nil (and non-null) means keywords are electric in CPerl.
363 Can be overwritten by `cperl-hairy' if nil.
365 Uses `abbrev-mode' to do the expansion. If you want to use your
366 own abbrevs in cperl-mode, but do not want keywords to be
367 electric, you must redefine `cperl-mode-abbrev-table': do
368 \\[edit-abbrevs], search for `cperl-mode-abbrev-table', and, in
369 that paragraph, delete the words that appear at the ends of lines and
370 that begin with \"cperl-electric\".
372 :type
'(choice (const null
) boolean
)
373 :group
'cperl-affected-by-hairy
)
375 (defcustom cperl-electric-backspace-untabify t
376 "*Not-nil means electric-backspace will untabify in CPerl."
378 :group
'cperl-autoinsert-details
)
380 (defcustom cperl-hairy nil
381 "*Not-nil means most of the bells and whistles are enabled in CPerl.
382 Affects: `cperl-font-lock', `cperl-electric-lbrace-space',
383 `cperl-electric-parens', `cperl-electric-linefeed', `cperl-electric-keywords',
384 `cperl-info-on-command-no-prompt', `cperl-clobber-lisp-bindings',
385 `cperl-lazy-help-time'."
387 :group
'cperl-affected-by-hairy
)
389 (defcustom cperl-comment-column
32
390 "*Column to put comments in CPerl (use \\[cperl-indent] to lineup with code)."
392 :group
'cperl-indentation-details
)
394 (defcustom cperl-indent-comment-at-column-0 nil
395 "*Non-nil means that comment started at column 0 should be indentable."
397 :group
'cperl-indentation-details
)
399 (defcustom cperl-vc-sccs-header
'("($sccs) = ('%W\%' =~ /(\\d+(\\.\\d+)+)/) ;")
400 "*Special version of `vc-sccs-header' that is used in CPerl mode buffers."
401 :type
'(repeat string
)
404 (defcustom cperl-vc-rcs-header
'("($rcs) = (' $Id\$ ' =~ /(\\d+(\\.\\d+)+)/);")
405 "*Special version of `vc-rcs-header' that is used in CPerl mode buffers."
406 :type
'(repeat string
)
409 ;; This became obsolete...
410 (defvar cperl-vc-header-alist nil
)
411 (make-obsolete-variable
412 'cperl-vc-header-alist
413 "use cperl-vc-rcs-header or cperl-vc-sccs-header instead.")
415 (defcustom cperl-clobber-mode-lists
418 (boundp 'interpreter-mode-alist
)
419 (assoc "miniperl" interpreter-mode-alist
)
420 (assoc "\\.\\([pP][Llm]\\|al\\)$" auto-mode-alist
)))
421 "*Whether to install us into `interpreter-' and `extension' mode lists."
425 (defcustom cperl-info-on-command-no-prompt nil
426 "*Not-nil (and non-null) means not to prompt on C-h f.
427 The opposite behavior is always available if prefixed with C-c.
428 Can be overwritten by `cperl-hairy' if nil."
429 :type
'(choice (const null
) boolean
)
430 :group
'cperl-affected-by-hairy
)
432 (defcustom cperl-clobber-lisp-bindings nil
433 "*Not-nil (and non-null) means not overwrite C-h f.
434 The function is available on \\[cperl-info-on-command], \\[cperl-get-help].
435 Can be overwritten by `cperl-hairy' if nil."
436 :type
'(choice (const null
) boolean
)
437 :group
'cperl-affected-by-hairy
)
439 (defcustom cperl-lazy-help-time nil
440 "*Not-nil (and non-null) means to show lazy help after given idle time.
441 Can be overwritten by `cperl-hairy' to be 5 sec if nil."
442 :type
'(choice (const null
) (const nil
) integer
)
443 :group
'cperl-affected-by-hairy
)
445 (defcustom cperl-pod-face
'font-lock-comment-face
446 "*Face for POD highlighting."
450 (defcustom cperl-pod-head-face
'font-lock-variable-name-face
451 "*Face for POD highlighting.
452 Font for POD headers."
456 (defcustom cperl-here-face
'font-lock-string-face
457 "*Face for here-docs highlighting."
461 ;;; Some double-evaluation happened with font-locks... Needed with 21.2...
462 (defvar cperl-singly-quote-face
(featurep 'xemacs
))
464 (defcustom cperl-invalid-face
'underline
465 "*Face for highlighting trailing whitespace."
470 (defcustom cperl-pod-here-fontify
'(featurep 'font-lock
)
471 "*Not-nil after evaluation means to highlight POD and here-docs sections."
475 (defcustom cperl-fontify-m-as-s t
476 "*Not-nil means highlight 1arg regular expressions operators same as 2arg."
480 (defcustom cperl-highlight-variables-indiscriminately nil
481 "*Non-nil means perform additional highlighting on variables.
482 Currently only changes how scalar variables are highlighted.
483 Note that that variable is only read at initialization time for
484 the variable `cperl-font-lock-keywords-2', so changing it after you've
485 entered CPerl mode the first time will have no effect."
489 (defcustom cperl-pod-here-scan t
490 "*Not-nil means look for POD and here-docs sections during startup.
491 You can always make lookup from menu or using \\[cperl-find-pods-heres]."
495 (defcustom cperl-regexp-scan t
496 "*Not-nil means make marking of regular expression more thorough.
497 Effective only with `cperl-pod-here-scan'."
501 (defcustom cperl-hook-after-change t
502 "*Not-nil means install hook to know which regions of buffer are changed.
503 May significantly speed up delayed fontification. Changes take effect
508 (defcustom cperl-imenu-addback nil
509 "*Not-nil means add backreferences to generated `imenu's.
510 May require patched `imenu' and `imenu-go'. Obsolete."
512 :group
'cperl-help-system
)
514 (defcustom cperl-max-help-size
66
515 "*Non-nil means shrink-wrapping of info-buffer allowed up to these percents."
516 :type
'(choice integer
(const nil
))
517 :group
'cperl-help-system
)
519 (defcustom cperl-shrink-wrap-info-frame t
520 "*Non-nil means shrink-wrapping of info-buffer-frame allowed."
522 :group
'cperl-help-system
)
524 (defcustom cperl-info-page
"perl"
525 "*Name of the info page containing perl docs.
526 Older version of this page was called `perl5', newer `perl'."
528 :group
'cperl-help-system
)
530 (defcustom cperl-use-syntax-table-text-property
531 (boundp 'parse-sexp-lookup-properties
)
532 "*Non-nil means CPerl sets up and uses `syntax-table' text property."
536 (defcustom cperl-use-syntax-table-text-property-for-tags
537 cperl-use-syntax-table-text-property
538 "*Non-nil means: set up and use `syntax-table' text property generating TAGS."
542 (defcustom cperl-scan-files-regexp
"\\.\\([pP][Llm]\\|xs\\)$"
543 "*Regexp to match files to scan when generating TAGS."
547 (defcustom cperl-noscan-files-regexp
548 "/\\(\\.\\.?\\|SCCS\\|RCS\\|CVS\\|blib\\)$"
549 "*Regexp to match files/dirs to skip when generating TAGS."
553 (defcustom cperl-regexp-indent-step nil
554 "*Indentation used when beautifying regexps.
555 If nil, the value of `cperl-indent-level' will be used."
556 :type
'(choice integer
(const nil
))
557 :group
'cperl-indentation-details
)
559 (defcustom cperl-indent-left-aligned-comments t
560 "*Non-nil means that the comment starting in leftmost column should indent."
562 :group
'cperl-indentation-details
)
564 (defcustom cperl-under-as-char nil
565 "*Non-nil means that the _ (underline) should be treated as word char."
569 (defcustom cperl-extra-perl-args
""
570 "*Extra arguments to use when starting Perl.
571 Currently used with `cperl-check-syntax' only."
575 (defcustom cperl-message-electric-keyword t
576 "*Non-nil means that the `cperl-electric-keyword' prints a help message."
578 :group
'cperl-help-system
)
580 (defcustom cperl-indent-region-fix-constructs
1
581 "*Amount of space to insert between `}' and `else' or `elsif'
582 in `cperl-indent-region'. Set to nil to leave as is. Values other
583 than 1 and nil will probably not work."
584 :type
'(choice (const nil
) (const 1))
585 :group
'cperl-indentation-details
)
587 (defcustom cperl-break-one-line-blocks-when-indent t
588 "*Non-nil means that one-line if/unless/while/until/for/foreach BLOCKs
589 need to be reformatted into multiline ones when indenting a region."
591 :group
'cperl-indentation-details
)
593 (defcustom cperl-fix-hanging-brace-when-indent t
594 "*Non-nil means that BLOCK-end `}' may be put on a separate line
595 when indenting a region.
596 Braces followed by else/elsif/while/until are excepted."
598 :group
'cperl-indentation-details
)
600 (defcustom cperl-merge-trailing-else t
601 "*Non-nil means that BLOCK-end `}' followed by else/elsif/continue
602 may be merged to be on the same line when indenting a region."
604 :group
'cperl-indentation-details
)
606 (defcustom cperl-indent-parens-as-block nil
607 "*Non-nil means that non-block ()-, {}- and []-groups are indented as blocks,
608 but for trailing \",\" inside the group, which won't increase indentation.
609 One should tune up `cperl-close-paren-offset' as well."
611 :group
'cperl-indentation-details
)
613 (defcustom cperl-syntaxify-by-font-lock
614 (and cperl-can-font-lock
615 (boundp 'parse-sexp-lookup-properties
))
616 "*Non-nil means that CPerl uses `font-lock's routines for syntaxification."
617 :type
'(choice (const message
) boolean
)
620 (defcustom cperl-syntaxify-unwind
622 "*Non-nil means that CPerl unwinds to a start of a long construction
623 when syntaxifying a chunk of buffer."
627 (defcustom cperl-syntaxify-for-menu
629 "*Non-nil means that CPerl syntaxifies up to the point before showing menu.
630 This way enabling/disabling of menu items is more correct."
634 (defcustom cperl-ps-print-face-properties
635 '((font-lock-keyword-face nil nil bold shadow
)
636 (font-lock-variable-name-face nil nil bold
)
637 (font-lock-function-name-face nil nil bold italic box
)
638 (font-lock-constant-face nil
"LightGray" bold
)
639 (cperl-array-face nil
"LightGray" bold underline
)
640 (cperl-hash-face nil
"LightGray" bold italic underline
)
641 (font-lock-comment-face nil
"LightGray" italic
)
642 (font-lock-string-face nil nil italic underline
)
643 (cperl-nonoverridable-face nil nil italic underline
)
644 (font-lock-type-face nil nil underline
)
645 (font-lock-warning-face nil
"LightGray" bold italic box
)
646 (underline nil
"LightGray" strikeout
))
647 "List given as an argument to `ps-extend-face-list' in `cperl-ps-print'."
648 :type
'(repeat (cons symbol
649 (cons (choice (const nil
) string
)
650 (cons (choice (const nil
) string
)
654 (defvar cperl-dark-background
655 (cperl-choose-color "navy" "os2blue" "darkgreen"))
656 (defvar cperl-dark-foreground
657 (cperl-choose-color "orchid1" "orange"))
659 (defface cperl-nonoverridable-face
660 `((((class grayscale
) (background light
))
661 (:background
"Gray90" :slant italic
:underline t
))
662 (((class grayscale
) (background dark
))
663 (:foreground
"Gray80" :slant italic
:underline t
:weight bold
))
664 (((class color
) (background light
))
665 (:foreground
"chartreuse3"))
666 (((class color
) (background dark
))
667 (:foreground
,cperl-dark-foreground
))
668 (t (:weight bold
:underline t
)))
669 "Font Lock mode face used non-overridable keywords and modifiers of regexps."
672 (defface cperl-array-face
673 `((((class grayscale
) (background light
))
674 (:background
"Gray90" :weight bold
))
675 (((class grayscale
) (background dark
))
676 (:foreground
"Gray80" :weight bold
))
677 (((class color
) (background light
))
678 (:foreground
"Blue" :background
"lightyellow2" :weight bold
))
679 (((class color
) (background dark
))
680 (:foreground
"yellow" :background
,cperl-dark-background
:weight bold
))
682 "Font Lock mode face used to highlight array names."
685 (defface cperl-hash-face
686 `((((class grayscale
) (background light
))
687 (:background
"Gray90" :weight bold
:slant italic
))
688 (((class grayscale
) (background dark
))
689 (:foreground
"Gray80" :weight bold
:slant italic
))
690 (((class color
) (background light
))
691 (:foreground
"Red" :background
"lightyellow2" :weight bold
:slant italic
))
692 (((class color
) (background dark
))
693 (:foreground
"Red" :background
,cperl-dark-background
:weight bold
:slant italic
))
694 (t (:weight bold
:slant italic
)))
695 "Font Lock mode face used to highlight hash names."
700 ;;; Short extra-docs.
702 (defvar cperl-tips
'please-ignore-this-line
703 "Get maybe newer version of this package from
704 http://ilyaz.org/software/emacs
705 Subdirectory `cperl-mode' may contain yet newer development releases and/or
706 patches to related files.
708 For best results apply to an older Emacs the patches from
709 ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode/patches
710 \(this upgrades syntax-parsing abilities of Emacsen v19.34 and
711 v20.2 up to the level of Emacs v20.3 - a must for a good Perl
712 mode.) As of beginning of 2003, XEmacs may provide a similar ability.
714 Get support packages choose-color.el (or font-lock-extra.el before
715 19.30), imenu-go.el from the same place. \(Look for other files there
716 too... ;-). Get a patch for imenu.el in 19.29. Note that for 19.30 and
717 later you should use choose-color.el *instead* of font-lock-extra.el
718 \(and you will not get smart highlighting in C :-().
720 Note that to enable Compile choices in the menu you need to install
723 If your Emacs does not default to `cperl-mode' on Perl files, and you
724 want it to: put the following into your .emacs file:
726 (defalias 'perl-mode 'cperl-mode)
729 $CPAN/doc/manual/info/perl5-old/perl5-info.tar.gz
730 Also, one can generate a newer documentation running `pod2texi' converter
731 $CPAN/doc/manual/info/perl5/pod2texi-0.1.tar.gz
733 If you use imenu-go, run imenu on perl5-info buffer (you can do it
734 from Perl menu). If many files are related, generate TAGS files from
735 Tools/Tags submenu in Perl menu.
737 If some class structure is too complicated, use Tools/Hierarchy-view
738 from Perl menu, or hierarchic view of imenu. The second one uses the
739 current buffer only, the first one requires generation of TAGS from
740 Perl/Tools/Tags menu beforehand.
742 Run Perl/Tools/Insert-spaces-if-needed to fix your lazy typing.
744 Switch auto-help on/off with Perl/Tools/Auto-help.
746 Though with contemporary Emaxen CPerl mode should maintain the correct
747 parsing of Perl even when editing, sometimes it may be lost. Fix this by
751 In cases of more severe confusion sometimes it is helpful to do
753 \\[load-library] cperl-mode RET
756 Before reporting (non-)problems look in the problem section of online
757 micro-docs on what I know about CPerl problems.")
759 (defvar cperl-problems
'please-ignore-this-line
760 "Description of problems in CPerl mode.
761 Some faces will not be shown on some versions of Emacs unless you
762 install choose-color.el, available from
763 http://ilyaz.org/software/emacs
765 `fill-paragraph' on a comment may leave the point behind the
766 paragraph. It also triggers a bug in some versions of Emacs (CPerl tries
767 to detect it and bulk out).
769 See documentation of a variable `cperl-problems-old-emaxen' for the
770 problems which disappear if you upgrade Emacs to a reasonably new
771 version (20.3 for Emacs, and those of 2004 for XEmacs).")
773 (defvar cperl-problems-old-emaxen
'please-ignore-this-line
774 "Description of problems in CPerl mode specific for older Emacs versions.
776 Emacs had a _very_ restricted syntax parsing engine until version
777 20.1. Most problems below are corrected starting from this version of
778 Emacs, and all of them should be fixed in version 20.3. (Or apply
779 patches to Emacs 19.33/34 - see tips.) XEmacs was very backward in
780 this respect (until 2003).
782 Note that even with newer Emacsen in some very rare cases the details
783 of interaction of `font-lock' and syntaxification may be not cleaned
784 up yet. You may get slightly different colors basing on the order of
785 fontification and syntaxification. Say, the initial faces is correct,
786 but editing the buffer breaks this.
788 Even with older Emacsen CPerl mode tries to corrects some Emacs
789 misunderstandings, however, for efficiency reasons the degree of
790 correction is different for different operations. The partially
791 corrected problems are: POD sections, here-documents, regexps. The
792 operations are: highlighting, indentation, electric keywords, electric
795 This may be confusing, since the regexp s#//#/#\; may be highlighted
796 as a comment, but it will be recognized as a regexp by the indentation
797 code. Or the opposite case, when a POD section is highlighted, but
798 may break the indentation of the following code (though indentation
799 should work if the balance of delimiters is not broken by POD).
801 The main trick (to make $ a \"backslash\") makes constructions like
802 ${aaa} look like unbalanced braces. The only trick I can think of is
803 to insert it as $ {aaa} (valid in perl5, not in perl4).
805 Similar problems arise in regexps, when /(\\s|$)/ should be rewritten
806 as /($|\\s)/. Note that such a transposition is not always possible.
808 The solution is to upgrade your Emacs or patch an older one. Note
809 that Emacs 20.2 has some bugs related to `syntax-table' text
810 properties. Patches are available on the main CPerl download site,
813 If these bugs cannot be fixed on your machine (say, you have an inferior
814 environment and cannot recompile), you may still disable all the fancy stuff
815 via `cperl-use-syntax-table-text-property'.")
817 (defvar cperl-praise
'please-ignore-this-line
818 "Advantages of CPerl mode.
820 0) It uses the newest `syntax-table' property ;-);
822 1) It does 99% of Perl syntax correct (as opposed to 80-90% in Perl
823 mode - but the latter number may have improved too in last years) even
824 with old Emaxen which do not support `syntax-table' property.
826 When using `syntax-table' property for syntax assist hints, it should
827 handle 99.995% of lines correct - or somesuch. It automatically
828 updates syntax assist hints when you edit your script.
830 2) It is generally believed to be \"the most user-friendly Emacs
831 package\" whatever it may mean (I doubt that the people who say similar
832 things tried _all_ the rest of Emacs ;-), but this was not a lonely
835 3) Everything is customizable, one-by-one or in a big sweep;
837 4) It has many easily-accessable \"tools\":
838 a) Can run program, check syntax, start debugger;
839 b) Can lineup vertically \"middles\" of rows, like `=' in
842 c) Can insert spaces where this impoves readability (in one
843 interactive sweep over the buffer);
844 d) Has support for imenu, including:
845 1) Separate unordered list of \"interesting places\";
846 2) Separate TOC of POD sections;
847 3) Separate list of packages;
848 4) Hierarchical view of methods in (sub)packages;
849 5) and functions (by the full name - with package);
850 e) Has an interface to INFO docs for Perl; The interface is
851 very flexible, including shrink-wrapping of
852 documentation buffer/frame;
853 f) Has a builtin list of one-line explanations for perl constructs.
854 g) Can show these explanations if you stay long enough at the
855 corresponding place (or on demand);
856 h) Has an enhanced fontification (using 3 or 4 additional faces
857 comparing to font-lock - basically, different
858 namespaces in Perl have different colors);
859 i) Can construct TAGS basing on its knowledge of Perl syntax,
860 the standard menu has 6 different way to generate
861 TAGS (if \"by directory\", .xs files - with C-language
862 bindings - are included in the scan);
863 j) Can build a hierarchical view of classes (via imenu) basing
864 on generated TAGS file;
865 k) Has electric parentheses, electric newlines, uses Abbrev
866 for electric logical constructs
868 with different styles of expansion (context sensitive
869 to be not so bothering). Electric parentheses behave
870 \"as they should\" in a presence of a visible region.
871 l) Changes msb.el \"on the fly\" to insert a group \"Perl files\";
877 n) Highlights (by user-choice) either 3-delimiters constructs
878 (such as tr/a/b/), or regular expressions and `y/tr';
879 o) Highlights trailing whitespace;
880 p) Is able to manipulate Perl Regular Expressions to ease
881 conversion to a more readable form.
882 q) Can ispell POD sections and HERE-DOCs.
883 r) Understands comments and character classes inside regular
884 expressions; can find matching () and [] in a regular expression.
885 s) Allows indentation of //x-style regular expressions;
886 t) Highlights different symbols in regular expressions according
887 to their function; much less problems with backslashitis;
888 u) Allows to find regular expressions which contain interpolated parts.
890 5) The indentation engine was very smart, but most of tricks may be
891 not needed anymore with the support for `syntax-table' property. Has
892 progress indicator for indentation (with `imenu' loaded).
894 6) Indent-region improves inline-comments as well; also corrects
895 whitespace *inside* the conditional/loop constructs.
897 7) Fill-paragraph correctly handles multi-line comments;
899 8) Can switch to different indentation styles by one command, and restore
900 the settings present before the switch.
902 9) When doing indentation of control constructs, may correct
903 line-breaks/spacing between elements of the construct.
905 10) Uses a linear-time algorith for indentation of regions (on Emaxen with
906 capable syntax engines).
908 11) Syntax-highlight, indentation, sexp-recognition inside regular expressions.
911 (defvar cperl-speed
'please-ignore-this-line
912 "This is an incomplete compendium of what is available in other parts
913 of CPerl documentation. (Please inform me if I skept anything.)
915 There is a perception that CPerl is slower than alternatives. This part
916 of documentation is designed to overcome this misconception.
918 *By default* CPerl tries to enable the most comfortable settings.
919 From most points of view, correctly working package is infinitely more
920 comfortable than a non-correctly working one, thus by default CPerl
921 prefers correctness over speed. Below is the guide how to change
922 settings if your preferences are different.
924 A) Speed of loading the file. When loading file, CPerl may perform a
925 scan which indicates places which cannot be parsed by primitive Emacs
926 syntax-parsing routines, and marks them up so that either
928 A1) CPerl may work around these deficiencies (for big chunks, mostly
929 PODs and HERE-documents), or
930 A2) On capable Emaxen CPerl will use improved syntax-handlings
931 which reads mark-up hints directly.
933 The scan in case A2 is much more comprehensive, thus may be slower.
935 User can disable syntax-engine-helping scan of A2 by setting
936 `cperl-use-syntax-table-text-property'
937 variable to nil (if it is set to t).
939 One can disable the scan altogether (both A1 and A2) by setting
940 `cperl-pod-here-scan'
943 B) Speed of editing operations.
945 One can add a (minor) speedup to editing operations by setting
946 `cperl-use-syntax-table-text-property'
947 variable to nil (if it is set to t). This will disable
948 syntax-engine-helping scan, thus will make many more Perl
949 constructs be wrongly recognized by CPerl, thus may lead to
950 wrongly matched parentheses, wrong indentation, etc.
952 One can unset `cperl-syntaxify-unwind'. This might speed up editing
953 of, say, long POD sections.")
955 (defvar cperl-tips-faces
'please-ignore-this-line
956 "CPerl mode uses following faces for highlighting:
958 `cperl-array-face' Array names
959 `cperl-hash-face' Hash names
960 `font-lock-comment-face' Comments, PODs and whatever is considered
961 syntaxically to be not code
962 `font-lock-constant-face' HERE-doc delimiters, labels, delimiters of
963 2-arg operators s/y/tr/ or of RExen,
964 `font-lock-warning-face' Special-cased m// and s//foo/,
965 `font-lock-function-name-face' _ as a target of a file tests, file tests,
966 subroutine names at the moment of definition
967 (except those conflicting with Perl operators),
968 package names (when recognized), format names
969 `font-lock-keyword-face' Control flow switch constructs, declarators
970 `cperl-nonoverridable-face' Non-overridable keywords, modifiers of RExen
971 `font-lock-string-face' Strings, qw() constructs, RExen, POD sections,
972 literal parts and the terminator of formats
973 and whatever is syntaxically considered
975 `font-lock-type-face' Overridable keywords
976 `font-lock-variable-name-face' Variable declarations, indirect array and
977 hash names, POD headers/item names
978 `cperl-invalid' Trailing whitespace
980 Note that in several situations the highlighting tries to inform about
981 possible confusion, such as different colors for function names in
982 declarations depending on what they (do not) override, or special cases
983 m// and s/// which do not do what one would expect them to do.
985 Help with best setup of these faces for printout requested (for each of
986 the faces: please specify bold, italic, underline, shadow and box.)
988 In regular expressions (except character classes):
989 `font-lock-string-face' \"Normal\" stuff and non-0-length constructs
990 `font-lock-constant-face': Delimiters
991 `font-lock-warning-face' Special-cased m// and s//foo/,
992 Mismatched closing delimiters, parens
993 we couldn't match, misplaced quantifiers,
994 unrecognized escape sequences
995 `cperl-nonoverridable-face' Modifiers, as gism in m/REx/gism
996 `font-lock-type-face' POSIX classes inside charclasses,
997 escape sequences with arguments (\x \23 \p \N)
998 and others match-a-char escape sequences
999 `font-lock-keyword-face' Capturing parens, and |
1000 `font-lock-function-name-face' Special symbols: $ ^ . [ ] [^ ] (?{ }) (??{ })
1001 `font-lock-builtin-face' \"Remaining\" 0-length constructs, executable
1002 parts of a REx, not-capturing parens
1003 `font-lock-variable-name-face' Interpolated constructs, embedded code
1004 `font-lock-comment-face' Embedded comments
1010 ;;; Portability stuff:
1012 (defmacro cperl-define-key
(emacs-key definition
&optional xemacs-key
)
1013 `(define-key cperl-mode-map
1015 `(if (featurep 'xemacs
) ,xemacs-key
,emacs-key
)
1019 (defvar cperl-del-back-ch
1020 (car (append (where-is-internal 'delete-backward-char
)
1021 (where-is-internal 'backward-delete-char-untabify
)))
1022 "Character generated by key bound to `delete-backward-char'.")
1024 (and (vectorp cperl-del-back-ch
) (= (length cperl-del-back-ch
) 1)
1025 (setq cperl-del-back-ch
(aref cperl-del-back-ch
0)))
1027 (defun cperl-mark-active () (mark)) ; Avoid undefined warning
1028 (if (featurep 'xemacs
)
1030 ;; "Active regions" are on: use region only if active
1031 ;; "Active regions" are off: use region unconditionally
1032 (defun cperl-use-region-p ()
1033 (if zmacs-regions
(mark) t
)))
1034 (defun cperl-use-region-p ()
1035 (if transient-mark-mode mark-active t
))
1036 (defun cperl-mark-active () mark-active
))
1038 (defsubst cperl-enable-font-lock
()
1039 cperl-can-font-lock
)
1041 (defun cperl-putback-char (c) ; Emacs 19
1042 (set 'unread-command-events
(list c
))) ; Avoid undefined warning
1044 (if (featurep 'xemacs
)
1045 (defun cperl-putback-char (c) ; XEmacs >= 19.12
1046 (setq unread-command-events
(list (eval '(character-to-event c
))))))
1048 (or (fboundp 'uncomment-region
)
1049 (defun uncomment-region (beg end
)
1051 (comment-region beg end -
1)))
1053 (defvar cperl-do-not-fontify
1054 (if (string< emacs-version
"19.30")
1057 "Text property which inhibits refontification.")
1059 (defsubst cperl-put-do-not-fontify
(from to
&optional post
)
1060 ;; If POST, do not do it with postponed fontification
1061 (if (and post cperl-syntaxify-by-font-lock
)
1063 (put-text-property (max (point-min) (1- from
))
1064 to cperl-do-not-fontify t
)))
1066 (defcustom cperl-mode-hook nil
1067 "Hook run by CPerl mode."
1071 (defvar cperl-syntax-state nil
)
1072 (defvar cperl-syntax-done-to nil
)
1073 (defvar cperl-emacs-can-parse
(> (length (save-excursion
1074 (parse-partial-sexp (point) (point)))) 9))
1076 ;; Make customization possible "in reverse"
1077 (defsubst cperl-val
(symbol &optional default hairy
)
1079 ((eq (symbol-value symbol
) 'null
) default
)
1080 (cperl-hairy (or hairy t
))
1081 (t (symbol-value symbol
))))
1084 (defun cperl-make-indent (column &optional minimum keep
)
1085 "Makes indent of the current line the requested amount.
1086 Unless KEEP, removes the old indentation. Works around a bug in ancient
1088 (let ((prop (get-text-property (point) 'syntax-type
)))
1090 (delete-horizontal-space))
1091 (indent-to column minimum
)
1092 ;; In old versions (e.g., 19.33) `indent-to' would not inherit properties
1094 (> (current-column) 0)
1097 (or (get-text-property (point) 'syntax-type
)
1098 (and (looking-at "\\=[ \t]")
1099 (put-text-property (point) (match-end 0)
1100 'syntax-type prop
)))))))
1102 ;;; Probably it is too late to set these guys already, but it can help later:
1104 ;;;(and cperl-clobber-mode-lists
1105 ;;;(setq auto-mode-alist
1106 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist ))
1107 ;;;(and (boundp 'interpreter-mode-alist)
1108 ;;; (setq interpreter-mode-alist (append interpreter-mode-alist
1109 ;;; '(("miniperl" . perl-mode))))))
1115 '(imenu easymenu etags timer man info
))
1116 (if (fboundp 'ps-extend-face-list
)
1117 (defmacro cperl-ps-extend-face-list
(arg)
1118 `(ps-extend-face-list ,arg
))
1119 (defmacro cperl-ps-extend-face-list
(arg)
1120 `(error "This version of Emacs has no `ps-extend-face-list'")))
1121 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs,
1122 ;; macros instead of defsubsts don't work on Emacs, so we do the
1123 ;; expansion manually. Any other suggestions?
1126 (defvar cperl-mode-abbrev-table nil
1127 "Abbrev table in use in CPerl mode buffers.")
1129 (add-hook 'edit-var-mode-alist
'(perl-mode (regexp .
"^cperl-")))
1131 (defvar cperl-mode-map
() "Keymap used in CPerl mode.")
1133 (if cperl-mode-map nil
1134 (setq cperl-mode-map
(make-sparse-keymap))
1135 (cperl-define-key "{" 'cperl-electric-lbrace
)
1136 (cperl-define-key "[" 'cperl-electric-paren
)
1137 (cperl-define-key "(" 'cperl-electric-paren
)
1138 (cperl-define-key "<" 'cperl-electric-paren
)
1139 (cperl-define-key "}" 'cperl-electric-brace
)
1140 (cperl-define-key "]" 'cperl-electric-rparen
)
1141 (cperl-define-key ")" 'cperl-electric-rparen
)
1142 (cperl-define-key ";" 'cperl-electric-semi
)
1143 (cperl-define-key ":" 'cperl-electric-terminator
)
1144 (cperl-define-key "\C-j" 'newline-and-indent
)
1145 (cperl-define-key "\C-c\C-j" 'cperl-linefeed
)
1146 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless
)
1147 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline
)
1148 (cperl-define-key "\C-c\C-k" 'cperl-toggle-abbrev
)
1149 (cperl-define-key "\C-c\C-w" 'cperl-toggle-construct-fix
)
1150 (cperl-define-key "\C-c\C-f" 'auto-fill-mode
)
1151 (cperl-define-key "\C-c\C-e" 'cperl-toggle-electric
)
1152 (cperl-define-key "\C-c\C-b" 'cperl-find-bad-style
)
1153 (cperl-define-key "\C-c\C-p" 'cperl-pod-spell
)
1154 (cperl-define-key "\C-c\C-d" 'cperl-here-doc-spell
)
1155 (cperl-define-key "\C-c\C-n" 'cperl-narrow-to-here-doc
)
1156 (cperl-define-key "\C-c\C-v" 'cperl-next-interpolated-REx
)
1157 (cperl-define-key "\C-c\C-x" 'cperl-next-interpolated-REx-0
)
1158 (cperl-define-key "\C-c\C-y" 'cperl-next-interpolated-REx-1
)
1159 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp
)
1160 (cperl-define-key "\C-c\C-hp" 'cperl-perldoc
)
1161 (cperl-define-key "\C-c\C-hP" 'cperl-perldoc-at-point
)
1162 (cperl-define-key "\e\C-q" 'cperl-indent-exp
) ; Usually not bound
1163 (cperl-define-key [?\C-\M-\|
] 'cperl-lineup
1165 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph)
1166 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment)
1167 (cperl-define-key "\177" 'cperl-electric-backspace
)
1168 (cperl-define-key "\t" 'cperl-indent-command
)
1169 ;; don't clobber the backspace binding:
1170 (cperl-define-key "\C-c\C-hF" 'cperl-info-on-command
1171 [(control c
) (control h
) F
])
1172 (if (cperl-val 'cperl-clobber-lisp-bindings
)
1174 (cperl-define-key "\C-hf"
1175 ;;(concat (char-to-string help-char) "f") ; does not work
1176 'cperl-info-on-command
1178 (cperl-define-key "\C-hv"
1179 ;;(concat (char-to-string help-char) "v") ; does not work
1182 (cperl-define-key "\C-c\C-hf"
1183 ;;(concat (char-to-string help-char) "f") ; does not work
1184 (key-binding "\C-hf")
1185 [(control c
) (control h
) f
])
1186 (cperl-define-key "\C-c\C-hv"
1187 ;;(concat (char-to-string help-char) "v") ; does not work
1188 (key-binding "\C-hv")
1189 [(control c
) (control h
) v
]))
1190 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-current-command
1191 [(control c
) (control h
) f
])
1192 (cperl-define-key "\C-c\C-hv"
1193 ;;(concat (char-to-string help-char) "v") ; does not work
1195 [(control c
) (control h
) v
]))
1196 (if (and (featurep 'xemacs
)
1197 (<= emacs-minor-version
11) (<= emacs-major-version
19))
1199 ;; substitute-key-definition is usefulness-deenhanced...
1200 ;;;;;(cperl-define-key "\M-q" 'cperl-fill-paragraph)
1201 (cperl-define-key "\e;" 'cperl-indent-for-comment
)
1202 (cperl-define-key "\e\C-\\" 'cperl-indent-region
))
1203 (or (boundp 'fill-paragraph-function
)
1204 (substitute-key-definition
1205 'fill-paragraph
'cperl-fill-paragraph
1206 cperl-mode-map global-map
))
1207 (substitute-key-definition
1208 'indent-sexp
'cperl-indent-exp
1209 cperl-mode-map global-map
)
1210 (substitute-key-definition
1211 'indent-region
'cperl-indent-region
1212 cperl-mode-map global-map
)
1213 (substitute-key-definition
1214 'indent-for-comment
'cperl-indent-for-comment
1215 cperl-mode-map global-map
)))
1218 (defvar cperl-lazy-installed
)
1219 (defvar cperl-old-style nil
)
1224 cperl-menu cperl-mode-map
"Menu for CPerl mode"
1226 ["Beginning of function" beginning-of-defun
t]
1227 ["End of function" end-of-defun
t]
1228 ["Mark function" mark-defun
t]
1229 ["Indent expression" cperl-indent-exp t
]
1230 ["Fill paragraph/comment" fill-paragraph t
]
1232 ["Line up a construction" cperl-lineup
(cperl-use-region-p)]
1233 ["Invert if/unless/while etc" cperl-invert-if-unless t
]
1235 ["Beautify" cperl-beautify-regexp
1236 cperl-use-syntax-table-text-property
]
1237 ["Beautify one level deep" (cperl-beautify-regexp 1)
1238 cperl-use-syntax-table-text-property
]
1239 ["Beautify a group" cperl-beautify-level
1240 cperl-use-syntax-table-text-property
]
1241 ["Beautify a group one level deep" (cperl-beautify-level 1)
1242 cperl-use-syntax-table-text-property
]
1243 ["Contract a group" cperl-contract-level
1244 cperl-use-syntax-table-text-property
]
1245 ["Contract groups" cperl-contract-levels
1246 cperl-use-syntax-table-text-property
]
1248 ["Find next interpolated" cperl-next-interpolated-REx
1249 (next-single-property-change (point-min) 'REx-interpolated
)]
1250 ["Find next interpolated (no //o)"
1251 cperl-next-interpolated-REx-0
1252 (or (text-property-any (point-min) (point-max) 'REx-interpolated t
)
1253 (text-property-any (point-min) (point-max) 'REx-interpolated
1))]
1254 ["Find next interpolated (neither //o nor whole-REx)"
1255 cperl-next-interpolated-REx-1
1256 (text-property-any (point-min) (point-max) 'REx-interpolated t
)])
1257 ["Insert spaces if needed to fix style" cperl-find-bad-style t
]
1258 ["Refresh \"hard\" constructions" cperl-find-pods-heres t
]
1260 ["Indent region" cperl-indent-region
(cperl-use-region-p)]
1261 ["Comment region" cperl-comment-region
(cperl-use-region-p)]
1262 ["Uncomment region" cperl-uncomment-region
(cperl-use-region-p)]
1264 ["Run" mode-compile
(fboundp 'mode-compile
)]
1265 ["Kill" mode-compile-kill
(and (fboundp 'mode-compile-kill
)
1266 (get-buffer "*compilation*"))]
1267 ["Next error" next-error
(get-buffer "*compilation*")]
1268 ["Check syntax" cperl-check-syntax
(fboundp 'mode-compile
)]
1270 ["Debugger" cperl-db t
]
1273 ["Imenu" imenu
(fboundp 'imenu
)]
1274 ["Imenu on Perl Info" cperl-imenu-on-info
(featurep 'imenu
)]
1276 ["Ispell PODs" cperl-pod-spell
1277 ;; Better not to update syntaxification here:
1278 ;; debugging syntaxificatio can be broken by this???
1280 (get-text-property (point-min) 'in-pod
)
1282 (and cperl-syntaxify-for-menu
1283 (cperl-update-syntaxification (point-max) (point-max)))
1284 (next-single-property-change (point-min) 'in-pod nil
(point-max)))
1286 ["Ispell HERE-DOCs" cperl-here-doc-spell
1288 (and cperl-syntaxify-for-menu
1289 (cperl-update-syntaxification (point-max) (point-max)))
1290 (next-single-property-change (point-min) 'here-doc-group nil
(point-max)))
1292 ["Narrow to this HERE-DOC" cperl-narrow-to-here-doc
1293 (eq 'here-doc
(progn
1294 (and cperl-syntaxify-for-menu
1295 (cperl-update-syntaxification (point) (point)))
1296 (get-text-property (point) 'syntax-type
)))]
1297 ["Select this HERE-DOC or POD section"
1298 cperl-select-this-pod-or-here-doc
1300 (and cperl-syntaxify-for-menu
1301 (cperl-update-syntaxification (point) (point)))
1302 (get-text-property (point) 'syntax-type
))
1305 ["CPerl pretty print (exprmntl)" cperl-ps-print
1306 (fboundp 'ps-extend-face-list
)]
1308 ["Syntaxify region" cperl-find-pods-heres-region
1309 (cperl-use-region-p)]
1310 ["Profile syntaxification" cperl-time-fontification t
]
1311 ["Debug errors in delayed fontification" cperl-emulate-lazy-lock t
]
1312 ["Debug unwind for syntactic scan" cperl-toggle-set-debug-unwind t
]
1313 ["Debug backtrace on syntactic scan (BEWARE!!!)"
1314 (cperl-toggle-set-debug-unwind nil t
) t
]
1316 ["Class Hierarchy from TAGS" cperl-tags-hier-init t
]
1317 ;;["Update classes" (cperl-tags-hier-init t) tags-table-list]
1319 ;;; ["Create tags for current file" cperl-etags t]
1320 ;;; ["Add tags for current file" (cperl-etags t) t]
1321 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t]
1322 ;;; ["Add tags for Perl files in directory" (cperl-etags t t) t]
1323 ;;; ["Create tags for Perl files in (sub)directories"
1324 ;;; (cperl-etags nil 'recursive) t]
1325 ;;; ["Add tags for Perl files in (sub)directories"
1326 ;;; (cperl-etags t 'recursive) t])
1327 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer)
1328 ["Create tags for current file" (cperl-write-tags nil t
) t
]
1329 ["Add tags for current file" (cperl-write-tags) t
]
1330 ["Create tags for Perl files in directory"
1331 (cperl-write-tags nil t nil t
) t
]
1332 ["Add tags for Perl files in directory"
1333 (cperl-write-tags nil nil nil t
) t
]
1334 ["Create tags for Perl files in (sub)directories"
1335 (cperl-write-tags nil t t t
) t
]
1336 ["Add tags for Perl files in (sub)directories"
1337 (cperl-write-tags nil nil t t
) t
]))
1339 ["Define word at point" imenu-go-find-at-position
1340 (fboundp 'imenu-go-find-at-position
)]
1341 ["Help on function" cperl-info-on-command t
]
1342 ["Help on function at point" cperl-info-on-current-command t
]
1343 ["Help on symbol at point" cperl-get-help t
]
1344 ["Perldoc" cperl-perldoc t
]
1345 ["Perldoc on word at point" cperl-perldoc-at-point t
]
1346 ["View manpage of POD in this file" cperl-build-manpage t
]
1347 ["Auto-help on" cperl-lazy-install
1348 (and (fboundp 'run-with-idle-timer
)
1349 (not cperl-lazy-installed
))]
1350 ["Auto-help off" cperl-lazy-unstall
1351 (and (fboundp 'run-with-idle-timer
)
1352 cperl-lazy-installed
)])
1354 ["Auto newline" cperl-toggle-auto-newline t
]
1355 ["Electric parens" cperl-toggle-electric t
]
1356 ["Electric keywords" cperl-toggle-abbrev t
]
1357 ["Fix whitespace on indent" cperl-toggle-construct-fix t
]
1358 ["Auto-help on Perl constructs" cperl-toggle-autohelp t
]
1359 ["Auto fill" auto-fill-mode t
])
1361 ["CPerl" (cperl-set-style "CPerl") t
]
1362 ["PerlStyle" (cperl-set-style "PerlStyle") t
]
1363 ["GNU" (cperl-set-style "GNU") t
]
1364 ["C++" (cperl-set-style "C++") t
]
1365 ["K&R" (cperl-set-style "K&R") t
]
1366 ["BSD" (cperl-set-style "BSD") t
]
1367 ["Whitesmith" (cperl-set-style "Whitesmith") t
]
1368 ["Memorize Current" (cperl-set-style "Current") t
]
1369 ["Memorized" (cperl-set-style-back) cperl-old-style
])
1371 ["Tips" (describe-variable 'cperl-tips
) t
]
1372 ["Problems" (describe-variable 'cperl-problems
) t
]
1373 ["Speed" (describe-variable 'cperl-speed
) t
]
1374 ["Praise" (describe-variable 'cperl-praise
) t
]
1375 ["Faces" (describe-variable 'cperl-tips-faces
) t
]
1376 ["CPerl mode" (describe-function 'cperl-mode
) t
]
1378 (message "The version of master-file for this CPerl is %s-Emacs"
1379 cperl-version
) t
]))))
1382 (autoload 'c-macro-expand
"cmacexp"
1383 "Display the result of expanding all C macros occurring in the region.
1384 The expansion is entirely correct because it uses the C preprocessor."
1387 ;;; These two must be unwound, otherwise take exponential time
1388 (defconst cperl-maybe-white-and-comment-rex
"[ \t\n]*\\(#[^\n]*\n[ \t\n]*\\)*"
1389 "Regular expression to match optional whitespace with interpspersed comments.
1390 Should contain exactly one group.")
1392 ;;; This one is tricky to unwind; still very inefficient...
1393 (defconst cperl-white-and-comment-rex
"\\([ \t\n]\\|#[^\n]*\n\\)+"
1394 "Regular expression to match whitespace with interpspersed comments.
1395 Should contain exactly one group.")
1398 ;;; Is incorporated in `cperl-imenu--function-name-regexp-perl'
1399 ;;; `cperl-outline-regexp', `defun-prompt-regexp'.
1400 ;;; Details of groups in this may be used in several functions; see comments
1401 ;;; near mentioned above variable(s)...
1402 ;;; sub($$):lvalue{} sub:lvalue{} Both allowed...
1403 (defsubst cperl-after-sub-regexp
(named attr
) ; 9 groups without attr...
1404 "Match the text after `sub' in a subroutine declaration.
1405 If NAMED is nil, allows anonymous subroutines. Matches up to the first \":\"
1406 of attributes (if present), or end of the name or prototype (whatever is
1408 (concat ; Assume n groups before this...
1409 "\\(" ; n+1=name-group
1410 cperl-white-and-comment-rex
; n+2=pre-name
1411 "\\(::[a-zA-Z_0-9:']+\\|[a-zA-Z_'][a-zA-Z_0-9:']*\\)" ; n+3=name
1412 "\\)" ; END n+1=name-group
1414 "\\(" ; n+4=proto-group
1415 cperl-maybe-white-and-comment-rex
; n+5=pre-proto
1416 "\\(([^()]*)\\)" ; n+6=prototype
1417 "\\)?" ; END n+4=proto-group
1418 "\\(" ; n+7=attr-group
1419 cperl-maybe-white-and-comment-rex
; n+8=pre-attr
1420 "\\(" ; n+9=start-attr
1424 cperl-maybe-white-and-comment-rex
; whitespace-comments
1425 "\\(\\sw\\|_\\)+" ; attr-name
1426 ;; attr-arg (1 level of internal parens allowed!)
1427 "\\((\\(\\\\.\\|[^\\\\()]\\|([^\\\\()]*)\\)*)\\)?"
1428 "\\(" ; optional : (XXX allows trailing???)
1429 cperl-maybe-white-and-comment-rex
; whitespace-comments
1434 "\\)?" ; END n+6=proto-group
1437 ;;; Details of groups in this are used in `cperl-imenu--create-perl-index'
1438 ;;; and `cperl-outline-level'.
1439 ;;;; Was: 2=sub|package; now 2=package-group, 5=package-name 8=sub-name (+3)
1440 (defvar cperl-imenu--function-name-regexp-perl
1443 "\\([ \t]*package" ; 2 = package-group
1444 "\\(" ; 3 = package-name-group
1445 cperl-white-and-comment-rex
; 4 = pre-package-name
1446 "\\([a-zA-Z_0-9:']+\\)\\)?\\)" ; 5 = package-name
1449 (cperl-after-sub-regexp 'named nil
) ; 8=name 11=proto 14=attr-start
1450 cperl-maybe-white-and-comment-rex
; 15=pre-block
1452 "=head\\([1-4]\\)[ \t]+" ; 16=level
1453 "\\([^\n]+\\)$" ; 17=text
1456 (defvar cperl-outline-regexp
1457 (concat cperl-imenu--function-name-regexp-perl
"\\|" "\\`"))
1459 (defvar cperl-mode-syntax-table nil
1460 "Syntax table in use in CPerl mode buffers.")
1462 (defvar cperl-string-syntax-table nil
1463 "Syntax table in use in CPerl mode string-like chunks.")
1465 (defsubst cperl-1-
(p)
1466 (max (point-min) (1- p
)))
1468 (defsubst cperl-1
+ (p)
1469 (min (point-max) (1+ p
)))
1471 (if cperl-mode-syntax-table
1473 (setq cperl-mode-syntax-table
(make-syntax-table))
1474 (modify-syntax-entry ?
\\ "\\" cperl-mode-syntax-table
)
1475 (modify-syntax-entry ?
/ "." cperl-mode-syntax-table
)
1476 (modify-syntax-entry ?
* "." cperl-mode-syntax-table
)
1477 (modify-syntax-entry ?
+ "." cperl-mode-syntax-table
)
1478 (modify-syntax-entry ?-
"." cperl-mode-syntax-table
)
1479 (modify-syntax-entry ?
= "." cperl-mode-syntax-table
)
1480 (modify-syntax-entry ?%
"." cperl-mode-syntax-table
)
1481 (modify-syntax-entry ?
< "." cperl-mode-syntax-table
)
1482 (modify-syntax-entry ?
> "." cperl-mode-syntax-table
)
1483 (modify-syntax-entry ?
& "." cperl-mode-syntax-table
)
1484 (modify-syntax-entry ?$
"\\" cperl-mode-syntax-table
)
1485 (modify-syntax-entry ?
\n ">" cperl-mode-syntax-table
)
1486 (modify-syntax-entry ?
# "<" cperl-mode-syntax-table
)
1487 (modify-syntax-entry ?
' "\"" cperl-mode-syntax-table
)
1488 (modify-syntax-entry ?
` "\"" cperl-mode-syntax-table
)
1489 (if cperl-under-as-char
1490 (modify-syntax-entry ?_
"w" cperl-mode-syntax-table
))
1491 (modify-syntax-entry ?
: "_" cperl-mode-syntax-table
)
1492 (modify-syntax-entry ?|
"." cperl-mode-syntax-table
)
1493 (setq cperl-string-syntax-table
(copy-syntax-table cperl-mode-syntax-table
))
1494 (modify-syntax-entry ?$
"." cperl-string-syntax-table
)
1495 (modify-syntax-entry ?\
{ "." cperl-string-syntax-table
)
1496 (modify-syntax-entry ?\
} "." cperl-string-syntax-table
)
1497 (modify-syntax-entry ?
# "." cperl-string-syntax-table
)) ; (?# comment )
1501 (defvar cperl-faces-init nil
)
1503 (defvar cperl-msb-fixed nil
)
1504 (defvar cperl-use-major-mode
'cperl-mode
)
1505 (defvar cperl-font-lock-multiline-start nil
)
1506 (defvar cperl-font-lock-multiline nil
)
1507 (defvar cperl-font-locking nil
)
1509 ;; NB as it stands the code in cperl-mode assumes this only has one
1510 ;; element. If Xemacs 19 support were dropped, this could all be simplified.
1511 (defvar cperl-compilation-error-regexp-alist
1512 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORKS).
1513 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]"
1515 "Alist that specifies how to match errors in perl output.")
1517 (defvar compilation-error-regexp-alist
)
1520 (defun cperl-mode ()
1521 "Major mode for editing Perl code.
1522 Expression and list commands understand all C brackets.
1523 Tab indents for Perl code.
1524 Paragraphs are separated by blank lines only.
1525 Delete converts tabs to spaces as it moves back.
1527 Various characters in Perl almost always come in pairs: {}, (), [],
1528 sometimes <>. When the user types the first, she gets the second as
1529 well, with optional special formatting done on {}. (Disabled by
1530 default.) You can always quote (with \\[quoted-insert]) the left
1531 \"paren\" to avoid the expansion. The processing of < is special,
1532 since most the time you mean \"less\". CPerl mode tries to guess
1533 whether you want to type pair <>, and inserts is if it
1534 appropriate. You can set `cperl-electric-parens-string' to the string that
1535 contains the parenths from the above list you want to be electrical.
1536 Electricity of parenths is controlled by `cperl-electric-parens'.
1537 You may also set `cperl-electric-parens-mark' to have electric parens
1538 look for active mark and \"embrace\" a region if possible.'
1540 CPerl mode provides expansion of the Perl control constructs:
1542 if, else, elsif, unless, while, until, continue, do,
1543 for, foreach, formy and foreachmy.
1545 and POD directives (Disabled by default, see `cperl-electric-keywords'.)
1547 The user types the keyword immediately followed by a space, which
1548 causes the construct to be expanded, and the point is positioned where
1549 she is most likely to want to be. eg. when the user types a space
1550 following \"if\" the following appears in the buffer: if () { or if ()
1551 } { } and the cursor is between the parentheses. The user can then
1552 type some boolean expression within the parens. Having done that,
1553 typing \\[cperl-linefeed] places you - appropriately indented - on a
1554 new line between the braces (if you typed \\[cperl-linefeed] in a POD
1555 directive line, then appropriate number of new lines is inserted).
1557 If CPerl decides that you want to insert \"English\" style construct like
1561 it will not do any expansion. See also help on variable
1562 `cperl-extra-newline-before-brace'. (Note that one can switch the
1563 help message on expansion by setting `cperl-message-electric-keyword'
1566 \\[cperl-linefeed] is a convenience replacement for typing carriage
1567 return. It places you in the next line with proper indentation, or if
1568 you type it inside the inline block of control construct, like
1570 foreach (@lines) {print; print}
1572 and you are on a boundary of a statement inside braces, it will
1573 transform the construct into a multiline and will place you into an
1574 appropriately indented blank line. If you need a usual
1575 `newline-and-indent' behavior, it is on \\[newline-and-indent],
1576 see documentation on `cperl-electric-linefeed'.
1578 Use \\[cperl-invert-if-unless] to change a construction of the form
1588 Setting the variable `cperl-font-lock' to t switches on font-lock-mode
1589 \(even with older Emacsen), `cperl-electric-lbrace-space' to t switches
1590 on electric space between $ and {, `cperl-electric-parens-string' is
1591 the string that contains parentheses that should be electric in CPerl
1592 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'),
1593 setting `cperl-electric-keywords' enables electric expansion of
1594 control structures in CPerl. `cperl-electric-linefeed' governs which
1595 one of two linefeed behavior is preferable. You can enable all these
1596 options simultaneously (recommended mode of use) by setting
1597 `cperl-hairy' to t. In this case you can switch separate options off
1598 by setting them to `null'. Note that one may undo the extra
1599 whitespace inserted by semis and braces in `auto-newline'-mode by
1600 consequent \\[cperl-electric-backspace].
1602 If your site has perl5 documentation in info format, you can use commands
1603 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it.
1604 These keys run commands `cperl-info-on-current-command' and
1605 `cperl-info-on-command', which one is which is controlled by variable
1606 `cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings'
1607 \(in turn affected by `cperl-hairy').
1609 Even if you have no info-format documentation, short one-liner-style
1610 help is available on \\[cperl-get-help], and one can run perldoc or
1613 It is possible to show this help automatically after some idle time.
1614 This is regulated by variable `cperl-lazy-help-time'. Default with
1615 `cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5
1616 secs idle time . It is also possible to switch this on/off from the
1617 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'.
1619 Use \\[cperl-lineup] to vertically lineup some construction - put the
1620 beginning of the region at the start of construction, and make region
1621 span the needed amount of lines.
1623 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify',
1624 `cperl-pod-face', `cperl-pod-head-face' control processing of POD and
1625 here-docs sections. With capable Emaxen results of scan are used
1626 for indentation too, otherwise they are used for highlighting only.
1628 Variables controlling indentation style:
1629 `cperl-tab-always-indent'
1630 Non-nil means TAB in CPerl mode should always reindent the current line,
1631 regardless of where in the line point is when the TAB command is used.
1632 `cperl-indent-left-aligned-comments'
1633 Non-nil means that the comment starting in leftmost column should indent.
1634 `cperl-auto-newline'
1635 Non-nil means automatically newline before and after braces,
1636 and after colons and semicolons, inserted in Perl code. The following
1637 \\[cperl-electric-backspace] will remove the inserted whitespace.
1638 Insertion after colons requires both this variable and
1639 `cperl-auto-newline-after-colon' set.
1640 `cperl-auto-newline-after-colon'
1641 Non-nil means automatically newline even after colons.
1642 Subject to `cperl-auto-newline' setting.
1643 `cperl-indent-level'
1644 Indentation of Perl statements within surrounding block.
1645 The surrounding block's indentation is the indentation
1646 of the line on which the open-brace appears.
1647 `cperl-continued-statement-offset'
1648 Extra indentation given to a substatement, such as the
1649 then-clause of an if, or body of a while, or just a statement continuation.
1650 `cperl-continued-brace-offset'
1651 Extra indentation given to a brace that starts a substatement.
1652 This is in addition to `cperl-continued-statement-offset'.
1653 `cperl-brace-offset'
1654 Extra indentation for line if it starts with an open brace.
1655 `cperl-brace-imaginary-offset'
1656 An open brace following other text is treated as if it the line started
1657 this far to the right of the actual line indentation.
1658 `cperl-label-offset'
1659 Extra indentation for line that is a label.
1660 `cperl-min-label-indent'
1661 Minimal indentation for line that is a label.
1663 Settings for classic indent-styles: K&R BSD=C++ GNU PerlStyle=Whitesmith
1664 `cperl-indent-level' 5 4 2 4
1665 `cperl-brace-offset' 0 0 0 0
1666 `cperl-continued-brace-offset' -5 -4 0 0
1667 `cperl-label-offset' -5 -4 -2 -4
1668 `cperl-continued-statement-offset' 5 4 2 4
1670 CPerl knows several indentation styles, and may bulk set the
1671 corresponding variables. Use \\[cperl-set-style] to do this. Use
1672 \\[cperl-set-style-back] to restore the memorized preexisting values
1673 \(both available from menu). See examples in `cperl-style-examples'.
1675 Part of the indentation style is how different parts of if/elsif/else
1676 statements are broken into lines; in CPerl, this is reflected on how
1677 templates for these constructs are created (controlled by
1678 `cperl-extra-newline-before-brace'), and how reflow-logic should treat \"continuation\" blocks of else/elsif/continue, controlled by the same variable,
1679 and by `cperl-extra-newline-before-brace-multiline',
1680 `cperl-merge-trailing-else', `cperl-indent-region-fix-constructs'.
1682 If `cperl-indent-level' is 0, the statement after opening brace in
1683 column 0 is indented on
1684 `cperl-brace-offset'+`cperl-continued-statement-offset'.
1686 Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook'
1689 DO NOT FORGET to read micro-docs (available from `Perl' menu)
1690 or as help on variables `cperl-tips', `cperl-problems',
1691 `cperl-praise', `cperl-speed'."
1693 (kill-all-local-variables)
1694 (use-local-map cperl-mode-map
)
1695 (if (cperl-val 'cperl-electric-linefeed
)
1697 (local-set-key "\C-J" 'cperl-linefeed
)
1698 (local-set-key "\C-C\C-J" 'newline-and-indent
)))
1700 (cperl-val 'cperl-clobber-lisp-bindings
)
1701 (cperl-val 'cperl-info-on-command-no-prompt
))
1703 ;; don't clobber the backspace binding:
1704 (cperl-define-key "\C-hf" 'cperl-info-on-current-command
[(control h
) f
])
1705 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command
1706 [(control c
) (control h
) f
])))
1707 (setq major-mode cperl-use-major-mode
)
1708 (setq mode-name
"CPerl")
1709 (let ((prev-a-c abbrevs-changed
))
1710 (define-abbrev-table 'cperl-mode-abbrev-table
'(
1711 ("if" "if" cperl-electric-keyword
0)
1712 ("elsif" "elsif" cperl-electric-keyword
0)
1713 ("while" "while" cperl-electric-keyword
0)
1714 ("until" "until" cperl-electric-keyword
0)
1715 ("unless" "unless" cperl-electric-keyword
0)
1716 ("else" "else" cperl-electric-else
0)
1717 ("continue" "continue" cperl-electric-else
0)
1718 ("for" "for" cperl-electric-keyword
0)
1719 ("foreach" "foreach" cperl-electric-keyword
0)
1720 ("formy" "formy" cperl-electric-keyword
0)
1721 ("foreachmy" "foreachmy" cperl-electric-keyword
0)
1722 ("do" "do" cperl-electric-keyword
0)
1723 ("=pod" "=pod" cperl-electric-pod
0)
1724 ("=over" "=over" cperl-electric-pod
0)
1725 ("=head1" "=head1" cperl-electric-pod
0)
1726 ("=head2" "=head2" cperl-electric-pod
0)
1727 ("pod" "pod" cperl-electric-pod
0)
1728 ("over" "over" cperl-electric-pod
0)
1729 ("head1" "head1" cperl-electric-pod
0)
1730 ("head2" "head2" cperl-electric-pod
0)))
1731 (setq abbrevs-changed prev-a-c
))
1732 (setq local-abbrev-table cperl-mode-abbrev-table
)
1733 (if (cperl-val 'cperl-electric-keywords
)
1735 (set-syntax-table cperl-mode-syntax-table
)
1736 ;; Until Emacs is multi-threaded, we do not actually need it local:
1737 (make-local-variable 'cperl-font-lock-multiline-start
)
1738 (make-local-variable 'cperl-font-locking
)
1739 (make-local-variable 'outline-regexp
)
1740 ;; (setq outline-regexp imenu-example--function-name-regexp-perl)
1741 (setq outline-regexp cperl-outline-regexp
)
1742 (make-local-variable 'outline-level
)
1743 (setq outline-level
'cperl-outline-level
)
1744 (make-local-variable 'paragraph-start
)
1745 (setq paragraph-start
(concat "^$\\|" page-delimiter
))
1746 (make-local-variable 'paragraph-separate
)
1747 (setq paragraph-separate paragraph-start
)
1748 (make-local-variable 'paragraph-ignore-fill-prefix
)
1749 (setq paragraph-ignore-fill-prefix t
)
1750 (if (featurep 'xemacs
)
1752 (make-local-variable 'paren-backwards-message
)
1753 (set 'paren-backwards-message t
)))
1754 (make-local-variable 'indent-line-function
)
1755 (setq indent-line-function
'cperl-indent-line
)
1756 (make-local-variable 'require-final-newline
)
1757 (setq require-final-newline mode-require-final-newline
)
1758 (make-local-variable 'comment-start
)
1759 (setq comment-start
"# ")
1760 (make-local-variable 'comment-end
)
1761 (setq comment-end
"")
1762 (make-local-variable 'comment-column
)
1763 (setq comment-column cperl-comment-column
)
1764 (make-local-variable 'comment-start-skip
)
1765 (setq comment-start-skip
"#+ *")
1766 (make-local-variable 'defun-prompt-regexp
)
1768 ;;; (cperl-after-sub-regexp 'named nil) ; 8=name 11=proto 14=attr-start
1769 ;;; cperl-maybe-white-and-comment-rex ; 15=pre-block
1770 (setq defun-prompt-regexp
1771 (concat "^[ \t]*\\(sub"
1772 (cperl-after-sub-regexp 'named
'attr-groups
)
1774 "\\(BEGIN\\|CHECK\\|INIT\\|END\\|AUTOLOAD\\|DESTROY\\)"
1776 cperl-maybe-white-and-comment-rex
))
1777 (make-local-variable 'comment-indent-function
)
1778 (setq comment-indent-function
'cperl-comment-indent
)
1779 (and (boundp 'fill-paragraph-function
)
1781 (make-local-variable 'fill-paragraph-function
)
1782 (set 'fill-paragraph-function
'cperl-fill-paragraph
)))
1783 (make-local-variable 'parse-sexp-ignore-comments
)
1784 (setq parse-sexp-ignore-comments t
)
1785 (make-local-variable 'indent-region-function
)
1786 (setq indent-region-function
'cperl-indent-region
)
1787 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off!
1788 (make-local-variable 'imenu-create-index-function
)
1789 (setq imenu-create-index-function
1790 (function cperl-imenu--create-perl-index
))
1791 (make-local-variable 'imenu-sort-function
)
1792 (setq imenu-sort-function nil
)
1793 (make-local-variable 'vc-rcs-header
)
1794 (set 'vc-rcs-header cperl-vc-rcs-header
)
1795 (make-local-variable 'vc-sccs-header
)
1796 (set 'vc-sccs-header cperl-vc-sccs-header
)
1797 ;; This one is obsolete...
1798 (make-local-variable 'vc-header-alist
)
1800 (set 'vc-header-alist
(or cperl-vc-header-alist
; Avoid warning
1801 `((SCCS ,(car cperl-vc-sccs-header
))
1802 (RCS ,(car cperl-vc-rcs-header
)))))
1804 (cond ((boundp 'compilation-error-regexp-alist-alist
);; xemacs 20.x
1805 (make-local-variable 'compilation-error-regexp-alist-alist
)
1806 (set 'compilation-error-regexp-alist-alist
1807 (cons (cons 'cperl
(car cperl-compilation-error-regexp-alist
))
1808 (symbol-value 'compilation-error-regexp-alist-alist
)))
1809 (if (fboundp 'compilation-build-compilation-error-regexp-alist
)
1810 (let ((f 'compilation-build-compilation-error-regexp-alist
))
1812 (make-local-variable 'compilation-error-regexp-alist
)
1813 (push 'cperl compilation-error-regexp-alist
)))
1814 ((boundp 'compilation-error-regexp-alist
);; xmeacs 19.x
1815 (make-local-variable 'compilation-error-regexp-alist
)
1816 (set 'compilation-error-regexp-alist
1817 (append cperl-compilation-error-regexp-alist
1818 (symbol-value 'compilation-error-regexp-alist
)))))
1819 (make-local-variable 'font-lock-defaults
)
1820 (setq font-lock-defaults
1822 ((string< emacs-version
"19.30")
1823 '(cperl-font-lock-keywords-2 nil nil
((?_ .
"w"))))
1824 ((string< emacs-version
"19.33") ; Which one to use?
1825 '((cperl-font-lock-keywords
1826 cperl-font-lock-keywords-1
1827 cperl-font-lock-keywords-2
) nil nil
((?_ .
"w"))))
1829 '((cperl-load-font-lock-keywords
1830 cperl-load-font-lock-keywords-1
1831 cperl-load-font-lock-keywords-2
) nil nil
((?_ .
"w"))))))
1832 (make-local-variable 'cperl-syntax-state
)
1833 (setq cperl-syntax-state nil
) ; reset syntaxification cache
1834 (if cperl-use-syntax-table-text-property
1836 (make-local-variable 'parse-sexp-lookup-properties
)
1837 ;; Do not introduce variable if not needed, we check it!
1838 (set 'parse-sexp-lookup-properties t
)
1839 ;; Fix broken font-lock:
1840 (or (boundp 'font-lock-unfontify-region-function
)
1841 (set 'font-lock-unfontify-region-function
1842 'font-lock-default-unfontify-region
))
1843 (unless (featurep 'xemacs
) ; Our: just a plug for wrong font-lock
1844 (make-local-variable 'font-lock-unfontify-region-function
)
1845 (set 'font-lock-unfontify-region-function
; not present with old Emacs
1846 'cperl-font-lock-unfontify-region-function
))
1847 (make-local-variable 'cperl-syntax-done-to
)
1848 (setq cperl-syntax-done-to nil
) ; reset syntaxification cache
1849 (make-local-variable 'font-lock-syntactic-keywords
)
1850 (setq font-lock-syntactic-keywords
1851 (if cperl-syntaxify-by-font-lock
1852 '((cperl-fontify-syntaxically))
1853 ;; unless font-lock-syntactic-keywords, font-lock (pre-22.1)
1854 ;; used to ignore syntax-table text-properties. (t) is a hack
1855 ;; to make font-lock think that font-lock-syntactic-keywords
1858 (if (boundp 'font-lock-multiline
) ; Newer font-lock; use its facilities
1860 (setq cperl-font-lock-multiline t
) ; Not localized...
1861 (set (make-local-variable 'font-lock-multiline
) t
))
1862 (make-local-variable 'font-lock-fontify-region-function
)
1863 (set 'font-lock-fontify-region-function
; not present with old Emacs
1864 'cperl-font-lock-fontify-region-function
))
1865 (make-local-variable 'font-lock-fontify-region-function
)
1866 (set 'font-lock-fontify-region-function
; not present with old Emacs
1867 'cperl-font-lock-fontify-region-function
)
1868 (make-local-variable 'cperl-old-style
)
1869 (if (boundp 'normal-auto-fill-function
) ; 19.33 and later
1870 (set (make-local-variable 'normal-auto-fill-function
)
1871 'cperl-do-auto-fill
)
1872 (or (fboundp 'cperl-old-auto-fill-mode
)
1874 (fset 'cperl-old-auto-fill-mode
(symbol-function 'auto-fill-mode
))
1875 (defun auto-fill-mode (&optional arg
)
1877 (eval '(cperl-old-auto-fill-mode arg
)) ; Avoid a warning
1878 (and auto-fill-function
(memq major-mode
'(perl-mode cperl-mode
))
1879 (setq auto-fill-function
'cperl-do-auto-fill
))))))
1880 (if (cperl-enable-font-lock)
1881 (if (cperl-val 'cperl-font-lock
)
1882 (progn (or cperl-faces-init
(cperl-init-faces))
1883 (font-lock-mode 1))))
1884 (set (make-local-variable 'facemenu-add-face-function
)
1885 'cperl-facemenu-add-face-function
) ; XXXX What this guy is for???
1886 (and (boundp 'msb-menu-cond
)
1887 (not cperl-msb-fixed
)
1889 (if (featurep 'easymenu
)
1890 (easy-menu-add cperl-menu
)) ; A NOP in Emacs.
1891 (run-mode-hooks 'cperl-mode-hook
)
1892 (if cperl-hook-after-change
1893 (add-hook 'after-change-functions
'cperl-after-change-function nil t
))
1894 ;; After hooks since fontification will break this
1895 (if cperl-pod-here-scan
1896 (or cperl-syntaxify-by-font-lock
1897 (progn (or cperl-faces-init
(cperl-init-faces-weak))
1898 (cperl-find-pods-heres)))))
1900 ;; Fix for perldb - make default reasonable
1904 (perldb (read-from-minibuffer "Run perldb (like this): "
1905 (if (consp gud-perldb-history
)
1906 (car gud-perldb-history
)
1907 (concat "perl " ;;(file-name-nondirectory
1911 (buffer-file-name)))
1913 '(gud-perldb-history .
1))))
1915 (defun cperl-msb-fix ()
1916 ;; Adds perl files to msb menu, supposes that msb is already loaded
1917 (setq cperl-msb-fixed t
)
1918 (let* ((l (length msb-menu-cond
))
1919 (last (nth (1- l
) msb-menu-cond
))
1920 (precdr (nthcdr (- l
2) msb-menu-cond
)) ; cdr of this is last
1921 (handle (1- (nth 1 last
))))
1922 (setcdr precdr
(list
1924 '(memq major-mode
'(cperl-mode perl-mode
))
1929 ;; This is used by indent-for-comment
1930 ;; to decide how much to indent a comment in CPerl code
1931 ;; based on its context. Do fallback if comment is found wrong.
1933 (defvar cperl-wrong-comment
)
1934 (defvar cperl-st-cfence
'(14)) ; Comment-fence
1935 (defvar cperl-st-sfence
'(15)) ; String-fence
1936 (defvar cperl-st-punct
'(1))
1937 (defvar cperl-st-word
'(2))
1938 (defvar cperl-st-bra
'(4 . ?\
>))
1939 (defvar cperl-st-ket
'(5 . ?\
<))
1942 (defun cperl-comment-indent () ; called at point at supposed comment
1943 (let ((p (point)) (c (current-column)) was phony
)
1944 (if (and (not cperl-indent-comment-at-column-0
)
1946 0 ; Existing comment at bol stays there.
1947 ;; Wrong comment found
1949 (setq was
(cperl-to-comment-or-eol)
1950 phony
(eq (get-text-property (point) 'syntax-table
)
1953 (progn ; Too naive???
1954 (re-search-forward "#\\|$") ; Hmm, what about embedded #?
1955 (if (eq (preceding-char) ?\
#)
1958 (if (= (point) p
) ; Our caller found a correct place
1960 (skip-chars-backward " \t")
1961 (setq was
(current-column))
1964 (max (1+ was
) ; Else indent at comment column
1966 ;; No, the caller found a random place; we need to edit ourselves
1968 (insert comment-start
)
1969 (backward-char (length comment-start
)))
1970 (setq cperl-wrong-comment t
)
1971 (cperl-make-indent comment-column
1) ; Indent min 1
1974 ;;;(defun cperl-comment-indent-fallback ()
1975 ;;; "Is called if the standard comment-search procedure fails.
1976 ;;;Point is at start of real comment."
1977 ;;; (let ((c (current-column)) target cnt prevc)
1978 ;;; (if (= c comment-column) nil
1979 ;;; (setq cnt (skip-chars-backward "[ \t]"))
1980 ;;; (setq target (max (1+ (setq prevc
1981 ;;; (current-column))) ; Else indent at comment column
1982 ;;; comment-column))
1983 ;;; (if (= c comment-column) nil
1984 ;;; (delete-backward-char cnt)
1985 ;;; (while (< prevc target)
1987 ;;; (setq prevc (current-column)))
1988 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column))))
1989 ;;; (while (< prevc target)
1991 ;;; (setq prevc (current-column)))))))
1993 (defun cperl-indent-for-comment ()
1994 "Substitute for `indent-for-comment' in CPerl."
1996 (let (cperl-wrong-comment)
1997 (indent-for-comment)
1998 (if cperl-wrong-comment
; set by `cperl-comment-indent'
1999 (progn (cperl-to-comment-or-eol)
2000 (forward-char (length comment-start
))))))
2002 (defun cperl-comment-region (b e arg
)
2003 "Comment or uncomment each line in the region in CPerl mode.
2004 See `comment-region'."
2005 (interactive "r\np")
2006 (let ((comment-start "#"))
2007 (comment-region b e arg
)))
2009 (defun cperl-uncomment-region (b e arg
)
2010 "Uncomment or comment each line in the region in CPerl mode.
2011 See `comment-region'."
2012 (interactive "r\np")
2013 (let ((comment-start "#"))
2014 (comment-region b e
(- arg
))))
2016 (defvar cperl-brace-recursing nil
)
2018 (defun cperl-electric-brace (arg &optional only-before
)
2019 "Insert character and correct line's indentation.
2020 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the
2021 place (even in empty line), but not after. If after \")\" and the inserted
2022 char is \"{\", insert extra newline before only if
2023 `cperl-extra-newline-before-brace'."
2026 (other-end (if (and cperl-electric-parens-mark
2032 (not cperl-brace-recursing
)
2033 (cperl-val 'cperl-electric-parens
)
2034 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)))
2035 ;; Need to insert a matching pair
2038 (setq insertpos
(point-marker))
2039 (goto-char other-end
)
2040 (setq last-command-char ?\
{)
2041 (cperl-electric-lbrace arg insertpos
))
2043 ;; Check whether we close something "usual" with `}'
2044 (if (and (eq last-command-char ?\
})
2048 (up-list (- (prefix-numeric-value arg
)))
2049 ;;(cperl-after-block-p (point-min))
2050 (or (cperl-after-expr-p nil
"{;)")
2051 ;; after sub, else, continue
2052 (cperl-after-block-p nil
'pre
)))
2054 ;; Just insert the guy
2055 (self-insert-command (prefix-numeric-value arg
))
2056 (if (and (not arg
) ; No args, end (of empty line or auto)
2058 (or (and (null only-before
)
2060 (skip-chars-backward " \t")
2062 (and (eq last-command-char ?\
{) ; Do not insert newline
2063 ;; if after ")" and `cperl-extra-newline-before-brace'
2064 ;; is nil, do not insert extra newline.
2065 (not cperl-extra-newline-before-brace
)
2067 (skip-chars-backward " \t")
2068 (eq (preceding-char) ?\
))))
2069 (if cperl-auto-newline
2070 (progn (cperl-indent-line) (newline) t
) nil
)))
2072 (self-insert-command (prefix-numeric-value arg
))
2074 (if cperl-auto-newline
2075 (setq insertpos
(1- (point))))
2076 (if (and cperl-auto-newline
(null only-before
))
2079 (cperl-indent-line)))
2081 (if insertpos
(progn (goto-char insertpos
)
2082 (search-forward (make-string
2083 1 last-command-char
))
2084 (setq insertpos
(1- (point)))))
2088 (goto-char insertpos
)
2089 (self-insert-command (prefix-numeric-value arg
)))
2090 (self-insert-command (prefix-numeric-value arg
)))))))
2092 (defun cperl-electric-lbrace (arg &optional end
)
2093 "Insert character, correct line's indentation, correct quoting by space."
2095 (let ((cperl-brace-recursing t
)
2096 (cperl-auto-newline cperl-auto-newline
)
2098 (if (and cperl-electric-parens-mark
2106 (and (cperl-val 'cperl-electric-lbrace-space
)
2107 (eq (preceding-char) ?$
)
2109 (skip-chars-backward "$")
2110 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)"))
2112 ;; Check whether we are in comment
2116 (not (looking-at "[ \t]*#")))
2117 (cperl-after-expr-p nil
"{;)"))
2119 (setq cperl-auto-newline nil
))
2120 (cperl-electric-brace arg
)
2121 (and (cperl-val 'cperl-electric-parens
)
2122 (eq last-command-char ?
{)
2123 (memq last-command-char
2124 (append cperl-electric-parens-string nil
))
2125 (or (if other-end
(goto-char (marker-position other-end
)))
2127 (setq last-command-char ?
} pos
(point))
2128 (progn (cperl-electric-brace arg t
)
2131 (defun cperl-electric-paren (arg)
2132 "Insert an opening parenthesis or a matching pair of parentheses.
2133 See `cperl-electric-parens'."
2135 (let ((beg (save-excursion (beginning-of-line) (point)))
2136 (other-end (if (and cperl-electric-parens-mark
2143 (if (and (cperl-val 'cperl-electric-parens
)
2144 (memq last-command-char
2145 (append cperl-electric-parens-string nil
))
2146 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))
2147 ;;(not (save-excursion (search-backward "#" beg t)))
2148 (if (eq last-command-char ?
<)
2150 (and abbrev-mode
; later it is too late, may be after `for'
2152 (cperl-after-expr-p nil
"{;(,:="))
2155 (self-insert-command (prefix-numeric-value arg
))
2156 (if other-end
(goto-char (marker-position other-end
)))
2157 (insert (make-string
2158 (prefix-numeric-value arg
)
2159 (cdr (assoc last-command-char
'((?
{ .?
})
2163 (forward-char (- (prefix-numeric-value arg
))))
2164 (self-insert-command (prefix-numeric-value arg
)))))
2166 (defun cperl-electric-rparen (arg)
2167 "Insert a matching pair of parentheses if marking is active.
2168 If not, or if we are not at the end of marking range, would self-insert.
2169 Affected by `cperl-electric-parens'."
2171 (let ((beg (save-excursion (beginning-of-line) (point)))
2172 (other-end (if (and cperl-electric-parens-mark
2173 (cperl-val 'cperl-electric-parens
)
2174 (memq last-command-char
2175 (append cperl-electric-parens-string nil
))
2182 (cperl-val 'cperl-electric-parens
)
2183 (memq last-command-char
'( ?\
) ?\
] ?\
} ?\
> ))
2184 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))
2185 ;;(not (save-excursion (search-backward "#" beg t)))
2188 (self-insert-command (prefix-numeric-value arg
))
2190 (if other-end
(goto-char other-end
))
2191 (insert (make-string
2192 (prefix-numeric-value arg
)
2193 (cdr (assoc last-command-char
'((?\
} . ?\
{)
2198 (self-insert-command (prefix-numeric-value arg
)))))
2200 (defun cperl-electric-keyword ()
2201 "Insert a construction appropriate after a keyword.
2202 Help message may be switched off by setting `cperl-message-electric-keyword'
2204 (let ((beg (save-excursion (beginning-of-line) (point)))
2205 (dollar (and (eq last-command-char ?$
)
2206 (eq this-command
'self-insert-command
)))
2207 (delete (and (memq last-command-char
'(?\s ?
\n ?
\t ?
\f))
2208 (memq this-command
'(self-insert-command newline
))))
2210 (and (save-excursion
2214 (setq do
(looking-at "do\\>")))
2216 (cperl-after-expr-p nil
"{;:"))
2220 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>"
2222 (save-excursion (or (not (re-search-backward "^=" nil t
))
2225 (and cperl-use-syntax-table-text-property
2226 (not (eq (get-text-property (point)
2229 (save-excursion (forward-sexp -
1)
2230 (not (memq (following-char) (append "$@%&*" nil
))))
2232 (and (eq (preceding-char) ?y
)
2233 (progn ; "foreachmy"
2239 (memq this-command
'(self-insert-command newline
)))))
2240 (and dollar
(insert " $"))
2242 ;;(insert " () {\n}")
2244 (cperl-extra-newline-before-brace
2245 (insert (if do
"\n" " ()\n"))
2251 (and do
(insert " while ();")))
2253 (insert (if do
" {\n} while ();" " () {\n}"))))
2254 (or (looking-at "[ \t]\\|$") (insert " "))
2256 (if dollar
(progn (search-backward "$")
2260 (search-backward ")")
2261 (if (eq last-command-char ?\
()
2262 (progn ; Avoid "if (())"
2263 (delete-backward-char 1)
2264 (delete-backward-char -
1))))
2266 (cperl-putback-char cperl-del-back-ch
))
2267 (if cperl-message-electric-keyword
2268 (message "Precede char by C-q to avoid expansion"))))))
2270 (defun cperl-ensure-newlines (n &optional pos
)
2271 "Make sure there are N newlines after the point."
2272 (or pos
(setq pos
(point)))
2273 (if (looking-at "\n")
2277 (cperl-ensure-newlines (1- n
) pos
)
2280 (defun cperl-electric-pod ()
2281 "Insert a POD chunk appropriate after a =POD directive."
2282 (let ((delete (and (memq last-command-char
'(?\s ?
\n ?
\t ?
\f))
2283 (memq this-command
'(self-insert-command newline
))))
2284 head1 notlast name p really-delete over
)
2285 (and (save-excursion
2288 (eq (preceding-char) ?
=)
2290 (setq head1
(looking-at "head1\\>[ \t]*$"))
2291 (setq over
(and (looking-at "over\\>[ \t]*$")
2292 (not (looking-at "over[ \t]*\n\n\n*=item\\>"))))
2296 (get-text-property (point) 'in-pod
)
2297 (cperl-after-expr-p nil
"{;:")
2298 (and (re-search-backward "\\(\\`\n?\\|^\n\\)=\\sw+" (point-min) t
)
2299 (not (looking-at "\n*=cut"))
2300 (or (not cperl-use-syntax-table-text-property
)
2301 (eq (get-text-property (point) 'syntax-type
) 'pod
))))))
2304 (setq notlast
(re-search-forward "^\n=" nil t
)))
2308 (cperl-ensure-newlines 2)
2314 (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\>"
2315 nil t
)))) ; Only one
2318 (setq name
(file-name-sans-extension
2319 (file-name-nondirectory (buffer-file-name)))
2321 (insert " NAME\n\n" name
2322 " - \n\n=head1 SYNOPSIS\n\n\n\n"
2323 "=head1 DESCRIPTION")
2324 (cperl-ensure-newlines 4)
2328 (setq really-delete t
))
2333 (insert "\n\n=item \n\n\n\n"
2335 (cperl-ensure-newlines 2)
2339 (setq really-delete t
)))
2340 (if (and delete really-delete
)
2341 (cperl-putback-char cperl-del-back-ch
))))))
2343 (defun cperl-electric-else ()
2344 "Insert a construction appropriate after a keyword.
2345 Help message may be switched off by setting `cperl-message-electric-keyword'
2347 (let ((beg (save-excursion (beginning-of-line) (point))))
2348 (and (save-excursion
2350 (cperl-after-expr-p nil
"{;:"))
2354 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>"
2356 (save-excursion (or (not (re-search-backward "^=" nil t
))
2358 (and cperl-use-syntax-table-text-property
2359 (not (eq (get-text-property (point)
2364 ;;(insert " {\n\n}")
2366 (cperl-extra-newline-before-brace
2372 (insert " {\n\n}")))
2373 (or (looking-at "[ \t]\\|$") (insert " "))
2377 (cperl-putback-char cperl-del-back-ch
)
2378 (setq this-command
'cperl-electric-else
)
2379 (if cperl-message-electric-keyword
2380 (message "Precede char by C-q to avoid expansion"))))))
2382 (defun cperl-linefeed ()
2383 "Go to end of line, open a new line and indent appropriately.
2384 If in POD, insert appropriate lines."
2386 (let ((beg (save-excursion (beginning-of-line) (point)))
2387 (end (save-excursion (end-of-line) (point)))
2388 (pos (point)) start over cut res
)
2389 (if (and ; Check if we need to split:
2390 ; i.e., on a boundary and inside "{...}"
2391 (save-excursion (cperl-to-comment-or-eol)
2392 (>= (point) pos
)) ; Not in a comment
2394 (skip-chars-backward " \t" beg
)
2396 (looking-at "[;{]")) ; After { or ; + spaces
2397 (looking-at "[ \t]*}") ; Before }
2398 (re-search-forward "\\=[ \t]*;" end t
)) ; Before spaces + ;
2401 (eq (car (parse-partial-sexp pos end -
1)) -
1)
2402 ; Leave the level of parens
2403 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr
2405 (cperl-after-block-p (point-min))
2408 (setq start
(point-marker))
2409 (<= start pos
))))) ; Redundant? Are after the
2410 ; start of parens group.
2412 (skip-chars-backward " \t")
2413 (or (memq (preceding-char) (append ";{" nil
))
2419 (or (looking-at "{[ \t]*$") ; If there is a statement
2420 ; before, move it to separate line
2424 (cperl-indent-line)))
2425 (forward-line 1) ; We are on the target line
2428 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement
2429 ; after, move it to separate line
2432 (search-backward "}" beg
)
2433 (skip-chars-backward " \t")
2434 (or (memq (preceding-char) (append ";{" nil
))
2439 (forward-line -
1) ; We are on the line before target
2441 (newline-and-indent))
2442 (end-of-line) ; else - no splitting
2444 ((and (looking-at "\n[ \t]*{$")
2446 (skip-chars-backward " \t")
2447 (eq (preceding-char) ?\
)))) ; Probably if () {} group
2448 ; with an extra newline.
2450 (cperl-indent-line))
2451 ((save-excursion ; In POD header
2452 (forward-paragraph -
1)
2453 ;; (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\b")
2454 ;; We are after \n now, so look for the rest
2455 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+")
2457 (setq cut
(looking-at "\\(\\`\n?\\|\n\\)=cut\\>"))
2458 (setq over
(looking-at "\\(\\`\n?\\|\n\\)=over\\>"))
2462 (forward-paragraph -
1)
2465 (setq cut
(buffer-substring (point)
2469 (delete-char (- (save-excursion (end-of-line) (point))
2471 (setq res
(expand-abbrev))
2477 (cperl-ensure-newlines (if cut
2 4))
2479 ((get-text-property (point) 'in-pod
) ; In POD section
2480 (cperl-ensure-newlines 4)
2482 ((looking-at "\n[ \t]*$") ; Next line is empty - use it.
2484 (cperl-indent-line))
2486 (newline-and-indent))))))
2488 (defun cperl-electric-semi (arg)
2489 "Insert character and correct line's indentation."
2491 (if cperl-auto-newline
2492 (cperl-electric-terminator arg
)
2493 (self-insert-command (prefix-numeric-value arg
))
2494 (if cperl-autoindent-on-semi
2495 (cperl-indent-line))))
2497 (defun cperl-electric-terminator (arg)
2498 "Insert character and correct line's indentation."
2501 (auto (and cperl-auto-newline
2502 (or (not (eq last-command-char ?
:))
2503 cperl-auto-newline-after-colon
)))
2505 (if (and ;;(not arg)
2507 (not (save-excursion
2509 (skip-chars-forward " \t")
2511 ;; Ignore in comment lines
2512 (= (following-char) ?
#)
2513 ;; Colon is special only after a label
2514 ;; So quickly rule out most other uses of colon
2515 ;; and do no indentation for them.
2516 (and (eq last-command-char ?
:)
2519 (skip-chars-forward " \t")
2520 (and (< (point) end
)
2521 (progn (goto-char (- end
1))
2522 (not (looking-at ":"))))))
2524 (beginning-of-defun)
2525 (let ((pps (parse-partial-sexp (point) end
)))
2526 (or (nth 3 pps
) (nth 4 pps
) (nth 5 pps
))))))))
2528 (self-insert-command (prefix-numeric-value arg
))
2530 (if auto
(setq insertpos
(point-marker)))
2536 (cperl-indent-line)))
2538 (if insertpos
(goto-char (1- (marker-position insertpos
)))
2543 (goto-char insertpos
)
2544 (self-insert-command (prefix-numeric-value arg
)))
2545 (self-insert-command (prefix-numeric-value arg
)))))
2547 (defun cperl-electric-backspace (arg)
2548 "Backspace, or remove the whitespace around the point inserted by an electric
2549 key. Will untabify if `cperl-electric-backspace-untabify' is non-nil."
2551 (if (and cperl-auto-newline
2552 (memq last-command
'(cperl-electric-semi
2553 cperl-electric-terminator
2554 cperl-electric-lbrace
))
2555 (memq (preceding-char) '(?\s ?
\t ?
\n)))
2557 (if (eq last-command
'cperl-electric-lbrace
)
2558 (skip-chars-forward " \t\n"))
2560 (skip-chars-backward " \t\n")
2561 (delete-region (point) p
))
2562 (and (eq last-command
'cperl-electric-else
)
2563 ;; We are removing the whitespace *inside* cperl-electric-else
2564 (setq this-command
'cperl-electric-else-really
))
2565 (if (and cperl-auto-newline
2566 (eq last-command
'cperl-electric-else-really
)
2567 (memq (preceding-char) '(?\s ?
\t ?
\n)))
2569 (skip-chars-forward " \t\n")
2571 (skip-chars-backward " \t\n")
2572 (delete-region (point) p
))
2573 (if cperl-electric-backspace-untabify
2574 (backward-delete-char-untabify arg
)
2575 (delete-backward-char arg
)))))
2577 (put 'cperl-electric-backspace
'delete-selection
'supersede
)
2579 (defun cperl-inside-parens-p () ;; NOT USED????
2583 (narrow-to-region (point)
2584 (progn (beginning-of-defun) (point)))
2585 (goto-char (point-max))
2586 (= (char-after (or (scan-lists (point) -
1 1) (point-min))) ?\
()))
2589 (defun cperl-indent-command (&optional whole-exp
)
2590 "Indent current line as Perl code, or in some cases insert a tab character.
2591 If `cperl-tab-always-indent' is non-nil (the default), always indent current
2592 line. Otherwise, indent the current line only if point is at the left margin
2593 or in the line's indentation; otherwise insert a tab.
2595 A numeric argument, regardless of its value,
2596 means indent rigidly all the lines of the expression starting after point
2597 so that this line becomes properly indented.
2598 The relative indentation among the lines of the expression are preserved."
2600 (cperl-update-syntaxification (point) (point))
2602 ;; If arg, always indent this line as Perl
2603 ;; and shift remaining lines of expression the same amount.
2604 (let ((shift-amt (cperl-indent-line))
2607 (if cperl-tab-always-indent
2608 (beginning-of-line))
2615 (if (and shift-amt
(> end beg
))
2616 (indent-code-rigidly beg end shift-amt
"#")))
2617 (if (and (not cperl-tab-always-indent
)
2619 (skip-chars-backward " \t")
2622 (cperl-indent-line))))
2624 (defun cperl-indent-line (&optional parse-data
)
2625 "Indent current line as Perl code.
2626 Return the amount the indentation changed by."
2627 (let ((case-fold-search nil
)
2628 (pos (- (point-max) (point)))
2629 indent i beg shift-amt
)
2630 (setq indent
(cperl-calculate-indent parse-data
)
2634 (cond ((or (eq indent nil
) (eq indent t
))
2635 (setq indent
(current-indentation) i nil
))
2636 ;;((eq indent t) ; Never?
2637 ;; (setq indent (cperl-calculate-indent-within-comment)))
2638 ;;((looking-at "[ \t]*#")
2641 (skip-chars-forward " \t")
2642 (if (listp indent
) (setq indent
(car indent
)))
2643 (cond ((and (looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]")
2644 (not (looking-at "[smy]:\\|tr:")))
2646 (setq indent
(max cperl-min-label-indent
2647 (+ indent cperl-label-offset
)))))
2648 ((= (following-char) ?
})
2649 (setq indent
(- indent cperl-indent-level
)))
2650 ((memq (following-char) '(?\
) ?\
])) ; To line up with opening paren.
2651 (setq indent
(+ indent cperl-close-paren-offset
)))
2652 ((= (following-char) ?
{)
2653 (setq indent
(+ indent cperl-brace-offset
))))))
2654 (skip-chars-forward " \t")
2655 (setq shift-amt
(and i
(- indent
(current-column))))
2656 (if (or (not shift-amt
)
2658 (if (> (- (point-max) pos
) (point))
2659 (goto-char (- (point-max) pos
)))
2660 ;;;(delete-region beg (point))
2661 ;;;(indent-to indent)
2662 (cperl-make-indent indent
)
2663 ;; If initial point was within line's indentation,
2664 ;; position after the indentation. Else stay at same point in text.
2665 (if (> (- (point-max) pos
) (point))
2666 (goto-char (- (point-max) pos
))))
2669 (defun cperl-after-label ()
2670 ;; Returns true if the point is after label. Does not do save-excursion.
2671 (and (eq (preceding-char) ?
:)
2672 (memq (char-syntax (char-after (- (point) 2)))
2676 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))))
2678 (defun cperl-get-state (&optional parse-start start-state
)
2679 ;; returns list (START STATE DEPTH PRESTART),
2680 ;; START is a good place to start parsing, or equal to
2681 ;; PARSE-START if preset,
2682 ;; STATE is what is returned by `parse-partial-sexp'.
2683 ;; DEPTH is true is we are immediately after end of block
2684 ;; which contains START.
2685 ;; PRESTART is the position basing on which START was found.
2687 (let ((start-point (point)) depth state start prestart
)
2688 (if (and parse-start
2689 (<= parse-start start-point
))
2690 (goto-char parse-start
)
2691 (beginning-of-defun)
2692 (setq start-state nil
))
2693 (setq prestart
(point))
2695 ;; Try to go out, if sub is not on the outermost level
2696 (while (< (point) start-point
)
2697 (setq start
(point) parse-start start depth nil
2698 state
(parse-partial-sexp start start-point -
1))
2699 (if (> (car state
) -
1) nil
2700 ;; The current line could start like }}}, so the indentation
2701 ;; corresponds to a different level than what we reached
2703 (beginning-of-line 2))) ; Go to the next line.
2704 (if start
(goto-char start
))) ; Not at the start of file
2705 (setq start
(point))
2706 (or state
(setq state
(parse-partial-sexp start start-point -
1 nil start-state
)))
2707 (list start state depth prestart
))))
2709 (defvar cperl-look-for-prop
'((pod in-pod
) (here-doc-delim here-doc-group
)))
2711 (defun cperl-beginning-of-property (p prop
&optional lim
)
2712 "Given that P has a property PROP, find where the property starts.
2713 Will not look before LIM."
2714 ;;; XXXX What to do at point-max???
2715 (or (previous-single-property-change (cperl-1+ p
) prop lim
)
2717 ;;; (cond ((eq p (point-min))
2719 ;;; ((and lim (<= p lim))
2721 ;;; ((not (get-text-property (1- p) prop))
2723 ;;; (t (or (previous-single-property-change p look-prop lim)
2727 (defun cperl-sniff-for-indent (&optional parse-data
) ; was parse-start
2728 ;; Old workhorse for calculation of indentation; the major problem
2729 ;; is that it mixes the sniffer logic to understand what the current line
2730 ;; MEANS with the logic to actually calculate where to indent it.
2731 ;; The latter part should be eventually moved to `cperl-calculate-indent';
2732 ;; actually, this is mostly done now...
2733 (cperl-update-syntaxification (point) (point))
2734 (let ((res (get-text-property (point) 'syntax-type
)))
2737 ((and (memq res
'(pod here-doc here-doc-delim format
))
2738 (not (get-text-property (point) 'indentable
)))
2740 ;; before start of POD - whitespace found since do not have 'pod!
2741 ((looking-at "[ \t]*\n=")
2742 (error "Spaces before POD section!"))
2743 ((and (not cperl-indent-left-aligned-comments
)
2745 [comment-special
:at-beginning-of-line
])
2746 ((get-text-property (point) 'in-pod
)
2750 (let* ((indent-point (point))
2751 (char-after-pos (save-excursion
2752 (skip-chars-forward " \t")
2754 (char-after (char-after char-after-pos
))
2755 (pre-indent-point (point))
2756 p prop look-prop is-block delim
)
2757 (save-excursion ; Know we are not in POD, find appropriate pos before
2758 (cperl-backward-to-noncomment nil
)
2759 (setq p
(max (point-min) (1- (point)))
2760 prop
(get-text-property p
'syntax-type
)
2761 look-prop
(or (nth 1 (assoc prop cperl-look-for-prop
))
2763 (if (memq prop
'(pod here-doc format here-doc-delim
))
2765 (goto-char (cperl-beginning-of-property p look-prop
))
2767 (setq pre-indent-point
(point)))))
2768 (goto-char pre-indent-point
) ; Orig line skipping preceeding pod/etc
2769 (let* ((case-fold-search nil
)
2770 (s-s (cperl-get-state (car parse-data
) (nth 1 parse-data
)))
2771 (start (or (nth 2 parse-data
) ; last complete sexp terminated
2772 (nth 0 s-s
))) ; Good place to start parsing
2774 (containing-sexp (car (cdr state
)))
2777 ;;containing-sexp ;; We are buggy at toplevel :-(
2780 (setcar parse-data pre-indent-point
)
2781 (setcar (cdr parse-data
) state
)
2782 (or (nth 2 parse-data
)
2783 (setcar (cddr parse-data
) start
))
2784 ;; Before this point: end of statement
2785 (setq old-indent
(nth 3 parse-data
))))
2786 (cond ((get-text-property (point) 'indentable
)
2787 ;; indent to "after" the surrounding open
2788 ;; (same offset as `cperl-beautify-regexp-piece'),
2789 ;; skip blanks if we do not close the expression.
2790 (setq delim
; We do not close the expression
2792 (cperl-1+ char-after-pos
) 'indentable
)
2793 p
(1+ (cperl-beginning-of-property
2794 (point) 'indentable
))
2795 is-block
; misused for: preceeding line in REx
2796 (save-excursion ; Find preceeding line
2797 (cperl-backward-to-noncomment p
)
2800 (progn ; get indent from the first line
2802 (skip-chars-forward " \t")
2803 (if (memq (char-after (point))
2805 nil
; Can't use intentation of this line...
2807 (skip-chars-forward " \t")
2809 prop
(parse-partial-sexp p char-after-pos
))
2810 (cond ((not delim
) ; End the REx, ignore is-block
2811 (vector 'indentable
'terminator p is-block
))
2812 (is-block ; Indent w.r.t. preceeding line
2813 (vector 'indentable
'cont-line char-after-pos
2814 is-block char-after p
))
2815 (t ; No preceeding line...
2816 (vector 'indentable
'first-line p
))))
2817 ((get-text-property char-after-pos
'REx-part2
)
2818 (vector 'REx-part2
(point)))
2823 ;; XXXX Do we need to special-case this?
2824 ((null containing-sexp)
2825 ;; Line is at top level. May be data or function definition,
2826 ;; or may be function argument declaration.
2827 ;; Indent like the previous top level line
2828 ;; unless that ends in a closeparen without semicolon,
2829 ;; in which case this line is the first argument decl.
2830 (skip-chars-forward " \t")
2831 (cperl-backward-to-noncomment (or old-indent (point-min)))
2834 (eq (point) old-indent) ; old-indent was at comment
2835 (eq (preceding-char) ?\;)
2837 (and (eq (preceding-char) ?\})
2838 (cperl-after-block-and-statement-beg
2839 (point-min))) ; Was start - too close
2840 (memq char-after (append ")]}" nil))
2841 (and (eq (preceding-char) ?\:) ; label
2844 (skip-chars-backward " \t")
2845 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:")))
2846 (get-text-property (point) 'first-format-line)))
2848 ;; Look at previous line that's at column 0
2849 ;; to determine whether we are in top-level decls
2850 ;; or function's arg decls. Set basic-indent accordingly.
2851 ;; Now add a little if this is a continuation line.
2854 (not (eq char-after ?\C-j))
2855 (setcdr (cddr parse-data)
2856 (list pre-indent-point)))
2857 (vector 'toplevel start char-after state (nth 2 s-s)))
2860 (and (setq delim (= (char-after containing-sexp) ?{))
2861 (save-excursion ; Is it a hash?
2862 (goto-char containing-sexp)
2864 cperl-indent-parens-as-block))
2865 ;; group is an expression, not a block:
2866 ;; indent to just after the surrounding open parens,
2867 ;; skip blanks if we do not close the expression.
2868 (goto-char (1+ containing-sexp))
2869 (or (memq char-after
2870 (append (if delim "}" ")]}") nil))
2871 (looking-at "[ \t]*\\(#\\|$\\)")
2872 (skip-chars-forward " \t"))
2873 (setq old-indent (point)) ; delim=is-brace
2874 (vector 'in-parens char-after (point) delim containing-sexp))
2876 ;; Statement level. Is it a continuation or a new statement?
2877 ;; Find previous non-comment character.
2878 (goto-char pre-indent-point) ; Skip one level of POD/etc
2879 (cperl-backward-to-noncomment containing-sexp)
2880 ;; Back up over label lines, since they don't
2881 ;; affect whether our line is a continuation.
2883 (while;;(or (eq (preceding-char) ?\,)
2884 (and (eq (preceding-char) ?:)
2885 (or;;(eq (char-after (- (point) 2)) ?\') ; ????
2886 (memq (char-syntax (char-after (- (point) 2)))
2889 ;; This is always FALSE?
2890 (if (eq (preceding-char) ?\,)
2891 ;; Will go to beginning of line, essentially.
2892 ;; Will ignore embedded sexpr XXXX.
2893 (cperl-backward-to-start-of-continued-exp containing-sexp))
2895 (cperl-backward-to-noncomment containing-sexp))
2896 ;; Now we get non-label preceeding the indent point
2897 (if (not (or (eq (1- (point)) containing-sexp)
2898 (memq (preceding-char)
2899 (append (if is-block " ;{" " ,;{") '(nil)))
2900 (and (eq (preceding-char) ?\})
2901 (cperl-after-block-and-statement-beg
2903 (get-text-property (point) 'first-format-line)))
2904 ;; This line is continuation of preceding line's statement;
2905 ;; indent `cperl-continued-statement-offset' more than the
2906 ;; previous line of the statement.
2908 ;; There might be a label on this line, just
2909 ;; consider it bad style and ignore it.
2911 (cperl-backward-to-start-of-continued-exp containing-sexp)
2912 (vector 'continuation (point) char-after is-block delim))
2913 ;; This line starts a new statement.
2914 ;; Position following last unclosed open brace
2915 (goto-char containing-sexp)
2916 ;; Is line first statement after an open-brace?
2918 ;; If no, find that first statement and indent like
2919 ;; it. If the first statement begins with label, do
2920 ;; not believe when the indentation of the label is too
2924 (let ((colon-line-end 0))
2926 (progn (skip-chars-forward " \t\n")
2927 ;; s: foo : bar :x is NOT label
2928 (and (looking-at "#\\|\\([a-zA-Z0-9_$]+\\):[^:]\\|=[a-zA-Z]")
2929 (not (looking-at "[sym]:\\|tr:"))))
2930 ;; Skip over comments and labels following openbrace.
2931 (cond ((= (following-char) ?\#)
2933 ((= (following-char) ?\=)
2935 (or (next-single-property-change (point) 'in-pod)
2936 (point-max)))) ; do not loop if no syntaxification
2939 (save-excursion (end-of-line)
2940 (setq colon-line-end (point)))
2941 (search-forward ":"))))
2942 ;; We are at beginning of code (NOT label or comment)
2943 ;; First, the following code counts
2944 ;; if it is before the line we want to indent.
2945 (and (< (point) indent-point)
2946 (vector 'have-prev-sibling (point) colon-line-end
2949 ;; If no previous statement,
2950 ;; indent it relative to line brace is on.
2952 ;; For open-braces not the first thing in a line,
2953 ;; add in cperl-brace-imaginary-offset.
2955 ;; If first thing on a line: ?????
2956 ;; Move back over whitespace before the openbrace.
2957 (setq ; brace first thing on a line
2958 old-indent (progn (skip-chars-backward " \t") (bolp)))
2959 ;; Should we indent w.r.t. earlier than start?
2960 ;; Move to start of control group, possibly on a different line
2961 (or cperl-indent-wrt-brace
2962 (cperl-backward-to-noncomment (point-min)))
2963 ;; If the openbrace is preceded by a parenthesized exp,
2964 ;; move to the beginning of that;
2965 (if (eq (preceding-char) ?\))
2968 (cperl-backward-to-noncomment (point-min))))
2969 ;; In the case it starts a subroutine, indent with
2970 ;; respect to `sub', not with respect to the
2971 ;; first thing on the line, say in the case of
2972 ;; anonymous sub in a hash.
2973 (if (and;; Is it a sub in group starting on this line?
2974 (cond ((get-text-property (point) 'attrib-group)
2975 (goto-char (cperl-beginning-of-property
2976 (point) 'attrib-group)))
2977 ((eq (preceding-char) ?b)
2979 (looking-at "sub\\>")))
2980 (setq p (nth 1 ; start of innermost containing list
2982 (save-excursion (beginning-of-line)
2986 (goto-char (1+ p)) ; enclosing block on the same line
2987 (skip-chars-forward " \t")
2988 (vector 'code-start-in-block containing-sexp char-after
2989 (and delim (not is-block)) ; is a HASH
2990 old-indent ; brace first thing on a line
2991 t (point) ; have something before...
2995 ;; Get initial indentation of the line we are on.
2996 ;; If line starts with label, calculate label indentation
2997 (vector 'code-start-in-block containing-sexp char-after
2998 (and delim (not is-block)) ; is a HASH
2999 old-indent ; brace first thing on a line
3000 nil (point))))))))))))))) ; nothing interesting before
3002 (defvar cperl-indent-rules-alist
3003 '((pod nil) ; via `syntax-type' property
3004 (here-doc nil) ; via `syntax-type' property
3005 (here-doc-delim nil) ; via `syntax-type' property
3006 (format nil) ; via `syntax-type' property
3007 (in-pod nil) ; via `in-pod' property
3008 (comment-special:at-beginning-of-line nil)
3011 "Alist of indentation rules for CPerl mode.
3014 number: add this amount of indentation.")
3016 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start
3017 "Return appropriate indentation for current line as Perl code.
3018 In usual case returns an integer: the column to indent to.
3019 Returns nil if line starts inside a string, t if in a comment.
3021 Will not correct the indentation for labels, but will correct it for braces
3022 and closing parentheses and brackets."
3023 ;; This code is still a broken architecture: in some cases we need to
3024 ;; compensate for some modifications which `cperl-indent-line' will add later
3026 (let ((i (cperl-sniff-for-indent parse-data)) what p)
3028 ;;((or (null i) (eq i t) (numberp i))
3031 (setq what (assoc (elt i 0) cperl-indent-rules-alist))
3033 (what (cadr what)) ; Load from table
3035 ;; Indenters for regular expressions with //x and qw()
3037 ((eq 'REx-part2 (elt i 0)) ;; [self start] start of /REP in s//REP/x
3038 (goto-char (elt i 1))
3039 (condition-case nil ; Use indentation of the 1st part
3042 ((eq 'indentable (elt i 0)) ; Indenter for REGEXP qw() etc
3043 (cond ;;; [indentable terminator start-pos is-block]
3044 ((eq 'terminator (elt i 1)) ; Lone terminator of "indentable string"
3045 (goto-char (elt i 2)) ; After opening parens
3046 (1- (current-column)))
3047 ((eq 'first-line (elt i 1)); [indentable first-line start-pos]
3048 (goto-char (elt i 2))
3049 (+ (or cperl-regexp-indent-step cperl-indent-level)
3052 ((eq 'cont-line (elt i 1)); [indentable cont-line pos prev-pos first-char start-pos]
3053 ;; Indent as the level after closing parens
3054 (goto-char (elt i 2)) ; indent line
3055 (skip-chars-forward " \t)") ; Skip closing parens
3057 (goto-char (elt i 3)) ; previous line
3058 (skip-chars-forward " \t)") ; Skip closing parens
3059 ;; Number of parens in between:
3060 (setq p (nth 0 (parse-partial-sexp (point) p))
3061 what (elt i 4)) ; First char on current line
3062 (goto-char (elt i 3)) ; previous line
3063 (+ (* p (or cperl-regexp-indent-step cperl-indent-level))
3064 (cond ((eq what ?\) )
3065 (- cperl-close-paren-offset)) ; compensate
3067 (- (or cperl-regexp-indent-step cperl-indent-level)))
3069 (if (eq (following-char) ?\| )
3070 (or cperl-regexp-indent-step cperl-indent-level)
3074 (error "Unrecognized value of indent: %s" i))))
3076 ;; Indenter for stuff at toplevel
3078 ((eq 'toplevel (elt i 0)) ;; [toplevel start char-after state immed-after-block]
3079 (+ (save-excursion ; To beg-of-defun, or end of last sexp
3080 (goto-char (elt i 1)) ; start = Good place to start parsing
3081 (- (current-indentation) ;
3082 (if (elt i 4) cperl-indent-level 0))) ; immed-after-block
3083 (if (eq (elt i 2) ?{) cperl-continued-brace-offset 0) ; char-after
3084 ;; Look at previous line that's at column 0
3085 ;; to determine whether we are in top-level decls
3086 ;; or function's arg decls. Set basic-indent accordingly.
3087 ;; Now add a little if this is a continuation line.
3088 (if (elt i 3) ; state (XXX What is the semantic???)
3090 cperl-continued-statement-offset)))
3092 ;; Indenter for stuff in "parentheses" (or brackets, braces-as-hash)
3094 ((eq 'in-parens (elt i 0))
3095 ;; in-parens char-after old-indent-point is-brace containing-sexp
3097 ;; group is an expression, not a block:
3098 ;; indent to just after the surrounding open parens,
3099 ;; skip blanks if we do not close the expression.
3101 (goto-char (elt i 2)) ; old-indent-point
3103 (if (and (elt i 3) ; is-brace
3104 (eq (elt i 1) ?\})) ; char-after
3105 ;; Correct indentation of trailing ?\}
3106 (+ cperl-indent-level cperl-close-paren-offset)
3109 ;; Indenter for continuation lines
3111 ((eq 'continuation (elt i 0))
3112 ;; [continuation statement-start char-after is-block is-brace]
3113 (goto-char (elt i 1)) ; statement-start
3114 (+ (if (memq (elt i 2) (append "}])" nil)) ; char-after
3116 cperl-continued-statement-offset)
3117 (if (or (elt i 3) ; is-block
3118 (not (elt i 4)) ; is-brace
3119 (not (eq (elt i 2) ?\}))) ; char-after
3121 ;; Now it is a hash reference
3122 (+ cperl-indent-level cperl-close-paren-offset))
3123 ;; Labels do not take :: ...
3124 (if (looking-at "\\(\\w\\|_\\)+[ \t]*:")
3125 (if (> (current-indentation) cperl-min-label-indent)
3126 (- (current-indentation) cperl-label-offset)
3127 ;; Do not move `parse-data', this should
3128 ;; be quick anyway (this comment comes
3129 ;; from different location):
3130 (cperl-calculate-indent))
3132 (if (eq (elt i 2) ?\{) ; char-after
3133 cperl-continued-brace-offset 0)))
3135 ;; Indenter for lines in a block which are not leading lines
3137 ((eq 'have-prev-sibling (elt i 0))
3138 ;; [have-prev-sibling sibling-beg colon-line-end block-start]
3139 (goto-char (elt i 1)) ; sibling-beg
3140 (if (> (elt i 2) (point)) ; colon-line-end; have label before point
3141 (if (> (current-indentation)
3142 cperl-min-label-indent)
3143 (- (current-indentation) cperl-label-offset)
3144 ;; Do not believe: `max' was involved in calculation of indent
3145 (+ cperl-indent-level
3147 (goto-char (elt i 3)) ; block-start
3148 (current-indentation))))
3151 ;; Indenter for the first line in a block
3153 ((eq 'code-start-in-block (elt i 0))
3154 ;;[code-start-in-block before-brace char-after
3155 ;; is-a-HASH-ref brace-is-first-thing-on-a-line
3156 ;; group-starts-before-start-of-sub start-of-control-group]
3157 (goto-char (elt i 1))
3158 ;; For open brace in column zero, don't let statement
3159 ;; start there too. If cperl-indent-level=0,
3160 ;; use cperl-brace-offset + cperl-continued-statement-offset instead.
3161 (+ (if (and (bolp) (zerop cperl-indent-level))
3162 (+ cperl-brace-offset cperl-continued-statement-offset)
3164 (if (and (elt i 3) ; is-a-HASH-ref
3165 (eq (elt i 2) ?\})) ; char-after: End of a hash reference
3166 (+ cperl-indent-level cperl-close-paren-offset)
3168 ;; Unless openbrace is the first nonwhite thing on the line,
3169 ;; add the cperl-brace-imaginary-offset.
3170 (if (elt i 4) 0 ; brace-is-first-thing-on-a-line
3171 cperl-brace-imaginary-offset)
3173 (goto-char (elt i 6)) ; start-of-control-group
3174 (if (elt i 5) ; group-starts-before-start-of-sub
3176 ;; Get initial indentation of the line we are on.
3177 ;; If line starts with label, calculate label indentation
3180 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]"))
3181 (if (> (current-indentation) cperl-min-label-indent)
3182 (- (current-indentation) cperl-label-offset)
3183 ;; Do not move `parse-data', this should
3185 (cperl-calculate-indent))
3186 (current-indentation))))))
3188 (error "Unrecognized value of indent: %s" i))))
3190 (error "Got strange value of indent: %s" i))))))
3192 (defun cperl-calculate-indent-within-comment ()
3193 "Return the indentation amount for line, assuming that
3194 the current line is to be regarded as part of a block comment."
3195 (let (end star-start)
3198 (skip-chars-forward " \t")
3200 (and (= (following-char) ?#)
3202 (cperl-to-comment-or-eol)
3208 (defun cperl-to-comment-or-eol ()
3209 "Go to position before comment on the current line, or to end of line.
3210 Returns true if comment is found. In POD will not move the point."
3211 ;; If the line is inside other syntax groups (qq-style strings, HERE-docs)
3212 ;; then looks for literal # or end-of-line.
3213 (let (state stop-in cpoint (lim (progn (end-of-line) (point))) pr e)
3214 (or cperl-font-locking
3215 (cperl-update-syntaxification lim lim))
3217 (if (setq pr (get-text-property (point) 'syntax-type))
3218 (setq e (next-single-property-change (point) 'syntax-type nil (point-max))))
3219 (if (or (eq pr 'pod)
3220 (if (or (not e) (> e lim)) ; deep inside a group
3221 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)))
3222 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t))
3223 ;; Else - need to do it the hard way
3224 (and (and e (<= e lim))
3226 (while (not stop-in)
3227 (setq state (parse-partial-sexp (point) lim nil nil nil t))
3229 ;; If fails (beginning-of-line inside sexp), then contains not-comment
3230 (if (nth 4 state) ; After `#';
3231 ; (nth 2 state) can be
3232 ; beginning of m,s,qq and so
3236 (setq cpoint (point))
3237 (goto-char (nth 2 state))
3239 ((looking-at "\\(s\\|tr\\)\\>")
3240 (or (re-search-forward
3241 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*"
3244 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>")
3245 (or (re-search-forward
3246 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#"
3249 (t ; It was fair comment
3250 (setq stop-in t) ; Finish
3251 (goto-char (1- cpoint)))))
3252 (setq stop-in t) ; Finish
3254 (setq stop-in t))) ; Finish
3257 (defsubst cperl-modify-syntax-type (at how)
3258 (if (< at (point-max))
3260 (put-text-property at (1+ at) 'syntax-table how)
3261 (put-text-property at (1+ at) 'rear-nonsticky '(syntax-table)))))
3263 (defun cperl-protect-defun-start (s e)
3264 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations
3267 (while (re-search-forward "^\\s(" e 'to-end)
3268 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct))))
3270 (defun cperl-commentify (bb e string &optional noface)
3271 (if cperl-use-syntax-table-text-property
3272 (if (eq noface 'n) ; Only immediate
3274 ;; We suppose that e is _after_ the end of construction, as after eol.
3275 (setq string (if string cperl-st-sfence cperl-st-cfence))
3277 ;; one-char string/comment?!
3278 (cperl-modify-syntax-type bb cperl-st-punct)
3279 (cperl-modify-syntax-type bb string)
3280 (cperl-modify-syntax-type (1- e) string))
3281 (if (and (eq string cperl-st-sfence) (> (- e 2) bb))
3282 (put-text-property (1+ bb) (1- e)
3283 'syntax-table cperl-string-syntax-table))
3284 (cperl-protect-defun-start bb e))
3287 (not cperl-pod-here-fontify)
3288 (put-text-property bb e 'face (if string 'font-lock-string-face
3289 'font-lock-comment-face)))))
3291 (defvar cperl-starters '(( ?\( . ?\) )
3296 (defun cperl-cached-syntax-table (st)
3297 "Get a syntax table cached in ST, or create and cache into ST a syntax table.
3298 All the entries of the syntax table are \".\", except for a backslash, which
3302 (setcar st (make-syntax-table))
3306 (modify-syntax-entry i "." st)
3308 (modify-syntax-entry ?\\ "\\" st)
3311 (defun cperl-forward-re (lim end is-2arg st-l err-l argument
3312 &optional ostart oend)
3313 "Find the end of a regular expression or a stringish construct (q[] etc).
3314 The point should be before the starting delimiter.
3316 Goes to LIM if none is found. If IS-2ARG is non-nil, assumes that it
3317 is s/// or tr/// like expression. If END is nil, generates an error
3318 message if needed. If SET-ST is non-nil, will use (or generate) a
3319 cached syntax table in ST-L. If ERR-L is non-nil, will store the
3320 error message in its CAR (unless it already contains some error
3321 message). ARGUMENT should be the name of the construct (used in error
3322 messages). OSTART, OEND may be set in recursive calls when processing
3323 the second argument of 2ARG construct.
3325 Works *before* syntax recognition is done. In IS-2ARG situation may
3326 modify syntax-type text property if the situation is too hard."
3327 (let (b starter ender st i i2 go-forward reset-st set-st)
3328 (skip-chars-forward " \t")
3329 ;; ender means matching-char matcher.
3331 starter (if (eobp) 0 (char-after b))
3332 ender (cdr (assoc starter cperl-starters)))
3333 ;; What if starter == ?\\ ????
3334 (setq st (cperl-cached-syntax-table st-l))
3336 ;; Whether we have an intermediate point
3338 ;; Prepare the syntax table:
3339 (if (not ender) ; m/blah/, s/x//, s/x/y/
3340 (modify-syntax-entry starter "$" st)
3341 (modify-syntax-entry starter (concat "(" (list ender)) st)
3342 (modify-syntax-entry ender (concat ")" (list starter)) st))
3345 ;; We use `$' syntax class to find matching stuff, but $$
3346 ;; is recognized the same as $, so we need to check this manually.
3347 (if (and (eq starter (char-after (cperl-1+ b)))
3349 ;; $ has TeXish matching rules, so $$ equiv $...
3351 (setq reset-st (syntax-table))
3352 (set-syntax-table st)
3354 (if (<= (point) (1+ b))
3355 (error "Unfinished regular expression"))
3356 (set-syntax-table reset-st)
3358 ;; Now the problem is with m;blah;;
3360 (eq (preceding-char)
3361 (char-after (- (point) 2)))
3364 (= 0 (% (skip-chars-backward "\\\\") 2)))
3366 ;; Now we are after the first part.
3367 (and is-2arg ; Have trailing part
3369 (eq (following-char) starter) ; Empty trailing part
3371 (or (eq (char-syntax (following-char)) ?.)
3372 ;; Make trailing letter into punctuation
3373 (cperl-modify-syntax-type (point) cperl-st-punct))
3374 (setq is-2arg nil go-forward t))) ; Ignore the tail
3375 (if is-2arg ; Not number => have second part
3377 (setq i (point) i2 i)
3379 (if (memq (following-char) '(?\s ?\t ?\n ?\f))
3381 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
3382 (goto-char (match-end 0))
3383 (skip-chars-forward " \t\n\f"))
3386 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st)
3387 (if ender (modify-syntax-entry ender "." st))
3389 (setq ender (cperl-forward-re lim end nil st-l err-l
3390 argument starter ender)
3391 ender (nth 2 ender)))))
3392 (error (goto-char lim)
3395 (set-syntax-table reset-st))
3398 "End of `%s%s%c ... %c' string/RE not found: %s"
3400 (if ostart (format "%c ... %c" ostart (or oend ostart)) "")
3401 starter (or ender starter) bb)
3402 (or (car err-l) (setcar err-l b)))))
3405 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st)
3406 (if ender (modify-syntax-entry ender "." st))))
3407 ;; i: have 2 args, after end of the first arg
3408 ;; i2: start of the second arg, if any (before delim if `ender').
3409 ;; ender: the last arg bounded by parens-like chars, the second one of them
3410 ;; starter: the starting delimiter of the first arg
3411 ;; go-forward: has 2 args, and the second part is empty
3412 (list i i2 ender starter go-forward)))
3414 (defun cperl-forward-group-in-re (&optional st-l)
3415 "Find the end of a group in a REx.
3416 Return the error message (if any). Does not work if delimiter is `)'.
3417 Works before syntax recognition is done."
3418 ;; Works *before* syntax recognition is done
3419 (or st-l (setq st-l (list nil))) ; Avoid overwriting '()
3420 (let (st b reset-st)
3423 (setq st (cperl-cached-syntax-table st-l))
3424 (modify-syntax-entry ?\( "()" st)
3425 (modify-syntax-entry ?\) ")(" st)
3426 (setq reset-st (syntax-table))
3427 (set-syntax-table st)
3430 "cperl-forward-group-in-re: error %s" b)))
3431 ;; now restore the initial state
3434 (modify-syntax-entry ?\( "." st)
3435 (modify-syntax-entry ?\) "." st)))
3437 (set-syntax-table reset-st))
3441 (defvar font-lock-string-face)
3442 ;;(defvar font-lock-reference-face)
3443 (defvar font-lock-constant-face)
3444 (defsubst cperl-postpone-fontification (b e type val &optional now)
3445 ;; Do after syntactic fontification?
3446 (if cperl-syntaxify-by-font-lock
3447 (or now (put-text-property b e 'cperl-postpone (cons type val)))
3448 (put-text-property b e type val)))
3450 ;;; Here is how the global structures (those which cannot be
3451 ;;; recognized locally) are marked:
3453 ;; Start-to-end is marked `in-pod' ==> t
3454 ;; Each non-literal part is marked `syntax-type' ==> `pod'
3455 ;; Each literal part is marked `syntax-type' ==> `in-pod'
3457 ;; Start-to-end is marked `here-doc-group' ==> t
3458 ;; The body is marked `syntax-type' ==> `here-doc'
3459 ;; The delimiter is marked `syntax-type' ==> `here-doc-delim'
3461 ;; First line (to =) marked `first-format-line' ==> t
3462 ;; After-this--to-end is marked `syntax-type' ==> `format'
3463 ;; d) 'Q'uoted string:
3464 ;; part between markers inclusive is marked `syntax-type' ==> `string'
3465 ;; part between `q' and the first marker is marked `syntax-type' ==> `prestring'
3466 ;; second part of s///e is marked `syntax-type' ==> `multiline'
3467 ;; e) Attributes of subroutines: `attrib-group' ==> t
3468 ;; (or 0 if declaration); up to `{' or ';': `syntax-type' => `sub-decl'.
3469 ;; f) Multiline my/our declaration lists etc: `syntax-type' => `multiline'
3471 ;;; In addition, some parts of RExes may be marked as `REx-interpolated'
3472 ;;; (value: 0 in //o, 1 if "interpolated variable" is whole-REx, t otherwise).
3474 (defun cperl-unwind-to-safe (before &optional end)
3475 ;; if BEFORE, go to the previous start-of-line on each step of unwinding
3476 (let ((pos (point)) opos)
3477 (while (and pos (progn
3479 (get-text-property (setq pos (point)) 'syntax-type)))
3481 pos (cperl-beginning-of-property pos 'syntax-type))
3482 (if (eq pos (point-min))
3487 (goto-char (cperl-1- pos))
3490 (goto-char (setq pos (cperl-1- pos))))
3492 (goto-char (point-min))))
3494 (and (looking-at "\n*=")
3495 (/= 0 (skip-chars-backward "\n"))
3499 ;; Do the same for end, going small steps
3501 (while (and end (get-text-property end 'syntax-type))
3503 end (next-single-property-change end 'syntax-type nil (point-max)))
3504 (if end (progn (goto-char end)
3505 (or (bolp) (forward-line 1))
3506 (setq end (point)))))
3509 ;;; These are needed for byte-compile (at least with v19)
3510 (defvar cperl-nonoverridable-face)
3511 (defvar font-lock-variable-name-face)
3512 (defvar font-lock-function-name-face)
3513 (defvar font-lock-keyword-face)
3514 (defvar font-lock-builtin-face)
3515 (defvar font-lock-type-face)
3516 (defvar font-lock-comment-face)
3517 (defvar font-lock-warning-face)
3519 (defun cperl-find-sub-attrs (&optional st-l b-fname e-fname pos)
3520 "Syntaxically mark (and fontify) attributes of a subroutine.
3521 Should be called with the point before leading colon of an attribute."
3522 ;; Works *before* syntax recognition is done
3523 (or st-l (setq st-l (list nil))) ; Avoid overwriting '()
3524 (let (st b p reset-st after-first (start (point)) start1 end1)
3528 "\\(" ; 1=optional? colon
3529 ":" cperl-maybe-white-and-comment-rex ; 2=whitespace/comment?
3531 (if after-first "?" "")
3532 ;; No space between name and paren allowed...
3533 "\\(\\sw+\\)" ; 3=name
3534 "\\((\\)?")) ; 4=optional paren
3535 (and (match-beginning 1)
3536 (cperl-postpone-fontification
3537 (match-beginning 0) (cperl-1+ (match-beginning 0))
3538 'face font-lock-constant-face))
3539 (setq start1 (match-beginning 3) end1 (match-end 3))
3540 (cperl-postpone-fontification start1 end1
3541 'face font-lock-constant-face)
3542 (goto-char end1) ; end or before `('
3543 (if (match-end 4) ; Have attribute arguments...
3546 (setq st (cperl-cached-syntax-table st-l))
3547 (modify-syntax-entry ?\( "()" st)
3548 (modify-syntax-entry ?\) ")(" st))
3549 (setq reset-st (syntax-table) p (point))
3550 (set-syntax-table st)
3552 (set-syntax-table reset-st)
3554 (cperl-commentify p (point) t))) ; mark as string
3555 (forward-comment (buffer-size))
3556 (setq after-first t))
3558 "L%d: attribute `%s': %s"
3559 (count-lines (point-min) (point))
3560 (and start1 end1 (buffer-substring start1 end1)) b)
3564 (put-text-property start (point)
3565 'attrib-group (if (looking-at "{") t 0))
3567 (< 1 (count-lines (+ 3 pos) (point))) ; end of `sub'
3568 ;; Apparently, we do not need `multiline': faces added now
3569 (put-text-property (+ 3 pos) (cperl-1+ (point))
3570 'syntax-type 'sub-decl))
3571 (and b-fname ; Fontify here: the following condition
3572 (cperl-postpone-fontification ; is too hard to determine by
3573 b-fname e-fname 'face ; a REx, so do it here
3574 (if (looking-at "{")
3575 font-lock-function-name-face
3576 font-lock-variable-name-face)))))
3577 ;; now restore the initial state
3580 (modify-syntax-entry ?\( "." st)
3581 (modify-syntax-entry ?\) "." st)))
3583 (set-syntax-table reset-st))))
3585 (defsubst cperl-look-at-leading-count (is-x-REx e)
3588 (re-search-forward (concat "\\=" (if is-x-REx "[ \t\n]*" "") "[{?+*]")
3589 (1- e) t)) ; return nil on failure, no moving
3590 (if (eq ?\{ (preceding-char)) nil
3591 (cperl-postpone-fontification
3592 (1- (point)) (point)
3593 'face font-lock-warning-face))))
3595 ;;; Debugging this may require (setq max-specpdl-size 2000)...
3596 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max end-of-here-doc)
3597 "Scans the buffer for hard-to-parse Perl constructions.
3598 If `cperl-pod-here-fontify' is not-nil after evaluation, will fontify
3599 the sections using `cperl-pod-head-face', `cperl-pod-face',
3602 (or min (setq min (point-min)
3603 cperl-syntax-state nil
3604 cperl-syntax-done-to min))
3605 (or max (setq max (point-max)))
3606 (let* ((cperl-pod-here-fontify (eval cperl-pod-here-fontify)) go tmpend
3607 face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb
3608 is-REx is-x-REx REx-subgr-start REx-subgr-end was-subgr i2 hairy-RE
3609 (case-fold-search nil) (inhibit-read-only t) (buffer-undo-list t)
3610 (modified (buffer-modified-p)) overshoot is-o-REx
3611 (after-change-functions nil)
3612 (cperl-font-locking t)
3613 (use-syntax-state (and cperl-syntax-state
3614 (>= min (car cperl-syntax-state))))
3615 (state-point (if use-syntax-state
3616 (car cperl-syntax-state)
3618 (state (if use-syntax-state
3619 (cdr cperl-syntax-state)))
3620 ;; (st-l '(nil)) (err-l '(nil)) ; Would overwrite - propagates from a function call to a function call!
3621 (st-l (list nil)) (err-l (list nil))
3622 ;; Somehow font-lock may be not loaded yet...
3623 ;; (e.g., when building TAGS via command-line call)
3624 (font-lock-string-face (if (boundp 'font-lock-string-face)
3625 font-lock-string-face
3626 'font-lock-string-face))
3627 (my-cperl-delimiters-face (if (boundp 'font-lock-constant-face)
3628 font-lock-constant-face
3629 'font-lock-constant-face))
3630 (my-cperl-REx-spec-char-face ; [] ^.$ and wrapper-of ({})
3631 (if (boundp 'font-lock-function-name-face)
3632 font-lock-function-name-face
3633 'font-lock-function-name-face))
3634 (font-lock-variable-name-face ; interpolated vars and ({})-code
3635 (if (boundp 'font-lock-variable-name-face)
3636 font-lock-variable-name-face
3637 'font-lock-variable-name-face))
3638 (font-lock-function-name-face ; used in `cperl-find-sub-attrs'
3639 (if (boundp 'font-lock-function-name-face)
3640 font-lock-function-name-face
3641 'font-lock-function-name-face))
3642 (font-lock-constant-face ; used in `cperl-find-sub-attrs'
3643 (if (boundp 'font-lock-constant-face)
3644 font-lock-constant-face
3645 'font-lock-constant-face))
3646 (my-cperl-REx-0length-face ; 0-length, (?:)etc, non-literal \
3647 (if (boundp 'font-lock-builtin-face)
3648 font-lock-builtin-face
3649 'font-lock-builtin-face))
3650 (font-lock-comment-face
3651 (if (boundp 'font-lock-comment-face)
3652 font-lock-comment-face
3653 'font-lock-comment-face))
3654 (font-lock-warning-face
3655 (if (boundp 'font-lock-warning-face)
3656 font-lock-warning-face
3657 'font-lock-warning-face))
3658 (my-cperl-REx-ctl-face ; (|)
3659 (if (boundp 'font-lock-keyword-face)
3660 font-lock-keyword-face
3661 'font-lock-keyword-face))
3662 (my-cperl-REx-modifiers-face ; //gims
3663 (if (boundp 'cperl-nonoverridable-face)
3664 cperl-nonoverridable-face
3665 'cperl-nonoverridable-face))
3666 (my-cperl-REx-length1-face ; length=1 escaped chars, POSIX classes
3667 (if (boundp 'font-lock-type-face)
3669 'font-lock-type-face))
3670 (stop-point (if ignore-max
3675 "\\(\\`\n?\\|^\n\\)=" ; POD
3677 ;; One extra () before this:
3680 ;; First variant "BLAH" or just ``.
3681 "[ \t]*" ; Yes, whitespace is allowed!
3682 "\\([\"'`]\\)" ; 2 + 1 = 3
3683 "\\([^\"'`\n]*\\)" ; 3 + 1
3686 ;; Second variant: Identifier or \ID (same as 'ID') or empty
3687 "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1
3688 ;; Do not have <<= or << 30 or <<30 or << $blah.
3689 ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1
3690 "\\(\\)" ; To preserve count of pars :-( 6 + 1
3693 ;; 1+6 extra () before this:
3694 "^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" ;FRMAT
3695 (if cperl-use-syntax-table-text-property
3698 ;; 1+6+2=9 extra () before this:
3699 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" ; QUOTED CONSTRUCT
3701 ;; 1+6+2+1=10 extra () before this:
3702 "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob>
3704 ;; 1+6+2+1+1=11 extra () before this
3705 "\\<sub\\>" ; sub with proto/attr
3707 cperl-white-and-comment-rex
3708 "\\(::[a-zA-Z_:'0-9]*\\|[a-zA-Z_'][a-zA-Z_:'0-9]*\\)\\)?" ; name
3710 cperl-maybe-white-and-comment-rex
3711 "\\(([^()]*)\\|:[^:]\\)\\)" ; prototype or attribute start
3713 ;; 1+6+2+1+1+6=17 extra () before this:
3714 "\\$\\(['{]\\)" ; $' or ${foo}
3716 ;; 1+6+2+1+1+6+1=18 extra () before this (old pack'var syntax;
3717 ;; we do not support intervening comments...):
3718 "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'"
3719 ;; 1+6+2+1+1+6+1+1=19 extra () before this:
3721 "__\\(END\\|DATA\\)__" ; __END__ or __DATA__
3722 ;; 1+6+2+1+1+6+1+1+1=20 extra () before this:
3724 "\\\\\\(['`\"($]\\)") ; BACKWACKED something-hairy
3730 (message "Scanning for \"hard\" Perl constructions..."))
3731 ;;(message "find: %s --> %s" min max)
3732 (and cperl-pod-here-fontify
3733 ;; We had evals here, do not know why...
3734 (setq face cperl-pod-face
3735 head-face cperl-pod-head-face
3736 here-face cperl-here-face))
3737 (remove-text-properties min max
3738 '(syntax-type t in-pod t syntax-table t
3749 ;; Need to remove face as well...
3751 (and (eq system-type 'emx)
3753 (let ((case-fold-search t))
3754 (looking-at "extproc[ \t]")) ; Analogue of #!
3755 (cperl-commentify min
3756 (save-excursion (end-of-line) (point))
3760 (re-search-forward search max t))
3761 (setq tmpend nil) ; Valid for most cases
3762 (setq b (match-beginning 0)
3763 state (save-excursion (parse-partial-sexp
3764 state-point b nil nil state))
3767 ;; 1+6+2+1+1+6=17 extra () before this:
3769 ((match-beginning 18) ; $' or ${foo}
3770 (if (eq (preceding-char) ?\') ; $'
3772 (setq b (1- (point))
3773 state (parse-partial-sexp
3774 state-point (1- b) nil nil state)
3776 (if (nth 3 state) ; in string
3777 (cperl-modify-syntax-type (1- b) cperl-st-punct))
3780 (setq bb (match-beginning 0))
3781 (cperl-modify-syntax-type bb cperl-st-punct)))
3782 ;; No processing in strings/comments beyond this point:
3783 ((or (nth 3 state) (nth 4 state))
3784 t) ; Do nothing in comment/string
3785 ((match-beginning 1) ; POD section
3786 ;; "\\(\\`\n?\\|^\n\\)="
3787 (setq b (match-beginning 0)
3788 state (parse-partial-sexp
3789 state-point b nil nil state)
3791 (if (or (nth 3 state) (nth 4 state)
3792 (looking-at "cut\\>"))
3793 (if (or (nth 3 state) (nth 4 state) ignore-max)
3794 nil ; Doing a chunk only
3795 (message "=cut is not preceded by a POD section")
3796 (or (car err-l) (setcar err-l (point))))
3801 tb (match-beginning 0)
3802 b1 nil) ; error condition
3803 ;; We do not search to max, since we may be called from
3804 ;; some hook of fontification, and max is random
3805 (or (re-search-forward "^\n=cut\\>" stop-point 'toend)
3808 (if (re-search-forward "\n=cut\\>" stop-point 'toend)
3810 (message "=cut is not preceded by an empty line")
3812 (or (car err-l) (setcar err-l b))))))
3813 (beginning-of-line 2) ; An empty line after =cut is not POD!
3817 (remove-text-properties
3818 max e '(syntax-type t in-pod t syntax-table t
3830 (put-text-property b e 'in-pod t)
3831 (put-text-property b e 'syntax-type 'in-pod)
3833 (while (re-search-forward "\n\n[ \t]" e t)
3834 ;; We start 'pod 1 char earlier to include the preceding line
3836 (put-text-property (cperl-1- b) (point) 'syntax-type 'pod)
3837 (cperl-put-do-not-fontify b (point) t)
3838 ;; mark the non-literal parts as PODs
3839 (if cperl-pod-here-fontify
3840 (cperl-postpone-fontification b (point) 'face face t))
3841 (re-search-forward "\n\n[^ \t\f\n]" e 'toend)
3844 (put-text-property (cperl-1- (point)) e 'syntax-type 'pod)
3845 (cperl-put-do-not-fontify (point) e t)
3846 (if cperl-pod-here-fontify
3848 ;; mark the non-literal parts as PODs
3849 (cperl-postpone-fontification (point) e 'face face t)
3852 "=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$")
3854 (cperl-postpone-fontification
3855 (match-beginning 1) (match-end 1)
3857 (while (re-search-forward
3859 "^\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$"
3862 (cperl-postpone-fontification
3863 (match-beginning 1) (match-end 1)
3865 (cperl-commentify bb e nil)
3867 (or (eq e (point-max))
3868 (forward-char -1)))) ; Prepare for immediate POD start.
3870 ;; We can do many here-per-line;
3871 ;; but multiline quote on the same line as <<HERE confuses us...
3872 ;; ;; One extra () before this:
3875 ;; ;; First variant "BLAH" or just ``.
3876 ;; "[ \t]*" ; Yes, whitespace is allowed!
3877 ;; "\\([\"'`]\\)" ; 2 + 1
3878 ;; "\\([^\"'`\n]*\\)" ; 3 + 1
3881 ;; ;; Second variant: Identifier or \ID or empty
3882 ;; "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1
3883 ;; ;; Do not have <<= or << 30 or <<30 or << $blah.
3884 ;; ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1
3885 ;; "\\(\\)" ; To preserve count of pars :-( 6 + 1
3887 ((match-beginning 2) ; 1 + 1
3889 tb (match-beginning 0)
3890 c (and ; not HERE-DOC
3893 (or (looking-at "[ \t]*(") ; << function_call()
3894 (save-excursion ; 1 << func_name, or $foo << 10
3898 ;;; XXX What to do: foo <<bar ???
3899 ;;; XXX Need to support print {a} <<B ???
3902 ; $foo << b; $f .= <<B;
3903 ; ($f+1) << b; a($f) . <<B;
3904 ; foo 1, <<B; $x{a} <<b;
3906 ((looking-at "[0-9$({]")
3909 (looking-at "[ \t]*<<")
3915 (looking-at "\\(printf?\\|system\\|exec\\|sort\\)\\>")))
3917 (error nil))) ; func(<<EOF)
3918 (and (not (match-beginning 6)) ; Empty
3920 "[ \t]*[=0-9$@%&(]"))))))
3921 (if c ; Not here-doc
3923 (setq c (match-end 2)) ; 1 + 1
3924 (if (match-beginning 5) ;4 + 1
3925 (setq b1 (match-beginning 5) ; 4 + 1
3926 e1 (match-end 5)) ; 4 + 1
3927 (setq b1 (match-beginning 4) ; 3 + 1
3928 e1 (match-end 4))) ; 3 + 1
3929 (setq tag (buffer-substring b1 e1)
3930 qtag (regexp-quote tag))
3931 (cond (cperl-pod-here-fontify
3932 ;; Highlight the starting delimiter
3933 (cperl-postpone-fontification
3934 b1 e1 'face my-cperl-delimiters-face)
3935 (cperl-put-do-not-fontify b1 e1 t)))
3939 (goto-char end-of-here-doc))
3941 ;; We do not search to max, since we may be called from
3942 ;; some hook of fontification, and max is random
3943 (or (and (re-search-forward (concat "^" qtag "$")
3945 ;;;(eq (following-char) ?\n) ; XXXX WHY???
3947 (progn ; Pretend we matched at the end
3948 (goto-char (point-max))
3949 (re-search-forward "\\'")
3950 (message "End of here-document `%s' not found." tag)
3951 (or (car err-l) (setcar err-l b))))
3952 (if cperl-pod-here-fontify
3954 ;; Highlight the ending delimiter
3955 (cperl-postpone-fontification
3956 (match-beginning 0) (match-end 0)
3957 'face my-cperl-delimiters-face)
3958 (cperl-put-do-not-fontify b (match-end 0) t)
3959 ;; Highlight the HERE-DOC
3960 (cperl-postpone-fontification b (match-beginning 0)
3962 (setq e1 (cperl-1+ (match-end 0)))
3963 (put-text-property b (match-beginning 0)
3964 'syntax-type 'here-doc)
3965 (put-text-property (match-beginning 0) e1
3966 'syntax-type 'here-doc-delim)
3967 (put-text-property b e1 'here-doc-group t)
3968 ;; This makes insertion at the start of HERE-DOC update
3969 ;; the whole construct:
3970 (put-text-property b (cperl-1+ b) 'front-sticky '(syntax-type))
3971 (cperl-commentify b e1 nil)
3972 (cperl-put-do-not-fontify b (match-end 0) t)
3973 ;; Cache the syntax info...
3974 (setq cperl-syntax-state (cons state-point state))
3975 ;; ... and process the rest of the line...
3977 (elt ; non-inter ignore-max
3978 (cperl-find-pods-heres c i t end t e1) 1))
3979 (if (and overshoot (> overshoot (point)))
3980 (goto-char overshoot)
3981 (setq overshoot e1))
3985 ((match-beginning 8)
3986 ;; 1+6=7 extra () before this:
3987 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$"
3989 name (if (match-beginning 8) ; 7 + 1
3990 (buffer-substring (match-beginning 8) ; 7 + 1
3991 (match-end 8)) ; 7 + 1
3993 tb (match-beginning 0))
3995 (put-text-property (save-excursion
3998 b 'first-format-line 't)
3999 (if cperl-pod-here-fontify
4000 (while (and (eq (forward-line) 0)
4001 (not (looking-at "^[.;]$")))
4003 ((looking-at "^#")) ; Skip comments
4004 ((and argument ; Skip argument multi-lines
4005 (looking-at "^[ \t]*{"))
4007 (setq argument nil))
4008 (argument ; Skip argument lines
4009 (setq argument nil))
4012 (setq argument (looking-at "^[^\n]*[@^]"))
4014 ;; Highlight the format line
4015 (cperl-postpone-fontification b1 (point)
4016 'face font-lock-string-face)
4017 (cperl-commentify b1 (point) nil)
4018 (cperl-put-do-not-fontify b1 (point) t))))
4019 ;; We do not search to max, since we may be called from
4020 ;; some hook of fontification, and max is random
4021 (re-search-forward "^[.;]$" stop-point 'toend))
4023 (if (looking-at "^\\.$") ; ";" is not supported yet
4025 ;; Highlight the ending delimiter
4026 (cperl-postpone-fontification (point) (+ (point) 2)
4027 'face font-lock-string-face)
4028 (cperl-commentify (point) (+ (point) 2) nil)
4029 (cperl-put-do-not-fontify (point) (+ (point) 2) t))
4030 (message "End of format `%s' not found." name)
4031 (or (car err-l) (setcar err-l b)))
4035 (put-text-property b (point) 'syntax-type 'format))
4036 ;; qq-like String or Regexp:
4037 ((or (match-beginning 10) (match-beginning 11))
4038 ;; 1+6+2=9 extra () before this:
4039 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>"
4041 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob>
4042 (setq b1 (if (match-beginning 10) 10 11)
4043 argument (buffer-substring
4044 (match-beginning b1) (match-end b1))
4045 b (point) ; end of qq etc
4047 c (char-after (match-beginning b1))
4048 bb (char-after (1- (match-beginning b1))) ; tmp holder
4049 ;; bb == "Not a stringy"
4050 bb (if (eq b1 10) ; user variables/whatever
4051 (and (memq bb (append "$@%*#_:-&>" nil)) ; $#y)
4052 (cond ((eq bb ?-) (eq c ?s)) ; -s file test
4053 ((eq bb ?\:) ; $opt::s
4055 (- (match-beginning b1) 2))
4057 ((eq bb ?\>) ; $foo->s
4059 (- (match-beginning b1) 2))
4062 (not (eq (char-after ; &&m/blah/
4063 (- (match-beginning b1) 2))
4066 ;; <file> or <$file>
4068 ;; Do not stringify <FH>, <$fh> :
4071 "\\$?\\([_a-zA-Z:][_a-zA-Z0-9:]*\\)?>"))))
4072 tb (match-beginning 0))
4073 (goto-char (match-beginning b1))
4074 (cperl-backward-to-noncomment (point-min))
4076 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo>
4081 ;; What is below: regexp-p?
4083 (or (memq (preceding-char)
4084 (append (if (memq c '(?\? ?\<))
4087 "~{(=|&+-*!,;:[") nil))
4088 (and (eq (preceding-char) ?\})
4089 (cperl-after-block-p (point-min)))
4090 (and (eq (char-syntax (preceding-char)) ?w)
4093 ;; After these keywords `/' starts a RE. One should add all the
4094 ;; functions/builtins which expect an argument, but ...
4095 (if (eq (preceding-char) ?-)
4097 (looking-at "[a-zA-Z]\\>")
4099 (not (memq (preceding-char)
4102 "\\(while\\|if\\|unless\\|until\\|and\\|or\\|not\\|xor\\|split\\|grep\\|map\\|print\\)\\>")))))
4103 (and (eq (preceding-char) ?.)
4104 (eq (char-after (- (point) 2)) ?.))
4106 ;; m|blah| ? foo : bar;
4109 cperl-use-syntax-table-text-property
4113 (looking-at "\\s|"))))))
4116 ;; Check for $a -> y
4117 (setq b1 (preceding-char)
4120 (eq (char-after (- go 2)) ?-))
4126 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
4127 (goto-char (match-end 0))
4128 (skip-chars-forward " \t\n\f"))
4129 (cond ((and (eq (following-char) ?\})
4131 ;; Check for $a[23]->{ s }, @{s} and *{s::foo}
4133 (skip-chars-backward " \t\n\f")
4134 (if (memq (preceding-char) (append "$@%&*" nil))
4140 (looking-at ; $foo -> {s}
4141 "[$@]\\$*\\([a-zA-Z0-9_:]+\\|[^{]\\)\\([ \t\n]*->\\)?[ \t\n]*{")
4142 (and ; $foo[12] -> {s}
4143 (memq (following-char) '(?\{ ?\[))
4146 (looking-at "\\([ \t\n]*->\\)?[ \t\n]*{"))))
4149 ((and (eq (following-char) ?=)
4150 (eq (char-after (1+ (point))) ?\>))
4151 ;; Check for { foo => 1, s => 2 }
4152 ;; Apparently s=> is never a substitution...
4154 ((and (eq (following-char) ?:)
4155 (eq b1 ?\{) ; Check for $ { s::bar }
4156 (looking-at "::[a-zA-Z0-9_:]*[ \t\n\f]*}")
4159 (skip-chars-backward " \t\n\f")
4160 (memq (preceding-char)
4161 (append "$@%&*" nil))))
4167 ;; Skip whitespace and comments...
4168 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
4169 (goto-char (match-end 0))
4170 (skip-chars-forward " \t\n\f"))
4172 (put-text-property b (point) 'syntax-type 'prestring))
4173 ;; qtag means two-arg matcher, may be reset to
4174 ;; 2 or 3 later if some special quoting is needed.
4175 ;; e1 means matching-char matcher.
4176 (setq b (point) ; before the first delimiter
4178 i2 (string-match "^\\([sy]\\|tr\\)$" argument)
4179 ;; We do not search to max, since we may be called from
4180 ;; some hook of fontification, and max is random
4181 i (cperl-forward-re stop-point end
4183 st-l err-l argument)
4184 ;; If `go', then it is considered as 1-arg, `b1' is nil
4185 ;; as in s/foo//x; the point is before final "slash"
4186 b1 (nth 1 i) ; start of the second part
4187 tag (nth 2 i) ; ender-char, true if second part
4188 ; is with matching chars []
4189 go (nth 4 i) ; There is a 1-char part after the end
4190 i (car i) ; intermediate point
4192 ;; Before end of the second part if non-matching: ///
4193 tail (if (and i (not tag))
4195 e (if i i e1) ; end of the first part
4196 qtag nil ; need to preserve backslashitis
4197 is-x-REx nil is-o-REx nil); REx has //x //o modifiers
4198 ;; If s{} (), then b/b1 are at "{", "(", e1/i after ")", "}"
4199 ;; Commenting \\ is dangerous, what about ( ?
4201 (eq (char-after i) ?\\)
4203 (and (if go (looking-at ".\\sw*x")
4204 (looking-at "\\sw*x")) ; qr//x
4206 (and (if go (looking-at ".\\sw*o")
4207 (looking-at "\\sw*o")) ; //o
4210 ;; Considered as 1arg form
4212 (cperl-commentify b (point) t)
4213 (put-text-property b (point) 'syntax-type 'string)
4215 ;; ignore other text properties:
4216 (string-match "^qw$" argument))
4217 (put-text-property b (point) 'indentable t))
4219 (setq e1 (cperl-1+ e1))
4222 (cperl-commentify b i t)
4223 (if (looking-at "\\sw*e") ; s///e
4225 ;; Cache the syntax info...
4226 (setq cperl-syntax-state (cons state-point state))
4229 (car (cperl-find-pods-heres b1 (1- (point)) t end))
4231 (goto-char (1+ max)))
4232 (if (and tag (eq (preceding-char) ?\>))
4234 (cperl-modify-syntax-type (1- (point)) cperl-st-ket)
4235 (cperl-modify-syntax-type i cperl-st-bra)))
4236 (put-text-property b i 'syntax-type 'string)
4237 (put-text-property i (point) 'syntax-type 'multiline)
4239 (put-text-property b i 'indentable t)))
4240 (cperl-commentify b1 (point) t)
4241 (put-text-property b (point) 'syntax-type 'string)
4243 (put-text-property b i 'indentable t))
4245 (cperl-modify-syntax-type (1+ i) cperl-st-punct))
4247 ;; Now: tail: if the second part is non-matching without ///e
4248 (if (eq (char-syntax (following-char)) ?w)
4250 (forward-word 1) ; skip modifiers s///s
4251 (if tail (cperl-commentify tail (point) t))
4252 (cperl-postpone-fontification
4253 e1 (point) 'face my-cperl-REx-modifiers-face)))
4254 ;; Check whether it is m// which means "previous match"
4255 ;; and highlight differently
4257 (and (string-match "^\\([sm]?\\|qr\\)$" argument)
4258 (or (not (= (length argument) 0))
4262 ;; split // *is* using zero-pattern
4268 (not (looking-at "split\\>")))
4270 (cperl-postpone-fontification
4271 b e 'face font-lock-warning-face)
4272 (if (or i2 ; Has 2 args
4273 (and cperl-fontify-m-as-s
4275 (string-match "^\\(m\\|qr\\)$" argument)
4276 (and (eq 0 (length argument))
4277 (not (eq ?\< (char-after b)))))))
4279 (cperl-postpone-fontification
4280 b (cperl-1+ b) 'face my-cperl-delimiters-face)
4281 (cperl-postpone-fontification
4282 (1- e) e 'face my-cperl-delimiters-face)))
4283 (if (and is-REx cperl-regexp-scan)
4284 ;; Process RExen: embedded comments, charclasses and ]
4285 ;;;/\3333\xFg\x{FFF}a\ppp\PPP\qqq\C\99f(?{ foo })(??{ foo })/;
4286 ;;;/a\.b[^a[:ff:]b]x$ab->$[|$,$ab->[cd]->[ef]|$ab[xy].|^${a,b}{c,d}/;
4287 ;;;/(?<=foo)(?<!bar)(x)(?:$ab|\$\/)$|\\\b\x888\776\[\:$/xxx;
4288 ;;;m?(\?\?{b,a})? + m/(??{aa})(?(?=xx)aa|bb)(?#aac)/;
4289 ;;;m$(^ab[c]\$)$ + m+(^ab[c]\$\+)+ + m](^ab[c\]$|.+)] + m)(^ab[c]$|.+\));
4290 ;;;m^a[\^b]c^ + m.a[^b]\.c.;
4294 (cperl-look-at-leading-count is-x-REx e)
4298 (if (eq (char-after b) ?\#)
4299 "\\((\\?\\\\#\\)\\|\\(\\\\#\\)"
4300 "\\((\\?#\\)\\|\\(#\\)")
4301 ;; keep the same count: add a fake group
4302 (if (eq (char-after b) ?\#)
4303 "\\((\\?\\\\#\\)\\(\\)"
4304 "\\((\\?#\\)\\(\\)"))
4310 ;; XXXX Will not be able to use it in s)))
4311 (if (eq (char-after b) ?\) )
4312 "\\())))\\)" ; Will never match
4313 (if (eq (char-after b) ?? )
4314 ;;"\\((\\\\\\?\\(\\\\\\?\\)?{\\)"
4315 "\\((\\\\\\?\\\\\\?{\\|()\\\\\\?{\\)"
4316 "\\((\\?\\??{\\)")) ; 5= (??{ (?{
4317 "\\|" ; 6= 0-length, 7: name, 8,9:code, 10:group
4318 "\\(" ;; XXXX 1-char variables, exc. |()\s
4321 "[_a-zA-Z:][_a-zA-Z0-9:]*"
4323 "{[^{}]*}" ; only one-level allowed
4327 "\\(" ;;8,9:code part of array/hash elt
4333 ;; XXXX: what if u is delim?
4341 "\\\\[luLUEQbBAzZG]"
4344 "\\(" ; 10 group opener follower
4345 "\\?\\((\\?\\)" ; 11: in (?(?=C)A|B)
4347 "\\?[:=!>?{]" ; "?" something
4349 "\\?[-imsx]+[:)]" ; (?i) (?-s:.)
4351 "\\?([0-9]+)" ; (?(1)foo|bar)
4359 "\\\\\\(.\\)" ; 12=\SYMBOL
4362 (and (< (point) (1- e))
4363 (re-search-forward hairy-RE (1- e) 'to-end))
4364 (goto-char (match-beginning 0))
4365 (setq REx-subgr-start (point)
4366 was-subgr (following-char))
4368 ((match-beginning 6) ; 0-length builtins, groups
4369 (goto-char (match-end 0))
4370 (if (match-beginning 11)
4371 (goto-char (match-beginning 11)))
4374 (cperl-postpone-fontification
4375 (match-beginning 0) (point)
4378 ((eq was-subgr ?\) )
4383 (if (if (eq (char-after b) ?? )
4384 (looking-at "(\\\\\\?")
4385 (eq (char-after (1+ (point))) ?\?))
4386 my-cperl-REx-0length-face
4387 my-cperl-REx-ctl-face)
4388 font-lock-warning-face))
4389 (error font-lock-warning-face)))
4390 ((eq was-subgr ?\| )
4391 my-cperl-REx-ctl-face)
4392 ((eq was-subgr ?\$ )
4393 (if (> (point) (1+ REx-subgr-start))
4396 (match-beginning 0) (point)
4399 (if (and (eq (match-beginning 0)
4403 font-lock-variable-name-face)
4404 my-cperl-REx-spec-char-face))
4405 ((memq was-subgr (append "^." nil) )
4406 my-cperl-REx-spec-char-face)
4407 ((eq was-subgr ?\( )
4408 (if (not (match-beginning 10))
4409 my-cperl-REx-ctl-face
4410 my-cperl-REx-0length-face))
4411 (t my-cperl-REx-0length-face)))
4412 (if (and (memq was-subgr (append "(|" nil))
4413 (not (string-match "(\\?[-imsx]+)"
4415 (cperl-look-at-leading-count is-x-REx e))
4416 (setq was-subgr nil)) ; We do stuff here
4417 ((match-beginning 12) ; \SYMBOL
4421 ;; How many chars to not highlight:
4422 ;; 0-len special-alnums in other branch =>
4423 ;; Generic: \non-alnum (1), \alnum (1+face)
4424 ;; Is-delim: \non-alnum (1/spec-2) alnum-1 (=what hai)
4425 (setq REx-subgr-start (point)
4426 qtag (preceding-char))
4427 (cperl-postpone-fontification
4428 (- (point) 2) (- (point) 1) 'face
4430 (append "ghijkmoqvFHIJKMORTVY" nil))
4431 font-lock-warning-face
4432 my-cperl-REx-0length-face))
4433 (if (and (eq (char-after b) qtag)
4434 (memq qtag (append ".])^$|*?+" nil)))
4436 (if (and cperl-use-syntax-table-text-property
4439 REx-subgr-start (1- (point))
4440 'syntax-table cperl-st-punct))
4441 (cperl-postpone-fontification
4442 (1- (point)) (point) 'face
4443 ; \] can't appear below
4444 (if (memq qtag (append ".]^$" nil))
4445 'my-cperl-REx-spec-char-face
4446 (if (memq qtag (append "*?+" nil))
4447 'my-cperl-REx-0length-face
4448 'my-cperl-REx-ctl-face))))) ; )|
4449 ;; Test for arguments:
4451 ;; This is not pretty: the 5.8.7 logic:
4452 ;; \0numx -> octal (up to total 3 dig)
4453 ;; \DIGIT -> backref unless \0
4454 ;; \DIGITs -> backref if valid
4455 ;; otherwise up to 3 -> octal
4456 ;; Do not try to distinguish, we guess
4457 ((or (and (memq qtag (append "01234567" nil))
4459 "\\=[01234567]?[01234567]?"
4461 (and (memq qtag (append "89" nil))
4463 "\\=[0123456789]*" (1- e) 'to-end))
4466 "\\=[0-9a-fA-F][0-9a-fA-F]?\\|\\={[0-9a-fA-F]+}"
4468 (and (memq qtag (append "pPN" nil))
4469 (re-search-forward "\\={[^{}]+}\\|."
4471 (eq (char-syntax qtag) ?w))
4472 (cperl-postpone-fontification
4473 (1- REx-subgr-start) (point)
4474 'face my-cperl-REx-length1-face))))
4475 (setq was-subgr nil)) ; We do stuff here
4476 ((match-beginning 3) ; [charclass]
4478 (if (eq (char-after b) ?^ )
4479 (and (eq (following-char) ?\\ )
4480 (eq (char-after (cperl-1+ (point)))
4483 (and (eq (following-char) ?^ )
4485 (setq argument b ; continue?
4486 tag nil ; list of POSIX classes
4488 (if (eq (char-after b) ?\] )
4489 (and (eq (following-char) ?\\ )
4490 (eq (char-after (cperl-1+ (point)))
4492 (setq qtag (1+ qtag))
4494 (and (eq (following-char) ?\] )
4496 ;; Apparently, I can't put \] into a charclass
4497 ;; in m]]: m][\\\]\]] produces [\\]]
4498 ;;; POSIX? [:word:] [:^word:] only inside []
4499 ;;; "\\=\\(\\\\.\\|[^][\\\\]\\|\\[:\\^?\sw+:]\\|\\[[^:]\\)*]")
4503 (if (eq (char-after b) ?\] )
4504 "\\=\\(\\\\[^]]\\|[^]\\\\]\\)*\\\\]"
4505 "\\=\\(\\\\.\\|[^]\\\\]\\)*]")
4507 ;; Is this ] an end of POSIX class?
4510 (search-backward "[" argument t)
4511 (< REx-subgr-start (point))
4513 (and ; Should work with delim = \
4514 (eq (preceding-char) ?\\ )
4515 (= (% (skip-chars-backward
4519 ((eq (char-after b) ?\] )
4520 "\\\\*\\[:\\^?\\sw+:\\\\\\]")
4521 ((eq (char-after b) ?\: )
4522 "\\\\*\\[\\\\:\\^?\\sw+\\\\:]")
4523 ((eq (char-after b) ?^ )
4524 "\\\\*\\[:\\(\\\\\\^\\)?\\sw+:\]")
4525 ((eq (char-syntax (char-after b))
4528 "\\\\*\\[:\\(\\\\\\^\\)?\\(\\\\"
4529 (char-to-string (char-after b))
4531 (t "\\\\*\\[:\\^?\\sw*:]")))
4532 (setq argument (point))))
4533 (setq tag (cons (cons argument (point))
4535 argument (point)) ; continue
4536 (setq argument nil)))
4538 (message "Couldn't find end of charclass in a REx, pos=%s"
4540 (if (and cperl-use-syntax-table-text-property
4541 (> (- (point) 2) REx-subgr-start))
4543 (1+ REx-subgr-start) (1- (point))
4544 'syntax-table cperl-st-punct))
4545 (cperl-postpone-fontification
4546 REx-subgr-start qtag
4547 'face my-cperl-REx-spec-char-face)
4548 (cperl-postpone-fontification
4549 (1- (point)) (point) 'face
4550 my-cperl-REx-spec-char-face)
4551 (if (eq (char-after b) ?\] )
4552 (cperl-postpone-fontification
4553 (- (point) 2) (1- (point))
4554 'face my-cperl-REx-0length-face))
4556 (cperl-postpone-fontification
4557 (car (car tag)) (cdr (car tag))
4558 'face my-cperl-REx-length1-face)
4559 (setq tag (cdr tag)))
4560 (setq was-subgr nil)) ; did facing already
4562 ((and (match-beginning 2) ; #-comment
4563 (/= (match-beginning 2) (match-end 2)))
4564 (beginning-of-line 2)
4566 (goto-char (1- e))))
4567 ((match-beginning 4) ; character "]"
4568 (setq was-subgr nil) ; We do stuff here
4569 (goto-char (match-end 0))
4570 (if cperl-use-syntax-table-text-property
4572 (1- (point)) (point)
4573 'syntax-table cperl-st-punct))
4574 (cperl-postpone-fontification
4575 (1- (point)) (point)
4576 'face font-lock-warning-face))
4577 ((match-beginning 5) ; before (?{}) (??{})
4578 (setq tag (match-end 0))
4580 (cperl-forward-group-in-re st-l))
4582 (setq qtag "no matching `)' found"))
4583 (and (not (eq (char-after (- (point) 2))
4585 (setq qtag "Can't find })")))
4588 (message "%s" qtag))
4589 (cperl-postpone-fontification
4590 (1- tag) (1- (point))
4591 'face font-lock-variable-name-face)
4592 (cperl-postpone-fontification
4593 REx-subgr-start (1- tag)
4594 'face my-cperl-REx-spec-char-face)
4595 (cperl-postpone-fontification
4596 (1- (point)) (point)
4597 'face my-cperl-REx-spec-char-face)
4598 (if cperl-use-syntax-table-text-property
4601 (- (point) 2) (1- (point))
4602 'syntax-table cperl-st-cfence)
4604 (+ REx-subgr-start 2)
4605 (+ REx-subgr-start 3)
4606 'syntax-table cperl-st-cfence))))
4607 (setq was-subgr nil))
4609 ;; Inside "(" and "\" arn't special in any way
4610 ;; Works also if the outside delimiters are ().
4611 (or;;(if (eq (char-after b) ?\) )
4612 ;;(re-search-forward
4613 ;; "[^\\\\]\\(\\\\\\\\\\)*\\\\)"
4615 (search-forward ")" (1- e) 'toend)
4618 "Couldn't find end of (?#...)-comment in a REx, pos=%s"
4624 (setq REx-subgr-end (point))
4626 REx-subgr-start REx-subgr-end nil)
4627 (cperl-postpone-fontification
4628 REx-subgr-start REx-subgr-end
4629 'face font-lock-comment-face))))))
4630 (if (and is-REx is-x-REx)
4631 (put-text-property (1+ b) (1- e)
4632 'syntax-subtype 'x-REx)))
4633 (if (and i2 e1 b1 (> e1 b1))
4634 (progn ; No errors finding the second part...
4635 (cperl-postpone-fontification
4636 (1- e1) e1 'face my-cperl-delimiters-face)
4637 (if (and (not (eobp))
4638 (assoc (char-after b) cperl-starters))
4640 (cperl-postpone-fontification
4641 b1 (1+ b1) 'face my-cperl-delimiters-face)
4642 (put-text-property b1 (1+ b1)
4646 ((match-beginning 17) ; sub with prototype or attribute
4647 ;; 1+6+2+1+1=11 extra () before this (sub with proto/attr):
4648 ;;"\\<sub\\>\\(" ;12
4649 ;; cperl-white-and-comment-rex ;13
4650 ;; "\\([a-zA-Z_:'0-9]+\\)\\)?" ; name ;14
4651 ;;"\\(" cperl-maybe-white-and-comment-rex ;15,16
4652 ;; "\\(([^()]*)\\|:[^:]\\)\\)" ; 17:proto or attribute start
4653 (setq b1 (match-beginning 14) e1 (match-end 14))
4654 (if (memq (char-after (1- b))
4655 '(?\$ ?\@ ?\% ?\& ?\*))
4658 (if (eq (char-after (match-beginning 17)) ?\( )
4660 (cperl-commentify ; Prototypes; mark as string
4661 (match-beginning 17) (match-end 17) t)
4662 (goto-char (match-end 0))
4663 ;; Now look for attributes after prototype:
4664 (forward-comment (buffer-size))
4665 (and (looking-at ":[^:]")
4666 (cperl-find-sub-attrs st-l b1 e1 b)))
4667 ;; treat attributes without prototype
4668 (goto-char (match-beginning 17))
4669 (cperl-find-sub-attrs st-l b1 e1 b))))
4670 ;; 1+6+2+1+1+6+1=18 extra () before this:
4671 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'")
4672 ((match-beginning 19) ; old $abc'efg syntax
4673 (setq bb (match-end 0))
4674 ;;;(if (nth 3 state) nil ; in string
4675 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)
4677 ;; 1+6+2+1+1+6+1+1=19 extra () before this:
4678 ;; "__\\(END\\|DATA\\)__"
4679 ((match-beginning 20) ; __END__, __DATA__
4680 (setq bb (match-end 0))
4681 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat
4682 (cperl-commentify b bb nil)
4684 ;; "\\\\\\(['`\"($]\\)"
4685 ((match-beginning 21)
4686 ;; Trailing backslash; make non-quoting outside string/comment
4687 (setq bb (match-end 0))
4689 (skip-chars-backward "\\\\")
4690 ;;;(setq i2 (= (% (skip-chars-backward "\\\\") 2) -1))
4691 (cperl-modify-syntax-type b cperl-st-punct)
4693 (t (error "Error in regexp of the sniffer")))
4694 (if (> (point) stop-point)
4697 (message "Garbage after __END__/__DATA__ ignored")
4698 (message "Unbalanced syntax found while scanning")
4699 (or (car err-l) (setcar err-l b)))
4700 (goto-char stop-point))))
4701 (setq cperl-syntax-state (cons state-point state)
4702 ;; Do not mark syntax as done past tmpend???
4703 cperl-syntax-done-to (or tmpend (max (point) max)))
4704 ;;(message "state-at=%s, done-to=%s" state-point cperl-syntax-done-to)
4706 (if (car err-l) (goto-char (car err-l))
4708 (message "Scanning for \"hard\" Perl constructions... done"))))
4709 (and (buffer-modified-p)
4711 (set-buffer-modified-p nil))
4712 ;; I do not understand what this is doing here. It breaks font-locking
4713 ;; because it resets the syntax-table from font-lock-syntax-table to
4714 ;; cperl-mode-syntax-table.
4715 ;; (set-syntax-table cperl-mode-syntax-table)
4717 (list (car err-l) overshoot)))
4719 (defun cperl-find-pods-heres-region (min max)
4721 (cperl-find-pods-heres min max))
4723 (defun cperl-backward-to-noncomment (lim)
4724 ;; Stops at lim or after non-whitespace that is not in comment
4725 ;; XXXX Wrongly understands end-of-multiline strings with # as comment
4727 (while (and (not stop) (> (point) (or lim (point-min))))
4728 (skip-chars-backward " \t\n\f" lim)
4731 (if (memq (setq pr (get-text-property (point) 'syntax-type))
4732 '(pod here-doc here-doc-delim))
4734 (cperl-unwind-to-safe nil)
4735 (setq pr (get-text-property (point) 'syntax-type))))
4736 (or (and (looking-at "^[ \t]*\\(#\\|$\\)")
4737 (not (memq pr '(string prestring))))
4738 (progn (cperl-to-comment-or-eol) (bolp))
4740 (skip-chars-backward " \t")
4741 (if (< p (point)) (goto-char p))
4744 ;; Used only in `cperl-calculate-indent'...
4745 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" !
4746 ;; Positions is before ?\{. Checks whether it starts a block.
4747 ;; No save-excursion! This is more a distinguisher of a block/hash ref...
4748 (cperl-backward-to-noncomment (point-min))
4749 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp
4750 ; Label may be mixed up with `$blah :'
4751 (save-excursion (cperl-after-label))
4752 (get-text-property (cperl-1- (point)) 'attrib-group)
4753 (and (memq (char-syntax (preceding-char)) '(?w ?_))
4756 ;; sub {BLK}, print {BLK} $data, but NOT `bless', `return', `tr'
4757 (or (and (looking-at "[a-zA-Z0-9_:]+[ \t\n\f]*[{#]") ; Method call syntax
4758 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>")))
4759 ;; sub bless::foo {}
4761 (cperl-backward-to-noncomment (point-min))
4762 (and (eq (preceding-char) ?b)
4765 (looking-at "sub[ \t\n\f#]")))))))))
4767 ;;; What is the difference of (cperl-after-block-p lim t) and (cperl-block-p)?
4768 ;;; No save-excursion; condition-case ... In (cperl-block-p) the block
4769 ;;; may be a part of an in-statement construct, such as
4770 ;;; ${something()}, print {FH} $data.
4771 ;;; Moreover, one takes positive approach (looks for else,grep etc)
4772 ;;; another negative (looks for bless,tr etc)
4773 (defun cperl-after-block-p (lim &optional pre-block)
4774 "Return true if the preceeding } (if PRE-BLOCK, following {) delimits a block.
4775 Would not look before LIM. Assumes that LIM is a good place to begin a
4776 statement. The kind of block we treat here is one after which a new
4777 statement would start; thus the block in ${func()} does not count."
4781 (or pre-block (forward-sexp -1))
4782 (cperl-backward-to-noncomment lim)
4783 (or (eq (point) lim)
4784 ;; if () {} // sub f () {} // sub f :a(') {}
4785 (eq (preceding-char) ?\) )
4787 (save-excursion (cperl-after-label))
4789 (get-text-property (cperl-1- (point)) 'attrib-group)
4790 (if (memq (char-syntax (preceding-char)) '(?w ?_)) ; else {}
4793 ;; else {} but not else::func {}
4794 (or (and (looking-at "\\(else\\|continue\\|grep\\|map\\|BEGIN\\|END\\|CHECK\\|INIT\\)\\>")
4795 (not (looking-at "\\(\\sw\\|_\\)+::")))
4798 (cperl-backward-to-noncomment lim)
4799 (and (eq (preceding-char) ?b)
4802 (looking-at "sub[ \t\n\f#]"))))))
4803 ;; What preceeds is not word... XXXX Last statement in sub???
4804 (cperl-after-expr-p lim))))
4807 (defun cperl-after-expr-p (&optional lim chars test)
4808 "Return true if the position is good for start of expression.
4809 TEST is the expression to evaluate at the found position. If absent,
4810 CHARS is a string that contains good characters to have before us (however,
4811 `}' is treated \"smartly\" if it is not in the list)."
4812 (let ((lim (or lim (point-min)))
4814 (cperl-update-syntaxification (point) (point))
4816 (while (and (not stop) (> (point) lim))
4817 (skip-chars-backward " \t\n\f" lim)
4820 ;;(memq (setq pr (get-text-property (point) 'syntax-type))
4821 ;; '(pod here-doc here-doc-delim))
4822 (if (get-text-property (point) 'here-doc-group)
4825 (cperl-beginning-of-property (point) 'here-doc-group))
4826 (beginning-of-line 0)))
4827 (if (get-text-property (point) 'in-pod)
4830 (cperl-beginning-of-property (point) 'in-pod))
4831 (beginning-of-line 0)))
4832 (if (looking-at "^[ \t]*\\(#\\|$\\)") nil ; Only comment, skip
4833 ;; Else: last iteration, or a label
4834 (cperl-to-comment-or-eol) ; Will not move past "." after a format
4835 (skip-chars-backward " \t")
4836 (if (< p (point)) (goto-char p))
4838 (if (and (eq (preceding-char) ?:)
4841 (skip-chars-backward " \t\n\f" lim)
4842 (memq (char-syntax (preceding-char)) '(?w ?_))))
4843 (forward-sexp -1) ; Possibly label. Skip it
4846 (or (bobp) ; ???? Needed
4848 (looking-at "[ \t]*__\\(END\\|DATA\\)__") ; After this anything goes
4850 (if test (eval test)
4851 (or (memq (preceding-char) (append (or chars "{;") nil))
4852 (and (eq (preceding-char) ?\})
4853 (cperl-after-block-p lim))
4854 (and (eq (following-char) ?.) ; in format: see comment above
4855 (eq (get-text-property (point) 'syntax-type)
4858 (defun cperl-backward-to-start-of-expr (&optional lim)
4861 (while (and (or (not lim)
4863 (not (cperl-after-expr-p lim)))
4865 ;; May be after $, @, $# etc of a variable
4866 (skip-chars-backward "$@%#")))
4869 (defun cperl-at-end-of-expr (&optional lim)
4870 ;; Since the SEXP approach below is very fragile, do some overengineering
4871 (or (looking-at (concat cperl-maybe-white-and-comment-rex "[;}]"))
4874 ;; If nothing interesting after, does as (forward-sexp -1);
4875 ;; otherwise fails, or ends at a start of following sexp.
4876 ;; XXXX PROBLEMS: if what follows (after ";") @FOO, or ${bar}
4877 ;; may be stuck after @ or $; just put some stupid workaround now:
4881 (while (memq (preceding-char) (append "%&@$*" nil))
4884 (cperl-after-expr-p lim))))
4887 (defun cperl-forward-to-end-of-expr (&optional lim)
4891 (while (and (< (point) (or lim (point-max)))
4892 (not (cperl-at-end-of-expr)))
4896 (defun cperl-backward-to-start-of-continued-exp (lim)
4897 (if (memq (preceding-char) (append ")]}\"'`" nil))
4900 (if (<= (point) lim)
4901 (goto-char (1+ lim)))
4902 (skip-chars-forward " \t"))
4904 (defun cperl-after-block-and-statement-beg (lim)
4905 ;; We assume that we are after ?\}
4907 (cperl-after-block-p lim)
4910 (cperl-backward-to-noncomment (point-min))
4913 (not (= (char-syntax (preceding-char)) ?w))
4918 "\\(map\\|grep\\|printf?\\|system\\|exec\\|tr\\|s\\)\\>")))))))
4921 (defun cperl-indent-exp ()
4922 "Simple variant of indentation of continued-sexp.
4924 Will not indent comment if it starts at `comment-indent' or looks like
4925 continuation of the comment on the previous line.
4927 If `cperl-indent-region-fix-constructs', will improve spacing on
4928 conditional/loop constructs."
4931 (let ((tmp-end (progn (end-of-line) (point))) top done)
4936 ;; Plan A: if line has an unfinished paren-group, go to end-of-group
4937 (while (= -1 (nth 0 (parse-partial-sexp (point) tmp-end -1)))
4938 (setq top (point))) ; Get the outermost parenths in line
4940 (while (< (point) tmp-end)
4941 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol
4942 (or (eolp) (forward-sexp 1)))
4943 (if (> (point) tmp-end) ; Yes, there an unfinished block
4945 (if (eq ?\) (preceding-char))
4946 (progn ;; Plan B: find by REGEXP block followup this line
4951 (if (eq (following-char) ?$ ) ; for my $var (list)
4954 (if (looking-at "\\(my\\|local\\|our\\)\\>")
4955 (forward-sexp -1))))
4957 (concat "\\(\\elsif\\|if\\|unless\\|while\\|until"
4958 "\\|for\\(each\\)?\\>\\(\\("
4959 cperl-maybe-white-and-comment-rex
4960 "\\(my\\|local\\|our\\)\\)?"
4961 cperl-maybe-white-and-comment-rex
4962 "\\$[_a-zA-Z0-9]+\\)?\\)\\>"))
4966 (setq top (point)))))
4967 (error (setq done t)))
4969 (if (looking-at ; Try Plan C: continuation block
4970 (concat cperl-maybe-white-and-comment-rex
4971 "\\<\\(else\\|elsif\|continue\\)\\>"))
4973 (goto-char (match-end 0))
4976 (setq tmp-end (point))))
4980 (setq tmp-end (point))))
4982 (setq tmp-end (point-marker)))
4983 (if cperl-indent-region-fix-constructs
4984 (cperl-fix-line-spacing tmp-end))
4985 (cperl-indent-region (point) tmp-end))))
4987 (defun cperl-fix-line-spacing (&optional end parse-data)
4988 "Improve whitespace in a conditional/loop construct.
4989 Returns some position at the last line."
4992 (setq end (point-max)))
4993 (let ((ee (save-excursion (end-of-line) (point)))
4994 (cperl-indent-region-fix-constructs
4995 (or cperl-indent-region-fix-constructs 1))
4996 p pp ml have-brace ret)
5003 (or (looking-at "[ \t]*\\(els\\(e\\|if\\)\\|continue\\|if\\|while\\|for\\(each\\)?\\|until\\)")
5004 (setq have-brace (save-excursion (search-forward "}" ee t)))))
5005 nil ; Do not need to do anything
5009 (if cperl-merge-trailing-else
5011 "[ \t]*}[ \t]*\n[ \t\n]*\\(els\\(e\\|if\\)\\|continue\\)\\>")
5013 (search-forward "}")
5015 (skip-chars-forward " \t\n")
5016 (delete-region p (point))
5017 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5018 (beginning-of-line)))
5019 (if (looking-at "[ \t]*}[ \t]*\\(els\\(e\\|if\\)\\|continue\\)\\>")
5021 (search-forward "}")
5022 (delete-horizontal-space)
5025 (if (cperl-indent-line parse-data)
5027 (cperl-fix-line-spacing end parse-data)
5028 (setq ret (point)))))))
5031 (if (looking-at "[ \t]*}\\(\t*\\|[ \t][ \t]+\\)\\<\\(els\\(e\\|if\\)\\|continue\\)\\>")
5033 (search-forward "}")
5034 (delete-horizontal-space)
5035 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5036 (beginning-of-line)))
5040 "[ \t]*}?[ \t]*\\<\\(\\els\\(e\\|if\\)\\|continue\\|unless\\|if\\|while\\|for\\(each\\)?\\|until\\)\\>\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
5043 (delete-horizontal-space)
5044 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5045 (beginning-of-line)))
5049 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)\\(\t*\\|[ \t][ \t]+\\)[^ \t\n]")
5052 (delete-horizontal-space)
5053 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5054 (beginning-of-line)))
5056 ;; foreach my $var (
5058 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)[ \t]*\\$[_a-zA-Z0-9]+\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
5061 (delete-horizontal-space)
5063 (make-string cperl-indent-region-fix-constructs ?\s))
5064 (beginning-of-line)))
5065 ;; Looking at (with or without "}" at start, ending after "({"):
5066 ;; } foreach my $var () OR {
5068 "[ \t]*\\(}[ \t]*\\)?\\<\\(\\els\\(e\\|if\\)\\|continue\\|if\\|unless\\|while\\|for\\(each\\)?\\(\\([ \t]+\\(my\\|local\\|our\\)\\)?[ \t]*\\$[_a-zA-Z0-9]+\\)?\\|until\\)\\>\\([ \t]*(\\|[ \t\n]*{\\)\\|[ \t]*{")
5070 (setq ml (match-beginning 8)) ; "(" or "{" after control word
5071 (re-search-forward "[({]")
5074 (if (eq (following-char) ?\( )
5077 (setq pp (point))) ; past parenth-group
5078 ;; after `else' or nothing
5079 (if ml ; after `else'
5080 (skip-chars-backward " \t\n")
5081 (beginning-of-line))
5083 ;; Now after the sexp before the brace
5084 ;; Multiline expr should be special
5085 (setq ml (and pp (save-excursion (goto-char p)
5086 (search-forward "\n" pp t))))
5087 (if (and (or (not pp) (< pp end)) ; Do not go too far...
5088 (looking-at "[ \t\n]*{"))
5091 ((bolp) ; Were before `{', no if/else/etc
5093 ((looking-at "\\(\t*\\| [ \t]+\\){") ; Not exactly 1 SPACE
5094 (delete-horizontal-space)
5096 cperl-extra-newline-before-brace-multiline
5097 cperl-extra-newline-before-brace)
5099 (delete-horizontal-space)
5102 (if (cperl-indent-line parse-data)
5104 (cperl-fix-line-spacing end parse-data)
5105 (setq ret (point)))))
5107 (make-string cperl-indent-region-fix-constructs ?\s))))
5108 ((and (looking-at "[ \t]*\n")
5110 cperl-extra-newline-before-brace-multiline
5111 cperl-extra-newline-before-brace)))
5113 (skip-chars-forward " \t\n")
5114 (delete-region pp (point))
5116 (make-string cperl-indent-region-fix-constructs ?\ )))
5117 ((and (looking-at "[\t ]*{")
5118 (if ml cperl-extra-newline-before-brace-multiline
5119 cperl-extra-newline-before-brace))
5120 (delete-horizontal-space)
5123 (if (cperl-indent-line parse-data)
5125 (cperl-fix-line-spacing end parse-data)
5126 (setq ret (point))))))
5127 ;; Now we are before `{'
5128 (if (looking-at "[ \t\n]*{[ \t]*[^ \t\n#]")
5130 (skip-chars-forward " \t\n")
5135 (setq ml (search-forward "\n" p t))
5136 (if (or cperl-break-one-line-blocks-when-indent ml)
5137 ;; not good: multi-line BLOCK
5140 (delete-horizontal-space)
5143 (if (cperl-indent-line parse-data)
5144 (setq ret (cperl-fix-line-spacing end parse-data)))))))))))
5146 (setq p (point) pp (save-excursion (end-of-line) (point))) ; May be different from ee.
5147 ;; Now check whether there is a hanging `}'
5151 cperl-fix-hanging-brace-when-indent
5153 (not (looking-at "[ \t]*}[ \t]*\\(\\<\\(els\\(if\\|e\\)\\|continue\\|while\\|until\\)\\>\\|$\\|#\\)"))
5157 (if (and (<= (point) pp)
5158 (eq (preceding-char) ?\} )
5159 (cperl-after-block-and-statement-beg (point-min)))
5166 (skip-chars-backward " \t")
5168 ;; `}' was the first thing on the line, insert NL *after* it.
5170 (cperl-indent-line parse-data)
5171 (search-forward "}")
5172 (delete-horizontal-space)
5174 (delete-horizontal-space)
5175 (or (eq (preceding-char) ?\;)
5177 (and (eq (preceding-char) ?\} )
5178 (cperl-after-block-p (point-min)))
5182 (if (cperl-indent-line parse-data)
5183 (setq ret (cperl-fix-line-spacing end parse-data)))
5184 (beginning-of-line)))))
5187 (defvar cperl-update-start) ; Do not need to make them local
5188 (defvar cperl-update-end)
5189 (defun cperl-delay-update-hook (beg end old-len)
5190 (setq cperl-update-start (min beg (or cperl-update-start (point-max))))
5191 (setq cperl-update-end (max end (or cperl-update-end (point-min)))))
5193 (defun cperl-indent-region (start end)
5194 "Simple variant of indentation of region in CPerl mode.
5195 Should be slow. Will not indent comment if it starts at `comment-indent'
5196 or looks like continuation of the comment on the previous line.
5197 Indents all the lines whose first character is between START and END
5200 If `cperl-indent-region-fix-constructs', will improve spacing on
5201 conditional/loop constructs."
5203 (cperl-update-syntaxification end end)
5205 (let (cperl-update-start cperl-update-end (h-a-c after-change-functions))
5206 (let ((indent-info (if cperl-emacs-can-parse
5207 (list nil nil nil) ; Cannot use '(), since will modify
5210 after-change-functions ; Speed it up!
5211 st comm old-comm-indent new-comm-indent p pp i empty)
5212 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook))
5214 (setq old-comm-indent (and (cperl-to-comment-or-eol)
5216 new-comm-indent old-comm-indent)
5218 (setq end (set-marker (make-marker) end)) ; indentation changes pos
5219 (or (bolp) (beginning-of-line 2))
5220 (while (and (<= (point) end) (not (eobp))) ; bol to check start
5223 (setq empty (looking-at "[ \t]*\n"))
5224 (and (setq comm (looking-at "[ \t]*#"))
5225 (or (eq (current-indentation) (or old-comm-indent
5227 (setq old-comm-indent nil))))
5228 (if (and old-comm-indent
5230 (= (current-indentation) old-comm-indent)
5231 (not (eq (get-text-property (point) 'syntax-type) 'pod))
5232 (not (eq (get-text-property (point) 'syntax-table)
5234 (let ((comment-column new-comm-indent))
5235 (indent-for-comment)))
5237 (setq i (cperl-indent-line indent-info))
5241 (if cperl-indent-region-fix-constructs
5242 (goto-char (cperl-fix-line-spacing end indent-info)))
5243 (if (setq old-comm-indent
5244 (and (cperl-to-comment-or-eol)
5245 (not (memq (get-text-property (point)
5248 (not (eq (get-text-property (point)
5252 (progn (indent-for-comment)
5253 (skip-chars-backward " \t")
5254 (skip-chars-backward "#")
5255 (setq new-comm-indent (current-column))))))))
5256 (beginning-of-line 2)))
5257 ;; Now run the update hooks
5258 (and after-change-functions
5261 (goto-char cperl-update-end)
5264 (goto-char cperl-update-start)
5266 (delete-char -1))))))
5268 ;; Stolen from lisp-mode with a lot of improvements
5270 (defun cperl-fill-paragraph (&optional justify iteration)
5271 "Like `fill-paragraph', but handle CPerl comments.
5272 If any of the current line is a comment, fill the comment or the
5273 block of it that point is in, preserving the comment's initial
5274 indentation and initial hashes. Behaves usually outside of comment."
5275 ;; (interactive "P") ; Only works when called from fill-paragraph. -stef
5276 (let (;; Non-nil if the current line contains a comment.
5278 fill-paragraph-function ; do not recurse
5279 ;; If has-comment, the appropriate fill-prefix for the comment.
5281 ;; Line that contains code and comment (or nil)
5283 c spaces len dc (comment-column comment-column))
5284 ;; Figure out what kind of comment we are looking at.
5289 ;; A line with nothing but a comment on it?
5290 ((looking-at "[ \t]*#[# \t]*")
5292 comment-fill-prefix (buffer-substring (match-beginning 0)
5295 ;; A line with some code, followed by a comment? Remember that the
5296 ;; semi which starts the comment shouldn't be part of a string or
5298 ((cperl-to-comment-or-eol)
5299 (setq has-comment t)
5300 (looking-at "#+[ \t]*")
5301 (setq start (point) c (current-column)
5303 (concat (make-string (current-column) ?\s)
5304 (buffer-substring (match-beginning 0) (match-end 0)))
5305 spaces (progn (skip-chars-backward " \t")
5306 (buffer-substring (point) start))
5307 dc (- c (current-column)) len (- start (point))
5308 start (point-marker))
5310 (insert (make-string dc ?-))))) ; Placeholder (to avoid splitting???)
5311 (if (not has-comment)
5312 (fill-paragraph justify) ; Do the usual thing outside of comment
5313 ;; Narrow to include only the comment, and then fill the region.
5316 ;; Find the first line we should include in the region to fill.
5317 (if start (progn (beginning-of-line) (point))
5319 (while (and (zerop (forward-line -1))
5320 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")))
5321 ;; We may have gone to far. Go forward again.
5322 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")
5325 ;; Find the beginning of the first line past the region to fill.
5327 (while (progn (forward-line 1)
5328 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")))
5330 ;; Remove existing hashes
5332 (goto-char (point-min))
5333 (while (progn (forward-line 1) (< (point) (point-max)))
5334 (skip-chars-forward " \t")
5335 (if (looking-at "#+")
5337 (if (and (eq (point) (match-beginning 0))
5338 (not (eq (point) (match-end 0)))) nil
5340 "Bug in Emacs: `looking-at' in `narrow-to-region': match-data is garbage"))
5341 (delete-char (- (match-end 0) (match-beginning 0)))))))
5343 ;; Lines with only hashes on them can be paragraph boundaries.
5344 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$"))
5345 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$"))
5346 (fill-prefix comment-fill-prefix))
5347 (fill-paragraph justify)))
5352 (progn (delete-char dc) (insert spaces)))
5353 (if (or (= (current-column) c) iteration) nil
5354 (setq comment-column c)
5355 (indent-for-comment)
5356 ;; Repeat once more, flagging as iteration
5357 (cperl-fill-paragraph justify t))))))
5360 (defun cperl-do-auto-fill ()
5361 ;; Break out if the line is short enough
5362 (if (> (save-excursion
5366 (let ((c (save-excursion (beginning-of-line)
5367 (cperl-to-comment-or-eol) (point)))
5368 (s (memq (following-char) '(?\s ?\t))) marker)
5370 ;; Don't break line inside code: only inside comment.
5372 (setq marker (point-marker))
5373 (fill-paragraph nil)
5375 ;; Is not enough, sometimes marker is a start of line
5376 (if (bolp) (progn (re-search-forward "#+[ \t]*")
5377 (goto-char (match-end 0))))
5378 ;; Following space could have gone:
5379 (if (or (not s) (memq (following-char) '(?\s ?\t))) nil
5382 ;; Previous space could have gone:
5383 (or (memq (preceding-char) '(?\s ?\t)) (insert " "))))))
5385 (defun cperl-imenu-addback (lst &optional isback name)
5386 ;; We suppose that the lst is a DAG, unless the first element only
5387 ;; loops back, and ISBACK is set. Thus this function cannot be
5388 ;; applied twice without ISBACK set.
5389 (cond ((not cperl-imenu-addback) lst)
5392 (setq name "+++BACK+++"))
5394 (if (and (listp elt) (listp (cdr elt)))
5396 ;; In the other order it goes up
5397 ;; one level only ;-(
5398 (setcdr elt (cons (cons name lst)
5400 (cperl-imenu-addback (cdr elt) t name))))
5401 (if isback (cdr lst) lst))
5404 (defun cperl-imenu--create-perl-index (&optional regexp)
5405 (require 'imenu) ; May be called from TAGS creator
5406 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '())
5407 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function))
5408 (index-meth-alist '()) meth
5409 packages ends-ranges p marker is-proto
5410 (prev-pos 0) is-pack index index1 name (end-range 0) package)
5411 (goto-char (point-min))
5412 (cperl-update-syntaxification (point-max) (point-max))
5413 ;; Search for the function
5414 (progn ;;save-match-data
5415 (while (re-search-forward
5416 (or regexp cperl-imenu--function-name-regexp-perl)
5418 ;; 2=package-group, 5=package-name 8=sub-name
5420 ((and ; Skip some noise if building tags
5421 (match-beginning 5) ; package name
5422 ;;(eq (char-after (match-beginning 2)) ?p) ; package
5423 (not (save-match-data
5424 (looking-at "[ \t\n]*;")))) ; Plain text word 'package'
5427 (or (match-beginning 2)
5428 (match-beginning 8)) ; package or sub
5429 ;; Skip if quoted (will not skip multi-line ''-strings :-():
5430 (null (get-text-property (match-beginning 1) 'syntax-table))
5431 (null (get-text-property (match-beginning 1) 'syntax-type))
5432 (null (get-text-property (match-beginning 1) 'in-pod)))
5433 (setq is-pack (match-beginning 2))
5434 ;; (if (looking-at "([^()]*)[ \t\n\f]*")
5435 ;; (goto-char (match-end 0))) ; Messes what follows
5438 (while (and ends-ranges (>= p (car ends-ranges)))
5439 ;; delete obsolete entries
5440 (setq ends-ranges (cdr ends-ranges) packages (cdr packages)))
5441 (setq package (or (car packages) "")
5442 end-range (or (car ends-ranges) 0))
5443 (if is-pack ; doing "package"
5445 (if (match-beginning 5) ; named package
5446 (setq name (buffer-substring (match-beginning 5)
5449 (set-text-properties 0 (length name) nil name)
5451 package (concat name "::")
5452 name (concat "package " name))
5453 ;; Support nameless packages
5454 (setq name "package;" package ""))
5457 (parse-partial-sexp (point) (point-max) -1) (point))
5458 ends-ranges (cons end-range ends-ranges)
5459 packages (cons package packages)))
5461 (or (eq (following-char) ?\;)
5462 (eq 0 (get-text-property (point) 'attrib-group)))))
5463 ;; Skip this function name if it is a prototype declaration.
5464 (if (and is-proto (not is-pack)) nil
5467 (buffer-substring (match-beginning 8) (match-end 8)))
5468 (set-text-properties 0 (length name) nil name))
5469 (setq marker (make-marker))
5470 (set-marker marker (match-end (if is-pack 2 8)))
5472 ((string-match "[:']" name)
5474 ((> p end-range) nil)
5476 (setq name (concat package name) meth t)))
5477 (setq index (cons name marker))
5479 (push index index-pack-alist)
5480 (push index index-alist))
5481 (if meth (push index index-meth-alist))
5482 (push index index-unsorted-alist)))
5483 ((match-beginning 16) ; POD section
5484 (setq name (buffer-substring (match-beginning 17) (match-end 17))
5485 marker (make-marker))
5486 (set-marker marker (match-beginning 17))
5487 (set-text-properties 0 (length name) nil name)
5488 (setq name (concat (make-string
5489 (* 3 (- (char-after (match-beginning 16)) ?1))
5492 index (cons name marker))
5493 (setq index1 (cons (concat "=" name) (cdr index)))
5494 (push index index-pod-alist)
5495 (push index1 index-unsorted-alist)))))
5497 (if (default-value 'imenu-sort-function)
5498 (sort index-alist (default-value 'imenu-sort-function))
5499 (nreverse index-alist)))
5500 (and index-pod-alist
5501 (push (cons "+POD headers+..."
5502 (nreverse index-pod-alist))
5504 (and (or index-pack-alist index-meth-alist)
5505 (let ((lst index-pack-alist) hier-list pack elt group name)
5506 ;; Remove "package ", reverse and uniquify.
5508 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8))
5509 (if (assoc name hier-list) nil
5510 (setq hier-list (cons (cons name (cdr elt)) hier-list))))
5511 (setq lst index-meth-alist)
5513 (setq elt (car lst) lst (cdr lst))
5514 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt))
5515 (setq pack (substring (car elt) 0 (match-beginning 0)))
5516 (if (setq group (assoc pack hier-list))
5517 (if (listp (cdr group))
5518 ;; Have some functions already
5520 (cons (cons (substring
5522 (+ 2 (match-beginning 0)))
5525 (setcdr group (list (cons (substring
5527 (+ 2 (match-beginning 0)))
5531 (list (cons (substring
5533 (+ 2 (match-beginning 0)))
5536 (push (cons "+Hierarchy+..."
5539 (and index-pack-alist
5540 (push (cons "+Packages+..."
5541 (nreverse index-pack-alist))
5543 (and (or index-pack-alist index-pod-alist
5544 (default-value 'imenu-sort-function))
5545 index-unsorted-alist
5546 (push (cons "+Unsorted List+..."
5547 (nreverse index-unsorted-alist))
5549 (cperl-imenu-addback index-alist)))
5552 ;; Suggested by Mark A. Hershberger
5553 (defun cperl-outline-level ()
5554 (looking-at outline-regexp)
5555 (cond ((not (match-beginning 1)) 0) ; beginning-of-file
5556 ;;;; 2=package-group, 5=package-name 8=sub-name 16=head-level
5557 ((match-beginning 2) 0) ; package
5558 ((match-beginning 8) 1) ; sub
5559 ((match-beginning 16)
5560 (- (char-after (match-beginning 16)) ?0)) ; headN ==> N
5561 (t 5))) ; should not happen
5564 (defun cperl-windowed-init ()
5565 "Initialization under windowed version."
5566 (cond ((featurep 'ps-print)
5567 (or cperl-faces-init
5569 (and (boundp 'font-lock-multiline)
5570 (setq cperl-font-lock-multiline t))
5571 (cperl-init-faces))))
5572 ((not cperl-faces-init)
5573 (add-hook 'font-lock-mode-hook
5576 (if (memq major-mode '(perl-mode cperl-mode))
5578 (or cperl-faces-init (cperl-init-faces)))))))
5579 (if (fboundp 'eval-after-load)
5582 '(or cperl-faces-init (cperl-init-faces)))))))
5584 (defvar cperl-font-lock-keywords-1 nil
5585 "Additional expressions to highlight in Perl mode. Minimal set.")
5586 (defvar cperl-font-lock-keywords nil
5587 "Additional expressions to highlight in Perl mode. Default set.")
5588 (defvar cperl-font-lock-keywords-2 nil
5589 "Additional expressions to highlight in Perl mode. Maximal set")
5591 (defun cperl-load-font-lock-keywords ()
5592 (or cperl-faces-init (cperl-init-faces))
5593 cperl-font-lock-keywords)
5595 (defun cperl-load-font-lock-keywords-1 ()
5596 (or cperl-faces-init (cperl-init-faces))
5597 cperl-font-lock-keywords-1)
5599 (defun cperl-load-font-lock-keywords-2 ()
5600 (or cperl-faces-init (cperl-init-faces))
5601 cperl-font-lock-keywords-2)
5603 (defun cperl-init-faces-weak ()
5604 ;; Allow `cperl-find-pods-heres' to run.
5605 (or (boundp 'font-lock-constant-face)
5606 (cperl-force-face font-lock-constant-face
5607 "Face for constant and label names"))
5608 (or (boundp 'font-lock-warning-face)
5609 (cperl-force-face font-lock-warning-face
5610 "Face for things which should stand out"))
5611 ;;(setq font-lock-constant-face 'font-lock-constant-face)
5614 (defun cperl-init-faces ()
5615 (condition-case errs
5617 (require 'font-lock)
5618 (and (fboundp 'font-lock-fontify-anchored-keywords)
5619 (featurep 'font-lock-extra)
5620 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'."))
5621 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored)
5622 (if (fboundp 'font-lock-fontify-anchored-keywords)
5623 (setq font-lock-anchored t))
5625 t-font-lock-keywords
5627 `("[ \t]+$" 0 ',cperl-invalid-face t)
5630 "\\(^\\|[^$@%&\\]\\)\\<\\("
5633 '("if" "until" "while" "elsif" "else" "unless" "for"
5634 "foreach" "continue" "exit" "die" "last" "goto" "next"
5635 "redo" "return" "local" "exec" "sub" "do" "dump" "use" "our"
5636 "require" "package" "eval" "my" "BEGIN" "END" "CHECK" "INIT")
5637 "\\|") ; Flow control
5638 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]"
5639 ; In what follows we use `type' style
5640 ; for overwritable builtins
5643 "\\(^\\|[^$@%&\\]\\)\\<\\("
5644 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm"
5645 ;; "and" "atan2" "bind" "binmode" "bless" "caller"
5646 ;; "chdir" "chmod" "chown" "chr" "chroot" "close"
5647 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt"
5648 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent"
5649 ;; "endhostent" "endnetent" "endprotoent" "endpwent"
5650 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl"
5651 ;; "fileno" "flock" "fork" "formline" "ge" "getc"
5652 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr"
5653 ;; "gethostbyname" "gethostent" "getlogin"
5654 ;; "getnetbyaddr" "getnetbyname" "getnetent"
5655 ;; "getpeername" "getpgrp" "getppid" "getpriority"
5656 ;; "getprotobyname" "getprotobynumber" "getprotoent"
5657 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname"
5658 ;; "getservbyport" "getservent" "getsockname"
5659 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int"
5660 ;; "ioctl" "join" "kill" "lc" "lcfirst" "le" "length"
5661 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt"
5662 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne"
5663 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe"
5664 ;; "quotemeta" "rand" "read" "readdir" "readline"
5665 ;; "readlink" "readpipe" "recv" "ref" "rename" "require"
5666 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek"
5667 ;; "seekdir" "select" "semctl" "semget" "semop" "send"
5668 ;; "setgrent" "sethostent" "setnetent" "setpgrp"
5669 ;; "setpriority" "setprotoent" "setpwent" "setservent"
5670 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite"
5671 ;; "shutdown" "sin" "sleep" "socket" "socketpair"
5672 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink"
5673 ;; "syscall" "sysopen" "sysread" "system" "syswrite" "tell"
5674 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst"
5675 ;; "umask" "unlink" "unpack" "utime" "values" "vec"
5676 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor"
5677 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|"
5678 "b\\(in\\(d\\|mode\\)\\|less\\)\\|"
5679 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|"
5680 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|"
5681 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|"
5682 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|"
5683 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|"
5684 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|"
5685 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|"
5686 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w"
5687 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|"
5688 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|"
5689 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|"
5690 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|"
5691 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|"
5692 "l\\(i\\(sten\\|nk\\)\\|stat\\|c\\(\\|first\\)\\|t\\|e"
5693 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|"
5694 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|"
5695 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|"
5696 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin"
5697 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name"
5698 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r"
5699 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|"
5700 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|"
5701 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|"
5702 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|open\\|tem\\|write\\)\\|"
5703 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|"
5704 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|"
5705 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|"
5706 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|"
5707 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)"
5708 "\\)\\>") 2 'font-lock-type-face)
5709 ;; In what follows we use `other' style
5710 ;; for nonoverwritable builtins
5711 ;; Somehow 's', 'm' are not auto-generated???
5714 "\\(^\\|[^$@%&\\]\\)\\<\\("
5715 ;; "AUTOLOAD" "BEGIN" "CHECK" "DESTROY" "END" "INIT" "__END__" "chomp"
5716 ;; "chop" "defined" "delete" "do" "each" "else" "elsif"
5717 ;; "eval" "exists" "for" "foreach" "format" "goto"
5718 ;; "grep" "if" "keys" "last" "local" "map" "my" "next"
5719 ;; "no" "our" "package" "pop" "pos" "print" "printf" "push"
5720 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift"
5721 ;; "sort" "splice" "split" "study" "sub" "tie" "tr"
5722 ;; "undef" "unless" "unshift" "untie" "until" "use"
5724 "AUTOLOAD\\|BEGIN\\|CHECK\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|"
5725 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|"
5726 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|INIT\\|if\\|keys\\|"
5727 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|our\\|"
5728 "p\\(ackage\\|rint\\(\\|f\\)\\|ush\\|o\\(p\\|s\\)\\)\\|"
5729 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|"
5730 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|"
5731 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|"
5732 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually
5733 "\\|[sm]" ; Added manually
5734 "\\)\\>") 2 'cperl-nonoverridable-face)
5735 ;; (mapconcat 'identity
5736 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if"
5737 ;; "#include" "#define" "#undef")
5739 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0
5740 font-lock-function-name-face keep) ; Not very good, triggers at "[a-z]"
5741 ;; This highlights declarations and definitions differenty.
5742 ;; We do not try to highlight in the case of attributes:
5743 ;; it is already done by `cperl-find-pods-heres'
5744 (list (concat "\\<sub"
5745 cperl-white-and-comment-rex ; whitespace/comments
5746 "\\([^ \n\t{;()]+\\)" ; 2=name (assume non-anonymous)
5748 cperl-maybe-white-and-comment-rex ;whitespace/comments?
5749 "([^()]*)\\)?" ; prototype
5750 cperl-maybe-white-and-comment-rex ; whitespace/comments?
5752 2 (if cperl-font-lock-multiline
5753 '(if (eq (char-after (cperl-1- (match-end 0))) ?\{ )
5754 'font-lock-function-name-face
5755 'font-lock-variable-name-face)
5756 ;; need to manually set 'multiline' for older font-locks
5758 (if (< 1 (count-lines (match-beginning 0)
5761 (+ 3 (match-beginning 0)) (match-end 0)
5762 'syntax-type 'multiline))
5763 (if (eq (char-after (cperl-1- (match-end 0))) ?\{ )
5764 'font-lock-function-name-face
5765 'font-lock-variable-name-face))))
5766 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B;
5767 2 font-lock-function-name-face)
5768 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$"
5769 1 font-lock-function-name-face)
5770 (cond ((featurep 'font-lock-extra)
5771 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5772 (2 font-lock-string-face t)
5773 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef}
5775 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5776 (2 font-lock-string-face t)
5777 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5779 (1 font-lock-string-face t))))
5780 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5781 2 font-lock-string-face t)))
5782 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1
5783 font-lock-string-face t)
5784 '("^[ \t]*\\([a-zA-Z0-9_]+[ \t]*:\\)[ \t]*\\($\\|{\\|\\<\\(until\\|while\\|for\\(each\\)?\\|do\\)\\>\\)" 1
5785 font-lock-constant-face) ; labels
5786 '("\\<\\(continue\\|next\\|last\\|redo\\|goto\\)\\>[ \t]+\\([a-zA-Z0-9_:]+\\)" ; labels as targets
5787 2 font-lock-constant-face)
5788 ;; Uncomment to get perl-mode-like vars
5789 ;;; '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face)
5790 ;;; '("\\([@%]\\|\\$#\\)\\(\\sw+\\)"
5791 ;;; (2 (cons font-lock-variable-name-face '(underline))))
5792 (cond ((featurep 'font-lock-extra)
5793 '("^[ \t]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
5794 (3 font-lock-variable-name-face)
5796 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
5797 (1 font-lock-variable-name-face)
5798 (2 '(restart 2 nil) nil t)))
5799 nil t))) ; local variables, multiple
5801 ;; 1=my_etc, 2=white? 3=(+white? 4=white? 5=var
5802 `(,(concat "\\<\\(my\\|local\\|our\\)"
5803 cperl-maybe-white-and-comment-rex
5805 cperl-maybe-white-and-comment-rex
5806 "\\)?\\([$@%*]\\([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
5807 (5 ,(if cperl-font-lock-multiline
5808 'font-lock-variable-name-face
5809 '(progn (setq cperl-font-lock-multiline-start
5810 (match-beginning 0))
5811 'font-lock-variable-name-face)))
5813 cperl-maybe-white-and-comment-rex
5815 cperl-maybe-white-and-comment-rex
5816 "\\([$@%*]\\([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
5817 ;; Bug in font-lock: limit is used not only to limit
5818 ;; searches, but to set the "extend window for
5819 ;; facification" property. Thus we need to minimize.
5820 ,(if cperl-font-lock-multiline
5821 '(if (match-beginning 3)
5823 (goto-char (match-beginning 3))
5829 (error nil)))) ; typeahead
5830 (1- (point))) ; report limit
5831 (forward-char -2)) ; disable continued expr
5832 '(if (match-beginning 3)
5833 (point-max) ; No limit for continuation
5834 (forward-char -2))) ; disable continued expr
5835 ,(if cperl-font-lock-multiline
5838 ;; "my" may be already fontified (POD),
5839 ;; so cperl-font-lock-multiline-start is nil
5840 (if (or (not cperl-font-lock-multiline-start)
5842 cperl-font-lock-multiline-start
5846 (1+ cperl-font-lock-multiline-start) (point)
5847 'syntax-type 'multiline))
5848 (setq cperl-font-lock-multiline-start nil)))
5849 (3 font-lock-variable-name-face))))
5850 (t '("^[ \t{}]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)"
5851 3 font-lock-variable-name-face)))
5852 '("\\<for\\(each\\)?\\([ \t]+\\(my\\|local\\|our\\)\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*("
5853 4 font-lock-variable-name-face)
5854 ;; Avoid $!, and s!!, qq!! etc. when not fontifying syntaxically
5855 '("\\(?:^\\|[^smywqrx$]\\)\\(!\\)" 1 font-lock-negation-char-face)
5856 '("\\[\\(\\^\\)" 1 font-lock-negation-char-face prepend)))
5858 t-font-lock-keywords-1
5859 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock
5860 ;; not yet as of XEmacs 19.12, works with 21.1.11
5862 (not (featurep 'xemacs))
5863 (string< "21.1.9" emacs-version)
5864 (and (string< "21.1.10" emacs-version)
5865 (string< emacs-version "21.1.2")))
5867 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1
5868 (if (eq (char-after (match-beginning 2)) ?%)
5871 t) ; arrays and hashes
5872 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)"
5874 (if (= (- (match-end 2) (match-beginning 2)) 1)
5875 (if (eq (char-after (match-beginning 3)) ?{)
5877 'cperl-array-face) ; arrays and hashes
5878 font-lock-variable-name-face) ; Just to put something
5880 ("\\(@\\|\\$#\\)\\(\\$+\\([a-zA-Z_:][a-zA-Z0-9_:]*\\|[^ \t\n]\\)\\)"
5881 (1 cperl-array-face)
5882 (2 font-lock-variable-name-face))
5883 ("\\(%\\)\\(\\$+\\([a-zA-Z_:][a-zA-Z0-9_:]*\\|[^ \t\n]\\)\\)"
5885 (2 font-lock-variable-name-face))
5886 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2")
5887 ;;; Too much noise from \s* @s[ and friends
5888 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)"
5889 ;;(3 font-lock-function-name-face t t)
5891 ;; (if (cperl-slash-is-regexp)
5892 ;; font-lock-function-name-face 'default) nil t))
5894 (if cperl-highlight-variables-indiscriminately
5895 (setq t-font-lock-keywords-1
5896 (append t-font-lock-keywords-1
5897 (list '("\\([$*]{?\\sw+\\)" 1
5898 font-lock-variable-name-face)))))
5899 (setq cperl-font-lock-keywords-1
5900 (if cperl-syntaxify-by-font-lock
5901 (cons 'cperl-fontify-update
5902 t-font-lock-keywords)
5903 t-font-lock-keywords)
5904 cperl-font-lock-keywords cperl-font-lock-keywords-1
5905 cperl-font-lock-keywords-2 (append
5906 cperl-font-lock-keywords-1
5907 t-font-lock-keywords-1)))
5908 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init))
5909 (if (or (featurep 'choose-color) (featurep 'font-lock-extra))
5910 (eval ; Avoid a warning
5911 '(font-lock-require-faces
5913 ;; Color-light Color-dark Gray-light Gray-dark Mono
5914 (list 'font-lock-comment-face
5915 ["Firebrick" "OrangeRed" "DimGray" "Gray80"]
5920 (list 'font-lock-string-face
5921 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"]
5926 (list 'font-lock-function-name-face
5928 "Blue" "LightSkyBlue" "Gray50" "LightGray"
5929 (cdr (assq 'background-color ; if mono
5930 (frame-parameters))))
5933 (cdr (assq 'foreground-color ; if mono
5934 (frame-parameters))))
5938 (list 'font-lock-variable-name-face
5939 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"]
5944 (list 'font-lock-type-face
5945 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"]
5950 (list 'font-lock-warning-face
5951 ["Pink" "Red" "Gray50" "LightGray"]
5958 (list 'font-lock-constant-face
5959 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"]
5964 (list 'cperl-nonoverridable-face
5965 ["chartreuse3" ("orchid1" "orange")
5971 (list 'cperl-array-face
5972 ["blue" "yellow" nil "Gray80"]
5973 ["lightyellow2" ("navy" "os2blue" "darkgreen")
5978 (list 'cperl-hash-face
5979 ["red" "red" nil "Gray80"]
5980 ["lightyellow2" ("navy" "os2blue" "darkgreen")
5985 ;; Do it the dull way, without choose-color
5986 (defvar cperl-guessed-background nil
5987 "Display characteristics as guessed by cperl.")
5988 ;; (or (fboundp 'x-color-defined-p)
5989 ;; (defalias 'x-color-defined-p
5990 ;; (cond ((fboundp 'color-defined-p) 'color-defined-p)
5991 ;; ;; XEmacs >= 19.12
5992 ;; ((fboundp 'valid-color-name-p) 'valid-color-name-p)
5994 ;; (t 'x-valid-color-name-p))))
5995 (cperl-force-face font-lock-constant-face
5996 "Face for constant and label names")
5997 (cperl-force-face font-lock-variable-name-face
5998 "Face for variable names")
5999 (cperl-force-face font-lock-type-face
6000 "Face for data types")
6001 (cperl-force-face cperl-nonoverridable-face
6002 "Face for data types from another group")
6003 (cperl-force-face font-lock-warning-face
6004 "Face for things which should stand out")
6005 (cperl-force-face font-lock-comment-face
6006 "Face for comments")
6007 (cperl-force-face font-lock-function-name-face
6008 "Face for function names")
6009 (cperl-force-face cperl-hash-face
6011 (cperl-force-face cperl-array-face
6013 ;;(defvar font-lock-constant-face 'font-lock-constant-face)
6014 ;;(defvar font-lock-variable-name-face 'font-lock-variable-name-face)
6015 ;;(or (boundp 'font-lock-type-face)
6016 ;; (defconst font-lock-type-face
6017 ;; 'font-lock-type-face
6018 ;; "Face to use for data types."))
6019 ;;(or (boundp 'cperl-nonoverridable-face)
6020 ;; (defconst cperl-nonoverridable-face
6021 ;; 'cperl-nonoverridable-face
6022 ;; "Face to use for data types from another group."))
6023 ;;(if (not (featurep 'xemacs)) nil
6024 ;; (or (boundp 'font-lock-comment-face)
6025 ;; (defconst font-lock-comment-face
6026 ;; 'font-lock-comment-face
6027 ;; "Face to use for comments."))
6028 ;; (or (boundp 'font-lock-keyword-face)
6029 ;; (defconst font-lock-keyword-face
6030 ;; 'font-lock-keyword-face
6031 ;; "Face to use for keywords."))
6032 ;; (or (boundp 'font-lock-function-name-face)
6033 ;; (defconst font-lock-function-name-face
6034 ;; 'font-lock-function-name-face
6035 ;; "Face to use for function names.")))
6037 (not (cperl-is-face 'cperl-array-face))
6038 (cperl-is-face 'font-lock-emphasized-face))
6039 (copy-face 'font-lock-emphasized-face 'cperl-array-face))
6041 (not (cperl-is-face 'cperl-hash-face))
6042 (cperl-is-face 'font-lock-other-emphasized-face))
6043 (copy-face 'font-lock-other-emphasized-face 'cperl-hash-face))
6045 (not (cperl-is-face 'cperl-nonoverridable-face))
6046 (cperl-is-face 'font-lock-other-type-face))
6047 (copy-face 'font-lock-other-type-face 'cperl-nonoverridable-face))
6048 ;;(or (boundp 'cperl-hash-face)
6049 ;; (defconst cperl-hash-face
6051 ;; "Face to use for hashes."))
6052 ;;(or (boundp 'cperl-array-face)
6053 ;; (defconst cperl-array-face
6054 ;; 'cperl-array-face
6055 ;; "Face to use for arrays."))
6056 ;; Here we try to guess background
6058 (if (boundp 'font-lock-background-mode)
6059 font-lock-background-mode
6061 (face-list (and (fboundp 'face-list) (face-list))))
6062 ;;;; (fset 'cperl-is-face
6063 ;;;; (cond ((fboundp 'find-face)
6064 ;;;; (symbol-function 'find-face))
6066 ;;;; (function (lambda (face) (member face face-list))))
6068 ;;;; (function (lambda (face) (boundp face))))))
6069 (defvar cperl-guessed-background
6070 (if (and (boundp 'font-lock-display-type)
6071 (eq font-lock-display-type 'grayscale))
6074 "Background as guessed by CPerl mode")
6075 (and (not (cperl-is-face 'font-lock-constant-face))
6076 (cperl-is-face 'font-lock-reference-face)
6077 (copy-face 'font-lock-reference-face 'font-lock-constant-face))
6078 (if (cperl-is-face 'font-lock-type-face) nil
6079 (copy-face 'default 'font-lock-type-face)
6081 ((eq background 'light)
6082 (set-face-foreground 'font-lock-type-face
6083 (if (x-color-defined-p "seagreen")
6086 ((eq background 'dark)
6087 (set-face-foreground 'font-lock-type-face
6088 (if (x-color-defined-p "os2pink")
6092 (set-face-background 'font-lock-type-face "gray90"))))
6093 (if (cperl-is-face 'cperl-nonoverridable-face)
6095 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face)
6097 ((eq background 'light)
6098 (set-face-foreground 'cperl-nonoverridable-face
6099 (if (x-color-defined-p "chartreuse3")
6102 ((eq background 'dark)
6103 (set-face-foreground 'cperl-nonoverridable-face
6104 (if (x-color-defined-p "orchid1")
6107 ;;; (if (cperl-is-face 'font-lock-other-emphasized-face) nil
6108 ;;; (copy-face 'bold-italic 'font-lock-other-emphasized-face)
6110 ;;; ((eq background 'light)
6111 ;;; (set-face-background 'font-lock-other-emphasized-face
6112 ;;; (if (x-color-defined-p "lightyellow2")
6114 ;;; (if (x-color-defined-p "lightyellow")
6116 ;;; "light yellow"))))
6117 ;;; ((eq background 'dark)
6118 ;;; (set-face-background 'font-lock-other-emphasized-face
6119 ;;; (if (x-color-defined-p "navy")
6121 ;;; (if (x-color-defined-p "darkgreen")
6123 ;;; "dark green"))))
6124 ;;; (t (set-face-background 'font-lock-other-emphasized-face "gray90"))))
6125 ;;; (if (cperl-is-face 'font-lock-emphasized-face) nil
6126 ;;; (copy-face 'bold 'font-lock-emphasized-face)
6128 ;;; ((eq background 'light)
6129 ;;; (set-face-background 'font-lock-emphasized-face
6130 ;;; (if (x-color-defined-p "lightyellow2")
6132 ;;; "lightyellow")))
6133 ;;; ((eq background 'dark)
6134 ;;; (set-face-background 'font-lock-emphasized-face
6135 ;;; (if (x-color-defined-p "navy")
6137 ;;; (if (x-color-defined-p "darkgreen")
6139 ;;; "dark green"))))
6140 ;;; (t (set-face-background 'font-lock-emphasized-face "gray90"))))
6141 (if (cperl-is-face 'font-lock-variable-name-face) nil
6142 (copy-face 'italic 'font-lock-variable-name-face))
6143 (if (cperl-is-face 'font-lock-constant-face) nil
6144 (copy-face 'italic 'font-lock-constant-face))))
6145 (setq cperl-faces-init t))
6146 (error (message "cperl-init-faces (ignored): %s" errs))))
6149 (defun cperl-ps-print-init ()
6150 "Initialization of `ps-print' components for faces used in CPerl."
6151 (eval-after-load "ps-print"
6152 '(setq ps-bold-faces
6153 ;; font-lock-variable-name-face
6154 ;; font-lock-constant-face
6155 (append '(cperl-array-face cperl-hash-face)
6158 ;; font-lock-constant-face
6159 (append '(cperl-nonoverridable-face cperl-hash-face)
6162 ;; font-lock-type-face
6163 (append '(cperl-array-face cperl-hash-face underline cperl-nonoverridable-face)
6164 ps-underlined-faces))))
6166 (defvar ps-print-face-extension-alist)
6168 (defun cperl-ps-print (&optional file)
6169 "Pretty-print in CPerl style.
6170 If optional argument FILE is an empty string, prints to printer, otherwise
6171 to the file FILE. If FILE is nil, prompts for a file name.
6173 Style of printout regulated by the variable `cperl-ps-print-face-properties'."
6176 (setq file (read-from-minibuffer
6177 "Print to file (if empty - to printer): "
6178 (concat (buffer-file-name) ".ps")
6179 nil nil 'file-name-history)))
6180 (or (> (length file) 0)
6182 (require 'ps-print) ; To get ps-print-face-extension-alist
6183 (let ((ps-print-color-p t)
6184 (ps-print-face-extension-alist ps-print-face-extension-alist))
6185 (cperl-ps-extend-face-list cperl-ps-print-face-properties)
6186 (ps-print-buffer-with-faces file)))
6188 ;;; (defun cperl-ps-print-init ()
6189 ;;; "Initialization of `ps-print' components for faces used in CPerl."
6190 ;;; ;; Guard against old versions
6191 ;;; (defvar ps-underlined-faces nil)
6192 ;;; (defvar ps-bold-faces nil)
6193 ;;; (defvar ps-italic-faces nil)
6194 ;;; (setq ps-bold-faces
6195 ;;; (append '(font-lock-emphasized-face
6196 ;;; cperl-array-face
6197 ;;; font-lock-keyword-face
6198 ;;; font-lock-variable-name-face
6199 ;;; font-lock-constant-face
6200 ;;; font-lock-reference-face
6201 ;;; font-lock-other-emphasized-face
6202 ;;; cperl-hash-face)
6204 ;;; (setq ps-italic-faces
6205 ;;; (append '(cperl-nonoverridable-face
6206 ;;; font-lock-constant-face
6207 ;;; font-lock-reference-face
6208 ;;; font-lock-other-emphasized-face
6209 ;;; cperl-hash-face)
6210 ;;; ps-italic-faces))
6211 ;;; (setq ps-underlined-faces
6212 ;;; (append '(font-lock-emphasized-face
6213 ;;; cperl-array-face
6214 ;;; font-lock-other-emphasized-face
6216 ;;; cperl-nonoverridable-face font-lock-type-face)
6217 ;;; ps-underlined-faces))
6218 ;;; (cons 'font-lock-type-face ps-underlined-faces))
6221 (if (cperl-enable-font-lock) (cperl-windowed-init))
6223 (defconst cperl-styles-entries
6224 '(cperl-indent-level cperl-brace-offset cperl-continued-brace-offset
6225 cperl-label-offset cperl-extra-newline-before-brace
6226 cperl-extra-newline-before-brace-multiline
6227 cperl-merge-trailing-else
6228 cperl-continued-statement-offset))
6230 (defconst cperl-style-examples
6231 "##### Numbers etc are: cperl-indent-level cperl-brace-offset
6232 ##### cperl-continued-brace-offset cperl-label-offset
6233 ##### cperl-continued-statement-offset
6234 ##### cperl-merge-trailing-else cperl-extra-newline-before-brace
6236 ########### (Do not forget cperl-extra-newline-before-brace-multiline)
6238 ### CPerl (=GNU - extra-newline-before-brace + merge-trailing-else) 2/0/0/-2/2/t/nil
6250 ### PerlStyle (=CPerl with 4 as indent) 4/0/0/-4/4/t/nil
6262 ### GNU 2/0/0/-2/2/nil/t
6277 ### C++ (=PerlStyle with braces aligned with control words) 4/0/-4/-4/4/nil/t
6292 ### BSD (=C++, but will not change preexisting merge-trailing-else
6293 ### and extra-newline-before-brace ) 4/0/-4/-4/4
6308 ### K&R (=C++ with indent 5 - merge-trailing-else, but will not
6309 ### change preexisting extra-newline-before-brace) 5/0/-5/-5/5/nil
6324 ### Whitesmith (=PerlStyle, but will not change preexisting
6325 ### extra-newline-before-brace and merge-trailing-else) 4/0/0/-4/4
6340 "Examples of if/else with different indent styles (with v4.23).")
6342 (defconst cperl-style-alist
6343 '(("CPerl" ;; =GNU - extra-newline-before-brace + cperl-merge-trailing-else
6344 (cperl-indent-level . 2)
6345 (cperl-brace-offset . 0)
6346 (cperl-continued-brace-offset . 0)
6347 (cperl-label-offset . -2)
6348 (cperl-continued-statement-offset . 2)
6349 (cperl-extra-newline-before-brace . nil)
6350 (cperl-extra-newline-before-brace-multiline . nil)
6351 (cperl-merge-trailing-else . t))
6353 ("PerlStyle" ; CPerl with 4 as indent
6354 (cperl-indent-level . 4)
6355 (cperl-brace-offset . 0)
6356 (cperl-continued-brace-offset . 0)
6357 (cperl-label-offset . -4)
6358 (cperl-continued-statement-offset . 4)
6359 (cperl-extra-newline-before-brace . nil)
6360 (cperl-extra-newline-before-brace-multiline . nil)
6361 (cperl-merge-trailing-else . t))
6364 (cperl-indent-level . 2)
6365 (cperl-brace-offset . 0)
6366 (cperl-continued-brace-offset . 0)
6367 (cperl-label-offset . -2)
6368 (cperl-continued-statement-offset . 2)
6369 (cperl-extra-newline-before-brace . t)
6370 (cperl-extra-newline-before-brace-multiline . t)
6371 (cperl-merge-trailing-else . nil))
6374 (cperl-indent-level . 5)
6375 (cperl-brace-offset . 0)
6376 (cperl-continued-brace-offset . -5)
6377 (cperl-label-offset . -5)
6378 (cperl-continued-statement-offset . 5)
6379 ;;(cperl-extra-newline-before-brace . nil) ; ???
6380 ;;(cperl-extra-newline-before-brace-multiline . nil)
6381 (cperl-merge-trailing-else . nil))
6384 (cperl-indent-level . 4)
6385 (cperl-brace-offset . 0)
6386 (cperl-continued-brace-offset . -4)
6387 (cperl-label-offset . -4)
6388 (cperl-continued-statement-offset . 4)
6389 ;;(cperl-extra-newline-before-brace . nil) ; ???
6390 ;;(cperl-extra-newline-before-brace-multiline . nil)
6391 ;;(cperl-merge-trailing-else . nil) ; ???
6395 (cperl-indent-level . 4)
6396 (cperl-brace-offset . 0)
6397 (cperl-continued-brace-offset . -4)
6398 (cperl-label-offset . -4)
6399 (cperl-continued-statement-offset . 4)
6400 (cperl-extra-newline-before-brace . t)
6401 (cperl-extra-newline-before-brace-multiline . t)
6402 (cperl-merge-trailing-else . nil))
6405 (cperl-indent-level . 4)
6406 (cperl-brace-offset . 0)
6407 (cperl-continued-brace-offset . 0)
6408 (cperl-label-offset . -4)
6409 (cperl-continued-statement-offset . 4)
6410 ;;(cperl-extra-newline-before-brace . nil) ; ???
6411 ;;(cperl-extra-newline-before-brace-multiline . nil)
6412 ;;(cperl-merge-trailing-else . nil) ; ???
6415 "List of variables to set to get a particular indentation style.
6416 Should be used via `cperl-set-style' or via Perl menu.
6418 See examples in `cperl-style-examples'.")
6420 (defun cperl-set-style (style)
6421 "Set CPerl mode variables to use one of several different indentation styles.
6422 The arguments are a string representing the desired style.
6423 The list of styles is in `cperl-style-alist', available styles
6424 are CPerl, PerlStyle, GNU, K&R, BSD, C++ and Whitesmith.
6426 The current value of style is memorized (unless there is a memorized
6427 data already), may be restored by `cperl-set-style-back'.
6429 Chosing \"Current\" style will not change style, so this may be used for
6430 side-effect of memorizing only. Examples in `cperl-style-examples'."
6432 (let ((list (mapcar (function (lambda (elt) (list (car elt))))
6433 cperl-style-alist)))
6434 (list (completing-read "Enter style: " list nil 'insist))))
6436 (setq cperl-old-style
6439 (cons name (eval name))))
6440 cperl-styles-entries)))
6441 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym)
6443 (setq setting (car style) style (cdr style))
6444 (set (car setting) (cdr setting)))))
6446 (defun cperl-set-style-back ()
6447 "Restore a style memorized by `cperl-set-style'."
6449 (or cperl-old-style (error "The style was not changed"))
6451 (while cperl-old-style
6452 (setq setting (car cperl-old-style)
6453 cperl-old-style (cdr cperl-old-style))
6454 (set (car setting) (cdr setting)))))
6456 (defun cperl-check-syntax ()
6458 (require 'mode-compile)
6459 (let ((perl-dbg-flags (concat cperl-extra-perl-args " -wc")))
6460 (eval '(mode-compile)))) ; Avoid a warning
6462 (defun cperl-info-buffer (type)
6463 ;; Returns buffer with documentation. Creates if missing.
6464 ;; If TYPE, this vars buffer.
6465 ;; Special care is taken to not stomp over an existing info buffer
6466 (let* ((bname (if type "*info-perl-var*" "*info-perl*"))
6467 (info (get-buffer bname))
6468 (oldbuf (get-buffer "*info*")))
6470 (save-window-excursion
6475 (rename-buffer "*info-perl-tmp*")))
6476 (save-window-excursion
6478 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc"))
6479 (set-buffer "*info*")
6480 (rename-buffer bname)
6482 (set-buffer "*info-perl-tmp*")
6483 (rename-buffer "*info*")
6484 (set-buffer bname)))
6485 (make-local-variable 'window-min-height)
6486 (setq window-min-height 2)
6487 (current-buffer)))))
6489 (defun cperl-word-at-point (&optional p)
6490 "Return the word at point or at P."
6492 (if p (goto-char p))
6493 (or (cperl-word-at-point-hard)
6496 (funcall (or (and (boundp 'find-tag-default-function)
6497 find-tag-default-function)
6498 (get major-mode 'find-tag-default-function)
6499 ;; XEmacs 19.12 has `find-tag-default-hook'; it is
6500 ;; automatically used within `find-tag-default':
6501 'find-tag-default))))))
6503 (defun cperl-info-on-command (command)
6504 "Show documentation for Perl command COMMAND in other window.
6505 If perl-info buffer is shown in some frame, uses this frame.
6506 Customized by setting variables `cperl-shrink-wrap-info-frame',
6507 `cperl-max-help-size'."
6509 (let* ((default (cperl-word-at-point))
6511 (format "Find doc for Perl function (default %s): "
6513 (list (if (equal read "")
6517 (let ((buffer (current-buffer))
6518 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///"
6519 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner
6520 max-height char-height buf-list)
6521 (if (string-match "^-[a-zA-Z]$" command)
6522 (setq cmd-desc "^-X[ \t\n]"))
6523 (setq isvar (string-match "^[$@%]" command)
6524 buf (cperl-info-buffer isvar)
6525 iniwin (selected-window)
6526 fr1 (window-frame iniwin))
6528 (goto-char (point-min))
6530 (progn (re-search-forward "^-X[ \t\n]")
6532 (if (re-search-forward cmd-desc nil t)
6534 ;; Go back to beginning of the group (ex, for qq)
6535 (if (re-search-backward "^[ \t\n\f]")
6540 buf-list (list buf "*info-perl-var*" "*info-perl*"))
6541 (while (and (not win) buf-list)
6542 (setq win (get-buffer-window (car buf-list) t))
6543 (setq buf-list (cdr buf-list)))
6545 (eq (window-buffer win) buf)
6546 (set-window-buffer win buf))
6547 (and win (setq fr2 (window-frame win)))
6548 (if (or (not fr2) (eq fr1 fr2))
6550 (special-display-popup-frame buf) ; Make it visible
6551 (select-window win))
6552 (goto-char pos) ; Needed (?!).
6554 (setq iniheight (window-height)
6555 frheight (frame-height)
6556 not-loner (< iniheight (1- frheight))) ; Are not alone
6557 (cond ((if not-loner cperl-max-help-size
6558 cperl-shrink-wrap-info-frame)
6564 (if (re-search-forward
6565 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t)
6566 (match-beginning 0) (point-max)))))
6569 (/ (* (- frheight 3) cperl-max-help-size) 100)
6570 (setq char-height (frame-char-height))
6571 ;; Non-functioning under OS/2:
6572 (if (eq char-height 1) (setq char-height 18))
6573 ;; Title, menubar, + 2 for slack
6574 (- (/ (display-pixel-height) char-height) 4)))
6575 (if (> height max-height) (setq height max-height))
6576 ;;(message "was %s doing %s" iniheight height)
6578 (enlarge-window (- height iniheight))
6579 (set-frame-height (window-frame win) (1+ height)))))
6580 (set-window-start (selected-window) pos))
6581 (message "No entry for %s found." command))
6582 ;;(pop-to-buffer buffer)
6583 (select-window iniwin)))
6585 (defun cperl-info-on-current-command ()
6586 "Show documentation for Perl command at point in other window."
6588 (cperl-info-on-command (cperl-word-at-point)))
6590 (defun cperl-imenu-info-imenu-search ()
6591 (if (looking-at "^-X[ \t\n]") nil
6593 "^\n\\([-a-zA-Z_]+\\)[ \t\n]")
6596 (defun cperl-imenu-info-imenu-name ()
6598 (match-beginning 1) (match-end 1)))
6600 (defun cperl-imenu-on-info ()
6601 "Shows imenu for Perl Info Buffer.
6602 Opens Perl Info buffer if needed."
6604 (let* ((buffer (current-buffer))
6605 imenu-create-index-function
6606 imenu-prev-index-position-function
6607 imenu-extract-index-name-function
6608 (index-item (save-restriction
6609 (save-window-excursion
6610 (set-buffer (cperl-info-buffer nil))
6611 (setq imenu-create-index-function
6612 'imenu-default-create-index-function
6613 imenu-prev-index-position-function
6614 'cperl-imenu-info-imenu-search
6615 imenu-extract-index-name-function
6616 'cperl-imenu-info-imenu-name)
6617 (imenu-choose-buffer-index)))))
6621 (pop-to-buffer "*info-perl*")
6623 ((markerp (cdr index-item))
6624 (goto-char (marker-position (cdr index-item))))
6626 (goto-char (cdr index-item))))
6627 (set-window-start (selected-window) (point))
6628 (pop-to-buffer buffer)))))
6630 (defun cperl-lineup (beg end &optional step minshift)
6631 "Lineup construction in a region.
6632 Beginning of region should be at the start of a construction.
6633 All first occurrences of this construction in the lines that are
6634 partially contained in the region are lined up at the same column.
6636 MINSHIFT is the minimal amount of space to insert before the construction.
6637 STEP is the tabwidth to position constructions.
6638 If STEP is nil, `cperl-lineup-step' will be used
6639 \(or `cperl-indent-level', if `cperl-lineup-step' is nil).
6640 Will not move the position at the start to the left."
6642 (let (search col tcol seen b)
6646 (setq end (point-marker))
6648 (skip-chars-forward " \t\f")
6649 (setq beg (point-marker))
6650 (indent-region beg end nil)
6652 (setq col (current-column))
6653 (if (looking-at "[a-zA-Z0-9_]")
6654 (if (looking-at "\\<[a-zA-Z0-9_]+\\>")
6658 (buffer-substring (match-beginning 0)
6659 (match-end 0))) "\\>"))
6660 (error "Cannot line up in a middle of the word"))
6661 (if (looking-at "$")
6662 (error "Cannot line up end of line"))
6663 (setq search (regexp-quote (char-to-string (following-char)))))
6664 (setq step (or step cperl-lineup-step cperl-indent-level))
6665 (or minshift (setq minshift 1))
6667 (beginning-of-line 2)
6668 (and (< (point) end)
6669 (re-search-forward search end t)
6670 (goto-char (match-beginning 0))))
6671 (setq tcol (current-column) seen t)
6672 (if (> tcol col) (setq col tcol)))
6674 (error "The construction to line up occurred only once"))
6676 (setq col (+ col minshift))
6677 (if (/= (% col step) 0) (setq step (* step (1+ (/ col step)))))
6680 (cperl-make-indent col)
6681 (beginning-of-line 2)
6682 (and (< (point) end)
6683 (re-search-forward search end t)
6684 (goto-char (match-beginning 0)))))))) ; No body
6686 (defun cperl-etags (&optional add all files) ;; NOT USED???
6687 "Run etags with appropriate options for Perl files.
6688 If optional argument ALL is `recursive', will process Perl files
6689 in subdirectories too."
6692 (args '("-l" "none" "-r"
6693 ;; 1=fullname 2=package? 3=name 4=proto? 5=attrs? (VERY APPROX!)
6694 "/\\<sub[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([ \t]*:[^#{;]*\\)?\\([{#]\\|$\\)/\\3/"
6696 "/\\<package[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)\\)[ \\t]*\\([#;]\\|$\\)/\\1/"
6698 "/\\<\\(package\\)[ \\t]*;/\\1;/"))
6700 (if add (setq args (cons "-a" args)))
6701 (or files (setq files (list buffer-file-name)))
6703 ((eq all 'recursive)
6704 ;;(error "Not implemented: recursive")
6705 (setq args (append (list "-e"
6706 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/}
6708 find(\\&wanted, '.');
6713 ;;(error "Not implemented: all")
6714 (setq args (append (list "-e"
6715 "push @ARGV, <*.PL *.pl *.pm>;
6720 (setq args (append args files))))
6721 (setq res (apply 'call-process cmd nil nil nil args))
6723 (message "etags returned \"%s\"" res))))
6725 (defun cperl-toggle-auto-newline ()
6726 "Toggle the state of `cperl-auto-newline'."
6728 (setq cperl-auto-newline (not cperl-auto-newline))
6729 (message "Newlines will %sbe auto-inserted now."
6730 (if cperl-auto-newline "" "not ")))
6732 (defun cperl-toggle-abbrev ()
6733 "Toggle the state of automatic keyword expansion in CPerl mode."
6735 (abbrev-mode (if abbrev-mode 0 1))
6736 (message "Perl control structure will %sbe auto-inserted now."
6737 (if abbrev-mode "" "not ")))
6740 (defun cperl-toggle-electric ()
6741 "Toggle the state of parentheses doubling in CPerl mode."
6743 (setq cperl-electric-parens (if (cperl-val 'cperl-electric-parens) 'null t))
6744 (message "Parentheses will %sbe auto-doubled now."
6745 (if (cperl-val 'cperl-electric-parens) "" "not ")))
6747 (defun cperl-toggle-autohelp ()
6748 "Toggle the state of Auto-Help on Perl constructs (put in the message area).
6749 Delay of auto-help controlled by `cperl-lazy-help-time'."
6751 (if (fboundp 'run-with-idle-timer)
6753 (if cperl-lazy-installed
6754 (cperl-lazy-unstall)
6755 (cperl-lazy-install))
6756 (message "Perl help messages will %sbe automatically shown now."
6757 (if cperl-lazy-installed "" "not ")))
6758 (message "Cannot automatically show Perl help messages - run-with-idle-timer missing.")))
6760 (defun cperl-toggle-construct-fix ()
6761 "Toggle whether `indent-region'/`indent-sexp' fix whitespace too."
6763 (setq cperl-indent-region-fix-constructs
6764 (if cperl-indent-region-fix-constructs
6767 (message "indent-region/indent-sexp will %sbe automatically fix whitespace."
6768 (if cperl-indent-region-fix-constructs "" "not ")))
6770 (defun cperl-toggle-set-debug-unwind (arg &optional backtrace)
6771 "Toggle (or, with numeric argument, set) debugging state of syntaxification.
6772 Nonpositive numeric argument disables debugging messages. The message
6773 summarizes which regions it was decided to rescan for syntactic constructs.
6775 The message looks like this:
6777 Syxify req=123..138 actual=101..146 done-to: 112=>146 statepos: 73=>117
6779 Numbers are character positions in the buffer. REQ provides the range to
6780 rescan requested by `font-lock'. ACTUAL is the range actually resyntaxified;
6781 for correct operation it should start and end outside any special syntactic
6782 construct. DONE-TO and STATEPOS indicate changes to internal caches maintained
6786 (setq arg (if (eq cperl-syntaxify-by-font-lock
6787 (if backtrace 'backtrace 'message)) 0 1)))
6788 (setq arg (if (> arg 0) (if backtrace 'backtrace 'message) t))
6789 (setq cperl-syntaxify-by-font-lock arg)
6790 (message "Debugging messages of syntax unwind %sabled."
6791 (if (eq arg t) "dis" "en")))
6793 ;;;; Tags file creation.
6795 (defvar cperl-tmp-buffer " *cperl-tmp*")
6797 (defun cperl-setup-tmp-buf ()
6798 (set-buffer (get-buffer-create cperl-tmp-buffer))
6799 (set-syntax-table cperl-mode-syntax-table)
6800 (buffer-disable-undo)
6802 (if cperl-use-syntax-table-text-property-for-tags
6804 (make-local-variable 'parse-sexp-lookup-properties)
6805 ;; Do not introduce variable if not needed, we check it!
6806 (set 'parse-sexp-lookup-properties t))))
6808 (defun cperl-xsub-scan ()
6810 (let ((index-alist '())
6811 (prev-pos 0) index index1 name package prefix)
6812 (goto-char (point-min))
6813 ;; Search for the function
6814 (progn ;;save-match-data
6815 (while (re-search-forward
6816 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)"
6819 ((match-beginning 2) ; SECTION
6820 (setq package (buffer-substring (match-beginning 2) (match-end 2)))
6821 (goto-char (match-beginning 0))
6822 (skip-chars-forward " \t")
6824 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>")
6825 (setq prefix (buffer-substring (match-beginning 1) (match-end 1)))
6827 ((not package) nil) ; C language section
6828 ((match-beginning 3) ; XSUB
6829 (goto-char (1+ (match-beginning 3)))
6830 (setq index (imenu-example--name-and-position))
6831 (setq name (buffer-substring (match-beginning 3) (match-end 3)))
6832 (if (and prefix (string-match (concat "^" prefix) name))
6833 (setq name (substring name (length prefix))))
6834 (cond ((string-match "::" name) nil)
6836 (setq index1 (cons (concat package "::" name) (cdr index)))
6837 (push index1 index-alist)))
6839 (push index index-alist))
6841 ;; (beginning-of-line)
6842 (setq index (imenu-example--name-and-position))
6843 (setcar index (concat package "::BOOT:"))
6844 (push index index-alist)))))
6847 (defvar cperl-unreadable-ok nil)
6849 (defun cperl-find-tags (ifile xs topdir)
6850 (let ((b (get-buffer cperl-tmp-buffer)) ind lst elt pos ret rel
6851 (cperl-pod-here-fontify nil) f file)
6853 (if b (set-buffer b)
6854 (cperl-setup-tmp-buf))
6857 (setq file (car (insert-file-contents ifile)))
6858 (error (if cperl-unreadable-ok nil
6860 (format "File %s unreadable. Continue? " ifile))
6861 (setq cperl-unreadable-ok t)
6862 (error "Aborting: unreadable file %s" ifile)))))
6864 (message "Unreadable file %s" ifile)
6865 (message "Scanning file %s ..." file)
6866 (if (and cperl-use-syntax-table-text-property-for-tags
6868 (condition-case err ; after __END__ may have garbage
6869 (cperl-find-pods-heres nil nil noninteractive)
6870 (error (message "While scanning for syntax: %s" err))))
6872 (setq lst (cperl-xsub-scan))
6873 (setq ind (cperl-imenu--create-perl-index))
6874 (setq lst (cdr (assoc "+Unsorted List+..." ind))))
6879 (cond ((string-match "^[_a-zA-Z]" (car elt))
6880 (goto-char (cdr elt))
6881 (beginning-of-line) ; pos should be of the start of the line
6884 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l
6885 (buffer-substring (progn
6886 (goto-char (cdr elt))
6887 ;; After name now...
6888 (or (eolp) (forward-char 1))
6896 (setq elt (car lst) lst (cdr lst))
6901 (if (string-match "^package " (car elt))
6902 (substring (car elt) 8)
6905 (number-to-string (elt elt 2)) ; Line
6907 (number-to-string (1- (elt elt 1))) ; Char pos 0-based
6909 (if (and (string-match "^[_a-zA-Z]+::" (car elt))
6910 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]"
6912 ;; Need to insert the name without package as well
6913 (setq lst (cons (cons (substring (elt elt 3)
6921 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties
6922 (set-text-properties 0 (length rel) nil rel)
6923 (and (equal topdir (substring rel 0 (length topdir)))
6924 (setq rel (substring file (length topdir))))
6925 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n")
6926 (setq ret (buffer-substring 1 (point-max)))
6929 (message "Scanning file %s finished" file))
6932 (defun cperl-add-tags-recurse-noxs ()
6933 "Add to TAGS data for \"pure\" Perl files in the current directory and kids.
6935 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
6936 -f cperl-add-tags-recurse-noxs
6938 (cperl-write-tags nil nil t t nil t))
6940 (defun cperl-add-tags-recurse-noxs-fullpath ()
6941 "Add to TAGS data for \"pure\" Perl in the current directory and kids.
6942 Writes down fullpath, so TAGS is relocatable (but if the build directory
6943 is relocated, the file TAGS inside it breaks). Use as
6944 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
6945 -f cperl-add-tags-recurse-noxs-fullpath
6947 (cperl-write-tags nil nil t t nil t ""))
6949 (defun cperl-add-tags-recurse ()
6950 "Add to TAGS file data for Perl files in the current directory and kids.
6952 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
6953 -f cperl-add-tags-recurse
6955 (cperl-write-tags nil nil t t))
6957 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir)
6958 ;; If INBUFFER, do not select buffer, and do not save
6959 ;; If ERASE is `ignore', do not erase, and do not try to delete old info.
6962 (setq file (if dir default-directory (buffer-file-name)))
6963 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!")))
6965 (setq topdir default-directory))
6966 (let ((tags-file-name "TAGS")
6967 (case-fold-search (eq system-type 'emx))
6970 (cond (inbuffer nil) ; Already there
6971 ((file-exists-p tags-file-name)
6972 (if (featurep 'xemacs)
6973 (visit-tags-table-buffer)
6974 (visit-tags-table-buffer tags-file-name)))
6975 (t (set-buffer (find-file-noselect tags-file-name))))
6978 (cond ((eq erase 'ignore))
6981 (setq erase 'ignore)))
6984 (directory-files file t
6985 (if recurse nil cperl-scan-files-regexp)
6988 (if cperl-unreadable-ok nil
6990 (format "Directory %s unreadable. Continue? " file))
6991 (setq cperl-unreadable-ok t
6992 tm nil) ; Return empty list
6993 (error "Aborting: unreadable directory %s" file)))))))
6997 ((string-match cperl-noscan-files-regexp file)
6999 ((not (file-directory-p file))
7000 (if (string-match cperl-scan-files-regexp file)
7001 (cperl-write-tags file erase recurse nil t noxs topdir)))
7003 (t (cperl-write-tags file erase recurse t t noxs topdir)))))
7006 (setq xs (string-match "\\.xs$" file))
7007 (if (not (and xs noxs))
7009 (cond ((eq erase 'ignore) (goto-char (point-max)))
7010 (erase (erase-buffer))
7014 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties
7015 (set-text-properties 0 (length rel) nil rel)
7016 (and (equal topdir (substring rel 0 (length topdir)))
7017 (setq rel (substring file (length topdir))))
7018 (if (search-forward (concat "\f\n" rel ",") nil t)
7020 (search-backward "\f\n")
7021 (delete-region (point)
7024 (if (search-forward "\f\n"
7028 (goto-char (point-max)))))
7029 (insert (cperl-find-tags file xs topdir))))))
7030 (if inbuffer nil ; Delegate to the caller
7031 (save-buffer 0) ; No backup
7032 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs?
7033 (initialize-new-tags-table))))))
7035 (defvar cperl-tags-hier-regexp-list
7042 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB?
7044 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section
7047 (defvar cperl-hierarchy '(() ())
7048 "Global hierarchy of classes.")
7050 (defun cperl-tags-hier-fill ()
7051 ;; Suppose we are in a tag table cooked by cperl.
7053 (let (type pack name pos line chunk ord cons1 file str info fileind)
7054 (while (re-search-forward cperl-tags-hier-regexp-list nil t)
7055 (setq pos (match-beginning 0)
7056 pack (match-beginning 2))
7058 (if (looking-at (concat
7067 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1))
7068 name (buffer-substring (match-beginning 2) (match-end 2))
7069 ;;pos (buffer-substring (match-beginning 3) (match-end 3))
7070 line (buffer-substring (match-beginning 3) (match-end 3))
7073 fileind (format "%s:%s" file line)
7074 ;; Moves to beginning of the next line:
7075 info (cperl-etags-snarf-tag file line))
7078 ;; Make new member of hierarchy name ==> file ==> pos if needed
7079 (if (setq cons1 (assoc name (nth ord cperl-hierarchy)))
7081 (setcdr cons1 (cons (cons fileind (vector file info))
7083 ;; First occurrence of the name, start alist
7084 (setq cons1 (cons name (list (cons fileind (vector file info)))))
7086 (setcar (cdr cperl-hierarchy)
7087 (cons cons1 (nth 1 cperl-hierarchy)))
7088 (setcar cperl-hierarchy
7089 (cons cons1 (car cperl-hierarchy)))))))
7092 (defun cperl-tags-hier-init (&optional update)
7093 "Show hierarchical menu of classes and methods.
7094 Finds info about classes by a scan of loaded TAGS files.
7095 Supposes that the TAGS files contain fully qualified function names.
7096 One may build such TAGS files from CPerl mode menu."
7100 (if (or update (null (nth 2 cperl-hierarchy)))
7101 (let ((remover (function (lambda (elt) ; (name (file1...) (file2..))
7104 (setcdr elt (cdr (nth 1 elt)))))))
7105 pack name cons1 to l1 l2 l3 l4 b)
7106 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later!
7107 (setq cperl-hierarchy (list l1 l2 l3))
7108 (if (featurep 'xemacs) ; Not checked
7111 ;; Does this work in XEmacs?
7112 (call-interactively 'visit-tags-table))
7113 (message "Updating list of classes...")
7114 (set-buffer (get-file-buffer tags-file-name))
7115 (cperl-tags-hier-fill))
7117 (call-interactively 'visit-tags-table))
7121 (message "Updating list of classes... %s" tagsfile)
7122 (set-buffer (get-file-buffer tagsfile))
7123 (cperl-tags-hier-fill)))
7125 (message "Updating list of classes... postprocessing..."))
7126 (mapc remover (car cperl-hierarchy))
7127 (mapc remover (nth 1 cperl-hierarchy))
7128 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy))
7129 (cons "Methods: " (car cperl-hierarchy))))
7130 (cperl-tags-treeify to 1)
7131 (setcar (nthcdr 2 cperl-hierarchy)
7132 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to))))
7133 (message "Updating list of classes: done, requesting display...")
7134 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy))
7136 (or (nth 2 cperl-hierarchy)
7137 (error "No items found"))
7139 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy))
7140 (if (if (fboundp 'display-popup-menus-p)
7141 (let ((f 'display-popup-menus-p))
7144 (x-popup-menu t (nth 2 cperl-hierarchy))
7146 (tmm-prompt (nth 2 cperl-hierarchy))))
7147 (if (and update (listp update))
7148 (progn (while (cdr update) (setq update (cdr update)))
7149 (setq update (car update)))) ; Get the last from the list
7150 (if (vectorp update)
7152 (find-file (elt update 0))
7153 (cperl-etags-goto-tag-location (elt update 1))))
7154 (if (eq update -999) (cperl-tags-hier-init t)))
7156 (defun cperl-tags-treeify (to level)
7157 ;; cadr of `to' is read-write. On start it is a cons
7158 (let* ((regexp (concat "^\\(" (mapconcat
7160 (make-list level "[_a-zA-Z0-9]+")
7163 (packages (cdr (nth 1 to)))
7164 (methods (cdr (nth 2 to)))
7165 l1 head tail cons1 cons2 ord writeto packs recurse
7166 root-packages root-functions ms many_ms same_name ps
7170 (cond ((and (string-match regexp (car elt))
7171 (or (eq ord 1) (match-end 2)))
7172 (setq head (substring (car elt) 0 (match-end 1))
7173 tail (if (match-end 2) (substring (car elt)
7176 (if (setq cons1 (assoc head writeto)) nil
7177 ;; Need to init new head
7178 (setcdr writeto (cons (list head (list "Packages: ")
7181 (setq cons1 (nth 1 writeto)))
7182 (setq cons2 (nth ord cons1)) ; Either packs or meths
7183 (setcdr cons2 (cons elt (cdr cons2))))
7185 (setq root-functions (cons elt root-functions)))
7187 (setq root-packages (cons elt root-packages))))))))
7188 (setcdr to l1) ; Init to dynamic space
7191 (mapc move-deeper packages)
7193 (mapc move-deeper methods)
7195 (mapc (function (lambda (elt)
7196 (cperl-tags-treeify elt (1+ level))))
7198 ;;Now clean up leaders with one child only
7199 (mapc (function (lambda (elt)
7200 (if (not (and (listp (cdr elt))
7201 (eq (length elt) 2))) nil
7202 (setcar elt (car (nth 1 elt)))
7203 (setcdr elt (cdr (nth 1 elt))))))
7205 ;; Sort the roots of subtrees
7206 (if (default-value 'imenu-sort-function)
7208 (sort (cdr to) (default-value 'imenu-sort-function))))
7209 ;; Now add back functions removed from display
7210 (mapc (function (lambda (elt)
7211 (setcdr to (cons elt (cdr to)))))
7212 (if (default-value 'imenu-sort-function)
7214 (sort root-functions (default-value 'imenu-sort-function)))
7216 ;; Now add back packages removed from display
7217 (mapc (function (lambda (elt)
7218 (setcdr to (cons (cons (concat "package " (car elt))
7221 (if (default-value 'imenu-sort-function)
7223 (sort root-packages (default-value 'imenu-sort-function)))
7227 ;;; '(keymap "Name1"
7231 ;;; ("Tail1" "x") ("Tail2" "y"))))
7233 (defun cperl-list-fold (list name limit)
7234 (let (list1 list2 elt1 (num 0))
7235 (if (<= (length list) limit) list
7236 (setq list1 nil list2 nil)
7241 (if (<= num imenu-max-items)
7242 (setq list2 (cons elt1 list2))
7243 (setq list1 (cons (cons name
7248 (nreverse (cons (cons name
7252 (defun cperl-menu-to-keymap (menu &optional name)
7258 (cond ((listp (cdr elt))
7259 (setq list (cperl-list-fold
7260 (cdr elt) (car elt) imenu-max-items))
7263 (cperl-menu-to-keymap list))))
7265 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34
7266 (cperl-list-fold menu "Root" imenu-max-items)))))
7269 (defvar cperl-bad-style-regexp
7270 (mapconcat 'identity
7271 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign
7272 "[-<>=+^&|]+[^- \t\n=+<>~]") ; sign+ char
7274 "Finds places such that insertion of a whitespace may help a lot.")
7276 (defvar cperl-not-bad-style-regexp
7279 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++
7280 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used.
7281 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field)
7282 "<\\$?\\sw+\\(\\.\\(\\sw\\|_\\)+\\)?>" ; <IN> <stdin.h>
7283 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN
7290 "\\\\[&$@*\\\\]" ; \&func
7293 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO'
7296 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text>
7297 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value
7298 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below
7302 "If matches at the start of match found by `my-bad-c-style-regexp',
7303 insertion of a whitespace will not help.")
7307 (defun cperl-find-bad-style ()
7308 "Find places in the buffer where insertion of a whitespace may help.
7309 Prompts user for insertion of spaces.
7310 Currently it is tuned to C and Perl syntax."
7312 (let (found-bad (p (point)))
7313 (setq last-nonmenu-event 13) ; To disable popup
7314 (goto-char (point-min))
7315 (map-y-or-n-p "Insert space here? "
7316 (lambda (arg) (insert " "))
7317 'cperl-next-bad-style
7318 '("location" "locations" "insert a space into")
7319 '((?\C-r (lambda (arg)
7320 (let ((buffer-quit-function
7321 'exit-recursive-edit))
7322 (message "Exit with Esc Esc")
7324 t)) ; Consider acted upon
7325 "edit, exit with Esc Esc")
7327 (let ((buffer-quit-function
7328 'exit-recursive-edit))
7329 (message "Exit with Esc Esc")
7331 t)) ; Consider acted upon
7332 "edit, exit with Esc Esc"))
7334 (if found-bad (goto-char found-bad)
7336 (message "No appropriate place found"))))
7338 (defun cperl-next-bad-style ()
7339 (let (p (not-found t) (point (point)) found)
7340 (while (and not-found
7341 (re-search-forward cperl-bad-style-regexp nil 'to-end))
7343 (goto-char (match-beginning 0))
7345 (looking-at cperl-not-bad-style-regexp)
7346 ;; Check for a < -b and friends
7347 (and (eq (following-char) ?\-)
7349 (skip-chars-backward " \t\n")
7350 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\( ?\[ ?\{))))
7351 ;; Now check for syntax type
7353 (setq found (point))
7354 (beginning-of-defun)
7355 (let ((pps (parse-partial-sexp (point) found)))
7356 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))
7357 (goto-char (match-end 0))
7365 (defvar cperl-have-help-regexp
7369 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable
7370 "[$@]\\^[a-zA-Z]" ; Special variable
7371 "[$@][^ \n\t]" ; Special variable
7372 "-[a-zA-Z]" ; File test
7373 "\\\\[a-zA-Z0]" ; Special chars
7374 "^=[a-z][a-zA-Z0-9_]*" ; POD sections
7375 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator
7376 "[a-zA-Z_0-9:]+" ; symbol or number
7383 "Matches places in the buffer we can find help for.")
7385 (defvar cperl-message-on-help-error t)
7386 (defvar cperl-help-from-timer nil)
7388 (defun cperl-word-at-point-hard ()
7389 ;; Does not save-excursion
7390 ;; Get to the something meaningful
7391 (or (eobp) (eolp) (forward-char 1))
7392 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]"
7393 (save-excursion (beginning-of-line) (point))
7396 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol
7397 ;; (skip-chars-backward " \n\t\r({[]});,")
7398 ;; (or (bobp) (backward-char 1))))
7401 ((looking-at "[a-zA-Z0-9_:]") ; symbol
7402 (skip-chars-backward "a-zA-Z0-9_:")
7404 ((and (eq (preceding-char) ?^) ; $^I
7405 (eq (char-after (- (point) 2)) ?\$))
7407 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob
7409 ((and (eq (preceding-char) ?\=)
7410 (eq (current-column) 1))
7411 (forward-char -1))) ; =head1
7412 (if (and (eq (preceding-char) ?\<)
7413 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH>
7415 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x=
7417 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I
7419 ((looking-at "[-!&*+,-./<=>?\\\\^|~]")
7420 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~")
7422 ((and (eq (preceding-char) ?\$)
7423 (not (eq (char-after (- (point) 2)) ?\$))) ; $-
7425 ((and (eq (following-char) ?\>)
7426 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char)))
7429 (and (eq (preceding-char) ?\<)
7430 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH>
7431 (search-backward "<"))))
7432 ((and (eq (following-char) ?\$)
7433 (eq (preceding-char) ?\<)
7434 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh>
7436 (if (looking-at cperl-have-help-regexp)
7437 (buffer-substring (match-beginning 0) (match-end 0))))
7439 (defun cperl-get-help ()
7440 "Get one-line docs on the symbol at the point.
7441 The data for these docs is a little bit obsolete and may be in fact longer
7442 than a line. Your contribution to update/shorten it is appreciated."
7444 (save-match-data ; May be called "inside" query-replace
7446 (let ((word (cperl-word-at-point-hard)))
7448 (if (and cperl-help-from-timer ; Bail out if not in mainland
7449 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings.
7450 (or (memq (get-text-property (point) 'face)
7451 '(font-lock-comment-face font-lock-string-face))
7452 (memq (get-text-property (point) 'syntax-type)
7453 '(pod here-doc format))))
7455 (cperl-describe-perl-symbol word))
7456 (if cperl-message-on-help-error
7457 (message "Nothing found for %s..."
7458 (buffer-substring (point) (min (+ 5 (point)) (point-max))))))))))
7460 ;;; Stolen from perl-descr.el by Johan Vromans:
7462 (defvar cperl-doc-buffer " *perl-doc*"
7463 "Where the documentation can be found.")
7465 (defun cperl-describe-perl-symbol (val)
7466 "Display the documentation of symbol at point, a Perl operator."
7467 (let ((enable-recursive-minibuffers t)
7470 ((string-match "^[&*][a-zA-Z_]" val)
7471 (setq val (concat (substring val 0 1) "NAME")))
7472 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val)
7473 (setq val (concat "@" (substring val 1 (match-end 1)))))
7474 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val)
7475 (setq val (concat "%" (substring val 1 (match-end 1)))))
7476 ((and (string= val "x") (string-match "^x=" val))
7478 ((string-match "^\\$[\C-a-\C-z]" val)
7479 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1))))))
7480 ((string-match "^CORE::" val)
7481 (setq val "CORE::"))
7482 ((string-match "^SUPER::" val)
7483 (setq val "SUPER::"))
7484 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val))
7485 (setq val "<NAME>")))
7486 (setq regexp (concat "^"
7487 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?"
7489 "\\([ \t([/]\\|$\\)"))
7491 ;; get the buffer with the documentation text
7492 (cperl-switch-to-doc-buffer)
7494 ;; lookup in the doc
7495 (goto-char (point-min))
7496 (let ((case-fold-search nil))
7498 (if (re-search-forward regexp (point-max) t)
7500 (beginning-of-line 1)
7501 (let ((lnstart (point)))
7503 (message "%s" (buffer-substring lnstart (point)))))
7504 (if cperl-message-on-help-error
7505 (message "No definition for %s" val)))))))
7507 (defvar cperl-short-docs 'please-ignore-this-line
7508 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl)
7509 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5]
7510 ... Range (list context); flip/flop [no flop when flip] (scalar context).
7511 ! ... Logical negation.
7512 ... != ... Numeric inequality.
7513 ... !~ ... Search pattern, substitution, or translation (negated).
7514 $! In numeric context: errno. In a string context: error string.
7515 $\" The separator which joins elements of arrays interpolated in strings.
7516 $# The output format for printed numbers. Default is %.15g or close.
7517 $$ Process number of this script. Changes in the fork()ed child process.
7518 $% The current page number of the currently selected output channel.
7520 The following variables are always local to the current block:
7522 $1 Match of the 1st set of parentheses in the last match (auto-local).
7523 $2 Match of the 2nd set of parentheses in the last match (auto-local).
7524 $3 Match of the 3rd set of parentheses in the last match (auto-local).
7525 $4 Match of the 4th set of parentheses in the last match (auto-local).
7526 $5 Match of the 5th set of parentheses in the last match (auto-local).
7527 $6 Match of the 6th set of parentheses in the last match (auto-local).
7528 $7 Match of the 7th set of parentheses in the last match (auto-local).
7529 $8 Match of the 8th set of parentheses in the last match (auto-local).
7530 $9 Match of the 9th set of parentheses in the last match (auto-local).
7531 $& The string matched by the last pattern match (auto-local).
7532 $' The string after what was matched by the last match (auto-local).
7533 $` The string before what was matched by the last match (auto-local).
7535 $( The real gid of this process.
7536 $) The effective gid of this process.
7537 $* Deprecated: Set to 1 to do multiline matching within a string.
7538 $+ The last bracket matched by the last search pattern.
7539 $, The output field separator for the print operator.
7540 $- The number of lines left on the page.
7541 $. The current input line number of the last filehandle that was read.
7542 $/ The input record separator, newline by default.
7543 $0 Name of the file containing the current perl script (read/write).
7544 $: String may be broken after these characters to fill ^-lines in a format.
7545 $; Subscript separator for multi-dim array emulation. Default \"\\034\".
7546 $< The real uid of this process.
7547 $= The page length of the current output channel. Default is 60 lines.
7548 $> The effective uid of this process.
7549 $? The status returned by the last ``, pipe close or `system'.
7550 $@ The perl error message from the last eval or do @var{EXPR} command.
7551 $ARGV The name of the current file used with <> .
7552 $[ Deprecated: The index of the first element/char in an array/string.
7553 $\\ The output record separator for the print operator.
7554 $] The perl version string as displayed with perl -v.
7555 $^ The name of the current top-of-page format.
7556 $^A The current value of the write() accumulator for format() lines.
7557 $^D The value of the perl debug (-D) flags.
7558 $^E Information about the last system error other than that provided by $!.
7559 $^F The highest system file descriptor, ordinarily 2.
7560 $^H The current set of syntax checks enabled by `use strict'.
7561 $^I The value of the in-place edit extension (perl -i option).
7562 $^L What formats output to perform a formfeed. Default is \\f.
7563 $^M A buffer for emergency memory allocation when running out of memory.
7564 $^O The operating system name under which this copy of Perl was built.
7565 $^P Internal debugging flag.
7566 $^T The time the script was started. Used by -A/-M/-C file tests.
7567 $^W True if warnings are requested (perl -w flag).
7568 $^X The name under which perl was invoked (argv[0] in C-speech).
7569 $_ The default input and pattern-searching space.
7570 $| Auto-flush after write/print on current output channel? Default 0.
7571 $~ The name of the current report format.
7572 ... % ... Modulo division.
7573 ... %= ... Modulo division assignment.
7574 %ENV Contains the current environment.
7575 %INC List of files that have been require-d or do-ne.
7576 %SIG Used to set signal handlers for various signals.
7577 ... & ... Bitwise and.
7578 ... && ... Logical and.
7579 ... &&= ... Logical and assignment.
7580 ... &= ... Bitwise and assignment.
7581 ... * ... Multiplication.
7582 ... ** ... Exponentiation.
7583 *NAME Glob: all objects refered by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2.
7584 &NAME(arg0, ...) Subroutine call. Arguments go to @_.
7585 ... + ... Addition. +EXPR Makes EXPR into scalar context.
7586 ++ Auto-increment (magical on strings). ++EXPR EXPR++
7587 ... += ... Addition assignment.
7589 ... - ... Subtraction.
7590 -- Auto-decrement (NOT magical on strings). --EXPR EXPR--
7591 ... -= ... Subtraction assignment.
7592 -A Access time in days since script started.
7593 -B File is a non-text (binary) file.
7594 -C Inode change time in days since script started.
7595 -M Age in days since script started.
7596 -O File is owned by real uid.
7597 -R File is readable by real uid.
7598 -S File is a socket .
7599 -T File is a text file.
7600 -W File is writable by real uid.
7601 -X File is executable by real uid.
7602 -b File is a block special file.
7603 -c File is a character special file.
7604 -d File is a directory.
7606 -f File is a plain file.
7607 -g File has setgid bit set.
7608 -k File has sticky bit set.
7609 -l File is a symbolic link.
7610 -o File is owned by effective uid.
7611 -p File is a named pipe (FIFO).
7612 -r File is readable by effective uid.
7613 -s File has non-zero size.
7614 -t Tests if filehandle (STDIN by default) is opened to a tty.
7615 -u File has setuid bit set.
7616 -w File is writable by effective uid.
7617 -x File is executable by effective uid.
7618 -z File has zero size.
7619 . Concatenate strings.
7620 .. Range (list context); flip/flop (scalar context) operator.
7621 .= Concatenate assignment strings
7622 ... / ... Division. /PATTERN/ioxsmg Pattern match
7623 ... /= ... Division assignment.
7624 /PATTERN/ioxsmg Pattern match.
7625 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well.
7626 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword).
7627 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>).
7628 <> Reads line from union of files in @ARGV (= command line) and STDIN.
7629 ... << ... Bitwise shift left. << start of HERE-DOCUMENT.
7630 ... <= ... Numeric less than or equal to.
7631 ... <=> ... Numeric compare.
7632 ... = ... Assignment.
7633 ... == ... Numeric equality.
7634 ... =~ ... Search pattern, substitution, or translation
7635 ... > ... Numeric greater than.
7636 ... >= ... Numeric greater than or equal to.
7637 ... >> ... Bitwise shift right.
7638 ... >>= ... Bitwise shift right assignment.
7639 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match.
7640 ?PATTERN? One-time pattern match.
7641 @ARGV Command line arguments (not including the command name - see $0).
7642 @INC List of places to look for perl scripts during do/include/use.
7643 @_ Parameter array for subroutines; result of split() unless in list context.
7644 \\ Creates reference to what follows, like \\$var, or quotes non-\\w in strings.
7645 \\0 Octal char, e.g. \\033.
7646 \\E Case modification terminator. See \\Q, \\L, and \\U.
7647 \\L Lowercase until \\E . See also \\l, lc.
7648 \\U Upcase until \\E . See also \\u, uc.
7649 \\Q Quote metacharacters until \\E . See also quotemeta.
7650 \\a Alarm character (octal 007).
7651 \\b Backspace character (octal 010).
7652 \\c Control character, e.g. \\c[ .
7653 \\e Escape character (octal 033).
7654 \\f Formfeed character (octal 014).
7655 \\l Lowercase the next character. See also \\L and \\u, lcfirst.
7656 \\n Newline character (octal 012 on most systems).
7657 \\r Return character (octal 015 on most systems).
7658 \\t Tab character (octal 011).
7659 \\u Upcase the next character. See also \\U and \\l, ucfirst.
7660 \\x Hex character, e.g. \\x1b.
7661 ... ^ ... Bitwise exclusive or.
7662 __END__ Ends program source.
7663 __DATA__ Ends program source.
7664 __FILE__ Current (source) filename.
7665 __LINE__ Current line in current source.
7666 __PACKAGE__ Current package.
7667 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>.
7668 ARGVOUT Output filehandle with -i flag.
7669 BEGIN { ... } Immediately executed (during compilation) piece of code.
7670 END { ... } Pseudo-subroutine executed after the script finishes.
7671 CHECK { ... } Pseudo-subroutine executed after the script is compiled.
7672 INIT { ... } Pseudo-subroutine executed before the script starts running.
7673 DATA Input filehandle for what follows after __END__ or __DATA__.
7674 accept(NEWSOCKET,GENERICSOCKET)
7687 ... cmp ... String compare.
7688 connect(SOCKET,NAME)
7689 continue of { block } continue { block }. Is executed after `next' or at end.
7691 crypt(PLAINTEXT,SALT)
7693 dbmopen(%HASH,DBNAME,MODE)
7697 do { ... }|SUBR while|until EXPR executes at least once
7698 do(EXPR|SUBR([LIST])) (with while|until executes at least once)
7708 ... eq ... String equality.
7709 eval(EXPR) or eval { BLOCK }
7710 exec([TRUENAME] ARGV0, ARGVs) or exec(SHELL_COMMAND_LINE)
7713 fcntl(FILEHANDLE,FUNCTION,SCALAR)
7715 flock(FILEHANDLE,OPERATION)
7716 for (EXPR;EXPR;EXPR) { ... }
7717 foreach [VAR] (@ARRAY) { ... }
7719 ... ge ... String greater than or equal.
7724 gethostbyaddr(ADDR,ADDRTYPE)
7728 getnetbyaddr(ADDR,ADDRTYPE)
7734 getpriority(WHICH,WHO)
7735 getprotobyname(NAME)
7736 getprotobynumber(NUMBER)
7741 getservbyname(NAME,PROTO)
7742 getservbyport(PORT,PROTO)
7745 getsockopt(SOCKET,LEVEL,OPTNAME)
7748 ... gt ... String greater than.
7750 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR
7751 index(STR,SUBSTR[,OFFSET])
7753 ioctl(FILEHANDLE,FUNCTION,SCALAR)
7758 ... le ... String less than or equal.
7760 link(OLDFILE,NEWFILE)
7761 listen(SOCKET,QUEUESIZE)
7765 lstat(EXPR|FILEHANDLE|VAR)
7766 ... lt ... String less than.
7768 mkdir(FILENAME,MODE)
7771 msgrcv(ID,VAR,SIZE,TYPE.FLAGS)
7772 msgsnd(ID,MSG,FLAGS)
7773 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH).
7774 our VAR or our (VAR1,...) Lexically enable a global variable ($V, @A, or %H).
7775 ... ne ... String inequality.
7778 open(FILEHANDLE[,EXPR])
7779 opendir(DIRHANDLE,EXPR)
7780 ord(EXPR) ASCII value of the first char of the string.
7782 package NAME Introduces package context.
7783 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe.
7785 print [FILEHANDLE] [(LIST)]
7786 printf [FILEHANDLE] (FORMAT,LIST)
7788 q/STRING/ Synonym for 'STRING'
7789 qq/STRING/ Synonym for \"STRING\"
7790 qx/STRING/ Synonym for `STRING`
7792 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7795 recv(SOCKET,SCALAR,LEN,FLAGS)
7797 rename(OLDNAME,NEWNAME)
7798 require [FILENAME | PERL_VERSION]
7802 rewinddir(DIRHANDLE)
7803 rindex(STR,SUBSTR[,OFFSET])
7805 s/PATTERN/REPLACEMENT/gieoxsm
7807 seek(FILEHANDLE,POSITION,WHENCE)
7808 seekdir(DIRHANDLE,POS)
7809 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT)
7810 semctl(ID,SEMNUM,CMD,ARG)
7811 semget(KEY,NSEMS,SIZE,FLAGS)
7813 send(SOCKET,MSG,FLAGS[,TO])
7815 sethostent(STAYOPEN)
7818 setpriority(WHICH,WHO,PRIORITY)
7819 setprotoent(STAYOPEN)
7821 setservent(STAYOPEN)
7822 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL)
7825 shmget(KEY,SIZE,FLAGS)
7826 shmread(ID,VAR,POS,SIZE)
7827 shmwrite(ID,STRING,POS,SIZE)
7828 shutdown(SOCKET,HOW)
7831 socket(SOCKET,DOMAIN,TYPE,PROTOCOL)
7832 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL)
7833 sort [SUBROUTINE] (LIST)
7834 splice(ARRAY,OFFSET[,LENGTH[,LIST]])
7835 split[(/PATTERN/[,EXPR[,LIMIT]])]
7836 sprintf(FORMAT,LIST)
7839 stat(EXPR|FILEHANDLE|VAR)
7841 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...}
7842 substr(EXPR,OFFSET[,LEN])
7843 symlink(OLDFILE,NEWFILE)
7845 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7846 system([TRUENAME] ARGV0 [,ARGV]) or system(SHELL_COMMAND_LINE)
7847 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7852 tr/SEARCHLIST/REPLACEMENTLIST/cds
7853 truncate(FILE|EXPR,LENGTH)
7856 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR
7858 unpack(TEMPLATE,EXPR)
7860 until (EXPR) { ... } EXPR until EXPR
7863 vec(EXPR,OFFSET,BITS)
7866 wantarray Returns true if the sub/eval is called in list context.
7868 while (EXPR) { ... } EXPR while EXPR
7869 write[(EXPR|FILEHANDLE)]
7870 ... x ... Repeat string or array.
7871 x= ... Repetition assignment.
7872 y/SEARCHLIST/REPLACEMENTLIST/
7873 ... | ... Bitwise or.
7874 ... || ... Logical or.
7875 ~ ... Unary bitwise complement.
7876 #! OS interpreter indicator. If contains `perl', used for options, and -x.
7877 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'.
7878 CORE:: Prefix to access builtin function if imported sub obscures it.
7879 SUPER:: Prefix to lookup for a method in @ISA classes.
7880 DESTROY Shorthand for `sub DESTROY {...}'.
7881 ... EQ ... Obsolete synonym of `eq'.
7882 ... GE ... Obsolete synonym of `ge'.
7883 ... GT ... Obsolete synonym of `gt'.
7884 ... LE ... Obsolete synonym of `le'.
7885 ... LT ... Obsolete synonym of `lt'.
7886 ... NE ... Obsolete synonym of `ne'.
7887 abs [ EXPR ] absolute value
7888 ... and ... Low-precedence synonym for &&.
7889 bless REFERENCE [, PACKAGE] Makes reference into an object of a package.
7890 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''!
7891 chr Converts a number to char with the same ordinal.
7892 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}.
7893 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}.
7894 exists $HASH{KEY} True if the key exists.
7895 format [NAME] = Start of output format. Ended by a single dot (.) on a line.
7896 formline PICTURE, LIST Backdoor into \"format\" processing.
7897 glob EXPR Synonym of <EXPR>.
7898 lc [ EXPR ] Returns lowercased EXPR.
7899 lcfirst [ EXPR ] Returns EXPR with lower-cased first letter.
7900 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK.
7901 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST.
7902 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method.
7903 not ... Low-precedence synonym for ! - negation.
7904 ... or ... Low-precedence synonym for ||.
7905 pos STRING Set/Get end-position of the last match over this string, see \\G.
7906 quotemeta [ EXPR ] Quote regexp metacharacters.
7907 qw/WORD1 .../ Synonym of split('', 'WORD1 ...')
7908 readline FH Synonym of <FH>.
7909 readpipe CMD Synonym of `CMD`.
7910 ref [ EXPR ] Type of EXPR when dereferenced.
7911 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.)
7912 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable.
7913 tied Returns internal object for a tied data.
7914 uc [ EXPR ] Returns upcased EXPR.
7915 ucfirst [ EXPR ] Returns EXPR with upcased first letter.
7916 untie VAR Unlink an object from a simple Perl variable.
7917 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'.
7918 ... xor ... Low-precedence synonym for exclusive or.
7919 prototype \\&SUB Returns prototype of the function given a reference.
7920 =head1 Top-level heading.
7921 =head2 Second-level heading.
7922 =head3 Third-level heading (is there such?).
7923 =over [ NUMBER ] Start list.
7924 =item [ TITLE ] Start new item in the list.
7926 =cut Switch from POD to Perl.
7927 =pod Switch from Perl to POD.
7930 (defun cperl-switch-to-doc-buffer (&optional interactive)
7931 "Go to the perl documentation buffer and insert the documentation."
7933 (let ((buf (get-buffer-create cperl-doc-buffer)))
7935 (switch-to-buffer-other-window buf)
7937 (if (= (buffer-size) 0)
7939 (insert (documentation-property 'cperl-short-docs
7940 'variable-documentation))
7941 (setq buffer-read-only t)))))
7943 (defun cperl-beautify-regexp-piece (b e embed level)
7944 ;; b is before the starting delimiter, e before the ending
7945 ;; e should be a marker, may be changed, but remains "correct".
7946 ;; EMBED is nil if we process the whole REx.
7947 ;; The REx is guaranteed to have //x
7948 ;; LEVEL shows how many levels deep to go
7949 ;; position at enter and at leave is not defined
7950 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code pos)
7954 (cond ((looking-at "(\\?\\\\#") ; (?#) wrongly commented when //x-ing
7958 ((looking-at "(\\?[^a-zA-Z]")
7960 ((looking-at "(\\?") ; (?i)
7964 (setq c (if embed (current-indentation) (1- (current-column)))
7965 c1 (+ c (or cperl-regexp-indent-step cperl-indent-level)))
7966 (or (looking-at "[ \t]*[\n#]")
7971 (if (re-search-forward "[^ \t]" e t)
7972 (progn ; Something before the ending delimiter
7974 (delete-horizontal-space)
7976 (cperl-make-indent c)
7977 (set-marker e (point))))
7980 (while (< (point) (marker-position e))
7984 (skip-chars-forward " \t")
7985 (delete-region s (point))
7986 (cperl-make-indent c1)
7990 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word
7991 "\\|" ; Embedded variable
7992 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3
7995 "\\|" ; simple-code simple-code*?
7996 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5
8000 "\\((\\(\\?\\)?\\)" ; 7 8
8003 (goto-char (match-end 0))
8005 (cond ((match-beginning 1) ; Alphanum word + junk
8007 ((or (match-beginning 3) ; $ab[12]
8008 (and (match-beginning 5) ; X* X+ X{2,3}
8009 (eq (preceding-char) ?\{)))
8012 ((and ; [], already syntaxified
8015 cperl-use-syntax-table-text-property)
8018 (or (eq (preceding-char) ?\])
8019 (error "[]-group not terminated"))
8021 "\\=\\([*+?]\\|{[0-9]+\\(,[0-9]*\\)?}\\)\\??" e t))
8022 ((match-beginning 6) ; []
8024 (if (looking-at "\\^?\\]")
8025 (goto-char (match-end 0)))
8026 ;; XXXX POSIX classes?!
8027 (while (and (not pos)
8028 (re-search-forward "\\[:\\|\\]" e t))
8029 (if (eq (preceding-char) ?:)
8030 (or (re-search-forward ":\\]" e t)
8031 (error "[:POSIX:]-group in []-group not terminated"))
8033 (or (eq (preceding-char) ?\])
8034 (error "[]-group not terminated"))
8036 "\\=\\([*+?]\\|{[0-9]+\\(,[0-9]*\\)?}\\)\\??" e t))
8037 ((match-beginning 7) ; ()
8038 (goto-char (match-beginning 0))
8039 (setq pos (current-column))
8042 (delete-horizontal-space)
8044 (cperl-make-indent c1)))
8047 ;; (or (forward-sexp 1)
8050 ;; (error "()-group not terminated")))
8051 (set-marker m (1- (point)))
8052 (set-marker m1 (point))
8054 (if (progn ; indent rigidly if multiline
8055 ;; In fact does not make a lot of sense, since
8056 ;; the starting position can be already lost due
8057 ;; to insertion of "\n" and " "
8059 (search-forward "\n" m1 t))
8060 (indent-rigidly (point) m1 (- c1 pos)))
8061 (setq level (1- level))
8063 ((not (match-beginning 8))
8064 (cperl-beautify-regexp-piece tmp m t level))
8065 ((eq (char-after (+ 2 tmp)) ?\{) ; Code
8067 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional
8068 (goto-char (+ 2 tmp))
8070 (cperl-beautify-regexp-piece (point) m t level))
8071 ((eq (char-after (+ 2 tmp)) ?<) ; Lookbehind
8072 (goto-char (+ 3 tmp))
8073 (cperl-beautify-regexp-piece (point) m t level))
8075 (cperl-beautify-regexp-piece tmp m t level))))
8077 (cond ((looking-at "[*+?]\\??")
8078 (goto-char (match-end 0)))
8079 ((eq (following-char) ?\{)
8081 (if (eq (following-char) ?\?)
8083 (skip-chars-forward " \t")
8085 (if (looking-at "[#\n]")
8087 (or (eolp) (indent-for-comment))
8088 (beginning-of-line 2))
8089 (delete-horizontal-space)
8093 ((match-beginning 9) ; |
8097 (if (re-search-forward "[^ \t]" tmp t)
8100 (delete-horizontal-space)
8103 (delete-region (point) tmp))
8104 (cperl-make-indent c)
8106 (skip-chars-forward " \t")
8108 (if (looking-at "[#\n]")
8109 (beginning-of-line 2)
8110 (delete-horizontal-space)
8114 (or (looking-at "[ \t\n]")
8117 (skip-chars-forward " \t"))
8118 (or (looking-at "[#\n]")
8119 (error "Unknown code `%s' in a regexp"
8120 (buffer-substring (point) (1+ (point)))))
8121 (and inline (end-of-line 2)))
8122 ;; Special-case the last line of group
8123 (if (and (>= (point) (marker-position e))
8124 (/= (current-indentation) c))
8127 (cperl-make-indent c)))))
8129 (defun cperl-make-regexp-x ()
8130 ;; Returns position of the start
8131 ;; XXX this is called too often! Need to cache the result!
8133 (or cperl-use-syntax-table-text-property
8134 (error "I need to have a regexp marked!"))
8136 (if (looking-at "\\s|")
8138 (if (looking-at "\\([smy]\\|qr\\)\\s|")
8140 (re-search-backward "\\s|"))) ; Assume it is scanned already.
8142 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column))
8143 (sub-p (eq (preceding-char) ?s)) s)
8145 (set-marker e (1- (point)))
8146 (setq delim (preceding-char))
8147 (if (and sub-p (eq delim (char-after (- (point) 2))))
8148 (error "Possible s/blah// - do not know how to deal with"))
8149 (if sub-p (forward-sexp 1))
8150 (if (looking-at "\\sw*x")
8153 ;; Protect fragile " ", "#"
8156 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too?
8162 (defun cperl-beautify-regexp (&optional deep)
8163 "Do it. (Experimental, may change semantics, recheck the result.)
8164 We suppose that the regexp is scanned already."
8166 (setq deep (if deep (prefix-numeric-value deep) -1))
8168 (goto-char (cperl-make-regexp-x))
8169 (let ((b (point)) (e (make-marker)))
8171 (set-marker e (1- (point)))
8172 (cperl-beautify-regexp-piece b e nil deep))))
8174 (defun cperl-regext-to-level-start ()
8175 "Goto start of an enclosing group in regexp.
8176 We suppose that the regexp is scanned already."
8178 (let ((limit (cperl-make-regexp-x)) done)
8180 (or (eq (following-char) ?\()
8181 (search-backward "(" (1+ limit) t)
8182 (error "Cannot find `(' which starts a group"))
8185 (skip-chars-backward "\\")
8186 (looking-at "\\(\\\\\\\\\\)*(")))
8187 (or done (forward-char -1)))))
8189 (defun cperl-contract-level ()
8190 "Find an enclosing group in regexp and contract it.
8191 \(Experimental, may change semantics, recheck the result.)
8192 We suppose that the regexp is scanned already."
8194 ;; (save-excursion ; Can't, breaks `cperl-contract-levels'
8195 (cperl-regext-to-level-start)
8196 (let ((b (point)) (e (make-marker)) c)
8198 (set-marker e (1- (point)))
8200 (while (re-search-forward "\\(#\\)\\|\n" e 'to-end)
8202 ((match-beginning 1) ; #-comment
8203 (or c (setq c (current-indentation)))
8204 (beginning-of-line 2) ; Skip
8205 (cperl-make-indent c))
8208 (just-one-space))))))
8210 (defun cperl-contract-levels ()
8211 "Find an enclosing group in regexp and contract all the kids.
8212 \(Experimental, may change semantics, recheck the result.)
8213 We suppose that the regexp is scanned already."
8217 (cperl-regext-to-level-start)
8218 (error ; We are outside outermost group
8219 (goto-char (cperl-make-regexp-x))))
8220 (let ((b (point)) (e (make-marker)) s c)
8222 (set-marker e (1- (point)))
8224 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t)
8226 ((match-beginning 1) ; Skip
8229 (cperl-contract-level)))))))
8231 (defun cperl-beautify-level (&optional deep)
8232 "Find an enclosing group in regexp and beautify it.
8233 \(Experimental, may change semantics, recheck the result.)
8234 We suppose that the regexp is scanned already."
8236 (setq deep (if deep (prefix-numeric-value deep) -1))
8238 (cperl-regext-to-level-start)
8239 (let ((b (point)) (e (make-marker)))
8241 (set-marker e (1- (point)))
8242 (cperl-beautify-regexp-piece b e nil deep))))
8244 (defun cperl-invert-if-unless-modifiers ()
8245 "Change `B if A;' into `if (A) {B}' etc if possible.
8248 (let (A B pre-B post-B pre-if post-if pre-A post-A if-string
8249 (w-rex "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>"))
8250 (and (= (char-syntax (preceding-char)) ?w)
8252 (setq pre-if (point))
8253 (cperl-backward-to-start-of-expr)
8254 (setq pre-B (point))
8255 (forward-sexp 1) ; otherwise forward-to-end-of-expr is NOP
8256 (cperl-forward-to-end-of-expr)
8257 (setq post-A (point))
8259 (or (looking-at w-rex)
8260 ;; Find the position
8261 (progn (goto-char post-A)
8263 (not (looking-at w-rex))
8266 (setq pre-if (point))))
8267 (or (looking-at w-rex)
8268 (error "Can't find `if', `unless', `while', `until', `for' or `foreach'"))
8269 ;; 1 B 2 ... 3 B-com ... 4 if 5 ... if-com 6 ... 7 A 8
8270 (setq if-string (buffer-substring (match-beginning 0) (match-end 0)))
8271 ;; First, simple part: find code boundaries
8273 (setq post-if (point))
8276 (setq post-B (point))
8277 (cperl-backward-to-start-of-expr)
8278 (setq pre-B (point))
8279 (setq B (buffer-substring pre-B post-B))
8283 ;; May be after $, @, $# etc of a variable
8284 (skip-chars-backward "$@%#")
8285 (setq pre-A (point))
8286 (cperl-forward-to-end-of-expr)
8287 (setq post-A (point))
8288 (setq A (buffer-substring pre-A post-A))
8289 ;; Now modify (from end, to not break the stuff)
8290 (skip-chars-forward " \t;")
8291 (delete-region pre-A (point)) ; we move to pre-A
8292 (insert "\n" B ";\n}")
8293 (and (looking-at "[ \t]*#") (cperl-indent-for-comment))
8294 (delete-region pre-if post-if)
8295 (delete-region pre-B post-B)
8297 (insert if-string " (" A ") {")
8298 (setq post-B (point))
8299 (if (looking-at "[ \t]+$")
8300 (delete-horizontal-space)
8301 (if (looking-at "[ \t]*#")
8302 (cperl-indent-for-comment)
8305 (if (looking-at "[ \t]*$")
8306 (progn ; delete line
8307 (delete-horizontal-space)
8308 (delete-region (point) (1+ (point)))))
8310 (goto-char (1- post-B))
8315 (defun cperl-invert-if-unless ()
8316 "Change `if (A) {B}' into `B if A;' etc (or visa versa) if possible.
8317 If the cursor is not on the leading keyword of the BLOCK flavor of
8318 construct, will assume it is the STATEMENT flavor, so will try to find
8319 the appropriate statement modifier."
8321 (and (= (char-syntax (preceding-char)) ?w)
8323 (if (looking-at "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>")
8324 (let ((pre-if (point))
8325 pre-A post-A pre-B post-B A B state p end-B-code is-block B-comment
8326 (if-string (buffer-substring (match-beginning 0) (match-end 0))))
8328 (setq post-A (point))
8330 (setq pre-A (point))
8331 (setq is-block (and (eq (following-char) ?\( )
8337 (eq (following-char) ?\{ ))
8343 (setq post-B (point))
8345 (setq pre-B (point))
8346 (if (and (eq (following-char) ?\{ )
8348 (cperl-backward-to-noncomment post-A)
8349 (eq (preceding-char) ?\) )))
8350 (if (condition-case nil
8355 (looking-at "\\<els\\(e\\|if\\)\\>"))
8358 "`%s' (EXPR) {BLOCK} with `else'/`elsif'" if-string)
8359 (goto-char (1- post-B))
8360 (cperl-backward-to-noncomment pre-B)
8361 (if (eq (preceding-char) ?\;)
8363 (setq end-B-code (point))
8365 (while (re-search-forward "\\<\\(for\\|foreach\\|if\\|unless\\|while\\|until\\)\\>\\|;" end-B-code t)
8366 (setq p (match-beginning 0)
8367 A (buffer-substring p (match-end 0))
8368 state (parse-partial-sexp pre-B p))
8372 (error "`%s' inside `%s' BLOCK" A if-string))
8373 (goto-char (match-end 0)))
8375 (goto-char (1+ pre-B))
8376 (skip-chars-forward " \t\n")
8377 (setq B (buffer-substring (point) end-B-code))
8378 (goto-char end-B-code)
8379 (or (looking-at ";?[ \t\n]*}")
8381 (skip-chars-forward "; \t\n")
8383 (buffer-substring (point) (1- post-B)))))
8386 (goto-char (1- post-A))
8387 (cperl-backward-to-noncomment pre-A)
8388 (or (looking-at "[ \t\n]*)")
8389 (goto-char (1- post-A)))
8391 (goto-char (1+ pre-A))
8392 (skip-chars-forward " \t\n")
8393 (setq A (buffer-substring (point) p))
8394 (delete-region pre-B post-B)
8395 (delete-region pre-A post-A)
8398 (and B-comment (insert B-comment " "))
8401 (setq pre-A (point))
8403 (delete-horizontal-space)
8404 (setq post-B (point))
8405 (if (looking-at "#")
8406 (indent-for-comment))
8409 (delete-horizontal-space)
8413 (setq pre-A (set-marker (make-marker) pre-A))
8414 (while (<= (point) (marker-position pre-A))
8417 (goto-char (marker-position pre-A))
8421 (indent-for-comment)
8422 (goto-char (marker-position pre-A)))))
8423 (error "`%s' (EXPR) not with an {BLOCK}" if-string)))
8424 ;; (error "`%s' not with an (EXPR)" if-string)
8426 (cperl-invert-if-unless-modifiers)))
8427 ;;(error "Not at `if', `unless', `while', `until', `for' or `foreach'")
8428 (cperl-invert-if-unless-modifiers)))
8430 ;;; By Anthony Foiani <afoiani@uswest.com>
8431 ;;; Getting help on modules in C-h f ?
8432 ;;; This is a modified version of `man'.
8433 ;;; Need to teach it how to lookup functions
8435 (defun cperl-perldoc (word)
8436 "Run `perldoc' on WORD."
8438 (list (let* ((default-entry (cperl-word-at-point))
8440 (format "perldoc entry%s: "
8441 (if (string= default-entry "")
8443 (format " (default %s)" default-entry))))))
8444 (if (string= input "")
8445 (if (string= default-entry "")
8446 (error "No perldoc args given")
8450 (let* ((case-fold-search nil)
8452 (string-match "^[a-z]+$" word)
8453 (string-match (concat "^" word "\\>")
8454 (documentation-property
8456 'variable-documentation))))
8457 (manual-program (if is-func "perldoc -f" "perldoc")))
8460 (let ((Manual-program "perldoc")
8461 (Manual-switches (if is-func (list "-f"))))
8462 (manual-entry word)))
8464 (Man-getpage-in-background word)))))
8467 (defun cperl-perldoc-at-point ()
8468 "Run a `perldoc' on the word around point."
8470 (cperl-perldoc (cperl-word-at-point)))
8472 (defcustom pod2man-program "pod2man"
8473 "*File name for `pod2man'."
8477 ;;; By Nick Roberts <Nick.Roberts@src.bae.co.uk> (with changes)
8478 (defun cperl-pod-to-manpage ()
8479 "Create a virtual manpage in Emacs from the Perl Online Documentation."
8482 (let* ((pod2man-args (concat buffer-file-name " | nroff -man "))
8483 (bufname (concat "Man " buffer-file-name))
8484 (buffer (generate-new-buffer bufname)))
8487 (let ((process-environment (copy-sequence process-environment)))
8488 ;; Prevent any attempt to use display terminal fanciness.
8489 (setenv "TERM" "dumb")
8490 (set-process-sentinel
8491 (start-process pod2man-program buffer "sh" "-c"
8492 (format (cperl-pod2man-build-command) pod2man-args))
8493 'Man-bgproc-sentinel)))))
8495 ;;; Updated version by him too
8496 (defun cperl-build-manpage ()
8497 "Create a virtual manpage in Emacs from the POD in the file."
8502 (let ((Manual-program "perldoc"))
8503 (manual-entry buffer-file-name)))
8505 (let* ((manual-program "perldoc"))
8506 (Man-getpage-in-background buffer-file-name)))))
8508 (defun cperl-pod2man-build-command ()
8509 "Builds the entire background manpage and cleaning command."
8510 (let ((command (concat pod2man-program " %s 2>/dev/null"))
8511 (flist (and (boundp 'Man-filter-list) Man-filter-list)))
8512 (while (and flist (car flist))
8513 (let ((pcom (car (car flist)))
8514 (pargs (cdr (car flist))))
8516 (concat command " | " pcom " "
8517 (mapconcat '(lambda (phrase)
8518 (if (not (stringp phrase))
8519 (error "Malformed Man-filter-list"))
8522 (setq flist (cdr flist))))
8526 (defun cperl-next-interpolated-REx-1 ()
8527 "Move point to next REx which has interpolated parts without //o.
8528 Skips RExes consisting of one interpolated variable.
8530 Note that skipped RExen are not performance hits."
8532 (cperl-next-interpolated-REx 1))
8534 (defun cperl-next-interpolated-REx-0 ()
8535 "Move point to next REx which has interpolated parts without //o."
8537 (cperl-next-interpolated-REx 0))
8539 (defun cperl-next-interpolated-REx (&optional skip beg limit)
8540 "Move point to next REx which has interpolated parts.
8541 SKIP is a list of possible types to skip, BEG and LIMIT are the starting
8542 point and the limit of search (default to point and end of buffer).
8544 SKIP may be a number, then it behaves as list of numbers up to SKIP; this
8545 semantic may be used as a numeric argument.
8547 Types are 0 for / $rex /o (interpolated once), 1 for /$rex/ (if $rex is
8548 a result of qr//, this is not a performance hit), t for the rest."
8550 (if (numberp skip) (setq skip (list 0 skip)))
8551 (or beg (setq beg (point)))
8552 (or limit (setq limit (point-max))) ; needed for n-s-p-c
8554 (and (eq (get-text-property beg 'syntax-type) 'string)
8555 (setq beg (next-single-property-change beg 'syntax-type nil limit)))
8556 (cperl-map-pods-heres
8557 (function (lambda (s e p)
8558 (if (memq (get-text-property s 'REx-interpolated) skip)
8562 'REx-interpolated beg limit)
8563 (if pp (goto-char pp)
8564 (message "No more interpolated REx"))))
8566 ;;; Initial version contributed by Trey Belew
8567 (defun cperl-here-doc-spell (&optional beg end)
8568 "Spell-check HERE-documents in the Perl buffer.
8569 If a region is highlighted, restricts to the region."
8571 (cperl-pod-spell t beg end))
8573 (defun cperl-pod-spell (&optional do-heres beg end)
8574 "Spell-check POD documentation.
8575 If invoked with prefix argument, will do HERE-DOCs instead.
8576 If a region is highlighted, restricts to the region."
8580 (if (cperl-mark-active)
8581 (setq beg (min (mark) (point))
8582 end (max (mark) (point)))
8583 (setq beg (point-min)
8585 (cperl-map-pods-heres (function
8588 (setq e (save-excursion
8594 (if do-heres 'here-doc-group 'in-pod)
8597 (defun cperl-map-pods-heres (func &optional prop s end)
8598 "Executes a function over regions of pods or here-documents.
8599 PROP is the text-property to search for; default to `in-pod'. Stop when
8600 function returns nil."
8601 (let (pos posend has-prop (cont t))
8602 (or prop (setq prop 'in-pod))
8603 (or s (setq s (point-min)))
8604 (or end (setq end (point-max)))
8605 (cperl-update-syntaxification end end)
8607 (goto-char (setq pos s))
8608 (while (and cont (< pos end))
8609 (setq has-prop (get-text-property pos prop))
8610 (setq posend (next-single-property-change pos prop nil end))
8612 (setq cont (funcall func pos posend prop)))
8613 (setq pos posend)))))
8615 ;;; Based on code by Masatake YAMATO:
8616 (defun cperl-get-here-doc-region (&optional pos pod)
8617 "Return HERE document region around the point.
8618 Return nil if the point is not in a HERE document region. If POD is non-nil,
8619 will return a POD section if point is in a POD section."
8620 (or pos (setq pos (point)))
8621 (cperl-update-syntaxification pos pos)
8622 (if (or (eq 'here-doc (get-text-property pos 'syntax-type))
8624 (eq 'pod (get-text-property pos 'syntax-type))))
8625 (let ((b (cperl-beginning-of-property pos 'syntax-type))
8626 (e (next-single-property-change pos 'syntax-type)))
8627 (cons b (or e (point-max))))))
8629 (defun cperl-narrow-to-here-doc (&optional pos)
8630 "Narrows editing region to the HERE-DOC at POS.
8631 POS defaults to the point."
8633 (or pos (setq pos (point)))
8634 (let ((p (cperl-get-here-doc-region pos)))
8635 (or p (error "Not inside a HERE document"))
8636 (narrow-to-region (car p) (cdr p))
8638 "When you are finished with narrow editing, type C-x n w")))
8640 (defun cperl-select-this-pod-or-here-doc (&optional pos)
8641 "Select the HERE-DOC (or POD section) at POS.
8642 POS defaults to the point."
8644 (let ((p (cperl-get-here-doc-region pos t)))
8648 (push-mark (cdr p) nil t)) ; Message, activate in transient-mode
8649 (message "I do not think POS is in POD or a HERE-doc..."))))
8651 (defun cperl-facemenu-add-face-function (face end)
8652 "A callback to process user-initiated font-change requests.
8653 Translates `bold', `italic', and `bold-italic' requests to insertion of
8654 corresponding POD directives, and `underline' to C<> POD directive.
8656 Such requests are usually bound to M-o LETTER."
8657 (or (get-text-property (point) 'in-pod)
8658 (error "Faces can only be set within POD"))
8659 (setq facemenu-end-add-face (if (eq face 'bold-italic) ">>" ">"))
8660 (cdr (or (assq face '((bold . "B<")
8662 (bold-italic . "B<I<")
8663 (underline . "C<")))
8664 (error "Face %s not configured for cperl-mode"
8667 (defun cperl-time-fontification (&optional l step lim)
8668 "Times how long it takes to do incremental fontification in a region.
8669 L is the line to start at, STEP is the number of lines to skip when
8670 doing next incremental fontification, LIM is the maximal number of
8671 incremental fontification to perform. Messages are accumulated in
8674 May be used for pinpointing which construct slows down buffer fontification:
8675 start with default arguments, then refine the slowdown regions."
8676 (interactive "nLine to start at: \nnStep to do incremental fontification: ")
8678 (or step (setq step 500))
8679 (or lim (setq lim 40))
8680 (let* ((timems (function (lambda ()
8681 (let ((tt (current-time)))
8682 (+ (* 1000 (nth 1 tt)) (/ (nth 2 tt) 1000))))))
8683 (tt (funcall timems)) (c 0) delta tot)
8686 (setq tot (- (- tt (setq tt (funcall timems)))))
8687 (message "cperl-mode at %s: %s" l tot)
8688 (while (and (< c lim) (not (eobp)))
8692 (cperl-update-syntaxification (point) (point))
8693 (setq delta (- (- tt (setq tt (funcall timems)))) tot (+ tot delta))
8694 (message "to %s:%6s,%7s" l delta tot))
8697 (defvar font-lock-cache-position)
8699 (defun cperl-emulate-lazy-lock (&optional window-size)
8700 "Emulate `lazy-lock' without `condition-case', so `debug-on-error' works.
8701 Start fontifying the buffer from the start (or end) using the given
8702 WINDOW-SIZE (units is lines). Negative WINDOW-SIZE starts at end, and
8703 goes backwards; default is -50. This function is not CPerl-specific; it
8704 may be used to debug problems with delayed incremental fontification."
8706 "nSize of window for incremental fontification, negative goes backwards: ")
8707 (or window-size (setq window-size -50))
8708 (let ((pos (if (> window-size 0)
8714 ;; Why needed??? With older font-locks???
8715 (set (make-local-variable 'font-lock-cache-position) (make-marker))
8716 (while (if (> window-size 0)
8718 (> pos (point-min)))
8720 (forward-line window-size)
8722 (font-lock-fontify-region (min p pos) (max p pos))
8726 (defun cperl-lazy-install ()) ; Avoid a warning
8727 (defun cperl-lazy-unstall ()) ; Avoid a warning
8729 (if (fboundp 'run-with-idle-timer)
8731 (defvar cperl-help-shown nil
8732 "Non-nil means that the help was already shown now.")
8734 (defvar cperl-lazy-installed nil
8735 "Non-nil means that the lazy-help handlers are installed now.")
8737 (defun cperl-lazy-install ()
8738 "Switches on Auto-Help on Perl constructs (put in the message area).
8739 Delay of auto-help controlled by `cperl-lazy-help-time'."
8741 (make-local-variable 'cperl-help-shown)
8742 (if (and (cperl-val 'cperl-lazy-help-time)
8743 (not cperl-lazy-installed))
8745 (add-hook 'post-command-hook 'cperl-lazy-hook)
8746 (run-with-idle-timer
8747 (cperl-val 'cperl-lazy-help-time 1000000 5)
8749 'cperl-get-help-defer)
8750 (setq cperl-lazy-installed t))))
8752 (defun cperl-lazy-unstall ()
8753 "Switches off Auto-Help on Perl constructs (put in the message area).
8754 Delay of auto-help controlled by `cperl-lazy-help-time'."
8756 (remove-hook 'post-command-hook 'cperl-lazy-hook)
8757 (cancel-function-timers 'cperl-get-help-defer)
8758 (setq cperl-lazy-installed nil))
8760 (defun cperl-lazy-hook ()
8761 (setq cperl-help-shown nil))
8763 (defun cperl-get-help-defer ()
8764 (if (not (memq major-mode '(perl-mode cperl-mode))) nil
8765 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t))
8767 (setq cperl-help-shown t))))
8768 (cperl-lazy-install)))
8771 ;;; Plug for wrong font-lock:
8773 (defun cperl-font-lock-unfontify-region-function (beg end)
8774 (let* ((modified (buffer-modified-p)) (buffer-undo-list t)
8775 (inhibit-read-only t) (inhibit-point-motion-hooks t)
8776 before-change-functions after-change-functions
8777 deactivate-mark buffer-file-name buffer-file-truename)
8778 (remove-text-properties beg end '(face nil))
8779 (if (and (not modified) (buffer-modified-p))
8780 (set-buffer-modified-p nil))))
8782 (defun cperl-font-lock-fontify-region-function (beg end loudly)
8783 "Extends the region to safe positions, then calls the default function.
8784 Newer `font-lock's can do it themselves.
8785 We unwind only as far as needed for fontification. Syntaxification may
8786 do extra unwind via `cperl-unwind-to-safe'."
8792 (eq (get-text-property (setq beg (point)) 'syntax-type)
8794 (if (setq beg (cperl-beginning-of-property beg 'syntax-type))
8800 (or (bolp) (condition-case nil
8803 (eq (get-text-property (setq end (point)) 'syntax-type)
8805 (setq end (next-single-property-change end 'syntax-type nil (point-max)))
8808 (font-lock-default-fontify-region beg end loudly))
8810 (defvar cperl-d-l nil)
8811 (defun cperl-fontify-syntaxically (end)
8812 ;; Some vars for debugging only
8813 ;; (message "Syntaxifying...")
8814 (let ((dbg (point)) (iend end) (idone cperl-syntax-done-to)
8815 (istate (car cperl-syntax-state))
8816 start from-start edebug-backtrace-buffer)
8817 (if (eq cperl-syntaxify-by-font-lock 'backtrace)
8820 (let ((f 'edebug-backtrace))
8821 (funcall f)))) ; Avoid compile-time warning
8822 (or cperl-syntax-done-to
8823 (setq cperl-syntax-done-to (point-min)
8825 (setq start (if (and cperl-hook-after-change
8827 cperl-syntax-done-to ; Fontify without change; ignore start
8828 ;; Need to forget what is after `start'
8829 (min cperl-syntax-done-to (point))))
8832 (setq start (point))
8833 (and cperl-syntaxify-unwind
8834 (setq end (cperl-unwind-to-safe t end)
8837 (setq cperl-syntax-done-to start) ; In case what follows fails
8838 (cperl-find-pods-heres start end t nil t))
8839 (if (memq cperl-syntaxify-by-font-lock '(backtrace message))
8840 (message "Syxify req=%s..%s actual=%s..%s done-to: %s=>%s statepos: %s=>%s"
8841 dbg iend start end idone cperl-syntax-done-to
8842 istate (car cperl-syntax-state))) ; For debugging
8843 nil)) ; Do not iterate
8845 (defun cperl-fontify-update (end)
8846 (let ((pos (point-min)) prop posend)
8847 (setq end (point-max))
8849 (setq prop (get-text-property pos 'cperl-postpone)
8850 posend (next-single-property-change pos 'cperl-postpone nil end))
8851 (and prop (put-text-property pos posend (car prop) (cdr prop)))
8853 nil) ; Do not iterate
8855 (defun cperl-fontify-update-bad (end)
8856 ;; Since fontification happens with different region than syntaxification,
8857 ;; do to the end of buffer, not to END;;; likewise, start earlier if needed
8858 (let* ((pos (point)) (prop (get-text-property pos 'cperl-postpone)) posend)
8860 (setq pos (or (cperl-beginning-of-property
8861 (cperl-1+ pos) 'cperl-postpone)
8864 (setq posend (next-single-property-change pos 'cperl-postpone))
8865 (and prop (put-text-property pos posend (car prop) (cdr prop)))
8867 (setq prop (get-text-property pos 'cperl-postpone))))
8868 nil) ; Do not iterate
8870 ;; Called when any modification is made to buffer text.
8871 (defun cperl-after-change-function (beg end old-len)
8872 ;; We should have been informed about changes by `font-lock'. Since it
8873 ;; does not inform as which calls are defered, do it ourselves
8874 (if cperl-syntax-done-to
8875 (setq cperl-syntax-done-to (min cperl-syntax-done-to beg))))
8877 (defun cperl-update-syntaxification (from to)
8878 (if (and cperl-use-syntax-table-text-property
8879 cperl-syntaxify-by-font-lock
8880 (or (null cperl-syntax-done-to)
8881 (< cperl-syntax-done-to to)))
8885 (cperl-fontify-syntaxically to)))))
8887 (defvar cperl-version
8888 (let ((v "Revision: 5.23"))
8889 (string-match ":\\s *\\([0-9.]+\\)" v)
8890 (substring v (match-beginning 1) (match-end 1)))
8891 "Version of IZ-supported CPerl package this file is based on.")
8893 (provide 'cperl-mode)
8895 ;; arch-tag: 42e5b19b-e187-4537-929f-1a7408980ce6
8896 ;;; cperl-mode.el ends here