Merge from emacs-24; up to 2012-05-02T07:12:52Z!rgm@gnu.org.
[emacs.git] / lisp / progmodes / cperl-mode.el
blobe1430b67e99fe8caa246aeb90b6e109bec1fe323
1 ;;; cperl-mode.el --- Perl code editing commands for Emacs
3 ;; Copyright (C) 1985-1987, 1991-2012 Free Software Foundation, Inc.
5 ;; Author: Ilya Zakharevich
6 ;; Bob Olson
7 ;; Maintainer: Ilya Zakharevich <ilyaz@cpan.org>
8 ;; Keywords: languages, Perl
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Corrections made by Ilya Zakharevich ilyaz@cpan.org
27 ;;; Commentary:
29 ;; You can either fine-tune the bells and whistles of this mode or
30 ;; bulk enable them by putting
32 ;; (setq cperl-hairy t)
34 ;; in your .emacs file. (Emacs rulers do not consider it politically
35 ;; correct to make whistles enabled by default.)
37 ;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<<
38 ;; or as help on variables `cperl-tips', `cperl-problems', <<<<<<
39 ;; `cperl-praise', `cperl-speed'. <<<<<<
41 ;; The mode information (on C-h m) provides some customization help.
42 ;; If you use font-lock feature of this mode, it is advisable to use
43 ;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock.
45 ;; Faces used now: three faces for first-class and second-class keywords
46 ;; and control flow words, one for each: comments, string, labels,
47 ;; functions definitions and packages, arrays, hashes, and variable
48 ;; definitions. If you do not see all these faces, your font-lock does
49 ;; not define them, so you need to define them manually.
51 ;; This mode supports font-lock, imenu and mode-compile. In the
52 ;; hairy version font-lock is on, but you should activate imenu
53 ;; yourself (note that mode-compile is not standard yet). Well, you
54 ;; can use imenu from keyboard anyway (M-x imenu), but it is better
55 ;; to bind it like that:
57 ;; (define-key global-map [M-S-down-mouse-3] 'imenu)
59 ;;; Font lock bugs as of v4.32:
61 ;; The following kinds of Perl code erroneously start strings:
62 ;; \$` \$' \$"
63 ;; $opt::s $opt_s $opt{s} (s => ...) /\s+.../
64 ;; likewise with m, tr, y, q, qX instead of s
66 ;;; Code:
68 (defvar vc-rcs-header)
69 (defvar vc-sccs-header)
71 (eval-when-compile
72 (condition-case nil
73 (require 'custom)
74 (error nil))
75 (condition-case nil
76 (require 'man)
77 (error nil))
78 (defvar cperl-can-font-lock
79 (or (featurep 'xemacs)
80 (and (boundp 'emacs-major-version)
81 (or window-system
82 (> emacs-major-version 20)))))
83 (if cperl-can-font-lock
84 (require 'font-lock))
85 (defvar msb-menu-cond)
86 (defvar gud-perldb-history)
87 (defvar font-lock-background-mode) ; not in Emacs
88 (defvar font-lock-display-type) ; ditto
89 (defvar paren-backwards-message) ; Not in newer XEmacs?
90 (or (fboundp 'defgroup)
91 (defmacro defgroup (name val doc &rest arr)
92 nil))
93 (or (fboundp 'custom-declare-variable)
94 (defmacro defcustom (name val doc &rest arr)
95 `(defvar ,name ,val ,doc)))
96 (or (and (fboundp 'custom-declare-variable)
97 (string< "19.31" emacs-version)) ; Checked with 19.30: defface does not work
98 (defmacro defface (&rest arr)
99 nil))
100 ;; Avoid warning (tmp definitions)
101 (or (fboundp 'x-color-defined-p)
102 (defmacro x-color-defined-p (col)
103 (cond ((fboundp 'color-defined-p) `(color-defined-p ,col))
104 ;; XEmacs >= 19.12
105 ((fboundp 'valid-color-name-p) `(valid-color-name-p ,col))
106 ;; XEmacs 19.11
107 ((fboundp 'x-valid-color-name-p) `(x-valid-color-name-p ,col))
108 (t '(error "Cannot implement color-defined-p")))))
109 (defmacro cperl-is-face (arg) ; Takes quoted arg
110 (cond ((fboundp 'find-face)
111 `(find-face ,arg))
112 (;;(and (fboundp 'face-list)
113 ;; (face-list))
114 (fboundp 'face-list)
115 `(member ,arg (and (fboundp 'face-list)
116 (face-list))))
118 `(boundp ,arg))))
119 (defmacro cperl-make-face (arg descr) ; Takes unquoted arg
120 (cond ((fboundp 'make-face)
121 `(make-face (quote ,arg)))
123 `(defvar ,arg (quote ,arg) ,descr))))
124 (defmacro cperl-force-face (arg descr) ; Takes unquoted arg
125 `(progn
126 (or (cperl-is-face (quote ,arg))
127 (cperl-make-face ,arg ,descr))
128 (or (boundp (quote ,arg)) ; We use unquoted variants too
129 (defvar ,arg (quote ,arg) ,descr))))
130 (if (featurep 'xemacs)
131 (defmacro cperl-etags-snarf-tag (file line)
132 `(progn
133 (beginning-of-line 2)
134 (list ,file ,line)))
135 (defmacro cperl-etags-snarf-tag (file line)
136 `(etags-snarf-tag)))
137 (if (featurep 'xemacs)
138 (defmacro cperl-etags-goto-tag-location (elt)
139 ;;(progn
140 ;; (switch-to-buffer (get-file-buffer (elt ,elt 0)))
141 ;; (set-buffer (get-file-buffer (elt ,elt 0)))
142 ;; Probably will not work due to some save-excursion???
143 ;; Or save-file-position?
144 ;; (message "Did I get to line %s?" (elt ,elt 1))
145 `(goto-line (string-to-int (elt ,elt 1))))
147 (defmacro cperl-etags-goto-tag-location (elt)
148 `(etags-goto-tag-location ,elt))))
150 (defvar cperl-can-font-lock
151 (or (featurep 'xemacs)
152 (and (boundp 'emacs-major-version)
153 (or window-system
154 (> emacs-major-version 20)))))
156 (defun cperl-choose-color (&rest list)
157 (let (answer)
158 (while list
159 (or answer
160 (if (or (x-color-defined-p (car list))
161 (null (cdr list)))
162 (setq answer (car list))))
163 (setq list (cdr list)))
164 answer))
166 (defgroup cperl nil
167 "Major mode for editing Perl code."
168 :prefix "cperl-"
169 :group 'languages
170 :version "20.3")
172 (defgroup cperl-indentation-details nil
173 "Indentation."
174 :prefix "cperl-"
175 :group 'cperl)
177 (defgroup cperl-affected-by-hairy nil
178 "Variables affected by `cperl-hairy'."
179 :prefix "cperl-"
180 :group 'cperl)
182 (defgroup cperl-autoinsert-details nil
183 "Auto-insert tuneup."
184 :prefix "cperl-"
185 :group 'cperl)
187 (defgroup cperl-faces nil
188 "Fontification colors."
189 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
190 :prefix "cperl-"
191 :group 'cperl)
193 (defgroup cperl-speed nil
194 "Speed vs. validity tuneup."
195 :prefix "cperl-"
196 :group 'cperl)
198 (defgroup cperl-help-system nil
199 "Help system tuneup."
200 :prefix "cperl-"
201 :group 'cperl)
204 (defcustom cperl-extra-newline-before-brace nil
205 "*Non-nil means that if, elsif, while, until, else, for, foreach
206 and do constructs look like:
208 if ()
212 instead of:
214 if () {
216 :type 'boolean
217 :group 'cperl-autoinsert-details)
219 (defcustom cperl-extra-newline-before-brace-multiline
220 cperl-extra-newline-before-brace
221 "*Non-nil means the same as `cperl-extra-newline-before-brace', but
222 for constructs with multiline if/unless/while/until/for/foreach condition."
223 :type 'boolean
224 :group 'cperl-autoinsert-details)
226 (defcustom cperl-indent-level 2
227 "*Indentation of CPerl statements with respect to containing block."
228 :type 'integer
229 :group 'cperl-indentation-details)
231 ;; Is is not unusual to put both things like perl-indent-level and
232 ;; cperl-indent-level in the local variable section of a file. If only
233 ;; one of perl-mode and cperl-mode is in use, a warning will be issued
234 ;; about the variable. Autoload these here, so that no warning is
235 ;; issued when using either perl-mode or cperl-mode.
236 ;;;###autoload(put 'cperl-indent-level 'safe-local-variable 'integerp)
237 ;;;###autoload(put 'cperl-brace-offset 'safe-local-variable 'integerp)
238 ;;;###autoload(put 'cperl-continued-brace-offset 'safe-local-variable 'integerp)
239 ;;;###autoload(put 'cperl-label-offset 'safe-local-variable 'integerp)
240 ;;;###autoload(put 'cperl-continued-statement-offset 'safe-local-variable 'integerp)
241 ;;;###autoload(put 'cperl-extra-newline-before-brace 'safe-local-variable 'booleanp)
242 ;;;###autoload(put 'cperl-merge-trailing-else 'safe-local-variable 'booleanp)
244 (defcustom cperl-lineup-step nil
245 "*`cperl-lineup' will always lineup at multiple of this number.
246 If nil, the value of `cperl-indent-level' will be used."
247 :type '(choice (const nil) integer)
248 :group 'cperl-indentation-details)
250 (defcustom cperl-brace-imaginary-offset 0
251 "*Imagined indentation of a Perl open brace that actually follows a statement.
252 An open brace following other text is treated as if it were this far
253 to the right of the start of its line."
254 :type 'integer
255 :group 'cperl-indentation-details)
257 (defcustom cperl-brace-offset 0
258 "*Extra indentation for braces, compared with other text in same context."
259 :type 'integer
260 :group 'cperl-indentation-details)
261 (defcustom cperl-label-offset -2
262 "*Offset of CPerl label lines relative to usual indentation."
263 :type 'integer
264 :group 'cperl-indentation-details)
265 (defcustom cperl-min-label-indent 1
266 "*Minimal offset of CPerl label lines."
267 :type 'integer
268 :group 'cperl-indentation-details)
269 (defcustom cperl-continued-statement-offset 2
270 "*Extra indent for lines not starting new statements."
271 :type 'integer
272 :group 'cperl-indentation-details)
273 (defcustom cperl-continued-brace-offset 0
274 "*Extra indent for substatements that start with open-braces.
275 This is in addition to cperl-continued-statement-offset."
276 :type 'integer
277 :group 'cperl-indentation-details)
278 (defcustom cperl-close-paren-offset -1
279 "*Extra indent for substatements that start with close-parenthesis."
280 :type 'integer
281 :group 'cperl-indentation-details)
283 (defcustom cperl-indent-wrt-brace t
284 "*Non-nil means indent statements in if/etc block relative brace, not if/etc.
285 Versions 5.2 ... 5.20 behaved as if this were `nil'."
286 :type 'boolean
287 :group 'cperl-indentation-details)
289 (defcustom cperl-auto-newline nil
290 "*Non-nil means automatically newline before and after braces,
291 and after colons and semicolons, inserted in CPerl code. The following
292 \\[cperl-electric-backspace] will remove the inserted whitespace.
293 Insertion after colons requires both this variable and
294 `cperl-auto-newline-after-colon' set."
295 :type 'boolean
296 :group 'cperl-autoinsert-details)
298 (defcustom cperl-autoindent-on-semi nil
299 "*Non-nil means automatically indent after insertion of (semi)colon.
300 Active if `cperl-auto-newline' is false."
301 :type 'boolean
302 :group 'cperl-autoinsert-details)
304 (defcustom cperl-auto-newline-after-colon nil
305 "*Non-nil means automatically newline even after colons.
306 Subject to `cperl-auto-newline' setting."
307 :type 'boolean
308 :group 'cperl-autoinsert-details)
310 (defcustom cperl-tab-always-indent t
311 "*Non-nil means TAB in CPerl mode should always reindent the current line,
312 regardless of where in the line point is when the TAB command is used."
313 :type 'boolean
314 :group 'cperl-indentation-details)
316 (defcustom cperl-font-lock nil
317 "*Non-nil (and non-null) means CPerl buffers will use `font-lock-mode'.
318 Can be overwritten by `cperl-hairy' if nil."
319 :type '(choice (const null) boolean)
320 :group 'cperl-affected-by-hairy)
322 (defcustom cperl-electric-lbrace-space nil
323 "*Non-nil (and non-null) means { after $ should be preceded by ` '.
324 Can be overwritten by `cperl-hairy' if nil."
325 :type '(choice (const null) boolean)
326 :group 'cperl-affected-by-hairy)
328 (defcustom cperl-electric-parens-string "({[]})<"
329 "*String of parentheses that should be electric in CPerl.
330 Closing ones are electric only if the region is highlighted."
331 :type 'string
332 :group 'cperl-affected-by-hairy)
334 (defcustom cperl-electric-parens nil
335 "*Non-nil (and non-null) means parentheses should be electric in CPerl.
336 Can be overwritten by `cperl-hairy' if nil."
337 :type '(choice (const null) boolean)
338 :group 'cperl-affected-by-hairy)
340 (defvar zmacs-regions) ; Avoid warning
342 (defcustom cperl-electric-parens-mark
343 (and window-system
344 (or (and (boundp 'transient-mark-mode) ; For Emacs
345 transient-mark-mode)
346 (and (boundp 'zmacs-regions) ; For XEmacs
347 zmacs-regions)))
348 "*Not-nil means that electric parens look for active mark.
349 Default is yes if there is visual feedback on mark."
350 :type 'boolean
351 :group 'cperl-autoinsert-details)
353 (defcustom cperl-electric-linefeed nil
354 "*If true, LFD should be hairy in CPerl, otherwise C-c LFD is hairy.
355 In any case these two mean plain and hairy linefeeds together.
356 Can be overwritten by `cperl-hairy' if nil."
357 :type '(choice (const null) boolean)
358 :group 'cperl-affected-by-hairy)
360 (defcustom cperl-electric-keywords nil
361 "*Not-nil (and non-null) means keywords are electric in CPerl.
362 Can be overwritten by `cperl-hairy' if nil.
364 Uses `abbrev-mode' to do the expansion. If you want to use your
365 own abbrevs in cperl-mode, but do not want keywords to be
366 electric, you must redefine `cperl-mode-abbrev-table': do
367 \\[edit-abbrevs], search for `cperl-mode-abbrev-table', and, in
368 that paragraph, delete the words that appear at the ends of lines and
369 that begin with \"cperl-electric\".
371 :type '(choice (const null) boolean)
372 :group 'cperl-affected-by-hairy)
374 (defcustom cperl-electric-backspace-untabify t
375 "*Not-nil means electric-backspace will untabify in CPerl."
376 :type 'boolean
377 :group 'cperl-autoinsert-details)
379 (defcustom cperl-hairy nil
380 "*Not-nil means most of the bells and whistles are enabled in CPerl.
381 Affects: `cperl-font-lock', `cperl-electric-lbrace-space',
382 `cperl-electric-parens', `cperl-electric-linefeed', `cperl-electric-keywords',
383 `cperl-info-on-command-no-prompt', `cperl-clobber-lisp-bindings',
384 `cperl-lazy-help-time'."
385 :type 'boolean
386 :group 'cperl-affected-by-hairy)
388 (defcustom cperl-comment-column 32
389 "*Column to put comments in CPerl (use \\[cperl-indent] to lineup with code)."
390 :type 'integer
391 :group 'cperl-indentation-details)
393 (defcustom cperl-indent-comment-at-column-0 nil
394 "*Non-nil means that comment started at column 0 should be indentable."
395 :type 'boolean
396 :group 'cperl-indentation-details)
398 (defcustom cperl-vc-sccs-header '("($sccs) = ('%W\%' =~ /(\\d+(\\.\\d+)+)/) ;")
399 "*Special version of `vc-sccs-header' that is used in CPerl mode buffers."
400 :type '(repeat string)
401 :group 'cperl)
403 (defcustom cperl-vc-rcs-header '("($rcs) = (' $Id\$ ' =~ /(\\d+(\\.\\d+)+)/);")
404 "*Special version of `vc-rcs-header' that is used in CPerl mode buffers."
405 :type '(repeat string)
406 :group 'cperl)
408 ;; This became obsolete...
409 (defvar cperl-vc-header-alist nil)
410 (make-obsolete-variable
411 'cperl-vc-header-alist
412 "use cperl-vc-rcs-header or cperl-vc-sccs-header instead."
413 "22.1")
415 (defcustom cperl-clobber-mode-lists
416 (not
417 (and
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."
422 :type 'boolean
423 :group 'cperl)
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."
447 :type 'face
448 :group 'cperl-faces)
450 (defcustom cperl-pod-head-face 'font-lock-variable-name-face
451 "*Face for POD highlighting.
452 Font for POD headers."
453 :type 'face
454 :group 'cperl-faces)
456 (defcustom cperl-here-face 'font-lock-string-face
457 "*Face for here-docs highlighting."
458 :type 'face
459 :group 'cperl-faces)
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."
466 :type 'face
467 :version "21.1"
468 :group 'cperl-faces)
470 (defcustom cperl-pod-here-fontify '(featurep 'font-lock)
471 "*Not-nil after evaluation means to highlight POD and here-docs sections."
472 :type 'boolean
473 :group 'cperl-faces)
475 (defcustom cperl-fontify-m-as-s t
476 "*Not-nil means highlight 1arg regular expressions operators same as 2arg."
477 :type 'boolean
478 :group 'cperl-faces)
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."
486 :type 'boolean
487 :group 'cperl)
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]."
492 :type 'boolean
493 :group 'cperl-speed)
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'."
498 :type 'boolean
499 :group 'cperl-speed)
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
504 after reload."
505 :type 'boolean
506 :group 'cperl-speed)
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."
511 :type 'boolean
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."
521 :type 'boolean
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'."
527 :type 'string
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."
533 :type 'boolean
534 :group 'cperl-speed)
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."
539 :type 'boolean
540 :group 'cperl-speed)
542 (defcustom cperl-scan-files-regexp "\\.\\([pP][Llm]\\|xs\\)$"
543 "*Regexp to match files to scan when generating TAGS."
544 :type 'regexp
545 :group 'cperl)
547 (defcustom cperl-noscan-files-regexp
548 "/\\(\\.\\.?\\|SCCS\\|RCS\\|CVS\\|blib\\)$"
549 "*Regexp to match files/dirs to skip when generating TAGS."
550 :type 'regexp
551 :group 'cperl)
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."
561 :type 'boolean
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."
566 :type 'boolean
567 :group 'cperl)
569 (defcustom cperl-extra-perl-args ""
570 "*Extra arguments to use when starting Perl.
571 Currently used with `cperl-check-syntax' only."
572 :type 'string
573 :group 'cperl)
575 (defcustom cperl-message-electric-keyword t
576 "*Non-nil means that the `cperl-electric-keyword' prints a help message."
577 :type 'boolean
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."
590 :type 'boolean
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."
597 :type 'boolean
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."
603 :type 'boolean
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."
610 :type 'boolean
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 the `font-lock' routines for syntaxification."
617 :type '(choice (const message) boolean)
618 :group 'cperl-speed)
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."
624 :type 'boolean
625 :group 'cperl-speed)
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."
631 :type 'boolean
632 :group 'cperl-speed)
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)
651 (repeat symbol)))))
652 :group 'cperl-faces)
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."
670 :group 'cperl-faces)
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))
681 (t (:weight bold)))
682 "Font Lock mode face used to highlight array names."
683 :group 'cperl-faces)
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."
696 :group 'cperl-faces)
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
721 mode-compile.el.
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)
728 Get perl5-info from
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
749 \\[normal-mode]
751 In cases of more severe confusion sometimes it is helpful to do
753 \\[load-library] cperl-mode RET
754 \\[normal-mode]
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
793 braces.
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,
811 and on CPAN.
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
833 voice);
835 3) Everything is customizable, one-by-one or in a big sweep;
837 4) It has many easily-accessible \"tools\":
838 a) Can run program, check syntax, start debugger;
839 b) Can lineup vertically \"middles\" of rows, like `=' in
840 a = b;
841 cc = d;
842 c) Can insert spaces where this improves 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
867 while () {}
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\";
872 m) Can convert from
873 if (A) { B }
875 B if A;
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 algorithm 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-handling
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'
941 to nil.
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 syntactically 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 syntactically considered
974 as string literals
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-face' 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 (including 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' escape sequences with arguments (\\x \\23 \\p \\N)
997 and others match-a-char escape sequences
998 `font-lock-keyword-face' Capturing parens, and |
999 `font-lock-function-name-face' Special symbols: $ ^ . [ ] [^ ] (?{ }) (??{ })
1000 \"Range -\" in character classes
1001 `font-lock-builtin-face' \"Remaining\" 0-length constructs, multipliers
1002 ?+*{}, not-capturing parens, leading
1003 backslashes of escape sequences
1004 `font-lock-variable-name-face' Interpolated constructs, embedded code,
1005 POSIX classes (inside charclasses)
1006 `font-lock-comment-face' Embedded comments
1012 ;;; Portability stuff:
1014 (defmacro cperl-define-key (emacs-key definition &optional xemacs-key)
1015 `(define-key cperl-mode-map
1016 ,(if xemacs-key
1017 `(if (featurep 'xemacs) ,xemacs-key ,emacs-key)
1018 emacs-key)
1019 ,definition))
1021 (defvar cperl-del-back-ch
1022 (car (append (where-is-internal 'delete-backward-char)
1023 (where-is-internal 'backward-delete-char-untabify)))
1024 "Character generated by key bound to `delete-backward-char'.")
1026 (and (vectorp cperl-del-back-ch) (= (length cperl-del-back-ch) 1)
1027 (setq cperl-del-back-ch (aref cperl-del-back-ch 0)))
1029 (defun cperl-mark-active () (mark)) ; Avoid undefined warning
1030 (if (featurep 'xemacs)
1031 (progn
1032 ;; "Active regions" are on: use region only if active
1033 ;; "Active regions" are off: use region unconditionally
1034 (defun cperl-use-region-p ()
1035 (if zmacs-regions (mark) t)))
1036 (defun cperl-use-region-p ()
1037 (if transient-mark-mode mark-active t))
1038 (defun cperl-mark-active () mark-active))
1040 (defsubst cperl-enable-font-lock ()
1041 cperl-can-font-lock)
1043 (defun cperl-putback-char (c) ; Emacs 19
1044 (set 'unread-command-events (list c))) ; Avoid undefined warning
1046 (if (featurep 'xemacs)
1047 (defun cperl-putback-char (c) ; XEmacs >= 19.12
1048 (setq unread-command-events (list (eval '(character-to-event c))))))
1050 (or (fboundp 'uncomment-region)
1051 (defun uncomment-region (beg end)
1052 (interactive "r")
1053 (comment-region beg end -1)))
1055 (defvar cperl-do-not-fontify
1056 (if (string< emacs-version "19.30")
1057 'fontified
1058 'lazy-lock)
1059 "Text property which inhibits refontification.")
1061 (defsubst cperl-put-do-not-fontify (from to &optional post)
1062 ;; If POST, do not do it with postponed fontification
1063 (if (and post cperl-syntaxify-by-font-lock)
1065 (put-text-property (max (point-min) (1- from))
1066 to cperl-do-not-fontify t)))
1068 (defcustom cperl-mode-hook nil
1069 "Hook run by CPerl mode."
1070 :type 'hook
1071 :group 'cperl)
1073 (defvar cperl-syntax-state nil)
1074 (defvar cperl-syntax-done-to nil)
1075 (defvar cperl-emacs-can-parse (> (length (save-excursion
1076 (parse-partial-sexp (point) (point)))) 9))
1078 ;; Make customization possible "in reverse"
1079 (defsubst cperl-val (symbol &optional default hairy)
1080 (cond
1081 ((eq (symbol-value symbol) 'null) default)
1082 (cperl-hairy (or hairy t))
1083 (t (symbol-value symbol))))
1086 (defun cperl-make-indent (column &optional minimum keep)
1087 "Makes indent of the current line the requested amount.
1088 Unless KEEP, removes the old indentation. Works around a bug in ancient
1089 versions of Emacs."
1090 (let ((prop (get-text-property (point) 'syntax-type)))
1091 (or keep
1092 (delete-horizontal-space))
1093 (indent-to column minimum)
1094 ;; In old versions (e.g., 19.33) `indent-to' would not inherit properties
1095 (and prop
1096 (> (current-column) 0)
1097 (save-excursion
1098 (beginning-of-line)
1099 (or (get-text-property (point) 'syntax-type)
1100 (and (looking-at "\\=[ \t]")
1101 (put-text-property (point) (match-end 0)
1102 'syntax-type prop)))))))
1104 ;;; Probably it is too late to set these guys already, but it can help later:
1106 ;;;(and cperl-clobber-mode-lists
1107 ;;;(setq auto-mode-alist
1108 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist ))
1109 ;;;(and (boundp 'interpreter-mode-alist)
1110 ;;; (setq interpreter-mode-alist (append interpreter-mode-alist
1111 ;;; '(("miniperl" . perl-mode))))))
1112 (eval-when-compile
1113 (mapc (lambda (p)
1114 (condition-case nil
1115 (require p)
1116 (error nil)))
1117 '(imenu easymenu etags timer man info))
1118 (if (fboundp 'ps-extend-face-list)
1119 (defmacro cperl-ps-extend-face-list (arg)
1120 `(ps-extend-face-list ,arg))
1121 (defmacro cperl-ps-extend-face-list (arg)
1122 `(error "This version of Emacs has no `ps-extend-face-list'")))
1123 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs,
1124 ;; macros instead of defsubsts don't work on Emacs, so we do the
1125 ;; expansion manually. Any other suggestions?
1126 (require 'cl))
1128 (defvar cperl-mode-abbrev-table nil
1129 "Abbrev table in use in CPerl mode buffers.")
1131 (add-hook 'edit-var-mode-alist '(perl-mode (regexp . "^cperl-")))
1133 (defvar cperl-mode-map () "Keymap used in CPerl mode.")
1135 (if cperl-mode-map nil
1136 (setq cperl-mode-map (make-sparse-keymap))
1137 (cperl-define-key "{" 'cperl-electric-lbrace)
1138 (cperl-define-key "[" 'cperl-electric-paren)
1139 (cperl-define-key "(" 'cperl-electric-paren)
1140 (cperl-define-key "<" 'cperl-electric-paren)
1141 (cperl-define-key "}" 'cperl-electric-brace)
1142 (cperl-define-key "]" 'cperl-electric-rparen)
1143 (cperl-define-key ")" 'cperl-electric-rparen)
1144 (cperl-define-key ";" 'cperl-electric-semi)
1145 (cperl-define-key ":" 'cperl-electric-terminator)
1146 (cperl-define-key "\C-j" 'newline-and-indent)
1147 (cperl-define-key "\C-c\C-j" 'cperl-linefeed)
1148 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless)
1149 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline)
1150 (cperl-define-key "\C-c\C-k" 'cperl-toggle-abbrev)
1151 (cperl-define-key "\C-c\C-w" 'cperl-toggle-construct-fix)
1152 (cperl-define-key "\C-c\C-f" 'auto-fill-mode)
1153 (cperl-define-key "\C-c\C-e" 'cperl-toggle-electric)
1154 (cperl-define-key "\C-c\C-b" 'cperl-find-bad-style)
1155 (cperl-define-key "\C-c\C-p" 'cperl-pod-spell)
1156 (cperl-define-key "\C-c\C-d" 'cperl-here-doc-spell)
1157 (cperl-define-key "\C-c\C-n" 'cperl-narrow-to-here-doc)
1158 (cperl-define-key "\C-c\C-v" 'cperl-next-interpolated-REx)
1159 (cperl-define-key "\C-c\C-x" 'cperl-next-interpolated-REx-0)
1160 (cperl-define-key "\C-c\C-y" 'cperl-next-interpolated-REx-1)
1161 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp)
1162 (cperl-define-key "\C-c\C-hp" 'cperl-perldoc)
1163 (cperl-define-key "\C-c\C-hP" 'cperl-perldoc-at-point)
1164 (cperl-define-key "\e\C-q" 'cperl-indent-exp) ; Usually not bound
1165 (cperl-define-key [?\C-\M-\|] 'cperl-lineup
1166 [(control meta |)])
1167 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph)
1168 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment)
1169 (cperl-define-key "\177" 'cperl-electric-backspace)
1170 (cperl-define-key "\t" 'cperl-indent-command)
1171 ;; don't clobber the backspace binding:
1172 (cperl-define-key "\C-c\C-hF" 'cperl-info-on-command
1173 [(control c) (control h) F])
1174 (if (cperl-val 'cperl-clobber-lisp-bindings)
1175 (progn
1176 (cperl-define-key "\C-hf"
1177 ;;(concat (char-to-string help-char) "f") ; does not work
1178 'cperl-info-on-command
1179 [(control h) f])
1180 (cperl-define-key "\C-hv"
1181 ;;(concat (char-to-string help-char) "v") ; does not work
1182 'cperl-get-help
1183 [(control h) v])
1184 (cperl-define-key "\C-c\C-hf"
1185 ;;(concat (char-to-string help-char) "f") ; does not work
1186 (key-binding "\C-hf")
1187 [(control c) (control h) f])
1188 (cperl-define-key "\C-c\C-hv"
1189 ;;(concat (char-to-string help-char) "v") ; does not work
1190 (key-binding "\C-hv")
1191 [(control c) (control h) v]))
1192 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-current-command
1193 [(control c) (control h) f])
1194 (cperl-define-key "\C-c\C-hv"
1195 ;;(concat (char-to-string help-char) "v") ; does not work
1196 'cperl-get-help
1197 [(control c) (control h) v]))
1198 (if (and (featurep 'xemacs)
1199 (<= emacs-minor-version 11) (<= emacs-major-version 19))
1200 (progn
1201 ;; substitute-key-definition is usefulness-deenhanced...
1202 ;;;;;(cperl-define-key "\M-q" 'cperl-fill-paragraph)
1203 (cperl-define-key "\e;" 'cperl-indent-for-comment)
1204 (cperl-define-key "\e\C-\\" 'cperl-indent-region))
1205 (or (boundp 'fill-paragraph-function)
1206 (substitute-key-definition
1207 'fill-paragraph 'cperl-fill-paragraph
1208 cperl-mode-map global-map))
1209 (substitute-key-definition
1210 'indent-sexp 'cperl-indent-exp
1211 cperl-mode-map global-map)
1212 (substitute-key-definition
1213 'indent-region 'cperl-indent-region
1214 cperl-mode-map global-map)
1215 (substitute-key-definition
1216 'indent-for-comment 'cperl-indent-for-comment
1217 cperl-mode-map global-map)))
1219 (defvar cperl-menu)
1220 (defvar cperl-lazy-installed)
1221 (defvar cperl-old-style nil)
1222 (condition-case nil
1223 (progn
1224 (require 'easymenu)
1225 (easy-menu-define
1226 cperl-menu cperl-mode-map "Menu for CPerl mode"
1227 '("Perl"
1228 ["Beginning of function" beginning-of-defun t]
1229 ["End of function" end-of-defun t]
1230 ["Mark function" mark-defun t]
1231 ["Indent expression" cperl-indent-exp t]
1232 ["Fill paragraph/comment" fill-paragraph t]
1233 "----"
1234 ["Line up a construction" cperl-lineup (cperl-use-region-p)]
1235 ["Invert if/unless/while etc" cperl-invert-if-unless t]
1236 ("Regexp"
1237 ["Beautify" cperl-beautify-regexp
1238 cperl-use-syntax-table-text-property]
1239 ["Beautify one level deep" (cperl-beautify-regexp 1)
1240 cperl-use-syntax-table-text-property]
1241 ["Beautify a group" cperl-beautify-level
1242 cperl-use-syntax-table-text-property]
1243 ["Beautify a group one level deep" (cperl-beautify-level 1)
1244 cperl-use-syntax-table-text-property]
1245 ["Contract a group" cperl-contract-level
1246 cperl-use-syntax-table-text-property]
1247 ["Contract groups" cperl-contract-levels
1248 cperl-use-syntax-table-text-property]
1249 "----"
1250 ["Find next interpolated" cperl-next-interpolated-REx
1251 (next-single-property-change (point-min) 'REx-interpolated)]
1252 ["Find next interpolated (no //o)"
1253 cperl-next-interpolated-REx-0
1254 (or (text-property-any (point-min) (point-max) 'REx-interpolated t)
1255 (text-property-any (point-min) (point-max) 'REx-interpolated 1))]
1256 ["Find next interpolated (neither //o nor whole-REx)"
1257 cperl-next-interpolated-REx-1
1258 (text-property-any (point-min) (point-max) 'REx-interpolated t)])
1259 ["Insert spaces if needed to fix style" cperl-find-bad-style t]
1260 ["Refresh \"hard\" constructions" cperl-find-pods-heres t]
1261 "----"
1262 ["Indent region" cperl-indent-region (cperl-use-region-p)]
1263 ["Comment region" cperl-comment-region (cperl-use-region-p)]
1264 ["Uncomment region" cperl-uncomment-region (cperl-use-region-p)]
1265 "----"
1266 ["Run" mode-compile (fboundp 'mode-compile)]
1267 ["Kill" mode-compile-kill (and (fboundp 'mode-compile-kill)
1268 (get-buffer "*compilation*"))]
1269 ["Next error" next-error (get-buffer "*compilation*")]
1270 ["Check syntax" cperl-check-syntax (fboundp 'mode-compile)]
1271 "----"
1272 ["Debugger" cperl-db t]
1273 "----"
1274 ("Tools"
1275 ["Imenu" imenu (fboundp 'imenu)]
1276 ["Imenu on Perl Info" cperl-imenu-on-info (featurep 'imenu)]
1277 "----"
1278 ["Ispell PODs" cperl-pod-spell
1279 ;; Better not to update syntaxification here:
1280 ;; debugging syntaxification can be broken by this???
1282 (get-text-property (point-min) 'in-pod)
1283 (< (progn
1284 (and cperl-syntaxify-for-menu
1285 (cperl-update-syntaxification (point-max) (point-max)))
1286 (next-single-property-change (point-min) 'in-pod nil (point-max)))
1287 (point-max)))]
1288 ["Ispell HERE-DOCs" cperl-here-doc-spell
1289 (< (progn
1290 (and cperl-syntaxify-for-menu
1291 (cperl-update-syntaxification (point-max) (point-max)))
1292 (next-single-property-change (point-min) 'here-doc-group nil (point-max)))
1293 (point-max))]
1294 ["Narrow to this HERE-DOC" cperl-narrow-to-here-doc
1295 (eq 'here-doc (progn
1296 (and cperl-syntaxify-for-menu
1297 (cperl-update-syntaxification (point) (point)))
1298 (get-text-property (point) 'syntax-type)))]
1299 ["Select this HERE-DOC or POD section"
1300 cperl-select-this-pod-or-here-doc
1301 (memq (progn
1302 (and cperl-syntaxify-for-menu
1303 (cperl-update-syntaxification (point) (point)))
1304 (get-text-property (point) 'syntax-type))
1305 '(here-doc pod))]
1306 "----"
1307 ["CPerl pretty print (experimental)" cperl-ps-print
1308 (fboundp 'ps-extend-face-list)]
1309 "----"
1310 ["Syntaxify region" cperl-find-pods-heres-region
1311 (cperl-use-region-p)]
1312 ["Profile syntaxification" cperl-time-fontification t]
1313 ["Debug errors in delayed fontification" cperl-emulate-lazy-lock t]
1314 ["Debug unwind for syntactic scan" cperl-toggle-set-debug-unwind t]
1315 ["Debug backtrace on syntactic scan (BEWARE!!!)"
1316 (cperl-toggle-set-debug-unwind nil t) t]
1317 "----"
1318 ["Class Hierarchy from TAGS" cperl-tags-hier-init t]
1319 ;;["Update classes" (cperl-tags-hier-init t) tags-table-list]
1320 ("Tags"
1321 ;;; ["Create tags for current file" cperl-etags t]
1322 ;;; ["Add tags for current file" (cperl-etags t) t]
1323 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t]
1324 ;;; ["Add tags for Perl files in directory" (cperl-etags t t) t]
1325 ;;; ["Create tags for Perl files in (sub)directories"
1326 ;;; (cperl-etags nil 'recursive) t]
1327 ;;; ["Add tags for Perl files in (sub)directories"
1328 ;;; (cperl-etags t 'recursive) t])
1329 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer)
1330 ["Create tags for current file" (cperl-write-tags nil t) t]
1331 ["Add tags for current file" (cperl-write-tags) t]
1332 ["Create tags for Perl files in directory"
1333 (cperl-write-tags nil t nil t) t]
1334 ["Add tags for Perl files in directory"
1335 (cperl-write-tags nil nil nil t) t]
1336 ["Create tags for Perl files in (sub)directories"
1337 (cperl-write-tags nil t t t) t]
1338 ["Add tags for Perl files in (sub)directories"
1339 (cperl-write-tags nil nil t t) t]))
1340 ("Perl docs"
1341 ["Define word at point" imenu-go-find-at-position
1342 (fboundp 'imenu-go-find-at-position)]
1343 ["Help on function" cperl-info-on-command t]
1344 ["Help on function at point" cperl-info-on-current-command t]
1345 ["Help on symbol at point" cperl-get-help t]
1346 ["Perldoc" cperl-perldoc t]
1347 ["Perldoc on word at point" cperl-perldoc-at-point t]
1348 ["View manpage of POD in this file" cperl-build-manpage t]
1349 ["Auto-help on" cperl-lazy-install
1350 (and (fboundp 'run-with-idle-timer)
1351 (not cperl-lazy-installed))]
1352 ["Auto-help off" cperl-lazy-unstall
1353 (and (fboundp 'run-with-idle-timer)
1354 cperl-lazy-installed)])
1355 ("Toggle..."
1356 ["Auto newline" cperl-toggle-auto-newline t]
1357 ["Electric parens" cperl-toggle-electric t]
1358 ["Electric keywords" cperl-toggle-abbrev t]
1359 ["Fix whitespace on indent" cperl-toggle-construct-fix t]
1360 ["Auto-help on Perl constructs" cperl-toggle-autohelp t]
1361 ["Auto fill" auto-fill-mode t])
1362 ("Indent styles..."
1363 ["CPerl" (cperl-set-style "CPerl") t]
1364 ["PerlStyle" (cperl-set-style "PerlStyle") t]
1365 ["GNU" (cperl-set-style "GNU") t]
1366 ["C++" (cperl-set-style "C++") t]
1367 ["K&R" (cperl-set-style "K&R") t]
1368 ["BSD" (cperl-set-style "BSD") t]
1369 ["Whitesmith" (cperl-set-style "Whitesmith") t]
1370 ["Memorize Current" (cperl-set-style "Current") t]
1371 ["Memorized" (cperl-set-style-back) cperl-old-style])
1372 ("Micro-docs"
1373 ["Tips" (describe-variable 'cperl-tips) t]
1374 ["Problems" (describe-variable 'cperl-problems) t]
1375 ["Speed" (describe-variable 'cperl-speed) t]
1376 ["Praise" (describe-variable 'cperl-praise) t]
1377 ["Faces" (describe-variable 'cperl-tips-faces) t]
1378 ["CPerl mode" (describe-function 'cperl-mode) t]
1379 ["CPerl version"
1380 (message "The version of master-file for this CPerl is %s-Emacs"
1381 cperl-version) t]))))
1382 (error nil))
1384 (autoload 'c-macro-expand "cmacexp"
1385 "Display the result of expanding all C macros occurring in the region.
1386 The expansion is entirely correct because it uses the C preprocessor."
1389 ;;; These two must be unwound, otherwise take exponential time
1390 (defconst cperl-maybe-white-and-comment-rex "[ \t\n]*\\(#[^\n]*\n[ \t\n]*\\)*"
1391 "Regular expression to match optional whitespace with interspersed comments.
1392 Should contain exactly one group.")
1394 ;;; This one is tricky to unwind; still very inefficient...
1395 (defconst cperl-white-and-comment-rex "\\([ \t\n]\\|#[^\n]*\n\\)+"
1396 "Regular expression to match whitespace with interspersed comments.
1397 Should contain exactly one group.")
1400 ;;; Is incorporated in `cperl-imenu--function-name-regexp-perl'
1401 ;;; `cperl-outline-regexp', `defun-prompt-regexp'.
1402 ;;; Details of groups in this may be used in several functions; see comments
1403 ;;; near mentioned above variable(s)...
1404 ;;; sub($$):lvalue{} sub:lvalue{} Both allowed...
1405 (defsubst cperl-after-sub-regexp (named attr) ; 9 groups without attr...
1406 "Match the text after `sub' in a subroutine declaration.
1407 If NAMED is nil, allows anonymous subroutines. Matches up to the first \":\"
1408 of attributes (if present), or end of the name or prototype (whatever is
1409 the last)."
1410 (concat ; Assume n groups before this...
1411 "\\(" ; n+1=name-group
1412 cperl-white-and-comment-rex ; n+2=pre-name
1413 "\\(::[a-zA-Z_0-9:']+\\|[a-zA-Z_'][a-zA-Z_0-9:']*\\)" ; n+3=name
1414 "\\)" ; END n+1=name-group
1415 (if named "" "?")
1416 "\\(" ; n+4=proto-group
1417 cperl-maybe-white-and-comment-rex ; n+5=pre-proto
1418 "\\(([^()]*)\\)" ; n+6=prototype
1419 "\\)?" ; END n+4=proto-group
1420 "\\(" ; n+7=attr-group
1421 cperl-maybe-white-and-comment-rex ; n+8=pre-attr
1422 "\\(" ; n+9=start-attr
1424 (if attr (concat
1425 "\\("
1426 cperl-maybe-white-and-comment-rex ; whitespace-comments
1427 "\\(\\sw\\|_\\)+" ; attr-name
1428 ;; attr-arg (1 level of internal parens allowed!)
1429 "\\((\\(\\\\.\\|[^\\\\()]\\|([^\\\\()]*)\\)*)\\)?"
1430 "\\(" ; optional : (XXX allows trailing???)
1431 cperl-maybe-white-and-comment-rex ; whitespace-comments
1432 ":\\)?"
1433 "\\)+")
1434 "[^:]")
1435 "\\)"
1436 "\\)?" ; END n+6=proto-group
1439 ;;; Details of groups in this are used in `cperl-imenu--create-perl-index'
1440 ;;; and `cperl-outline-level'.
1441 ;;;; Was: 2=sub|package; now 2=package-group, 5=package-name 8=sub-name (+3)
1442 (defvar cperl-imenu--function-name-regexp-perl
1443 (concat
1444 "^\\(" ; 1 = all
1445 "\\([ \t]*package" ; 2 = package-group
1446 "\\(" ; 3 = package-name-group
1447 cperl-white-and-comment-rex ; 4 = pre-package-name
1448 "\\([a-zA-Z_0-9:']+\\)\\)?\\)" ; 5 = package-name
1449 "\\|"
1450 "[ \t]*sub"
1451 (cperl-after-sub-regexp 'named nil) ; 8=name 11=proto 14=attr-start
1452 cperl-maybe-white-and-comment-rex ; 15=pre-block
1453 "\\|"
1454 "=head\\([1-4]\\)[ \t]+" ; 16=level
1455 "\\([^\n]+\\)$" ; 17=text
1456 "\\)"))
1458 (defvar cperl-outline-regexp
1459 (concat cperl-imenu--function-name-regexp-perl "\\|" "\\`"))
1461 (defvar cperl-mode-syntax-table nil
1462 "Syntax table in use in CPerl mode buffers.")
1464 (defvar cperl-string-syntax-table nil
1465 "Syntax table in use in CPerl mode string-like chunks.")
1467 (defsubst cperl-1- (p)
1468 (max (point-min) (1- p)))
1470 (defsubst cperl-1+ (p)
1471 (min (point-max) (1+ p)))
1473 (if cperl-mode-syntax-table
1475 (setq cperl-mode-syntax-table (make-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 ?& "." cperl-mode-syntax-table)
1486 (modify-syntax-entry ?$ "\\" cperl-mode-syntax-table)
1487 (modify-syntax-entry ?\n ">" cperl-mode-syntax-table)
1488 (modify-syntax-entry ?# "<" cperl-mode-syntax-table)
1489 (modify-syntax-entry ?' "\"" cperl-mode-syntax-table)
1490 (modify-syntax-entry ?` "\"" cperl-mode-syntax-table)
1491 (if cperl-under-as-char
1492 (modify-syntax-entry ?_ "w" cperl-mode-syntax-table))
1493 (modify-syntax-entry ?: "_" cperl-mode-syntax-table)
1494 (modify-syntax-entry ?| "." cperl-mode-syntax-table)
1495 (setq cperl-string-syntax-table (copy-syntax-table cperl-mode-syntax-table))
1496 (modify-syntax-entry ?$ "." cperl-string-syntax-table)
1497 (modify-syntax-entry ?\{ "." cperl-string-syntax-table)
1498 (modify-syntax-entry ?\} "." cperl-string-syntax-table)
1499 (modify-syntax-entry ?\" "." cperl-string-syntax-table)
1500 (modify-syntax-entry ?' "." cperl-string-syntax-table)
1501 (modify-syntax-entry ?` "." cperl-string-syntax-table)
1502 (modify-syntax-entry ?# "." cperl-string-syntax-table)) ; (?# comment )
1506 (defvar cperl-faces-init nil)
1507 ;; Fix for msb.el
1508 (defvar cperl-msb-fixed nil)
1509 (defvar cperl-use-major-mode 'cperl-mode)
1510 (defvar cperl-font-lock-multiline-start nil)
1511 (defvar cperl-font-lock-multiline nil)
1512 (defvar cperl-font-locking nil)
1514 ;; NB as it stands the code in cperl-mode assumes this only has one
1515 ;; element. If XEmacs 19 support were dropped, this could all be simplified.
1516 (defvar cperl-compilation-error-regexp-alist
1517 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORKS).
1518 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]"
1519 2 3))
1520 "Alist that specifies how to match errors in perl output.")
1522 (defvar compilation-error-regexp-alist)
1524 ;;;###autoload
1525 (define-derived-mode cperl-mode prog-mode "CPerl"
1526 "Major mode for editing Perl code.
1527 Expression and list commands understand all C brackets.
1528 Tab indents for Perl code.
1529 Paragraphs are separated by blank lines only.
1530 Delete converts tabs to spaces as it moves back.
1532 Various characters in Perl almost always come in pairs: {}, (), [],
1533 sometimes <>. When the user types the first, she gets the second as
1534 well, with optional special formatting done on {}. (Disabled by
1535 default.) You can always quote (with \\[quoted-insert]) the left
1536 \"paren\" to avoid the expansion. The processing of < is special,
1537 since most the time you mean \"less\". CPerl mode tries to guess
1538 whether you want to type pair <>, and inserts is if it
1539 appropriate. You can set `cperl-electric-parens-string' to the string that
1540 contains the parens from the above list you want to be electrical.
1541 Electricity of parens is controlled by `cperl-electric-parens'.
1542 You may also set `cperl-electric-parens-mark' to have electric parens
1543 look for active mark and \"embrace\" a region if possible.'
1545 CPerl mode provides expansion of the Perl control constructs:
1547 if, else, elsif, unless, while, until, continue, do,
1548 for, foreach, formy and foreachmy.
1550 and POD directives (Disabled by default, see `cperl-electric-keywords'.)
1552 The user types the keyword immediately followed by a space, which
1553 causes the construct to be expanded, and the point is positioned where
1554 she is most likely to want to be. eg. when the user types a space
1555 following \"if\" the following appears in the buffer: if () { or if ()
1556 } { } and the cursor is between the parentheses. The user can then
1557 type some boolean expression within the parens. Having done that,
1558 typing \\[cperl-linefeed] places you - appropriately indented - on a
1559 new line between the braces (if you typed \\[cperl-linefeed] in a POD
1560 directive line, then appropriate number of new lines is inserted).
1562 If CPerl decides that you want to insert \"English\" style construct like
1564 bite if angry;
1566 it will not do any expansion. See also help on variable
1567 `cperl-extra-newline-before-brace'. (Note that one can switch the
1568 help message on expansion by setting `cperl-message-electric-keyword'
1569 to nil.)
1571 \\[cperl-linefeed] is a convenience replacement for typing carriage
1572 return. It places you in the next line with proper indentation, or if
1573 you type it inside the inline block of control construct, like
1575 foreach (@lines) {print; print}
1577 and you are on a boundary of a statement inside braces, it will
1578 transform the construct into a multiline and will place you into an
1579 appropriately indented blank line. If you need a usual
1580 `newline-and-indent' behavior, it is on \\[newline-and-indent],
1581 see documentation on `cperl-electric-linefeed'.
1583 Use \\[cperl-invert-if-unless] to change a construction of the form
1585 if (A) { B }
1587 into
1589 B if A;
1591 \\{cperl-mode-map}
1593 Setting the variable `cperl-font-lock' to t switches on font-lock-mode
1594 \(even with older Emacsen), `cperl-electric-lbrace-space' to t switches
1595 on electric space between $ and {, `cperl-electric-parens-string' is
1596 the string that contains parentheses that should be electric in CPerl
1597 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'),
1598 setting `cperl-electric-keywords' enables electric expansion of
1599 control structures in CPerl. `cperl-electric-linefeed' governs which
1600 one of two linefeed behavior is preferable. You can enable all these
1601 options simultaneously (recommended mode of use) by setting
1602 `cperl-hairy' to t. In this case you can switch separate options off
1603 by setting them to `null'. Note that one may undo the extra
1604 whitespace inserted by semis and braces in `auto-newline'-mode by
1605 consequent \\[cperl-electric-backspace].
1607 If your site has perl5 documentation in info format, you can use commands
1608 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it.
1609 These keys run commands `cperl-info-on-current-command' and
1610 `cperl-info-on-command', which one is which is controlled by variable
1611 `cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings'
1612 \(in turn affected by `cperl-hairy').
1614 Even if you have no info-format documentation, short one-liner-style
1615 help is available on \\[cperl-get-help], and one can run perldoc or
1616 man via menu.
1618 It is possible to show this help automatically after some idle time.
1619 This is regulated by variable `cperl-lazy-help-time'. Default with
1620 `cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5
1621 secs idle time . It is also possible to switch this on/off from the
1622 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'.
1624 Use \\[cperl-lineup] to vertically lineup some construction - put the
1625 beginning of the region at the start of construction, and make region
1626 span the needed amount of lines.
1628 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify',
1629 `cperl-pod-face', `cperl-pod-head-face' control processing of POD and
1630 here-docs sections. With capable Emaxen results of scan are used
1631 for indentation too, otherwise they are used for highlighting only.
1633 Variables controlling indentation style:
1634 `cperl-tab-always-indent'
1635 Non-nil means TAB in CPerl mode should always reindent the current line,
1636 regardless of where in the line point is when the TAB command is used.
1637 `cperl-indent-left-aligned-comments'
1638 Non-nil means that the comment starting in leftmost column should indent.
1639 `cperl-auto-newline'
1640 Non-nil means automatically newline before and after braces,
1641 and after colons and semicolons, inserted in Perl code. The following
1642 \\[cperl-electric-backspace] will remove the inserted whitespace.
1643 Insertion after colons requires both this variable and
1644 `cperl-auto-newline-after-colon' set.
1645 `cperl-auto-newline-after-colon'
1646 Non-nil means automatically newline even after colons.
1647 Subject to `cperl-auto-newline' setting.
1648 `cperl-indent-level'
1649 Indentation of Perl statements within surrounding block.
1650 The surrounding block's indentation is the indentation
1651 of the line on which the open-brace appears.
1652 `cperl-continued-statement-offset'
1653 Extra indentation given to a substatement, such as the
1654 then-clause of an if, or body of a while, or just a statement continuation.
1655 `cperl-continued-brace-offset'
1656 Extra indentation given to a brace that starts a substatement.
1657 This is in addition to `cperl-continued-statement-offset'.
1658 `cperl-brace-offset'
1659 Extra indentation for line if it starts with an open brace.
1660 `cperl-brace-imaginary-offset'
1661 An open brace following other text is treated as if it the line started
1662 this far to the right of the actual line indentation.
1663 `cperl-label-offset'
1664 Extra indentation for line that is a label.
1665 `cperl-min-label-indent'
1666 Minimal indentation for line that is a label.
1668 Settings for classic indent-styles: K&R BSD=C++ GNU PerlStyle=Whitesmith
1669 `cperl-indent-level' 5 4 2 4
1670 `cperl-brace-offset' 0 0 0 0
1671 `cperl-continued-brace-offset' -5 -4 0 0
1672 `cperl-label-offset' -5 -4 -2 -4
1673 `cperl-continued-statement-offset' 5 4 2 4
1675 CPerl knows several indentation styles, and may bulk set the
1676 corresponding variables. Use \\[cperl-set-style] to do this. Use
1677 \\[cperl-set-style-back] to restore the memorized preexisting values
1678 \(both available from menu). See examples in `cperl-style-examples'.
1680 Part of the indentation style is how different parts of if/elsif/else
1681 statements are broken into lines; in CPerl, this is reflected on how
1682 templates for these constructs are created (controlled by
1683 `cperl-extra-newline-before-brace'), and how reflow-logic should treat
1684 \"continuation\" blocks of else/elsif/continue, controlled by the same
1685 variable, and by `cperl-extra-newline-before-brace-multiline',
1686 `cperl-merge-trailing-else', `cperl-indent-region-fix-constructs'.
1688 If `cperl-indent-level' is 0, the statement after opening brace in
1689 column 0 is indented on
1690 `cperl-brace-offset'+`cperl-continued-statement-offset'.
1692 Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook'
1693 with no args.
1695 DO NOT FORGET to read micro-docs (available from `Perl' menu)
1696 or as help on variables `cperl-tips', `cperl-problems',
1697 `cperl-praise', `cperl-speed'."
1698 (if (cperl-val 'cperl-electric-linefeed)
1699 (progn
1700 (local-set-key "\C-J" 'cperl-linefeed)
1701 (local-set-key "\C-C\C-J" 'newline-and-indent)))
1702 (if (and
1703 (cperl-val 'cperl-clobber-lisp-bindings)
1704 (cperl-val 'cperl-info-on-command-no-prompt))
1705 (progn
1706 ;; don't clobber the backspace binding:
1707 (cperl-define-key "\C-hf" 'cperl-info-on-current-command [(control h) f])
1708 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command
1709 [(control c) (control h) f])))
1710 (let ((prev-a-c abbrevs-changed))
1711 (define-abbrev-table 'cperl-mode-abbrev-table '(
1712 ("if" "if" cperl-electric-keyword 0)
1713 ("elsif" "elsif" cperl-electric-keyword 0)
1714 ("while" "while" cperl-electric-keyword 0)
1715 ("until" "until" cperl-electric-keyword 0)
1716 ("unless" "unless" cperl-electric-keyword 0)
1717 ("else" "else" cperl-electric-else 0)
1718 ("continue" "continue" cperl-electric-else 0)
1719 ("for" "for" cperl-electric-keyword 0)
1720 ("foreach" "foreach" cperl-electric-keyword 0)
1721 ("formy" "formy" cperl-electric-keyword 0)
1722 ("foreachmy" "foreachmy" cperl-electric-keyword 0)
1723 ("do" "do" cperl-electric-keyword 0)
1724 ("=pod" "=pod" cperl-electric-pod 0)
1725 ("=over" "=over" cperl-electric-pod 0)
1726 ("=head1" "=head1" cperl-electric-pod 0)
1727 ("=head2" "=head2" cperl-electric-pod 0)
1728 ("pod" "pod" cperl-electric-pod 0)
1729 ("over" "over" cperl-electric-pod 0)
1730 ("head1" "head1" cperl-electric-pod 0)
1731 ("head2" "head2" cperl-electric-pod 0)))
1732 (setq abbrevs-changed prev-a-c))
1733 (setq local-abbrev-table cperl-mode-abbrev-table)
1734 (if (cperl-val 'cperl-electric-keywords)
1735 (abbrev-mode 1))
1736 (set-syntax-table cperl-mode-syntax-table)
1737 ;; Until Emacs is multi-threaded, we do not actually need it local:
1738 (make-local-variable 'cperl-font-lock-multiline-start)
1739 (make-local-variable 'cperl-font-locking)
1740 (make-local-variable 'outline-regexp)
1741 ;; (setq outline-regexp imenu-example--function-name-regexp-perl)
1742 (setq outline-regexp cperl-outline-regexp)
1743 (make-local-variable 'outline-level)
1744 (setq outline-level 'cperl-outline-level)
1745 (make-local-variable 'paragraph-start)
1746 (setq paragraph-start (concat "^$\\|" page-delimiter))
1747 (make-local-variable 'paragraph-separate)
1748 (setq paragraph-separate paragraph-start)
1749 (make-local-variable 'paragraph-ignore-fill-prefix)
1750 (setq paragraph-ignore-fill-prefix t)
1751 (if (featurep 'xemacs)
1752 (progn
1753 (make-local-variable 'paren-backwards-message)
1754 (set 'paren-backwards-message t)))
1755 (make-local-variable 'indent-line-function)
1756 (setq indent-line-function 'cperl-indent-line)
1757 (make-local-variable 'require-final-newline)
1758 (setq require-final-newline mode-require-final-newline)
1759 (make-local-variable 'comment-start)
1760 (setq comment-start "# ")
1761 (make-local-variable 'comment-end)
1762 (setq comment-end "")
1763 (make-local-variable 'comment-column)
1764 (setq comment-column cperl-comment-column)
1765 (make-local-variable 'comment-start-skip)
1766 (setq comment-start-skip "#+ *")
1767 (make-local-variable 'defun-prompt-regexp)
1768 ;;; "[ \t]*sub"
1769 ;;; (cperl-after-sub-regexp 'named nil) ; 8=name 11=proto 14=attr-start
1770 ;;; cperl-maybe-white-and-comment-rex ; 15=pre-block
1771 (setq defun-prompt-regexp
1772 (concat "^[ \t]*\\(sub"
1773 (cperl-after-sub-regexp 'named 'attr-groups)
1774 "\\|" ; per toke.c
1775 "\\(BEGIN\\|CHECK\\|INIT\\|END\\|AUTOLOAD\\|DESTROY\\)"
1776 "\\)"
1777 cperl-maybe-white-and-comment-rex))
1778 (make-local-variable 'comment-indent-function)
1779 (setq comment-indent-function 'cperl-comment-indent)
1780 (and (boundp 'fill-paragraph-function)
1781 (progn
1782 (make-local-variable 'fill-paragraph-function)
1783 (set 'fill-paragraph-function 'cperl-fill-paragraph)))
1784 (make-local-variable 'parse-sexp-ignore-comments)
1785 (setq parse-sexp-ignore-comments t)
1786 (make-local-variable 'indent-region-function)
1787 (setq indent-region-function 'cperl-indent-region)
1788 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off!
1789 (make-local-variable 'imenu-create-index-function)
1790 (setq imenu-create-index-function
1791 (function cperl-imenu--create-perl-index))
1792 (make-local-variable 'imenu-sort-function)
1793 (setq imenu-sort-function nil)
1794 (make-local-variable 'vc-rcs-header)
1795 (set 'vc-rcs-header cperl-vc-rcs-header)
1796 (make-local-variable 'vc-sccs-header)
1797 (set 'vc-sccs-header cperl-vc-sccs-header)
1798 (when (featurep 'xemacs)
1799 ;; This one is obsolete...
1800 (make-local-variable 'vc-header-alist)
1801 (set 'vc-header-alist (or cperl-vc-header-alist ; Avoid warning
1802 `((SCCS ,(car cperl-vc-sccs-header))
1803 (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))
1811 (funcall f))
1812 (make-local-variable 'compilation-error-regexp-alist)
1813 (push 'cperl compilation-error-regexp-alist)))
1814 ((boundp 'compilation-error-regexp-alist);; xemacs 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
1821 (cond
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
1835 (if (boundp 'syntax-propertize-function)
1836 (progn
1837 ;; Reset syntaxification cache.
1838 (set (make-local-variable 'cperl-syntax-done-to) nil)
1839 (set (make-local-variable 'syntax-propertize-function)
1840 (lambda (start end)
1841 (goto-char start)
1842 ;; Even if cperl-fontify-syntaxically has already gone
1843 ;; beyond `start', syntax-propertize has just removed
1844 ;; syntax-table properties between start and end, so we have
1845 ;; to re-apply them.
1846 (setq cperl-syntax-done-to start)
1847 (cperl-fontify-syntaxically end))))
1848 (make-local-variable 'parse-sexp-lookup-properties)
1849 ;; Do not introduce variable if not needed, we check it!
1850 (set 'parse-sexp-lookup-properties t)
1851 ;; Fix broken font-lock:
1852 (or (boundp 'font-lock-unfontify-region-function)
1853 (set 'font-lock-unfontify-region-function
1854 'font-lock-default-unfontify-region))
1855 (unless (featurep 'xemacs) ; Our: just a plug for wrong font-lock
1856 (make-local-variable 'font-lock-unfontify-region-function)
1857 (set 'font-lock-unfontify-region-function ; not present with old Emacs
1858 'cperl-font-lock-unfontify-region-function))
1859 (make-local-variable 'cperl-syntax-done-to)
1860 (setq cperl-syntax-done-to nil) ; reset syntaxification cache
1861 (make-local-variable 'font-lock-syntactic-keywords)
1862 (setq font-lock-syntactic-keywords
1863 (if cperl-syntaxify-by-font-lock
1864 '((cperl-fontify-syntaxically))
1865 ;; unless font-lock-syntactic-keywords, font-lock (pre-22.1)
1866 ;; used to ignore syntax-table text-properties. (t) is a hack
1867 ;; to make font-lock think that font-lock-syntactic-keywords
1868 ;; are defined.
1869 '(t)))))
1870 (if (boundp 'font-lock-multiline) ; Newer font-lock; use its facilities
1871 (progn
1872 (setq cperl-font-lock-multiline t) ; Not localized...
1873 (set (make-local-variable 'font-lock-multiline) t))
1874 (make-local-variable 'font-lock-fontify-region-function)
1875 (set 'font-lock-fontify-region-function ; not present with old Emacs
1876 'cperl-font-lock-fontify-region-function))
1877 (make-local-variable 'font-lock-fontify-region-function)
1878 (set 'font-lock-fontify-region-function ; not present with old Emacs
1879 'cperl-font-lock-fontify-region-function)
1880 (make-local-variable 'cperl-old-style)
1881 (if (boundp 'normal-auto-fill-function) ; 19.33 and later
1882 (set (make-local-variable 'normal-auto-fill-function)
1883 'cperl-do-auto-fill)
1884 (or (fboundp 'cperl-old-auto-fill-mode)
1885 (progn
1886 (fset 'cperl-old-auto-fill-mode (symbol-function 'auto-fill-mode))
1887 (defun auto-fill-mode (&optional arg)
1888 (interactive "P")
1889 (eval '(cperl-old-auto-fill-mode arg)) ; Avoid a warning
1890 (and auto-fill-function (memq major-mode '(perl-mode cperl-mode))
1891 (setq auto-fill-function 'cperl-do-auto-fill))))))
1892 (if (cperl-enable-font-lock)
1893 (if (cperl-val 'cperl-font-lock)
1894 (progn (or cperl-faces-init (cperl-init-faces))
1895 (font-lock-mode 1))))
1896 (set (make-local-variable 'facemenu-add-face-function)
1897 'cperl-facemenu-add-face-function) ; XXXX What this guy is for???
1898 (and (boundp 'msb-menu-cond)
1899 (not cperl-msb-fixed)
1900 (cperl-msb-fix))
1901 (if (featurep 'easymenu)
1902 (easy-menu-add cperl-menu)) ; A NOP in Emacs.
1903 (run-mode-hooks 'cperl-mode-hook)
1904 (if cperl-hook-after-change
1905 (add-hook 'after-change-functions 'cperl-after-change-function nil t))
1906 ;; After hooks since fontification will break this
1907 (if cperl-pod-here-scan
1908 (or cperl-syntaxify-by-font-lock
1909 (progn (or cperl-faces-init (cperl-init-faces-weak))
1910 (cperl-find-pods-heres)))))
1912 ;; Fix for perldb - make default reasonable
1913 (defun cperl-db ()
1914 (interactive)
1915 (require 'gud)
1916 (perldb (read-from-minibuffer "Run perldb (like this): "
1917 (if (consp gud-perldb-history)
1918 (car gud-perldb-history)
1919 (concat "perl " ;;(file-name-nondirectory
1920 ;; I have problems
1921 ;; in OS/2
1922 ;; otherwise
1923 (buffer-file-name)))
1924 nil nil
1925 '(gud-perldb-history . 1))))
1927 (defun cperl-msb-fix ()
1928 ;; Adds perl files to msb menu, supposes that msb is already loaded
1929 (setq cperl-msb-fixed t)
1930 (let* ((l (length msb-menu-cond))
1931 (last (nth (1- l) msb-menu-cond))
1932 (precdr (nthcdr (- l 2) msb-menu-cond)) ; cdr of this is last
1933 (handle (1- (nth 1 last))))
1934 (setcdr precdr (list
1935 (list
1936 '(memq major-mode '(cperl-mode perl-mode))
1937 handle
1938 "Perl Files (%d)")
1939 last))))
1941 ;; This is used by indent-for-comment
1942 ;; to decide how much to indent a comment in CPerl code
1943 ;; based on its context. Do fallback if comment is found wrong.
1945 (defvar cperl-wrong-comment)
1946 (defvar cperl-st-cfence '(14)) ; Comment-fence
1947 (defvar cperl-st-sfence '(15)) ; String-fence
1948 (defvar cperl-st-punct '(1))
1949 (defvar cperl-st-word '(2))
1950 (defvar cperl-st-bra '(4 . ?\>))
1951 (defvar cperl-st-ket '(5 . ?\<))
1954 (defun cperl-comment-indent () ; called at point at supposed comment
1955 (let ((p (point)) (c (current-column)) was phony)
1956 (if (and (not cperl-indent-comment-at-column-0)
1957 (looking-at "^#"))
1958 0 ; Existing comment at bol stays there.
1959 ;; Wrong comment found
1960 (save-excursion
1961 (setq was (cperl-to-comment-or-eol)
1962 phony (eq (get-text-property (point) 'syntax-table)
1963 cperl-st-cfence))
1964 (if phony
1965 (progn ; Too naive???
1966 (re-search-forward "#\\|$") ; Hmm, what about embedded #?
1967 (if (eq (preceding-char) ?\#)
1968 (forward-char -1))
1969 (setq was nil)))
1970 (if (= (point) p) ; Our caller found a correct place
1971 (progn
1972 (skip-chars-backward " \t")
1973 (setq was (current-column))
1974 (if (eq was 0)
1975 comment-column
1976 (max (1+ was) ; Else indent at comment column
1977 comment-column)))
1978 ;; No, the caller found a random place; we need to edit ourselves
1979 (if was nil
1980 (insert comment-start)
1981 (backward-char (length comment-start)))
1982 (setq cperl-wrong-comment t)
1983 (cperl-make-indent comment-column 1) ; Indent min 1
1984 c)))))
1986 ;;;(defun cperl-comment-indent-fallback ()
1987 ;;; "Is called if the standard comment-search procedure fails.
1988 ;;;Point is at start of real comment."
1989 ;;; (let ((c (current-column)) target cnt prevc)
1990 ;;; (if (= c comment-column) nil
1991 ;;; (setq cnt (skip-chars-backward "[ \t]"))
1992 ;;; (setq target (max (1+ (setq prevc
1993 ;;; (current-column))) ; Else indent at comment column
1994 ;;; comment-column))
1995 ;;; (if (= c comment-column) nil
1996 ;;; (delete-backward-char cnt)
1997 ;;; (while (< prevc target)
1998 ;;; (insert "\t")
1999 ;;; (setq prevc (current-column)))
2000 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column))))
2001 ;;; (while (< prevc target)
2002 ;;; (insert " ")
2003 ;;; (setq prevc (current-column)))))))
2005 (defun cperl-indent-for-comment ()
2006 "Substitute for `indent-for-comment' in CPerl."
2007 (interactive)
2008 (let (cperl-wrong-comment)
2009 (indent-for-comment)
2010 (if cperl-wrong-comment ; set by `cperl-comment-indent'
2011 (progn (cperl-to-comment-or-eol)
2012 (forward-char (length comment-start))))))
2014 (defun cperl-comment-region (b e arg)
2015 "Comment or uncomment each line in the region in CPerl mode.
2016 See `comment-region'."
2017 (interactive "r\np")
2018 (let ((comment-start "#"))
2019 (comment-region b e arg)))
2021 (defun cperl-uncomment-region (b e arg)
2022 "Uncomment or comment each line in the region in CPerl mode.
2023 See `comment-region'."
2024 (interactive "r\np")
2025 (let ((comment-start "#"))
2026 (comment-region b e (- arg))))
2028 (defvar cperl-brace-recursing nil)
2030 (defun cperl-electric-brace (arg &optional only-before)
2031 "Insert character and correct line's indentation.
2032 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the
2033 place (even in empty line), but not after. If after \")\" and the inserted
2034 char is \"{\", insert extra newline before only if
2035 `cperl-extra-newline-before-brace'."
2036 (interactive "P")
2037 (let (insertpos
2038 (other-end (if (and cperl-electric-parens-mark
2039 (cperl-mark-active)
2040 (< (mark) (point)))
2041 (mark)
2042 nil)))
2043 (if (and other-end
2044 (not cperl-brace-recursing)
2045 (cperl-val 'cperl-electric-parens)
2046 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)))
2047 ;; Need to insert a matching pair
2048 (progn
2049 (save-excursion
2050 (setq insertpos (point-marker))
2051 (goto-char other-end)
2052 (setq last-command-event ?\{)
2053 (cperl-electric-lbrace arg insertpos))
2054 (forward-char 1))
2055 ;; Check whether we close something "usual" with `}'
2056 (if (and (eq last-command-event ?\})
2057 (not
2058 (condition-case nil
2059 (save-excursion
2060 (up-list (- (prefix-numeric-value arg)))
2061 ;;(cperl-after-block-p (point-min))
2062 (or (cperl-after-expr-p nil "{;)")
2063 ;; after sub, else, continue
2064 (cperl-after-block-p nil 'pre)))
2065 (error nil))))
2066 ;; Just insert the guy
2067 (self-insert-command (prefix-numeric-value arg))
2068 (if (and (not arg) ; No args, end (of empty line or auto)
2069 (eolp)
2070 (or (and (null only-before)
2071 (save-excursion
2072 (skip-chars-backward " \t")
2073 (bolp)))
2074 (and (eq last-command-event ?\{) ; Do not insert newline
2075 ;; if after ")" and `cperl-extra-newline-before-brace'
2076 ;; is nil, do not insert extra newline.
2077 (not cperl-extra-newline-before-brace)
2078 (save-excursion
2079 (skip-chars-backward " \t")
2080 (eq (preceding-char) ?\))))
2081 (if cperl-auto-newline
2082 (progn (cperl-indent-line) (newline) t) nil)))
2083 (progn
2084 (self-insert-command (prefix-numeric-value arg))
2085 (cperl-indent-line)
2086 (if cperl-auto-newline
2087 (setq insertpos (1- (point))))
2088 (if (and cperl-auto-newline (null only-before))
2089 (progn
2090 (newline)
2091 (cperl-indent-line)))
2092 (save-excursion
2093 (if insertpos (progn (goto-char insertpos)
2094 (search-forward (make-string
2095 1 last-command-event))
2096 (setq insertpos (1- (point)))))
2097 (delete-char -1))))
2098 (if insertpos
2099 (save-excursion
2100 (goto-char insertpos)
2101 (self-insert-command (prefix-numeric-value arg)))
2102 (self-insert-command (prefix-numeric-value arg)))))))
2104 (defun cperl-electric-lbrace (arg &optional end)
2105 "Insert character, correct line's indentation, correct quoting by space."
2106 (interactive "P")
2107 (let ((cperl-brace-recursing t)
2108 (cperl-auto-newline cperl-auto-newline)
2109 (other-end (or end
2110 (if (and cperl-electric-parens-mark
2111 (cperl-mark-active)
2112 (> (mark) (point)))
2113 (save-excursion
2114 (goto-char (mark))
2115 (point-marker))
2116 nil)))
2117 pos after)
2118 (and (cperl-val 'cperl-electric-lbrace-space)
2119 (eq (preceding-char) ?$)
2120 (save-excursion
2121 (skip-chars-backward "$")
2122 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)"))
2123 (insert ?\s))
2124 ;; Check whether we are in comment
2125 (if (and
2126 (save-excursion
2127 (beginning-of-line)
2128 (not (looking-at "[ \t]*#")))
2129 (cperl-after-expr-p nil "{;)"))
2131 (setq cperl-auto-newline nil))
2132 (cperl-electric-brace arg)
2133 (and (cperl-val 'cperl-electric-parens)
2134 (eq last-command-event ?{)
2135 (memq last-command-event
2136 (append cperl-electric-parens-string nil))
2137 (or (if other-end (goto-char (marker-position other-end)))
2139 (setq last-command-event ?} pos (point))
2140 (progn (cperl-electric-brace arg t)
2141 (goto-char pos)))))
2143 (defun cperl-electric-paren (arg)
2144 "Insert an opening parenthesis or a matching pair of parentheses.
2145 See `cperl-electric-parens'."
2146 (interactive "P")
2147 (let ((beg (point-at-bol))
2148 (other-end (if (and cperl-electric-parens-mark
2149 (cperl-mark-active)
2150 (> (mark) (point)))
2151 (save-excursion
2152 (goto-char (mark))
2153 (point-marker))
2154 nil)))
2155 (if (and (cperl-val 'cperl-electric-parens)
2156 (memq last-command-event
2157 (append cperl-electric-parens-string nil))
2158 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))
2159 ;;(not (save-excursion (search-backward "#" beg t)))
2160 (if (eq last-command-event ?<)
2161 (progn
2162 ;; This code is too electric, see Bug#3943.
2163 ;; (and abbrev-mode ; later it is too late, may be after `for'
2164 ;; (expand-abbrev))
2165 (cperl-after-expr-p nil "{;(,:="))
2167 (progn
2168 (self-insert-command (prefix-numeric-value arg))
2169 (if other-end (goto-char (marker-position other-end)))
2170 (insert (make-string
2171 (prefix-numeric-value arg)
2172 (cdr (assoc last-command-event '((?{ .?})
2173 (?[ . ?])
2174 (?( . ?))
2175 (?< . ?>))))))
2176 (forward-char (- (prefix-numeric-value arg))))
2177 (self-insert-command (prefix-numeric-value arg)))))
2179 (defun cperl-electric-rparen (arg)
2180 "Insert a matching pair of parentheses if marking is active.
2181 If not, or if we are not at the end of marking range, would self-insert.
2182 Affected by `cperl-electric-parens'."
2183 (interactive "P")
2184 (let ((beg (point-at-bol))
2185 (other-end (if (and cperl-electric-parens-mark
2186 (cperl-val 'cperl-electric-parens)
2187 (memq last-command-event
2188 (append cperl-electric-parens-string nil))
2189 (cperl-mark-active)
2190 (< (mark) (point)))
2191 (mark)
2192 nil))
2194 (if (and other-end
2195 (cperl-val 'cperl-electric-parens)
2196 (memq last-command-event '( ?\) ?\] ?\} ?\> ))
2197 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))
2198 ;;(not (save-excursion (search-backward "#" beg t)))
2200 (progn
2201 (self-insert-command (prefix-numeric-value arg))
2202 (setq p (point))
2203 (if other-end (goto-char other-end))
2204 (insert (make-string
2205 (prefix-numeric-value arg)
2206 (cdr (assoc last-command-event '((?\} . ?\{)
2207 (?\] . ?\[)
2208 (?\) . ?\()
2209 (?\> . ?\<))))))
2210 (goto-char (1+ p)))
2211 (self-insert-command (prefix-numeric-value arg)))))
2213 (defun cperl-electric-keyword ()
2214 "Insert a construction appropriate after a keyword.
2215 Help message may be switched off by setting `cperl-message-electric-keyword'
2216 to nil."
2217 (let ((beg (point-at-bol))
2218 (dollar (and (eq last-command-event ?$)
2219 (eq this-command 'self-insert-command)))
2220 (delete (and (memq last-command-event '(?\s ?\n ?\t ?\f))
2221 (memq this-command '(self-insert-command newline))))
2222 my do)
2223 (and (save-excursion
2224 (condition-case nil
2225 (progn
2226 (backward-sexp 1)
2227 (setq do (looking-at "do\\>")))
2228 (error nil))
2229 (cperl-after-expr-p nil "{;:"))
2230 (save-excursion
2231 (not
2232 (re-search-backward
2233 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>"
2234 beg t)))
2235 (save-excursion (or (not (re-search-backward "^=" nil t))
2237 (looking-at "=cut")
2238 (and cperl-use-syntax-table-text-property
2239 (not (eq (get-text-property (point)
2240 'syntax-type)
2241 'pod))))))
2242 (save-excursion (forward-sexp -1)
2243 (not (memq (following-char) (append "$@%&*" nil))))
2244 (progn
2245 (and (eq (preceding-char) ?y)
2246 (progn ; "foreachmy"
2247 (forward-char -2)
2248 (insert " ")
2249 (forward-char 2)
2250 (setq my t dollar t
2251 delete
2252 (memq this-command '(self-insert-command newline)))))
2253 (and dollar (insert " $"))
2254 (cperl-indent-line)
2255 ;;(insert " () {\n}")
2256 (cond
2257 (cperl-extra-newline-before-brace
2258 (insert (if do "\n" " ()\n"))
2259 (insert "{")
2260 (cperl-indent-line)
2261 (insert "\n")
2262 (cperl-indent-line)
2263 (insert "\n}")
2264 (and do (insert " while ();")))
2266 (insert (if do " {\n} while ();" " () {\n}"))))
2267 (or (looking-at "[ \t]\\|$") (insert " "))
2268 (cperl-indent-line)
2269 (if dollar (progn (search-backward "$")
2270 (if my
2271 (forward-char 1)
2272 (delete-char 1)))
2273 (search-backward ")")
2274 (if (eq last-command-event ?\()
2275 (progn ; Avoid "if (())"
2276 (delete-backward-char 1)
2277 (delete-backward-char -1))))
2278 (if delete
2279 (cperl-putback-char cperl-del-back-ch))
2280 (if cperl-message-electric-keyword
2281 (message "Precede char by C-q to avoid expansion"))))))
2283 (defun cperl-ensure-newlines (n &optional pos)
2284 "Make sure there are N newlines after the point."
2285 (or pos (setq pos (point)))
2286 (if (looking-at "\n")
2287 (forward-char 1)
2288 (insert "\n"))
2289 (if (> n 1)
2290 (cperl-ensure-newlines (1- n) pos)
2291 (goto-char pos)))
2293 (defun cperl-electric-pod ()
2294 "Insert a POD chunk appropriate after a =POD directive."
2295 (let ((delete (and (memq last-command-event '(?\s ?\n ?\t ?\f))
2296 (memq this-command '(self-insert-command newline))))
2297 head1 notlast name p really-delete over)
2298 (and (save-excursion
2299 (forward-word -1)
2300 (and
2301 (eq (preceding-char) ?=)
2302 (progn
2303 (setq head1 (looking-at "head1\\>[ \t]*$"))
2304 (setq over (and (looking-at "over\\>[ \t]*$")
2305 (not (looking-at "over[ \t]*\n\n\n*=item\\>"))))
2306 (forward-char -1)
2307 (bolp))
2309 (get-text-property (point) 'in-pod)
2310 (cperl-after-expr-p nil "{;:")
2311 (and (re-search-backward "\\(\\`\n?\\|^\n\\)=\\sw+" (point-min) t)
2312 (not (looking-at "\n*=cut"))
2313 (or (not cperl-use-syntax-table-text-property)
2314 (eq (get-text-property (point) 'syntax-type) 'pod))))))
2315 (progn
2316 (save-excursion
2317 (setq notlast (re-search-forward "^\n=" nil t)))
2318 (or notlast
2319 (progn
2320 (insert "\n\n=cut")
2321 (cperl-ensure-newlines 2)
2322 (forward-word -2)
2323 (if (and head1
2324 (not
2325 (save-excursion
2326 (forward-char -1)
2327 (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\>"
2328 nil t)))) ; Only one
2329 (progn
2330 (forward-word 1)
2331 (setq name (file-name-base)
2332 p (point))
2333 (insert " NAME\n\n" name
2334 " - \n\n=head1 SYNOPSIS\n\n\n\n"
2335 "=head1 DESCRIPTION")
2336 (cperl-ensure-newlines 4)
2337 (goto-char p)
2338 (forward-word 2)
2339 (end-of-line)
2340 (setq really-delete t))
2341 (forward-word 1))))
2342 (if over
2343 (progn
2344 (setq p (point))
2345 (insert "\n\n=item \n\n\n\n"
2346 "=back")
2347 (cperl-ensure-newlines 2)
2348 (goto-char p)
2349 (forward-word 1)
2350 (end-of-line)
2351 (setq really-delete t)))
2352 (if (and delete really-delete)
2353 (cperl-putback-char cperl-del-back-ch))))))
2355 (defun cperl-electric-else ()
2356 "Insert a construction appropriate after a keyword.
2357 Help message may be switched off by setting `cperl-message-electric-keyword'
2358 to nil."
2359 (let ((beg (point-at-bol)))
2360 (and (save-excursion
2361 (backward-sexp 1)
2362 (cperl-after-expr-p nil "{;:"))
2363 (save-excursion
2364 (not
2365 (re-search-backward
2366 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>"
2367 beg t)))
2368 (save-excursion (or (not (re-search-backward "^=" nil t))
2369 (looking-at "=cut")
2370 (and cperl-use-syntax-table-text-property
2371 (not (eq (get-text-property (point)
2372 'syntax-type)
2373 'pod)))))
2374 (progn
2375 (cperl-indent-line)
2376 ;;(insert " {\n\n}")
2377 (cond
2378 (cperl-extra-newline-before-brace
2379 (insert "\n")
2380 (insert "{")
2381 (cperl-indent-line)
2382 (insert "\n\n}"))
2384 (insert " {\n\n}")))
2385 (or (looking-at "[ \t]\\|$") (insert " "))
2386 (cperl-indent-line)
2387 (forward-line -1)
2388 (cperl-indent-line)
2389 (cperl-putback-char cperl-del-back-ch)
2390 (setq this-command 'cperl-electric-else)
2391 (if cperl-message-electric-keyword
2392 (message "Precede char by C-q to avoid expansion"))))))
2394 (defun cperl-linefeed ()
2395 "Go to end of line, open a new line and indent appropriately.
2396 If in POD, insert appropriate lines."
2397 (interactive)
2398 (let ((beg (point-at-bol))
2399 (end (point-at-eol))
2400 (pos (point)) start over cut res)
2401 (if (and ; Check if we need to split:
2402 ; i.e., on a boundary and inside "{...}"
2403 (save-excursion (cperl-to-comment-or-eol)
2404 (>= (point) pos)) ; Not in a comment
2405 (or (save-excursion
2406 (skip-chars-backward " \t" beg)
2407 (forward-char -1)
2408 (looking-at "[;{]")) ; After { or ; + spaces
2409 (looking-at "[ \t]*}") ; Before }
2410 (re-search-forward "\\=[ \t]*;" end t)) ; Before spaces + ;
2411 (save-excursion
2412 (and
2413 (eq (car (parse-partial-sexp pos end -1)) -1)
2414 ; Leave the level of parens
2415 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr
2416 ; Are at end
2417 (cperl-after-block-p (point-min))
2418 (progn
2419 (backward-sexp 1)
2420 (setq start (point-marker))
2421 (<= start pos))))) ; Redundant? Are after the
2422 ; start of parens group.
2423 (progn
2424 (skip-chars-backward " \t")
2425 (or (memq (preceding-char) (append ";{" nil))
2426 (insert ";"))
2427 (insert "\n")
2428 (forward-line -1)
2429 (cperl-indent-line)
2430 (goto-char start)
2431 (or (looking-at "{[ \t]*$") ; If there is a statement
2432 ; before, move it to separate line
2433 (progn
2434 (forward-char 1)
2435 (insert "\n")
2436 (cperl-indent-line)))
2437 (forward-line 1) ; We are on the target line
2438 (cperl-indent-line)
2439 (beginning-of-line)
2440 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement
2441 ; after, move it to separate line
2442 (progn
2443 (end-of-line)
2444 (search-backward "}" beg)
2445 (skip-chars-backward " \t")
2446 (or (memq (preceding-char) (append ";{" nil))
2447 (insert ";"))
2448 (insert "\n")
2449 (cperl-indent-line)
2450 (forward-line -1)))
2451 (forward-line -1) ; We are on the line before target
2452 (end-of-line)
2453 (newline-and-indent))
2454 (end-of-line) ; else - no splitting
2455 (cond
2456 ((and (looking-at "\n[ \t]*{$")
2457 (save-excursion
2458 (skip-chars-backward " \t")
2459 (eq (preceding-char) ?\)))) ; Probably if () {} group
2460 ; with an extra newline.
2461 (forward-line 2)
2462 (cperl-indent-line))
2463 ((save-excursion ; In POD header
2464 (forward-paragraph -1)
2465 ;; (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\b")
2466 ;; We are after \n now, so look for the rest
2467 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+")
2468 (progn
2469 (setq cut (looking-at "\\(\\`\n?\\|\n\\)=cut\\>"))
2470 (setq over (looking-at "\\(\\`\n?\\|\n\\)=over\\>"))
2471 t)))
2472 (if (and over
2473 (progn
2474 (forward-paragraph -1)
2475 (forward-word 1)
2476 (setq pos (point))
2477 (setq cut (buffer-substring (point) (point-at-eol)))
2478 (delete-char (- (point-at-eol) (point)))
2479 (setq res (expand-abbrev))
2480 (save-excursion
2481 (goto-char pos)
2482 (insert cut))
2483 res))
2485 (cperl-ensure-newlines (if cut 2 4))
2486 (forward-line 2)))
2487 ((get-text-property (point) 'in-pod) ; In POD section
2488 (cperl-ensure-newlines 4)
2489 (forward-line 2))
2490 ((looking-at "\n[ \t]*$") ; Next line is empty - use it.
2491 (forward-line 1)
2492 (cperl-indent-line))
2494 (newline-and-indent))))))
2496 (defun cperl-electric-semi (arg)
2497 "Insert character and correct line's indentation."
2498 (interactive "P")
2499 (if cperl-auto-newline
2500 (cperl-electric-terminator arg)
2501 (self-insert-command (prefix-numeric-value arg))
2502 (if cperl-autoindent-on-semi
2503 (cperl-indent-line))))
2505 (defun cperl-electric-terminator (arg)
2506 "Insert character and correct line's indentation."
2507 (interactive "P")
2508 (let ((end (point))
2509 (auto (and cperl-auto-newline
2510 (or (not (eq last-command-event ?:))
2511 cperl-auto-newline-after-colon)))
2512 insertpos)
2513 (if (and ;;(not arg)
2514 (eolp)
2515 (not (save-excursion
2516 (beginning-of-line)
2517 (skip-chars-forward " \t")
2519 ;; Ignore in comment lines
2520 (= (following-char) ?#)
2521 ;; Colon is special only after a label
2522 ;; So quickly rule out most other uses of colon
2523 ;; and do no indentation for them.
2524 (and (eq last-command-event ?:)
2525 (save-excursion
2526 (forward-word 1)
2527 (skip-chars-forward " \t")
2528 (and (< (point) end)
2529 (progn (goto-char (- end 1))
2530 (not (looking-at ":"))))))
2531 (progn
2532 (beginning-of-defun)
2533 (let ((pps (parse-partial-sexp (point) end)))
2534 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))))
2535 (progn
2536 (self-insert-command (prefix-numeric-value arg))
2537 ;;(forward-char -1)
2538 (if auto (setq insertpos (point-marker)))
2539 ;;(forward-char 1)
2540 (cperl-indent-line)
2541 (if auto
2542 (progn
2543 (newline)
2544 (cperl-indent-line)))
2545 (save-excursion
2546 (if insertpos (goto-char (1- (marker-position insertpos)))
2547 (forward-char -1))
2548 (delete-char 1))))
2549 (if insertpos
2550 (save-excursion
2551 (goto-char insertpos)
2552 (self-insert-command (prefix-numeric-value arg)))
2553 (self-insert-command (prefix-numeric-value arg)))))
2555 (defun cperl-electric-backspace (arg)
2556 "Backspace, or remove whitespace around the point inserted by an electric key.
2557 Will untabify if `cperl-electric-backspace-untabify' is non-nil."
2558 (interactive "p")
2559 (if (and cperl-auto-newline
2560 (memq last-command '(cperl-electric-semi
2561 cperl-electric-terminator
2562 cperl-electric-lbrace))
2563 (memq (preceding-char) '(?\s ?\t ?\n)))
2564 (let (p)
2565 (if (eq last-command 'cperl-electric-lbrace)
2566 (skip-chars-forward " \t\n"))
2567 (setq p (point))
2568 (skip-chars-backward " \t\n")
2569 (delete-region (point) p))
2570 (and (eq last-command 'cperl-electric-else)
2571 ;; We are removing the whitespace *inside* cperl-electric-else
2572 (setq this-command 'cperl-electric-else-really))
2573 (if (and cperl-auto-newline
2574 (eq last-command 'cperl-electric-else-really)
2575 (memq (preceding-char) '(?\s ?\t ?\n)))
2576 (let (p)
2577 (skip-chars-forward " \t\n")
2578 (setq p (point))
2579 (skip-chars-backward " \t\n")
2580 (delete-region (point) p))
2581 (if cperl-electric-backspace-untabify
2582 (backward-delete-char-untabify arg)
2583 (delete-backward-char arg)))))
2585 (put 'cperl-electric-backspace 'delete-selection 'supersede)
2587 (defun cperl-inside-parens-p () ;; NOT USED????
2588 (condition-case ()
2589 (save-excursion
2590 (save-restriction
2591 (narrow-to-region (point)
2592 (progn (beginning-of-defun) (point)))
2593 (goto-char (point-max))
2594 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
2595 (error nil)))
2597 (defun cperl-indent-command (&optional whole-exp)
2598 "Indent current line as Perl code, or in some cases insert a tab character.
2599 If `cperl-tab-always-indent' is non-nil (the default), always indent current
2600 line. Otherwise, indent the current line only if point is at the left margin
2601 or in the line's indentation; otherwise insert a tab.
2603 A numeric argument, regardless of its value,
2604 means indent rigidly all the lines of the expression starting after point
2605 so that this line becomes properly indented.
2606 The relative indentation among the lines of the expression are preserved."
2607 (interactive "P")
2608 (cperl-update-syntaxification (point) (point))
2609 (if whole-exp
2610 ;; If arg, always indent this line as Perl
2611 ;; and shift remaining lines of expression the same amount.
2612 (let ((shift-amt (cperl-indent-line))
2613 beg end)
2614 (save-excursion
2615 (if cperl-tab-always-indent
2616 (beginning-of-line))
2617 (setq beg (point))
2618 (forward-sexp 1)
2619 (setq end (point))
2620 (goto-char beg)
2621 (forward-line 1)
2622 (setq beg (point)))
2623 (if (and shift-amt (> end beg))
2624 (indent-code-rigidly beg end shift-amt "#")))
2625 (if (and (not cperl-tab-always-indent)
2626 (save-excursion
2627 (skip-chars-backward " \t")
2628 (not (bolp))))
2629 (insert-tab)
2630 (cperl-indent-line))))
2632 (defun cperl-indent-line (&optional parse-data)
2633 "Indent current line as Perl code.
2634 Return the amount the indentation changed by."
2635 (let ((case-fold-search nil)
2636 (pos (- (point-max) (point)))
2637 indent i beg shift-amt)
2638 (setq indent (cperl-calculate-indent parse-data)
2639 i indent)
2640 (beginning-of-line)
2641 (setq beg (point))
2642 (cond ((or (eq indent nil) (eq indent t))
2643 (setq indent (current-indentation) i nil))
2644 ;;((eq indent t) ; Never?
2645 ;; (setq indent (cperl-calculate-indent-within-comment)))
2646 ;;((looking-at "[ \t]*#")
2647 ;; (setq indent 0))
2649 (skip-chars-forward " \t")
2650 (if (listp indent) (setq indent (car indent)))
2651 (cond ((and (looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]")
2652 (not (looking-at "[smy]:\\|tr:")))
2653 (and (> indent 0)
2654 (setq indent (max cperl-min-label-indent
2655 (+ indent cperl-label-offset)))))
2656 ((= (following-char) ?})
2657 (setq indent (- indent cperl-indent-level)))
2658 ((memq (following-char) '(?\) ?\])) ; To line up with opening paren.
2659 (setq indent (+ indent cperl-close-paren-offset)))
2660 ((= (following-char) ?{)
2661 (setq indent (+ indent cperl-brace-offset))))))
2662 (skip-chars-forward " \t")
2663 (setq shift-amt (and i (- indent (current-column))))
2664 (if (or (not shift-amt)
2665 (zerop shift-amt))
2666 (if (> (- (point-max) pos) (point))
2667 (goto-char (- (point-max) pos)))
2668 ;;;(delete-region beg (point))
2669 ;;;(indent-to indent)
2670 (cperl-make-indent indent)
2671 ;; If initial point was within line's indentation,
2672 ;; position after the indentation. Else stay at same point in text.
2673 (if (> (- (point-max) pos) (point))
2674 (goto-char (- (point-max) pos))))
2675 shift-amt))
2677 (defun cperl-after-label ()
2678 ;; Returns true if the point is after label. Does not do save-excursion.
2679 (and (eq (preceding-char) ?:)
2680 (memq (char-syntax (char-after (- (point) 2)))
2681 '(?w ?_))
2682 (progn
2683 (backward-sexp)
2684 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))))
2686 (defun cperl-get-state (&optional parse-start start-state)
2687 ;; returns list (START STATE DEPTH PRESTART),
2688 ;; START is a good place to start parsing, or equal to
2689 ;; PARSE-START if preset,
2690 ;; STATE is what is returned by `parse-partial-sexp'.
2691 ;; DEPTH is true is we are immediately after end of block
2692 ;; which contains START.
2693 ;; PRESTART is the position basing on which START was found.
2694 (save-excursion
2695 (let ((start-point (point)) depth state start prestart)
2696 (if (and parse-start
2697 (<= parse-start start-point))
2698 (goto-char parse-start)
2699 (beginning-of-defun)
2700 (setq start-state nil))
2701 (setq prestart (point))
2702 (if start-state nil
2703 ;; Try to go out, if sub is not on the outermost level
2704 (while (< (point) start-point)
2705 (setq start (point) parse-start start depth nil
2706 state (parse-partial-sexp start start-point -1))
2707 (if (> (car state) -1) nil
2708 ;; The current line could start like }}}, so the indentation
2709 ;; corresponds to a different level than what we reached
2710 (setq depth t)
2711 (beginning-of-line 2))) ; Go to the next line.
2712 (if start (goto-char start))) ; Not at the start of file
2713 (setq start (point))
2714 (or state (setq state (parse-partial-sexp start start-point -1 nil start-state)))
2715 (list start state depth prestart))))
2717 (defvar cperl-look-for-prop '((pod in-pod) (here-doc-delim here-doc-group)))
2719 (defun cperl-beginning-of-property (p prop &optional lim)
2720 "Given that P has a property PROP, find where the property starts.
2721 Will not look before LIM."
2722 ;;; XXXX What to do at point-max???
2723 (or (previous-single-property-change (cperl-1+ p) prop lim)
2724 (point-min))
2725 ;;; (cond ((eq p (point-min))
2726 ;;; p)
2727 ;;; ((and lim (<= p lim))
2728 ;;; p)
2729 ;;; ((not (get-text-property (1- p) prop))
2730 ;;; p)
2731 ;;; (t (or (previous-single-property-change p look-prop lim)
2732 ;;; (point-min))))
2735 (defun cperl-sniff-for-indent (&optional parse-data) ; was parse-start
2736 ;; the sniffer logic to understand what the current line MEANS.
2737 (cperl-update-syntaxification (point) (point))
2738 (let ((res (get-text-property (point) 'syntax-type)))
2739 (save-excursion
2740 (cond
2741 ((and (memq res '(pod here-doc here-doc-delim format))
2742 (not (get-text-property (point) 'indentable)))
2743 (vector res))
2744 ;; before start of POD - whitespace found since do not have 'pod!
2745 ((looking-at "[ \t]*\n=")
2746 (error "Spaces before POD section!"))
2747 ((and (not cperl-indent-left-aligned-comments)
2748 (looking-at "^#"))
2749 [comment-special:at-beginning-of-line])
2750 ((get-text-property (point) 'in-pod)
2751 [in-pod])
2753 (beginning-of-line)
2754 (let* ((indent-point (point))
2755 (char-after-pos (save-excursion
2756 (skip-chars-forward " \t")
2757 (point)))
2758 (char-after (char-after char-after-pos))
2759 (pre-indent-point (point))
2760 p prop look-prop is-block delim)
2761 (save-excursion ; Know we are not in POD, find appropriate pos before
2762 (cperl-backward-to-noncomment nil)
2763 (setq p (max (point-min) (1- (point)))
2764 prop (get-text-property p 'syntax-type)
2765 look-prop (or (nth 1 (assoc prop cperl-look-for-prop))
2766 'syntax-type))
2767 (if (memq prop '(pod here-doc format here-doc-delim))
2768 (progn
2769 (goto-char (cperl-beginning-of-property p look-prop))
2770 (beginning-of-line)
2771 (setq pre-indent-point (point)))))
2772 (goto-char pre-indent-point) ; Orig line skipping preceding pod/etc
2773 (let* ((case-fold-search nil)
2774 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data)))
2775 (start (or (nth 2 parse-data) ; last complete sexp terminated
2776 (nth 0 s-s))) ; Good place to start parsing
2777 (state (nth 1 s-s))
2778 (containing-sexp (car (cdr state)))
2779 old-indent)
2780 (if (and
2781 ;;containing-sexp ;; We are buggy at toplevel :-(
2782 parse-data)
2783 (progn
2784 (setcar parse-data pre-indent-point)
2785 (setcar (cdr parse-data) state)
2786 (or (nth 2 parse-data)
2787 (setcar (cddr parse-data) start))
2788 ;; Before this point: end of statement
2789 (setq old-indent (nth 3 parse-data))))
2790 (cond ((get-text-property (point) 'indentable)
2791 ;; indent to "after" the surrounding open
2792 ;; (same offset as `cperl-beautify-regexp-piece'),
2793 ;; skip blanks if we do not close the expression.
2794 (setq delim ; We do not close the expression
2795 (get-text-property
2796 (cperl-1+ char-after-pos) 'indentable)
2797 p (1+ (cperl-beginning-of-property
2798 (point) 'indentable))
2799 is-block ; misused for: preceding line in REx
2800 (save-excursion ; Find preceding line
2801 (cperl-backward-to-noncomment p)
2802 (beginning-of-line)
2803 (if (<= (point) p)
2804 (progn ; get indent from the first line
2805 (goto-char p)
2806 (skip-chars-forward " \t")
2807 (if (memq (char-after (point))
2808 (append "#\n" nil))
2809 nil ; Can't use indentation of this line...
2810 (point)))
2811 (skip-chars-forward " \t")
2812 (point)))
2813 prop (parse-partial-sexp p char-after-pos))
2814 (cond ((not delim) ; End the REx, ignore is-block
2815 (vector 'indentable 'terminator p is-block))
2816 (is-block ; Indent w.r.t. preceding line
2817 (vector 'indentable 'cont-line char-after-pos
2818 is-block char-after p))
2819 (t ; No preceding line...
2820 (vector 'indentable 'first-line p))))
2821 ((get-text-property char-after-pos 'REx-part2)
2822 (vector 'REx-part2 (point)))
2823 ((nth 4 state)
2824 [comment])
2825 ((nth 3 state)
2826 [string])
2827 ;; XXXX Do we need to special-case this?
2828 ((null containing-sexp)
2829 ;; Line is at top level. May be data or function definition,
2830 ;; or may be function argument declaration.
2831 ;; Indent like the previous top level line
2832 ;; unless that ends in a closeparen without semicolon,
2833 ;; in which case this line is the first argument decl.
2834 (skip-chars-forward " \t")
2835 (cperl-backward-to-noncomment (or old-indent (point-min)))
2836 (setq state
2837 (or (bobp)
2838 (eq (point) old-indent) ; old-indent was at comment
2839 (eq (preceding-char) ?\;)
2840 ;; Had ?\) too
2841 (and (eq (preceding-char) ?\})
2842 (cperl-after-block-and-statement-beg
2843 (point-min))) ; Was start - too close
2844 (memq char-after (append ")]}" nil))
2845 (and (eq (preceding-char) ?\:) ; label
2846 (progn
2847 (forward-sexp -1)
2848 (skip-chars-backward " \t")
2849 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:")))
2850 (get-text-property (point) 'first-format-line)))
2852 ;; Look at previous line that's at column 0
2853 ;; to determine whether we are in top-level decls
2854 ;; or function's arg decls. Set basic-indent accordingly.
2855 ;; Now add a little if this is a continuation line.
2856 (and state
2857 parse-data
2858 (not (eq char-after ?\C-j))
2859 (setcdr (cddr parse-data)
2860 (list pre-indent-point)))
2861 (vector 'toplevel start char-after state (nth 2 s-s)))
2862 ((not
2863 (or (setq is-block
2864 (and (setq delim (= (char-after containing-sexp) ?{))
2865 (save-excursion ; Is it a hash?
2866 (goto-char containing-sexp)
2867 (cperl-block-p))))
2868 cperl-indent-parens-as-block))
2869 ;; group is an expression, not a block:
2870 ;; indent to just after the surrounding open parens,
2871 ;; skip blanks if we do not close the expression.
2872 (goto-char (1+ containing-sexp))
2873 (or (memq char-after
2874 (append (if delim "}" ")]}") nil))
2875 (looking-at "[ \t]*\\(#\\|$\\)")
2876 (skip-chars-forward " \t"))
2877 (setq old-indent (point)) ; delim=is-brace
2878 (vector 'in-parens char-after (point) delim containing-sexp))
2880 ;; Statement level. Is it a continuation or a new statement?
2881 ;; Find previous non-comment character.
2882 (goto-char pre-indent-point) ; Skip one level of POD/etc
2883 (cperl-backward-to-noncomment containing-sexp)
2884 ;; Back up over label lines, since they don't
2885 ;; affect whether our line is a continuation.
2886 ;; (Had \, too)
2887 (while;;(or (eq (preceding-char) ?\,)
2888 (and (eq (preceding-char) ?:)
2889 (or;;(eq (char-after (- (point) 2)) ?\') ; ????
2890 (memq (char-syntax (char-after (- (point) 2)))
2891 '(?w ?_))))
2893 ;; This is always FALSE?
2894 (if (eq (preceding-char) ?\,)
2895 ;; Will go to beginning of line, essentially.
2896 ;; Will ignore embedded sexpr XXXX.
2897 (cperl-backward-to-start-of-continued-exp containing-sexp))
2898 (beginning-of-line)
2899 (cperl-backward-to-noncomment containing-sexp))
2900 ;; Now we get non-label preceding the indent point
2901 (if (not (or (eq (1- (point)) containing-sexp)
2902 (memq (preceding-char)
2903 (append (if is-block " ;{" " ,;{") '(nil)))
2904 (and (eq (preceding-char) ?\})
2905 (cperl-after-block-and-statement-beg
2906 containing-sexp))
2907 (get-text-property (point) 'first-format-line)))
2908 ;; This line is continuation of preceding line's statement;
2909 ;; indent `cperl-continued-statement-offset' more than the
2910 ;; previous line of the statement.
2912 ;; There might be a label on this line, just
2913 ;; consider it bad style and ignore it.
2914 (progn
2915 (cperl-backward-to-start-of-continued-exp containing-sexp)
2916 (vector 'continuation (point) char-after is-block delim))
2917 ;; This line starts a new statement.
2918 ;; Position following last unclosed open brace
2919 (goto-char containing-sexp)
2920 ;; Is line first statement after an open-brace?
2922 ;; If no, find that first statement and indent like
2923 ;; it. If the first statement begins with label, do
2924 ;; not believe when the indentation of the label is too
2925 ;; small.
2926 (save-excursion
2927 (forward-char 1)
2928 (let ((colon-line-end 0))
2929 (while
2930 (progn (skip-chars-forward " \t\n")
2931 ;; s: foo : bar :x is NOT label
2932 (and (looking-at "#\\|\\([a-zA-Z0-9_$]+\\):[^:]\\|=[a-zA-Z]")
2933 (not (looking-at "[sym]:\\|tr:"))))
2934 ;; Skip over comments and labels following openbrace.
2935 (cond ((= (following-char) ?\#)
2936 (forward-line 1))
2937 ((= (following-char) ?\=)
2938 (goto-char
2939 (or (next-single-property-change (point) 'in-pod)
2940 (point-max)))) ; do not loop if no syntaxification
2941 ;; label:
2943 (setq colon-line-end (point-at-eol))
2944 (search-forward ":"))))
2945 ;; We are at beginning of code (NOT label or comment)
2946 ;; First, the following code counts
2947 ;; if it is before the line we want to indent.
2948 (and (< (point) indent-point)
2949 (vector 'have-prev-sibling (point) colon-line-end
2950 containing-sexp))))
2951 (progn
2952 ;; If no previous statement,
2953 ;; indent it relative to line brace is on.
2955 ;; For open-braces not the first thing in a line,
2956 ;; add in cperl-brace-imaginary-offset.
2958 ;; If first thing on a line: ?????
2959 ;; Move back over whitespace before the openbrace.
2960 (setq ; brace first thing on a line
2961 old-indent (progn (skip-chars-backward " \t") (bolp)))
2962 ;; Should we indent w.r.t. earlier than start?
2963 ;; Move to start of control group, possibly on a different line
2964 (or cperl-indent-wrt-brace
2965 (cperl-backward-to-noncomment (point-min)))
2966 ;; If the openbrace is preceded by a parenthesized exp,
2967 ;; move to the beginning of that;
2968 (if (eq (preceding-char) ?\))
2969 (progn
2970 (forward-sexp -1)
2971 (cperl-backward-to-noncomment (point-min))))
2972 ;; In the case it starts a subroutine, indent with
2973 ;; respect to `sub', not with respect to the
2974 ;; first thing on the line, say in the case of
2975 ;; anonymous sub in a hash.
2976 (if (and;; Is it a sub in group starting on this line?
2977 (cond ((get-text-property (point) 'attrib-group)
2978 (goto-char (cperl-beginning-of-property
2979 (point) 'attrib-group)))
2980 ((eq (preceding-char) ?b)
2981 (forward-sexp -1)
2982 (looking-at "sub\\>")))
2983 (setq p (nth 1 ; start of innermost containing list
2984 (parse-partial-sexp
2985 (point-at-bol)
2986 (point)))))
2987 (progn
2988 (goto-char (1+ p)) ; enclosing block on the same line
2989 (skip-chars-forward " \t")
2990 (vector 'code-start-in-block containing-sexp char-after
2991 (and delim (not is-block)) ; is a HASH
2992 old-indent ; brace first thing on a line
2993 t (point) ; have something before...
2995 ;;(current-column)
2997 ;; Get initial indentation of the line we are on.
2998 ;; If line starts with label, calculate label indentation
2999 (vector 'code-start-in-block containing-sexp char-after
3000 (and delim (not is-block)) ; is a HASH
3001 old-indent ; brace first thing on a line
3002 nil (point))))))))))))))) ; nothing interesting before
3004 (defvar cperl-indent-rules-alist
3005 '((pod nil) ; via `syntax-type' property
3006 (here-doc nil) ; via `syntax-type' property
3007 (here-doc-delim nil) ; via `syntax-type' property
3008 (format nil) ; via `syntax-type' property
3009 (in-pod nil) ; via `in-pod' property
3010 (comment-special:at-beginning-of-line nil)
3011 (string t)
3012 (comment nil))
3013 "Alist of indentation rules for CPerl mode.
3014 The values mean:
3015 nil: do not indent;
3016 number: add this amount of indentation.")
3018 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start
3019 "Return appropriate indentation for current line as Perl code.
3020 In usual case returns an integer: the column to indent to.
3021 Returns nil if line starts inside a string, t if in a comment.
3023 Will not correct the indentation for labels, but will correct it for braces
3024 and closing parentheses and brackets."
3025 ;; This code is still a broken architecture: in some cases we need to
3026 ;; compensate for some modifications which `cperl-indent-line' will add later
3027 (save-excursion
3028 (let ((i (cperl-sniff-for-indent parse-data)) what p)
3029 (cond
3030 ;;((or (null i) (eq i t) (numberp i))
3031 ;; i)
3032 ((vectorp i)
3033 (setq what (assoc (elt i 0) cperl-indent-rules-alist))
3034 (cond
3035 (what (cadr what)) ; Load from table
3037 ;; Indenters for regular expressions with //x and qw()
3039 ((eq 'REx-part2 (elt i 0)) ;; [self start] start of /REP in s//REP/x
3040 (goto-char (elt i 1))
3041 (condition-case nil ; Use indentation of the 1st part
3042 (forward-sexp -1))
3043 (current-column))
3044 ((eq 'indentable (elt i 0)) ; Indenter for REGEXP qw() etc
3045 (cond ;;; [indentable terminator start-pos is-block]
3046 ((eq 'terminator (elt i 1)) ; Lone terminator of "indentable string"
3047 (goto-char (elt i 2)) ; After opening parens
3048 (1- (current-column)))
3049 ((eq 'first-line (elt i 1)); [indentable first-line start-pos]
3050 (goto-char (elt i 2))
3051 (+ (or cperl-regexp-indent-step cperl-indent-level)
3053 (current-column)))
3054 ((eq 'cont-line (elt i 1)); [indentable cont-line pos prev-pos first-char start-pos]
3055 ;; Indent as the level after closing parens
3056 (goto-char (elt i 2)) ; indent line
3057 (skip-chars-forward " \t)") ; Skip closing parens
3058 (setq p (point))
3059 (goto-char (elt i 3)) ; previous line
3060 (skip-chars-forward " \t)") ; Skip closing parens
3061 ;; Number of parens in between:
3062 (setq p (nth 0 (parse-partial-sexp (point) p))
3063 what (elt i 4)) ; First char on current line
3064 (goto-char (elt i 3)) ; previous line
3065 (+ (* p (or cperl-regexp-indent-step cperl-indent-level))
3066 (cond ((eq what ?\) )
3067 (- cperl-close-paren-offset)) ; compensate
3068 ((eq what ?\| )
3069 (- (or cperl-regexp-indent-step cperl-indent-level)))
3070 (t 0))
3071 (if (eq (following-char) ?\| )
3072 (or cperl-regexp-indent-step cperl-indent-level)
3074 (current-column)))
3076 (error "Unrecognized value of indent: %s" i))))
3078 ;; Indenter for stuff at toplevel
3080 ((eq 'toplevel (elt i 0)) ;; [toplevel start char-after state immed-after-block]
3081 (+ (save-excursion ; To beg-of-defun, or end of last sexp
3082 (goto-char (elt i 1)) ; start = Good place to start parsing
3083 (- (current-indentation) ;
3084 (if (elt i 4) cperl-indent-level 0))) ; immed-after-block
3085 (if (eq (elt i 2) ?{) cperl-continued-brace-offset 0) ; char-after
3086 ;; Look at previous line that's at column 0
3087 ;; to determine whether we are in top-level decls
3088 ;; or function's arg decls. Set basic-indent accordingly.
3089 ;; Now add a little if this is a continuation line.
3090 (if (elt i 3) ; state (XXX What is the semantic???)
3092 cperl-continued-statement-offset)))
3094 ;; Indenter for stuff in "parentheses" (or brackets, braces-as-hash)
3096 ((eq 'in-parens (elt i 0))
3097 ;; in-parens char-after old-indent-point is-brace containing-sexp
3099 ;; group is an expression, not a block:
3100 ;; indent to just after the surrounding open parens,
3101 ;; skip blanks if we do not close the expression.
3102 (+ (progn
3103 (goto-char (elt i 2)) ; old-indent-point
3104 (current-column))
3105 (if (and (elt i 3) ; is-brace
3106 (eq (elt i 1) ?\})) ; char-after
3107 ;; Correct indentation of trailing ?\}
3108 (+ cperl-indent-level cperl-close-paren-offset)
3109 0)))
3111 ;; Indenter for continuation lines
3113 ((eq 'continuation (elt i 0))
3114 ;; [continuation statement-start char-after is-block is-brace]
3115 (goto-char (elt i 1)) ; statement-start
3116 (+ (if (memq (elt i 2) (append "}])" nil)) ; char-after
3117 0 ; Closing parenth
3118 cperl-continued-statement-offset)
3119 (if (or (elt i 3) ; is-block
3120 (not (elt i 4)) ; is-brace
3121 (not (eq (elt i 2) ?\}))) ; char-after
3123 ;; Now it is a hash reference
3124 (+ cperl-indent-level cperl-close-paren-offset))
3125 ;; Labels do not take :: ...
3126 (if (looking-at "\\(\\w\\|_\\)+[ \t]*:")
3127 (if (> (current-indentation) cperl-min-label-indent)
3128 (- (current-indentation) cperl-label-offset)
3129 ;; Do not move `parse-data', this should
3130 ;; be quick anyway (this comment comes
3131 ;; from different location):
3132 (cperl-calculate-indent))
3133 (current-column))
3134 (if (eq (elt i 2) ?\{) ; char-after
3135 cperl-continued-brace-offset 0)))
3137 ;; Indenter for lines in a block which are not leading lines
3139 ((eq 'have-prev-sibling (elt i 0))
3140 ;; [have-prev-sibling sibling-beg colon-line-end block-start]
3141 (goto-char (elt i 1)) ; sibling-beg
3142 (if (> (elt i 2) (point)) ; colon-line-end; have label before point
3143 (if (> (current-indentation)
3144 cperl-min-label-indent)
3145 (- (current-indentation) cperl-label-offset)
3146 ;; Do not believe: `max' was involved in calculation of indent
3147 (+ cperl-indent-level
3148 (save-excursion
3149 (goto-char (elt i 3)) ; block-start
3150 (current-indentation))))
3151 (current-column)))
3153 ;; Indenter for the first line in a block
3155 ((eq 'code-start-in-block (elt i 0))
3156 ;;[code-start-in-block before-brace char-after
3157 ;; is-a-HASH-ref brace-is-first-thing-on-a-line
3158 ;; group-starts-before-start-of-sub start-of-control-group]
3159 (goto-char (elt i 1))
3160 ;; For open brace in column zero, don't let statement
3161 ;; start there too. If cperl-indent-level=0,
3162 ;; use cperl-brace-offset + cperl-continued-statement-offset instead.
3163 (+ (if (and (bolp) (zerop cperl-indent-level))
3164 (+ cperl-brace-offset cperl-continued-statement-offset)
3165 cperl-indent-level)
3166 (if (and (elt i 3) ; is-a-HASH-ref
3167 (eq (elt i 2) ?\})) ; char-after: End of a hash reference
3168 (+ cperl-indent-level cperl-close-paren-offset)
3170 ;; Unless openbrace is the first nonwhite thing on the line,
3171 ;; add the cperl-brace-imaginary-offset.
3172 (if (elt i 4) 0 ; brace-is-first-thing-on-a-line
3173 cperl-brace-imaginary-offset)
3174 (progn
3175 (goto-char (elt i 6)) ; start-of-control-group
3176 (if (elt i 5) ; group-starts-before-start-of-sub
3177 (current-column)
3178 ;; Get initial indentation of the line we are on.
3179 ;; If line starts with label, calculate label indentation
3180 (if (save-excursion
3181 (beginning-of-line)
3182 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]"))
3183 (if (> (current-indentation) cperl-min-label-indent)
3184 (- (current-indentation) cperl-label-offset)
3185 ;; Do not move `parse-data', this should
3186 ;; be quick anyway:
3187 (cperl-calculate-indent))
3188 (current-indentation))))))
3190 (error "Unrecognized value of indent: %s" i))))
3192 (error "Got strange value of indent: %s" i))))))
3194 (defun cperl-calculate-indent-within-comment ()
3195 "Return the indentation amount for line, assuming that
3196 the current line is to be regarded as part of a block comment."
3197 (let (end star-start)
3198 (save-excursion
3199 (beginning-of-line)
3200 (skip-chars-forward " \t")
3201 (setq end (point))
3202 (and (= (following-char) ?#)
3203 (forward-line -1)
3204 (cperl-to-comment-or-eol)
3205 (setq end (point)))
3206 (goto-char end)
3207 (current-column))))
3210 (defun cperl-to-comment-or-eol ()
3211 "Go to position before comment on the current line, or to end of line.
3212 Returns true if comment is found. In POD will not move the point."
3213 ;; If the line is inside other syntax groups (qq-style strings, HERE-docs)
3214 ;; then looks for literal # or end-of-line.
3215 (let (state stop-in cpoint (lim (point-at-eol)) pr e)
3216 (or cperl-font-locking
3217 (cperl-update-syntaxification lim lim))
3218 (beginning-of-line)
3219 (if (setq pr (get-text-property (point) 'syntax-type))
3220 (setq e (next-single-property-change (point) 'syntax-type nil (point-max))))
3221 (if (or (eq pr 'pod)
3222 (if (or (not e) (> e lim)) ; deep inside a group
3223 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)))
3224 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t))
3225 ;; Else - need to do it the hard way
3226 (and (and e (<= e lim))
3227 (goto-char e))
3228 (while (not stop-in)
3229 (setq state (parse-partial-sexp (point) lim nil nil nil t))
3230 ; stop at comment
3231 ;; If fails (beginning-of-line inside sexp), then contains not-comment
3232 (if (nth 4 state) ; After `#';
3233 ; (nth 2 state) can be
3234 ; beginning of m,s,qq and so
3235 ; on
3236 (if (nth 2 state)
3237 (progn
3238 (setq cpoint (point))
3239 (goto-char (nth 2 state))
3240 (cond
3241 ((looking-at "\\(s\\|tr\\)\\>")
3242 (or (re-search-forward
3243 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*"
3244 lim 'move)
3245 (setq stop-in t)))
3246 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>")
3247 (or (re-search-forward
3248 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#"
3249 lim 'move)
3250 (setq stop-in t)))
3251 (t ; It was fair comment
3252 (setq stop-in t) ; Finish
3253 (goto-char (1- cpoint)))))
3254 (setq stop-in t) ; Finish
3255 (forward-char -1))
3256 (setq stop-in t))) ; Finish
3257 (nth 4 state))))
3259 (defsubst cperl-modify-syntax-type (at how)
3260 (if (< at (point-max))
3261 (progn
3262 (put-text-property at (1+ at) 'syntax-table how)
3263 (put-text-property at (1+ at) 'rear-nonsticky '(syntax-table)))))
3265 (defun cperl-protect-defun-start (s e)
3266 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations
3267 (save-excursion
3268 (goto-char s)
3269 (while (re-search-forward "^\\s(" e 'to-end)
3270 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct))))
3272 (defun cperl-commentify (bb e string &optional noface)
3273 (if cperl-use-syntax-table-text-property
3274 (if (eq noface 'n) ; Only immediate
3276 ;; We suppose that e is _after_ the end of construction, as after eol.
3277 (setq string (if string cperl-st-sfence cperl-st-cfence))
3278 (if (> bb (- e 2))
3279 ;; one-char string/comment?!
3280 (cperl-modify-syntax-type bb cperl-st-punct)
3281 (cperl-modify-syntax-type bb string)
3282 (cperl-modify-syntax-type (1- e) string))
3283 (if (and (eq string cperl-st-sfence) (> (- e 2) bb))
3284 (put-text-property (1+ bb) (1- e)
3285 'syntax-table cperl-string-syntax-table))
3286 (cperl-protect-defun-start bb e))
3287 ;; Fontify
3288 (or noface
3289 (not cperl-pod-here-fontify)
3290 (put-text-property bb e 'face (if string 'font-lock-string-face
3291 'font-lock-comment-face)))))
3293 (defvar cperl-starters '(( ?\( . ?\) )
3294 ( ?\[ . ?\] )
3295 ( ?\{ . ?\} )
3296 ( ?\< . ?\> )))
3298 (defun cperl-cached-syntax-table (st)
3299 "Get a syntax table cached in ST, or create and cache into ST a syntax table.
3300 All the entries of the syntax table are \".\", except for a backslash, which
3301 is quoting."
3302 (if (car-safe st)
3303 (car st)
3304 (setcar st (make-syntax-table))
3305 (setq st (car st))
3306 (let ((i 0))
3307 (while (< i 256)
3308 (modify-syntax-entry i "." st)
3309 (setq i (1+ i))))
3310 (modify-syntax-entry ?\\ "\\" st)
3311 st))
3313 (defun cperl-forward-re (lim end is-2arg st-l err-l argument
3314 &optional ostart oend)
3315 "Find the end of a regular expression or a stringish construct (q[] etc).
3316 The point should be before the starting delimiter.
3318 Goes to LIM if none is found. If IS-2ARG is non-nil, assumes that it
3319 is s/// or tr/// like expression. If END is nil, generates an error
3320 message if needed. If SET-ST is non-nil, will use (or generate) a
3321 cached syntax table in ST-L. If ERR-L is non-nil, will store the
3322 error message in its CAR (unless it already contains some error
3323 message). ARGUMENT should be the name of the construct (used in error
3324 messages). OSTART, OEND may be set in recursive calls when processing
3325 the second argument of 2ARG construct.
3327 Works *before* syntax recognition is done. In IS-2ARG situation may
3328 modify syntax-type text property if the situation is too hard."
3329 (let (b starter ender st i i2 go-forward reset-st set-st)
3330 (skip-chars-forward " \t")
3331 ;; ender means matching-char matcher.
3332 (setq b (point)
3333 starter (if (eobp) 0 (char-after b))
3334 ender (cdr (assoc starter cperl-starters)))
3335 ;; What if starter == ?\\ ????
3336 (setq st (cperl-cached-syntax-table st-l))
3337 (setq set-st t)
3338 ;; Whether we have an intermediate point
3339 (setq i nil)
3340 ;; Prepare the syntax table:
3341 (if (not ender) ; m/blah/, s/x//, s/x/y/
3342 (modify-syntax-entry starter "$" st)
3343 (modify-syntax-entry starter (concat "(" (list ender)) st)
3344 (modify-syntax-entry ender (concat ")" (list starter)) st))
3345 (condition-case bb
3346 (progn
3347 ;; We use `$' syntax class to find matching stuff, but $$
3348 ;; is recognized the same as $, so we need to check this manually.
3349 (if (and (eq starter (char-after (cperl-1+ b)))
3350 (not ender))
3351 ;; $ has TeXish matching rules, so $$ equiv $...
3352 (forward-char 2)
3353 (setq reset-st (syntax-table))
3354 (set-syntax-table st)
3355 (forward-sexp 1)
3356 (if (<= (point) (1+ b))
3357 (error "Unfinished regular expression"))
3358 (set-syntax-table reset-st)
3359 (setq reset-st nil)
3360 ;; Now the problem is with m;blah;;
3361 (and (not ender)
3362 (eq (preceding-char)
3363 (char-after (- (point) 2)))
3364 (save-excursion
3365 (forward-char -2)
3366 (= 0 (% (skip-chars-backward "\\\\") 2)))
3367 (forward-char -1)))
3368 ;; Now we are after the first part.
3369 (and is-2arg ; Have trailing part
3370 (not ender)
3371 (eq (following-char) starter) ; Empty trailing part
3372 (progn
3373 (or (eq (char-syntax (following-char)) ?.)
3374 ;; Make trailing letter into punctuation
3375 (cperl-modify-syntax-type (point) cperl-st-punct))
3376 (setq is-2arg nil go-forward t))) ; Ignore the tail
3377 (if is-2arg ; Not number => have second part
3378 (progn
3379 (setq i (point) i2 i)
3380 (if ender
3381 (if (memq (following-char) '(?\s ?\t ?\n ?\f))
3382 (progn
3383 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
3384 (goto-char (match-end 0))
3385 (skip-chars-forward " \t\n\f"))
3386 (setq i2 (point))))
3387 (forward-char -1))
3388 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st)
3389 (if ender (modify-syntax-entry ender "." st))
3390 (setq set-st nil)
3391 (setq ender (cperl-forward-re lim end nil st-l err-l
3392 argument starter ender)
3393 ender (nth 2 ender)))))
3394 (error (goto-char lim)
3395 (setq set-st nil)
3396 (if reset-st
3397 (set-syntax-table reset-st))
3398 (or end
3399 (and cperl-brace-recursing
3400 (or (eq ostart ?\{)
3401 (eq starter ?\{)))
3402 (message
3403 "End of `%s%s%c ... %c' string/RE not found: %s"
3404 argument
3405 (if ostart (format "%c ... %c" ostart (or oend ostart)) "")
3406 starter (or ender starter) bb)
3407 (or (car err-l) (setcar err-l b)))))
3408 (if set-st
3409 (progn
3410 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st)
3411 (if ender (modify-syntax-entry ender "." st))))
3412 ;; i: have 2 args, after end of the first arg
3413 ;; i2: start of the second arg, if any (before delim if `ender').
3414 ;; ender: the last arg bounded by parens-like chars, the second one of them
3415 ;; starter: the starting delimiter of the first arg
3416 ;; go-forward: has 2 args, and the second part is empty
3417 (list i i2 ender starter go-forward)))
3419 (defun cperl-forward-group-in-re (&optional st-l)
3420 "Find the end of a group in a REx.
3421 Return the error message (if any). Does not work if delimiter is `)'.
3422 Works before syntax recognition is done."
3423 ;; Works *before* syntax recognition is done
3424 (or st-l (setq st-l (list nil))) ; Avoid overwriting '()
3425 (let (st b reset-st)
3426 (condition-case b
3427 (progn
3428 (setq st (cperl-cached-syntax-table st-l))
3429 (modify-syntax-entry ?\( "()" st)
3430 (modify-syntax-entry ?\) ")(" st)
3431 (setq reset-st (syntax-table))
3432 (set-syntax-table st)
3433 (forward-sexp 1))
3434 (error (message
3435 "cperl-forward-group-in-re: error %s" b)))
3436 ;; now restore the initial state
3437 (if st
3438 (progn
3439 (modify-syntax-entry ?\( "." st)
3440 (modify-syntax-entry ?\) "." st)))
3441 (if reset-st
3442 (set-syntax-table reset-st))
3446 (defvar font-lock-string-face)
3447 ;;(defvar font-lock-reference-face)
3448 (defvar font-lock-constant-face)
3449 (defsubst cperl-postpone-fontification (b e type val &optional now)
3450 ;; Do after syntactic fontification?
3451 (if cperl-syntaxify-by-font-lock
3452 (or now (put-text-property b e 'cperl-postpone (cons type val)))
3453 (put-text-property b e type val)))
3455 ;;; Here is how the global structures (those which cannot be
3456 ;;; recognized locally) are marked:
3457 ;; a) PODs:
3458 ;; Start-to-end is marked `in-pod' ==> t
3459 ;; Each non-literal part is marked `syntax-type' ==> `pod'
3460 ;; Each literal part is marked `syntax-type' ==> `in-pod'
3461 ;; b) HEREs:
3462 ;; Start-to-end is marked `here-doc-group' ==> t
3463 ;; The body is marked `syntax-type' ==> `here-doc'
3464 ;; The delimiter is marked `syntax-type' ==> `here-doc-delim'
3465 ;; c) FORMATs:
3466 ;; First line (to =) marked `first-format-line' ==> t
3467 ;; After-this--to-end is marked `syntax-type' ==> `format'
3468 ;; d) 'Q'uoted string:
3469 ;; part between markers inclusive is marked `syntax-type' ==> `string'
3470 ;; part between `q' and the first marker is marked `syntax-type' ==> `prestring'
3471 ;; second part of s///e is marked `syntax-type' ==> `multiline'
3472 ;; e) Attributes of subroutines: `attrib-group' ==> t
3473 ;; (or 0 if declaration); up to `{' or ';': `syntax-type' => `sub-decl'.
3474 ;; f) Multiline my/our declaration lists etc: `syntax-type' => `multiline'
3476 ;;; In addition, some parts of RExes may be marked as `REx-interpolated'
3477 ;;; (value: 0 in //o, 1 if "interpolated variable" is whole-REx, t otherwise).
3479 (defun cperl-unwind-to-safe (before &optional end)
3480 ;; if BEFORE, go to the previous start-of-line on each step of unwinding
3481 (let ((pos (point)) opos)
3482 (while (and pos (progn
3483 (beginning-of-line)
3484 (get-text-property (setq pos (point)) 'syntax-type)))
3485 (setq opos pos
3486 pos (cperl-beginning-of-property pos 'syntax-type))
3487 (if (eq pos (point-min))
3488 (setq pos nil))
3489 (if pos
3490 (if before
3491 (progn
3492 (goto-char (cperl-1- pos))
3493 (beginning-of-line)
3494 (setq pos (point)))
3495 (goto-char (setq pos (cperl-1- pos))))
3496 ;; Up to the start
3497 (goto-char (point-min))))
3498 ;; Skip empty lines
3499 (and (looking-at "\n*=")
3500 (/= 0 (skip-chars-backward "\n"))
3501 (forward-char))
3502 (setq pos (point))
3503 (if end
3504 ;; Do the same for end, going small steps
3505 (save-excursion
3506 (while (and end (< end (point-max))
3507 (get-text-property end 'syntax-type))
3508 (setq pos end
3509 end (next-single-property-change end 'syntax-type nil (point-max)))
3510 (if end (progn (goto-char end)
3511 (or (bolp) (forward-line 1))
3512 (setq end (point)))))
3513 (or end pos)))))
3515 ;;; These are needed for byte-compile (at least with v19)
3516 (defvar cperl-nonoverridable-face)
3517 (defvar font-lock-variable-name-face)
3518 (defvar font-lock-function-name-face)
3519 (defvar font-lock-keyword-face)
3520 (defvar font-lock-builtin-face)
3521 (defvar font-lock-type-face)
3522 (defvar font-lock-comment-face)
3523 (defvar font-lock-warning-face)
3525 (defun cperl-find-sub-attrs (&optional st-l b-fname e-fname pos)
3526 "Syntactically mark (and fontify) attributes of a subroutine.
3527 Should be called with the point before leading colon of an attribute."
3528 ;; Works *before* syntax recognition is done
3529 (or st-l (setq st-l (list nil))) ; Avoid overwriting '()
3530 (let (st b p reset-st after-first (start (point)) start1 end1)
3531 (condition-case b
3532 (while (looking-at
3533 (concat
3534 "\\(" ; 1=optional? colon
3535 ":" cperl-maybe-white-and-comment-rex ; 2=whitespace/comment?
3536 "\\)"
3537 (if after-first "?" "")
3538 ;; No space between name and paren allowed...
3539 "\\(\\sw+\\)" ; 3=name
3540 "\\((\\)?")) ; 4=optional paren
3541 (and (match-beginning 1)
3542 (cperl-postpone-fontification
3543 (match-beginning 0) (cperl-1+ (match-beginning 0))
3544 'face font-lock-constant-face))
3545 (setq start1 (match-beginning 3) end1 (match-end 3))
3546 (cperl-postpone-fontification start1 end1
3547 'face font-lock-constant-face)
3548 (goto-char end1) ; end or before `('
3549 (if (match-end 4) ; Have attribute arguments...
3550 (progn
3551 (if st nil
3552 (setq st (cperl-cached-syntax-table st-l))
3553 (modify-syntax-entry ?\( "()" st)
3554 (modify-syntax-entry ?\) ")(" st))
3555 (setq reset-st (syntax-table) p (point))
3556 (set-syntax-table st)
3557 (forward-sexp 1)
3558 (set-syntax-table reset-st)
3559 (setq reset-st nil)
3560 (cperl-commentify p (point) t))) ; mark as string
3561 (forward-comment (buffer-size))
3562 (setq after-first t))
3563 (error (message
3564 "L%d: attribute `%s': %s"
3565 (count-lines (point-min) (point))
3566 (and start1 end1 (buffer-substring start1 end1)) b)
3567 (setq start nil)))
3568 (and start
3569 (progn
3570 (put-text-property start (point)
3571 'attrib-group (if (looking-at "{") t 0))
3572 (and pos
3573 (< 1 (count-lines (+ 3 pos) (point))) ; end of `sub'
3574 ;; Apparently, we do not need `multiline': faces added now
3575 (put-text-property (+ 3 pos) (cperl-1+ (point))
3576 'syntax-type 'sub-decl))
3577 (and b-fname ; Fontify here: the following condition
3578 (cperl-postpone-fontification ; is too hard to determine by
3579 b-fname e-fname 'face ; a REx, so do it here
3580 (if (looking-at "{")
3581 font-lock-function-name-face
3582 font-lock-variable-name-face)))))
3583 ;; now restore the initial state
3584 (if st
3585 (progn
3586 (modify-syntax-entry ?\( "." st)
3587 (modify-syntax-entry ?\) "." st)))
3588 (if reset-st
3589 (set-syntax-table reset-st))))
3591 (defsubst cperl-look-at-leading-count (is-x-REx e)
3592 (if (and
3593 (< (point) e)
3594 (re-search-forward (concat "\\=" (if is-x-REx "[ \t\n]*" "") "[{?+*]")
3595 (1- e) t)) ; return nil on failure, no moving
3596 (if (eq ?\{ (preceding-char)) nil
3597 (cperl-postpone-fontification
3598 (1- (point)) (point)
3599 'face font-lock-warning-face))))
3601 ;; Do some smarter-highlighting
3602 ;; XXXX Currently ignores alphanum/dash delims,
3603 (defsubst cperl-highlight-charclass (endbracket dashface bsface onec-space)
3604 (let ((l '(1 5 7)) ll lle lll
3605 ;; 2 groups, the first takes the whole match (include \[trnfabe])
3606 (singleChar (concat "\\(" "[^\\\\]" "\\|" "\\\\[^cdg-mo-qsu-zA-Z0-9_]" "\\|" "\\\\c." "\\|" "\\\\x" "\\([0-9a-fA-F][0-9a-fA-F]?\\|\\={[0-9a-fA-F]+}\\)" "\\|" "\\\\0?[0-7][0-7]?[0-7]?" "\\|" "\\\\N{[^{}]*}" "\\)")))
3607 (while ; look for unescaped - between non-classes
3608 (re-search-forward
3609 ;; On 19.33, certain simplifications lead
3610 ;; to bugs (as in [^a-z] \\| [trnfabe] )
3611 (concat ; 1: SingleChar (include \[trnfabe])
3612 singleChar
3613 ;;"\\(" "[^\\\\]" "\\|" "\\\\[^cdg-mo-qsu-zA-Z0-9_]" "\\|" "\\\\c." "\\|" "\\\\x" "\\([0-9a-fA-F][0-9a-fA-F]?\\|\\={[0-9a-fA-F]+}\\)" "\\|" "\\\\0?[0-7][0-7]?[0-7]?" "\\|" "\\\\N{[^{}]*}" "\\)"
3614 "\\(" ; 3: DASH SingleChar (match optionally)
3615 "\\(-\\)" ; 4: DASH
3616 singleChar ; 5: SingleChar
3617 ;;"\\(" "[^\\\\]" "\\|" "\\\\[^cdg-mo-qsu-zA-Z0-9_]" "\\|" "\\\\c." "\\|" "\\\\x" "\\([0-9a-fA-F][0-9a-fA-F]?\\|\\={[0-9a-fA-F]+}\\)" "\\|" "\\\\0?[0-7][0-7]?[0-7]?" "\\|" "\\\\N{[^{}]*}" "\\)"
3618 "\\)?"
3619 "\\|"
3620 "\\(" ; 7: other escapes
3621 "\\\\[pP]" "\\([^{]\\|{[^{}]*}\\)"
3622 "\\|" "\\\\[^pP]" "\\)"
3624 endbracket 'toend)
3625 (if (match-beginning 4)
3626 (cperl-postpone-fontification
3627 (match-beginning 4) (match-end 4)
3628 'face dashface))
3629 ;; save match data (for looking-at)
3630 (setq lll (mapcar (function (lambda (elt) (cons (match-beginning elt)
3631 (match-end elt)))) l))
3632 (while lll
3633 (setq ll (car lll))
3634 (setq lle (cdr ll)
3635 ll (car ll))
3636 ;; (message "Got %s of %s" ll l)
3637 (if (and ll (eq (char-after ll) ?\\ ))
3638 (save-excursion
3639 (goto-char ll)
3640 (cperl-postpone-fontification ll (1+ ll)
3641 'face bsface)
3642 (if (looking-at "\\\\[a-zA-Z0-9]")
3643 (cperl-postpone-fontification (1+ ll) lle
3644 'face onec-space))))
3645 (setq lll (cdr lll))))
3646 (goto-char endbracket) ; just in case something misbehaves???
3649 ;;; Debugging this may require (setq max-specpdl-size 2000)...
3650 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max end-of-here-doc)
3651 "Scans the buffer for hard-to-parse Perl constructions.
3652 If `cperl-pod-here-fontify' is not-nil after evaluation, will fontify
3653 the sections using `cperl-pod-head-face', `cperl-pod-face',
3654 `cperl-here-face'."
3655 (interactive)
3656 (or min (setq min (point-min)
3657 cperl-syntax-state nil
3658 cperl-syntax-done-to min))
3659 (or max (setq max (point-max)))
3660 (let* ((cperl-pod-here-fontify (eval cperl-pod-here-fontify)) go tmpend
3661 face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb
3662 is-REx is-x-REx REx-subgr-start REx-subgr-end was-subgr i2 hairy-RE
3663 (case-fold-search nil) (inhibit-read-only t) (buffer-undo-list t)
3664 (modified (buffer-modified-p)) overshoot is-o-REx name
3665 (after-change-functions nil)
3666 (cperl-font-locking t)
3667 (use-syntax-state (and cperl-syntax-state
3668 (>= min (car cperl-syntax-state))))
3669 (state-point (if use-syntax-state
3670 (car cperl-syntax-state)
3671 (point-min)))
3672 (state (if use-syntax-state
3673 (cdr cperl-syntax-state)))
3674 ;; (st-l '(nil)) (err-l '(nil)) ; Would overwrite - propagates from a function call to a function call!
3675 (st-l (list nil)) (err-l (list nil))
3676 ;; Somehow font-lock may be not loaded yet...
3677 ;; (e.g., when building TAGS via command-line call)
3678 (font-lock-string-face (if (boundp 'font-lock-string-face)
3679 font-lock-string-face
3680 'font-lock-string-face))
3681 (my-cperl-delimiters-face (if (boundp 'font-lock-constant-face)
3682 font-lock-constant-face
3683 'font-lock-constant-face))
3684 (my-cperl-REx-spec-char-face ; [] ^.$ and wrapper-of ({})
3685 (if (boundp 'font-lock-function-name-face)
3686 font-lock-function-name-face
3687 'font-lock-function-name-face))
3688 (font-lock-variable-name-face ; interpolated vars and ({})-code
3689 (if (boundp 'font-lock-variable-name-face)
3690 font-lock-variable-name-face
3691 'font-lock-variable-name-face))
3692 (font-lock-function-name-face ; used in `cperl-find-sub-attrs'
3693 (if (boundp 'font-lock-function-name-face)
3694 font-lock-function-name-face
3695 'font-lock-function-name-face))
3696 (font-lock-constant-face ; used in `cperl-find-sub-attrs'
3697 (if (boundp 'font-lock-constant-face)
3698 font-lock-constant-face
3699 'font-lock-constant-face))
3700 (my-cperl-REx-0length-face ; 0-length, (?:)etc, non-literal \
3701 (if (boundp 'font-lock-builtin-face)
3702 font-lock-builtin-face
3703 'font-lock-builtin-face))
3704 (font-lock-comment-face
3705 (if (boundp 'font-lock-comment-face)
3706 font-lock-comment-face
3707 'font-lock-comment-face))
3708 (font-lock-warning-face
3709 (if (boundp 'font-lock-warning-face)
3710 font-lock-warning-face
3711 'font-lock-warning-face))
3712 (my-cperl-REx-ctl-face ; (|)
3713 (if (boundp 'font-lock-keyword-face)
3714 font-lock-keyword-face
3715 'font-lock-keyword-face))
3716 (my-cperl-REx-modifiers-face ; //gims
3717 (if (boundp 'cperl-nonoverridable-face)
3718 cperl-nonoverridable-face
3719 'cperl-nonoverridable-face))
3720 (my-cperl-REx-length1-face ; length=1 escaped chars, POSIX classes
3721 (if (boundp 'font-lock-type-face)
3722 font-lock-type-face
3723 'font-lock-type-face))
3724 (stop-point (if ignore-max
3725 (point-max)
3726 max))
3727 (search
3728 (concat
3729 "\\(\\`\n?\\|^\n\\)=" ; POD
3730 "\\|"
3731 ;; One extra () before this:
3732 "<<" ; HERE-DOC
3733 "\\(" ; 1 + 1
3734 ;; First variant "BLAH" or just ``.
3735 "[ \t]*" ; Yes, whitespace is allowed!
3736 "\\([\"'`]\\)" ; 2 + 1 = 3
3737 "\\([^\"'`\n]*\\)" ; 3 + 1
3738 "\\3"
3739 "\\|"
3740 ;; Second variant: Identifier or \ID (same as 'ID') or empty
3741 "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1
3742 ;; Do not have <<= or << 30 or <<30 or << $blah.
3743 ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1
3744 "\\(\\)" ; To preserve count of pars :-( 6 + 1
3745 "\\)"
3746 "\\|"
3747 ;; 1+6 extra () before this:
3748 "^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" ;FRMAT
3749 (if cperl-use-syntax-table-text-property
3750 (concat
3751 "\\|"
3752 ;; 1+6+2=9 extra () before this:
3753 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" ; QUOTED CONSTRUCT
3754 "\\|"
3755 ;; 1+6+2+1=10 extra () before this:
3756 "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob>
3757 "\\|"
3758 ;; 1+6+2+1+1=11 extra () before this
3759 "\\<sub\\>" ; sub with proto/attr
3760 "\\("
3761 cperl-white-and-comment-rex
3762 "\\(::[a-zA-Z_:'0-9]*\\|[a-zA-Z_'][a-zA-Z_:'0-9]*\\)\\)?" ; name
3763 "\\("
3764 cperl-maybe-white-and-comment-rex
3765 "\\(([^()]*)\\|:[^:]\\)\\)" ; prototype or attribute start
3766 "\\|"
3767 ;; 1+6+2+1+1+6=17 extra () before this:
3768 "\\$\\(['{]\\)" ; $' or ${foo}
3769 "\\|"
3770 ;; 1+6+2+1+1+6+1=18 extra () before this (old pack'var syntax;
3771 ;; we do not support intervening comments...):
3772 "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'"
3773 ;; 1+6+2+1+1+6+1+1=19 extra () before this:
3774 "\\|"
3775 "__\\(END\\|DATA\\)__" ; __END__ or __DATA__
3776 ;; 1+6+2+1+1+6+1+1+1=20 extra () before this:
3777 "\\|"
3778 "\\\\\\(['`\"($]\\)") ; BACKWACKED something-hairy
3779 ""))))
3780 (unwind-protect
3781 (progn
3782 (save-excursion
3783 (or non-inter
3784 (message "Scanning for \"hard\" Perl constructions..."))
3785 ;;(message "find: %s --> %s" min max)
3786 (and cperl-pod-here-fontify
3787 ;; We had evals here, do not know why...
3788 (setq face cperl-pod-face
3789 head-face cperl-pod-head-face
3790 here-face cperl-here-face))
3791 (remove-text-properties min max
3792 '(syntax-type t in-pod t syntax-table t
3793 attrib-group t
3794 REx-interpolated t
3795 cperl-postpone t
3796 syntax-subtype t
3797 rear-nonsticky t
3798 front-sticky t
3799 here-doc-group t
3800 first-format-line t
3801 REx-part2 t
3802 indentable t))
3803 ;; Need to remove face as well...
3804 (goto-char min)
3805 ;; 'emx not supported by Emacs since at least 21.1.
3806 (and (featurep 'xemacs) (eq system-type 'emx)
3807 (eq (point) 1)
3808 (let ((case-fold-search t))
3809 (looking-at "extproc[ \t]")) ; Analogue of #!
3810 (cperl-commentify min
3811 (point-at-eol)
3812 nil))
3813 (while (and
3814 (< (point) max)
3815 (re-search-forward search max t))
3816 (setq tmpend nil) ; Valid for most cases
3817 (setq b (match-beginning 0)
3818 state (save-excursion (parse-partial-sexp
3819 state-point b nil nil state))
3820 state-point b)
3821 (cond
3822 ;; 1+6+2+1+1+6=17 extra () before this:
3823 ;; "\\$\\(['{]\\)"
3824 ((match-beginning 18) ; $' or ${foo}
3825 (if (eq (preceding-char) ?\') ; $'
3826 (progn
3827 (setq b (1- (point))
3828 state (parse-partial-sexp
3829 state-point (1- b) nil nil state)
3830 state-point (1- b))
3831 (if (nth 3 state) ; in string
3832 (cperl-modify-syntax-type (1- b) cperl-st-punct))
3833 (goto-char (1+ b)))
3834 ;; else: ${
3835 (setq bb (match-beginning 0))
3836 (cperl-modify-syntax-type bb cperl-st-punct)))
3837 ;; No processing in strings/comments beyond this point:
3838 ((or (nth 3 state) (nth 4 state))
3839 t) ; Do nothing in comment/string
3840 ((match-beginning 1) ; POD section
3841 ;; "\\(\\`\n?\\|^\n\\)="
3842 (setq b (match-beginning 0)
3843 state (parse-partial-sexp
3844 state-point b nil nil state)
3845 state-point b)
3846 (if (or (nth 3 state) (nth 4 state)
3847 (looking-at "cut\\>"))
3848 (if (or (nth 3 state) (nth 4 state) ignore-max)
3849 nil ; Doing a chunk only
3850 (message "=cut is not preceded by a POD section")
3851 (or (car err-l) (setcar err-l (point))))
3852 (beginning-of-line)
3854 (setq b (point)
3855 bb b
3856 tb (match-beginning 0)
3857 b1 nil) ; error condition
3858 ;; We do not search to max, since we may be called from
3859 ;; some hook of fontification, and max is random
3860 (or (re-search-forward "^\n=cut\\>" stop-point 'toend)
3861 (progn
3862 (goto-char b)
3863 (if (re-search-forward "\n=cut\\>" stop-point 'toend)
3864 (progn
3865 (message "=cut is not preceded by an empty line")
3866 (setq b1 t)
3867 (or (car err-l) (setcar err-l b))))))
3868 (beginning-of-line 2) ; An empty line after =cut is not POD!
3869 (setq e (point))
3870 (and (> e max)
3871 (progn
3872 (remove-text-properties
3873 max e '(syntax-type t in-pod t syntax-table t
3874 attrib-group t
3875 REx-interpolated t
3876 cperl-postpone t
3877 syntax-subtype t
3878 here-doc-group t
3879 rear-nonsticky t
3880 front-sticky t
3881 first-format-line t
3882 REx-part2 t
3883 indentable t))
3884 (setq tmpend tb)))
3885 (put-text-property b e 'in-pod t)
3886 (put-text-property b e 'syntax-type 'in-pod)
3887 (goto-char b)
3888 (while (re-search-forward "\n\n[ \t]" e t)
3889 ;; We start 'pod 1 char earlier to include the preceding line
3890 (beginning-of-line)
3891 (put-text-property (cperl-1- b) (point) 'syntax-type 'pod)
3892 (cperl-put-do-not-fontify b (point) t)
3893 ;; mark the non-literal parts as PODs
3894 (if cperl-pod-here-fontify
3895 (cperl-postpone-fontification b (point) 'face face t))
3896 (re-search-forward "\n\n[^ \t\f\n]" e 'toend)
3897 (beginning-of-line)
3898 (setq b (point)))
3899 (put-text-property (cperl-1- (point)) e 'syntax-type 'pod)
3900 (cperl-put-do-not-fontify (point) e t)
3901 (if cperl-pod-here-fontify
3902 (progn
3903 ;; mark the non-literal parts as PODs
3904 (cperl-postpone-fontification (point) e 'face face t)
3905 (goto-char bb)
3906 (if (looking-at
3907 "=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$")
3908 ;; mark the headers
3909 (cperl-postpone-fontification
3910 (match-beginning 1) (match-end 1)
3911 'face head-face))
3912 (while (re-search-forward
3913 ;; One paragraph
3914 "^\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$"
3915 e 'toend)
3916 ;; mark the headers
3917 (cperl-postpone-fontification
3918 (match-beginning 1) (match-end 1)
3919 'face head-face))))
3920 (cperl-commentify bb e nil)
3921 (goto-char e)
3922 (or (eq e (point-max))
3923 (forward-char -1)))) ; Prepare for immediate POD start.
3924 ;; Here document
3925 ;; We can do many here-per-line;
3926 ;; but multiline quote on the same line as <<HERE confuses us...
3927 ;; ;; One extra () before this:
3928 ;;"<<"
3929 ;; "\\(" ; 1 + 1
3930 ;; ;; First variant "BLAH" or just ``.
3931 ;; "[ \t]*" ; Yes, whitespace is allowed!
3932 ;; "\\([\"'`]\\)" ; 2 + 1
3933 ;; "\\([^\"'`\n]*\\)" ; 3 + 1
3934 ;; "\\3"
3935 ;; "\\|"
3936 ;; ;; Second variant: Identifier or \ID or empty
3937 ;; "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1
3938 ;; ;; Do not have <<= or << 30 or <<30 or << $blah.
3939 ;; ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1
3940 ;; "\\(\\)" ; To preserve count of pars :-( 6 + 1
3941 ;; "\\)"
3942 ((match-beginning 2) ; 1 + 1
3943 (setq b (point)
3944 tb (match-beginning 0)
3945 c (and ; not HERE-DOC
3946 (match-beginning 5)
3947 (save-match-data
3948 (or (looking-at "[ \t]*(") ; << function_call()
3949 (save-excursion ; 1 << func_name, or $foo << 10
3950 (condition-case nil
3951 (progn
3952 (goto-char tb)
3953 ;;; XXX What to do: foo <<bar ???
3954 ;;; XXX Need to support print {a} <<B ???
3955 (forward-sexp -1)
3956 (save-match-data
3957 ; $foo << b; $f .= <<B;
3958 ; ($f+1) << b; a($f) . <<B;
3959 ; foo 1, <<B; $x{a} <<b;
3960 (cond
3961 ((looking-at "[0-9$({]")
3962 (forward-sexp 1)
3963 (and
3964 (looking-at "[ \t]*<<")
3965 (condition-case nil
3966 ;; print $foo <<EOF
3967 (progn
3968 (forward-sexp -2)
3969 (not
3970 (looking-at "\\(printf?\\|system\\|exec\\|sort\\)\\>")))
3971 (error t)))))))
3972 (error nil))) ; func(<<EOF)
3973 (and (not (match-beginning 6)) ; Empty
3974 (looking-at
3975 "[ \t]*[=0-9$@%&(]"))))))
3976 (if c ; Not here-doc
3977 nil ; Skip it.
3978 (setq c (match-end 2)) ; 1 + 1
3979 (if (match-beginning 5) ;4 + 1
3980 (setq b1 (match-beginning 5) ; 4 + 1
3981 e1 (match-end 5)) ; 4 + 1
3982 (setq b1 (match-beginning 4) ; 3 + 1
3983 e1 (match-end 4))) ; 3 + 1
3984 (setq tag (buffer-substring b1 e1)
3985 qtag (regexp-quote tag))
3986 (cond (cperl-pod-here-fontify
3987 ;; Highlight the starting delimiter
3988 (cperl-postpone-fontification
3989 b1 e1 'face my-cperl-delimiters-face)
3990 (cperl-put-do-not-fontify b1 e1 t)))
3991 (forward-line)
3992 (setq i (point))
3993 (if end-of-here-doc
3994 (goto-char end-of-here-doc))
3995 (setq b (point))
3996 ;; We do not search to max, since we may be called from
3997 ;; some hook of fontification, and max is random
3998 (or (and (re-search-forward (concat "^" qtag "$")
3999 stop-point 'toend)
4000 ;;;(eq (following-char) ?\n) ; XXXX WHY???
4002 (progn ; Pretend we matched at the end
4003 (goto-char (point-max))
4004 (re-search-forward "\\'")
4005 (message "End of here-document `%s' not found." tag)
4006 (or (car err-l) (setcar err-l b))))
4007 (if cperl-pod-here-fontify
4008 (progn
4009 ;; Highlight the ending delimiter
4010 (cperl-postpone-fontification
4011 (match-beginning 0) (match-end 0)
4012 'face my-cperl-delimiters-face)
4013 (cperl-put-do-not-fontify b (match-end 0) t)
4014 ;; Highlight the HERE-DOC
4015 (cperl-postpone-fontification b (match-beginning 0)
4016 'face here-face)))
4017 (setq e1 (cperl-1+ (match-end 0)))
4018 (put-text-property b (match-beginning 0)
4019 'syntax-type 'here-doc)
4020 (put-text-property (match-beginning 0) e1
4021 'syntax-type 'here-doc-delim)
4022 (put-text-property b e1 'here-doc-group t)
4023 ;; This makes insertion at the start of HERE-DOC update
4024 ;; the whole construct:
4025 (put-text-property b (cperl-1+ b) 'front-sticky '(syntax-type))
4026 (cperl-commentify b e1 nil)
4027 (cperl-put-do-not-fontify b (match-end 0) t)
4028 ;; Cache the syntax info...
4029 (setq cperl-syntax-state (cons state-point state))
4030 ;; ... and process the rest of the line...
4031 (setq overshoot
4032 (elt ; non-inter ignore-max
4033 (cperl-find-pods-heres c i t end t e1) 1))
4034 (if (and overshoot (> overshoot (point)))
4035 (goto-char overshoot)
4036 (setq overshoot e1))
4037 (if (> e1 max)
4038 (setq tmpend tb))))
4039 ;; format
4040 ((match-beginning 8)
4041 ;; 1+6=7 extra () before this:
4042 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$"
4043 (setq b (point)
4044 name (if (match-beginning 8) ; 7 + 1
4045 (buffer-substring (match-beginning 8) ; 7 + 1
4046 (match-end 8)) ; 7 + 1
4048 tb (match-beginning 0))
4049 (setq argument nil)
4050 (put-text-property (point-at-bol) b 'first-format-line 't)
4051 (if cperl-pod-here-fontify
4052 (while (and (eq (forward-line) 0)
4053 (not (looking-at "^[.;]$")))
4054 (cond
4055 ((looking-at "^#")) ; Skip comments
4056 ((and argument ; Skip argument multi-lines
4057 (looking-at "^[ \t]*{"))
4058 (forward-sexp 1)
4059 (setq argument nil))
4060 (argument ; Skip argument lines
4061 (setq argument nil))
4062 (t ; Format line
4063 (setq b1 (point))
4064 (setq argument (looking-at "^[^\n]*[@^]"))
4065 (end-of-line)
4066 ;; Highlight the format line
4067 (cperl-postpone-fontification b1 (point)
4068 'face font-lock-string-face)
4069 (cperl-commentify b1 (point) nil)
4070 (cperl-put-do-not-fontify b1 (point) t))))
4071 ;; We do not search to max, since we may be called from
4072 ;; some hook of fontification, and max is random
4073 (re-search-forward "^[.;]$" stop-point 'toend))
4074 (beginning-of-line)
4075 (if (looking-at "^\\.$") ; ";" is not supported yet
4076 (progn
4077 ;; Highlight the ending delimiter
4078 (cperl-postpone-fontification (point) (+ (point) 2)
4079 'face font-lock-string-face)
4080 (cperl-commentify (point) (+ (point) 2) nil)
4081 (cperl-put-do-not-fontify (point) (+ (point) 2) t))
4082 (message "End of format `%s' not found." name)
4083 (or (car err-l) (setcar err-l b)))
4084 (forward-line)
4085 (if (> (point) max)
4086 (setq tmpend tb))
4087 (put-text-property b (point) 'syntax-type 'format))
4088 ;; qq-like String or Regexp:
4089 ((or (match-beginning 10) (match-beginning 11))
4090 ;; 1+6+2=9 extra () before this:
4091 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>"
4092 ;; "\\|"
4093 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob>
4094 (setq b1 (if (match-beginning 10) 10 11)
4095 argument (buffer-substring
4096 (match-beginning b1) (match-end b1))
4097 b (point) ; end of qq etc
4099 c (char-after (match-beginning b1))
4100 bb (char-after (1- (match-beginning b1))) ; tmp holder
4101 ;; bb == "Not a stringy"
4102 bb (if (eq b1 10) ; user variables/whatever
4103 (and (memq bb (append "$@%*#_:-&>" nil)) ; $#y)
4104 (cond ((eq bb ?-) (eq c ?s)) ; -s file test
4105 ((eq bb ?\:) ; $opt::s
4106 (eq (char-after
4107 (- (match-beginning b1) 2))
4108 ?\:))
4109 ((eq bb ?\>) ; $foo->s
4110 (eq (char-after
4111 (- (match-beginning b1) 2))
4112 ?\-))
4113 ((eq bb ?\&)
4114 (not (eq (char-after ; &&m/blah/
4115 (- (match-beginning b1) 2))
4116 ?\&)))
4117 (t t)))
4118 ;; <file> or <$file>
4119 (and (eq c ?\<)
4120 ;; Do not stringify <FH>, <$fh> :
4121 (save-match-data
4122 (looking-at
4123 "\\$?\\([_a-zA-Z:][_a-zA-Z0-9:]*\\)?>"))))
4124 tb (match-beginning 0))
4125 (goto-char (match-beginning b1))
4126 (cperl-backward-to-noncomment (point-min))
4127 (or bb
4128 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo>
4129 (setq argument ""
4130 b1 nil
4131 bb ; Not a regexp?
4132 (not
4133 ;; What is below: regexp-p?
4134 (and
4135 (or (memq (preceding-char)
4136 (append (if (memq c '(?\? ?\<))
4137 ;; $a++ ? 1 : 2
4138 "~{(=|&*!,;:["
4139 "~{(=|&+-*!,;:[") nil))
4140 (and (eq (preceding-char) ?\})
4141 (cperl-after-block-p (point-min)))
4142 (and (eq (char-syntax (preceding-char)) ?w)
4143 (progn
4144 (forward-sexp -1)
4145 ;; After these keywords `/' starts a RE. One should add all the
4146 ;; functions/builtins which expect an argument, but ...
4147 (if (eq (preceding-char) ?-)
4148 ;; -d ?foo? is a RE
4149 (looking-at "[a-zA-Z]\\>")
4150 (and
4151 (not (memq (preceding-char)
4152 '(?$ ?@ ?& ?%)))
4153 (looking-at
4154 "\\(while\\|if\\|unless\\|until\\|and\\|or\\|not\\|xor\\|split\\|grep\\|map\\|print\\)\\>")))))
4155 (and (eq (preceding-char) ?.)
4156 (eq (char-after (- (point) 2)) ?.))
4157 (bobp))
4158 ;; m|blah| ? foo : bar;
4159 (not
4160 (and (eq c ?\?)
4161 cperl-use-syntax-table-text-property
4162 (not (bobp))
4163 (progn
4164 (forward-char -1)
4165 (looking-at "\\s|"))))))
4166 b (1- b))
4167 ;; s y tr m
4168 ;; Check for $a -> y
4169 (setq b1 (preceding-char)
4170 go (point))
4171 (if (and (eq b1 ?>)
4172 (eq (char-after (- go 2)) ?-))
4173 ;; Not a regexp
4174 (setq bb t))))
4175 (or bb
4176 (progn
4177 (goto-char b)
4178 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
4179 (goto-char (match-end 0))
4180 (skip-chars-forward " \t\n\f"))
4181 (cond ((and (eq (following-char) ?\})
4182 (eq b1 ?\{))
4183 ;; Check for $a[23]->{ s }, @{s} and *{s::foo}
4184 (goto-char (1- go))
4185 (skip-chars-backward " \t\n\f")
4186 (if (memq (preceding-char) (append "$@%&*" nil))
4187 (setq bb t) ; @{y}
4188 (condition-case nil
4189 (forward-sexp -1)
4190 (error nil)))
4191 (if (or bb
4192 (looking-at ; $foo -> {s}
4193 "[$@]\\$*\\([a-zA-Z0-9_:]+\\|[^{]\\)\\([ \t\n]*->\\)?[ \t\n]*{")
4194 (and ; $foo[12] -> {s}
4195 (memq (following-char) '(?\{ ?\[))
4196 (progn
4197 (forward-sexp 1)
4198 (looking-at "\\([ \t\n]*->\\)?[ \t\n]*{"))))
4199 (setq bb t)
4200 (goto-char b)))
4201 ((and (eq (following-char) ?=)
4202 (eq (char-after (1+ (point))) ?\>))
4203 ;; Check for { foo => 1, s => 2 }
4204 ;; Apparently s=> is never a substitution...
4205 (setq bb t))
4206 ((and (eq (following-char) ?:)
4207 (eq b1 ?\{) ; Check for $ { s::bar }
4208 (looking-at "::[a-zA-Z0-9_:]*[ \t\n\f]*}")
4209 (progn
4210 (goto-char (1- go))
4211 (skip-chars-backward " \t\n\f")
4212 (memq (preceding-char)
4213 (append "$@%&*" nil))))
4214 (setq bb t))
4215 ((eobp)
4216 (setq bb t)))))
4217 (if bb
4218 (goto-char i)
4219 ;; Skip whitespace and comments...
4220 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
4221 (goto-char (match-end 0))
4222 (skip-chars-forward " \t\n\f"))
4223 (if (> (point) b)
4224 (put-text-property b (point) 'syntax-type 'prestring))
4225 ;; qtag means two-arg matcher, may be reset to
4226 ;; 2 or 3 later if some special quoting is needed.
4227 ;; e1 means matching-char matcher.
4228 (setq b (point) ; before the first delimiter
4229 ;; has 2 args
4230 i2 (string-match "^\\([sy]\\|tr\\)$" argument)
4231 ;; We do not search to max, since we may be called from
4232 ;; some hook of fontification, and max is random
4233 i (cperl-forward-re stop-point end
4235 st-l err-l argument)
4236 ;; If `go', then it is considered as 1-arg, `b1' is nil
4237 ;; as in s/foo//x; the point is before final "slash"
4238 b1 (nth 1 i) ; start of the second part
4239 tag (nth 2 i) ; ender-char, true if second part
4240 ; is with matching chars []
4241 go (nth 4 i) ; There is a 1-char part after the end
4242 i (car i) ; intermediate point
4243 e1 (point) ; end
4244 ;; Before end of the second part if non-matching: ///
4245 tail (if (and i (not tag))
4246 (1- e1))
4247 e (if i i e1) ; end of the first part
4248 qtag nil ; need to preserve backslashitis
4249 is-x-REx nil is-o-REx nil); REx has //x //o modifiers
4250 ;; If s{} (), then b/b1 are at "{", "(", e1/i after ")", "}"
4251 ;; Commenting \\ is dangerous, what about ( ?
4252 (and i tail
4253 (eq (char-after i) ?\\)
4254 (setq qtag t))
4255 (and (if go (looking-at ".\\sw*x")
4256 (looking-at "\\sw*x")) ; qr//x
4257 (setq is-x-REx t))
4258 (and (if go (looking-at ".\\sw*o")
4259 (looking-at "\\sw*o")) ; //o
4260 (setq is-o-REx t))
4261 (if (null i)
4262 ;; Considered as 1arg form
4263 (progn
4264 (cperl-commentify b (point) t)
4265 (put-text-property b (point) 'syntax-type 'string)
4266 (if (or is-x-REx
4267 ;; ignore other text properties:
4268 (string-match "^qw$" argument))
4269 (put-text-property b (point) 'indentable t))
4270 (and go
4271 (setq e1 (cperl-1+ e1))
4272 (or (eobp)
4273 (forward-char 1))))
4274 (cperl-commentify b i t)
4275 (if (looking-at "\\sw*e") ; s///e
4276 (progn
4277 ;; Cache the syntax info...
4278 (setq cperl-syntax-state (cons state-point state))
4279 (and
4280 ;; silent:
4281 (car (cperl-find-pods-heres b1 (1- (point)) t end))
4282 ;; Error
4283 (goto-char (1+ max)))
4284 (if (and tag (eq (preceding-char) ?\>))
4285 (progn
4286 (cperl-modify-syntax-type (1- (point)) cperl-st-ket)
4287 (cperl-modify-syntax-type i cperl-st-bra)))
4288 (put-text-property b i 'syntax-type 'string)
4289 (put-text-property i (point) 'syntax-type 'multiline)
4290 (if is-x-REx
4291 (put-text-property b i 'indentable t)))
4292 (cperl-commentify b1 (point) t)
4293 (put-text-property b (point) 'syntax-type 'string)
4294 (if is-x-REx
4295 (put-text-property b i 'indentable t))
4296 (if qtag
4297 (cperl-modify-syntax-type (1+ i) cperl-st-punct))
4298 (setq tail nil)))
4299 ;; Now: tail: if the second part is non-matching without ///e
4300 (if (eq (char-syntax (following-char)) ?w)
4301 (progn
4302 (forward-word 1) ; skip modifiers s///s
4303 (if tail (cperl-commentify tail (point) t))
4304 (cperl-postpone-fontification
4305 e1 (point) 'face my-cperl-REx-modifiers-face)))
4306 ;; Check whether it is m// which means "previous match"
4307 ;; and highlight differently
4308 (setq is-REx
4309 (and (string-match "^\\([sm]?\\|qr\\)$" argument)
4310 (or (not (= (length argument) 0))
4311 (not (eq c ?\<)))))
4312 (if (and is-REx
4313 (eq e (+ 2 b))
4314 ;; split // *is* using zero-pattern
4315 (save-excursion
4316 (condition-case nil
4317 (progn
4318 (goto-char tb)
4319 (forward-sexp -1)
4320 (not (looking-at "split\\>")))
4321 (error t))))
4322 (cperl-postpone-fontification
4323 b e 'face font-lock-warning-face)
4324 (if (or i2 ; Has 2 args
4325 (and cperl-fontify-m-as-s
4327 (string-match "^\\(m\\|qr\\)$" argument)
4328 (and (eq 0 (length argument))
4329 (not (eq ?\< (char-after b)))))))
4330 (progn
4331 (cperl-postpone-fontification
4332 b (cperl-1+ b) 'face my-cperl-delimiters-face)
4333 (cperl-postpone-fontification
4334 (1- e) e 'face my-cperl-delimiters-face)))
4335 (if (and is-REx cperl-regexp-scan)
4336 ;; Process RExen: embedded comments, charclasses and ]
4337 ;;;/\3333\xFg\x{FFF}a\ppp\PPP\qqq\C\99f(?{ foo })(??{ foo })/;
4338 ;;;/a\.b[^a[:ff:]b]x$ab->$[|$,$ab->[cd]->[ef]|$ab[xy].|^${a,b}{c,d}/;
4339 ;;;/(?<=foo)(?<!bar)(x)(?:$ab|\$\/)$|\\\b\x888\776\[\:$/xxx;
4340 ;;;m?(\?\?{b,a})? + m/(??{aa})(?(?=xx)aa|bb)(?#aac)/;
4341 ;;;m$(^ab[c]\$)$ + m+(^ab[c]\$\+)+ + m](^ab[c\]$|.+)] + m)(^ab[c]$|.+\));
4342 ;;;m^a[\^b]c^ + m.a[^b]\.c.;
4343 (save-excursion
4344 (goto-char (1+ b))
4345 ;; First
4346 (cperl-look-at-leading-count is-x-REx e)
4347 (setq hairy-RE
4348 (concat
4349 (if is-x-REx
4350 (if (eq (char-after b) ?\#)
4351 "\\((\\?\\\\#\\)\\|\\(\\\\#\\)"
4352 "\\((\\?#\\)\\|\\(#\\)")
4353 ;; keep the same count: add a fake group
4354 (if (eq (char-after b) ?\#)
4355 "\\((\\?\\\\#\\)\\(\\)"
4356 "\\((\\?#\\)\\(\\)"))
4357 "\\|"
4358 "\\(\\[\\)" ; 3=[
4359 "\\|"
4360 "\\(]\\)" ; 4=]
4361 "\\|"
4362 ;; XXXX Will not be able to use it in s)))
4363 (if (eq (char-after b) ?\) )
4364 "\\())))\\)" ; Will never match
4365 (if (eq (char-after b) ?? )
4366 ;;"\\((\\\\\\?\\(\\\\\\?\\)?{\\)"
4367 "\\((\\\\\\?\\\\\\?{\\|()\\\\\\?{\\)"
4368 "\\((\\?\\??{\\)")) ; 5= (??{ (?{
4369 "\\|" ; 6= 0-length, 7: name, 8,9:code, 10:group
4370 "\\(" ;; XXXX 1-char variables, exc. |()\s
4371 "[$@]"
4372 "\\("
4373 "[_a-zA-Z:][_a-zA-Z0-9:]*"
4374 "\\|"
4375 "{[^{}]*}" ; only one-level allowed
4376 "\\|"
4377 "[^{(|) \t\r\n\f]"
4378 "\\)"
4379 "\\(" ;;8,9:code part of array/hash elt
4380 "\\(" "->" "\\)?"
4381 "\\[[^][]*\\]"
4382 "\\|"
4383 "{[^{}]*}"
4384 "\\)*"
4385 ;; XXXX: what if u is delim?
4386 "\\|"
4387 "[)^|$.*?+]"
4388 "\\|"
4389 "{[0-9]+}"
4390 "\\|"
4391 "{[0-9]+,[0-9]*}"
4392 "\\|"
4393 "\\\\[luLUEQbBAzZG]"
4394 "\\|"
4395 "(" ; Group opener
4396 "\\(" ; 10 group opener follower
4397 "\\?\\((\\?\\)" ; 11: in (?(?=C)A|B)
4398 "\\|"
4399 "\\?[:=!>?{]" ; "?" something
4400 "\\|"
4401 "\\?[-imsx]+[:)]" ; (?i) (?-s:.)
4402 "\\|"
4403 "\\?([0-9]+)" ; (?(1)foo|bar)
4404 "\\|"
4405 "\\?<[=!]"
4406 ;;;"\\|"
4407 ;;; "\\?"
4408 "\\)?"
4409 "\\)"
4410 "\\|"
4411 "\\\\\\(.\\)" ; 12=\SYMBOL
4413 (while
4414 (and (< (point) (1- e))
4415 (re-search-forward hairy-RE (1- e) 'to-end))
4416 (goto-char (match-beginning 0))
4417 (setq REx-subgr-start (point)
4418 was-subgr (following-char))
4419 (cond
4420 ((match-beginning 6) ; 0-length builtins, groups
4421 (goto-char (match-end 0))
4422 (if (match-beginning 11)
4423 (goto-char (match-beginning 11)))
4424 (if (>= (point) e)
4425 (goto-char (1- e)))
4426 (cperl-postpone-fontification
4427 (match-beginning 0) (point)
4428 'face
4429 (cond
4430 ((eq was-subgr ?\) )
4431 (condition-case nil
4432 (save-excursion
4433 (forward-sexp -1)
4434 (if (> (point) b)
4435 (if (if (eq (char-after b) ?? )
4436 (looking-at "(\\\\\\?")
4437 (eq (char-after (1+ (point))) ?\?))
4438 my-cperl-REx-0length-face
4439 my-cperl-REx-ctl-face)
4440 font-lock-warning-face))
4441 (error font-lock-warning-face)))
4442 ((eq was-subgr ?\| )
4443 my-cperl-REx-ctl-face)
4444 ((eq was-subgr ?\$ )
4445 (if (> (point) (1+ REx-subgr-start))
4446 (progn
4447 (put-text-property
4448 (match-beginning 0) (point)
4449 'REx-interpolated
4450 (if is-o-REx 0
4451 (if (and (eq (match-beginning 0)
4452 (1+ b))
4453 (eq (point)
4454 (1- e))) 1 t)))
4455 font-lock-variable-name-face)
4456 my-cperl-REx-spec-char-face))
4457 ((memq was-subgr (append "^." nil) )
4458 my-cperl-REx-spec-char-face)
4459 ((eq was-subgr ?\( )
4460 (if (not (match-beginning 10))
4461 my-cperl-REx-ctl-face
4462 my-cperl-REx-0length-face))
4463 (t my-cperl-REx-0length-face)))
4464 (if (and (memq was-subgr (append "(|" nil))
4465 (not (string-match "(\\?[-imsx]+)"
4466 (match-string 0))))
4467 (cperl-look-at-leading-count is-x-REx e))
4468 (setq was-subgr nil)) ; We do stuff here
4469 ((match-beginning 12) ; \SYMBOL
4470 (forward-char 2)
4471 (if (>= (point) e)
4472 (goto-char (1- e))
4473 ;; How many chars to not highlight:
4474 ;; 0-len special-alnums in other branch =>
4475 ;; Generic: \non-alnum (1), \alnum (1+face)
4476 ;; Is-delim: \non-alnum (1/spec-2) alnum-1 (=what hai)
4477 (setq REx-subgr-start (point)
4478 qtag (preceding-char))
4479 (cperl-postpone-fontification
4480 (- (point) 2) (- (point) 1) 'face
4481 (if (memq qtag
4482 (append "ghijkmoqvFHIJKMORTVY" nil))
4483 font-lock-warning-face
4484 my-cperl-REx-0length-face))
4485 (if (and (eq (char-after b) qtag)
4486 (memq qtag (append ".])^$|*?+" nil)))
4487 (progn
4488 (if (and cperl-use-syntax-table-text-property
4489 (eq qtag ?\) ))
4490 (put-text-property
4491 REx-subgr-start (1- (point))
4492 'syntax-table cperl-st-punct))
4493 (cperl-postpone-fontification
4494 (1- (point)) (point) 'face
4495 ; \] can't appear below
4496 (if (memq qtag (append ".]^$" nil))
4497 'my-cperl-REx-spec-char-face
4498 (if (memq qtag (append "*?+" nil))
4499 'my-cperl-REx-0length-face
4500 'my-cperl-REx-ctl-face))))) ; )|
4501 ;; Test for arguments:
4502 (cond
4503 ;; This is not pretty: the 5.8.7 logic:
4504 ;; \0numx -> octal (up to total 3 dig)
4505 ;; \DIGIT -> backref unless \0
4506 ;; \DIGITs -> backref if valid
4507 ;; otherwise up to 3 -> octal
4508 ;; Do not try to distinguish, we guess
4509 ((or (and (memq qtag (append "01234567" nil))
4510 (re-search-forward
4511 "\\=[01234567]?[01234567]?"
4512 (1- e) 'to-end))
4513 (and (memq qtag (append "89" nil))
4514 (re-search-forward
4515 "\\=[0123456789]*" (1- e) 'to-end))
4516 (and (eq qtag ?x)
4517 (re-search-forward
4518 "\\=[0-9a-fA-F][0-9a-fA-F]?\\|\\={[0-9a-fA-F]+}"
4519 (1- e) 'to-end))
4520 (and (memq qtag (append "pPN" nil))
4521 (re-search-forward "\\={[^{}]+}\\|."
4522 (1- e) 'to-end))
4523 (eq (char-syntax qtag) ?w))
4524 (cperl-postpone-fontification
4525 (1- REx-subgr-start) (point)
4526 'face my-cperl-REx-length1-face))))
4527 (setq was-subgr nil)) ; We do stuff here
4528 ((match-beginning 3) ; [charclass]
4529 ;; Highlight leader, trailer, POSIX classes
4530 (forward-char 1)
4531 (if (eq (char-after b) ?^ )
4532 (and (eq (following-char) ?\\ )
4533 (eq (char-after (cperl-1+ (point)))
4534 ?^ )
4535 (forward-char 2))
4536 (and (eq (following-char) ?^ )
4537 (forward-char 1)))
4538 (setq argument b ; continue? & end of last POSIX
4539 tag nil ; list of POSIX classes
4540 qtag (point)) ; after leading ^ if present
4541 (if (eq (char-after b) ?\] )
4542 (and (eq (following-char) ?\\ )
4543 (eq (char-after (cperl-1+ (point)))
4544 ?\] )
4545 (setq qtag (1+ qtag))
4546 (forward-char 2))
4547 (and (eq (following-char) ?\] )
4548 (forward-char 1)))
4549 (setq REx-subgr-end qtag) ;End smart-highlighted
4550 ;; Apparently, I can't put \] into a charclass
4551 ;; in m]]: m][\\\]\]] produces [\\]]
4552 ;;; POSIX? [:word:] [:^word:] only inside []
4553 ;;; "\\=\\(\\\\.\\|[^][\\\\]\\|\\[:\\^?\sw+:]\\|\\[[^:]\\)*]")
4554 (while ; look for unescaped ]
4555 (and argument
4556 (re-search-forward
4557 (if (eq (char-after b) ?\] )
4558 "\\=\\(\\\\[^]]\\|[^]\\\\]\\)*\\\\]"
4559 "\\=\\(\\\\.\\|[^]\\\\]\\)*]")
4560 (1- e) 'toend))
4561 ;; Is this ] an end of POSIX class?
4562 (if (save-excursion
4563 (and
4564 (search-backward "[" argument t)
4565 (< REx-subgr-start (point))
4566 (setq argument (point)) ; POSIX-start
4567 (or ; Should work with delim = \
4568 (not (eq (preceding-char) ?\\ ))
4569 ;; XXXX Double \\ is needed with 19.33
4570 (= (% (skip-chars-backward "\\\\") 2) 0))
4571 (looking-at
4572 (cond
4573 ((eq (char-after b) ?\] )
4574 "\\\\*\\[:\\^?\\sw+:\\\\\\]")
4575 ((eq (char-after b) ?\: )
4576 "\\\\*\\[\\\\:\\^?\\sw+\\\\:]")
4577 ((eq (char-after b) ?^ )
4578 "\\\\*\\[:\\(\\\\\\^\\)?\\sw+:\]")
4579 ((eq (char-syntax (char-after b))
4581 (concat
4582 "\\\\*\\[:\\(\\\\\\^\\)?\\(\\\\"
4583 (char-to-string (char-after b))
4584 "\\|\\sw\\)+:\]"))
4585 (t "\\\\*\\[:\\^?\\sw*:]")))
4586 (goto-char REx-subgr-end)
4587 (cperl-highlight-charclass
4588 argument my-cperl-REx-spec-char-face
4589 my-cperl-REx-0length-face my-cperl-REx-length1-face)))
4590 (setq tag (cons (cons argument (point))
4591 tag)
4592 argument (point)
4593 REx-subgr-end argument) ; continue
4594 (setq argument nil)))
4595 (and argument
4596 (message "Couldn't find end of charclass in a REx, pos=%s"
4597 REx-subgr-start))
4598 (setq argument (1- (point)))
4599 (goto-char REx-subgr-end)
4600 (cperl-highlight-charclass
4601 argument my-cperl-REx-spec-char-face
4602 my-cperl-REx-0length-face my-cperl-REx-length1-face)
4603 (forward-char 1)
4604 ;; Highlight starter, trailer, POSIX
4605 (if (and cperl-use-syntax-table-text-property
4606 (> (- (point) 2) REx-subgr-start))
4607 (put-text-property
4608 (1+ REx-subgr-start) (1- (point))
4609 'syntax-table cperl-st-punct))
4610 (cperl-postpone-fontification
4611 REx-subgr-start qtag
4612 'face my-cperl-REx-spec-char-face)
4613 (cperl-postpone-fontification
4614 (1- (point)) (point) 'face
4615 my-cperl-REx-spec-char-face)
4616 (if (eq (char-after b) ?\] )
4617 (cperl-postpone-fontification
4618 (- (point) 2) (1- (point))
4619 'face my-cperl-REx-0length-face))
4620 (while tag
4621 (cperl-postpone-fontification
4622 (car (car tag)) (cdr (car tag))
4623 'face font-lock-variable-name-face) ;my-cperl-REx-length1-face
4624 (setq tag (cdr tag)))
4625 (setq was-subgr nil)) ; did facing already
4626 ;; Now rare stuff:
4627 ((and (match-beginning 2) ; #-comment
4628 (/= (match-beginning 2) (match-end 2)))
4629 (beginning-of-line 2)
4630 (if (> (point) e)
4631 (goto-char (1- e))))
4632 ((match-beginning 4) ; character "]"
4633 (setq was-subgr nil) ; We do stuff here
4634 (goto-char (match-end 0))
4635 (if cperl-use-syntax-table-text-property
4636 (put-text-property
4637 (1- (point)) (point)
4638 'syntax-table cperl-st-punct))
4639 (cperl-postpone-fontification
4640 (1- (point)) (point)
4641 'face font-lock-warning-face))
4642 ((match-beginning 5) ; before (?{}) (??{})
4643 (setq tag (match-end 0))
4644 (if (or (setq qtag
4645 (cperl-forward-group-in-re st-l))
4646 (and (>= (point) e)
4647 (setq qtag "no matching `)' found"))
4648 (and (not (eq (char-after (- (point) 2))
4649 ?\} ))
4650 (setq qtag "Can't find })")))
4651 (progn
4652 (goto-char (1- e))
4653 (message "%s" qtag))
4654 (cperl-postpone-fontification
4655 (1- tag) (1- (point))
4656 'face font-lock-variable-name-face)
4657 (cperl-postpone-fontification
4658 REx-subgr-start (1- tag)
4659 'face my-cperl-REx-spec-char-face)
4660 (cperl-postpone-fontification
4661 (1- (point)) (point)
4662 'face my-cperl-REx-spec-char-face)
4663 (if cperl-use-syntax-table-text-property
4664 (progn
4665 (put-text-property
4666 (- (point) 2) (1- (point))
4667 'syntax-table cperl-st-cfence)
4668 (put-text-property
4669 (+ REx-subgr-start 2)
4670 (+ REx-subgr-start 3)
4671 'syntax-table cperl-st-cfence))))
4672 (setq was-subgr nil))
4673 (t ; (?#)-comment
4674 ;; Inside "(" and "\" arn't special in any way
4675 ;; Works also if the outside delimiters are ().
4676 (or;;(if (eq (char-after b) ?\) )
4677 ;;(re-search-forward
4678 ;; "[^\\\\]\\(\\\\\\\\\\)*\\\\)"
4679 ;; (1- e) 'toend)
4680 (search-forward ")" (1- e) 'toend)
4682 (message
4683 "Couldn't find end of (?#...)-comment in a REx, pos=%s"
4684 REx-subgr-start))))
4685 (if (>= (point) e)
4686 (goto-char (1- e)))
4687 (cond
4688 (was-subgr
4689 (setq REx-subgr-end (point))
4690 (cperl-commentify
4691 REx-subgr-start REx-subgr-end nil)
4692 (cperl-postpone-fontification
4693 REx-subgr-start REx-subgr-end
4694 'face font-lock-comment-face))))))
4695 (if (and is-REx is-x-REx)
4696 (put-text-property (1+ b) (1- e)
4697 'syntax-subtype 'x-REx)))
4698 (if (and i2 e1 (or (not b1) (> e1 b1)))
4699 (progn ; No errors finding the second part...
4700 (cperl-postpone-fontification
4701 (1- e1) e1 'face my-cperl-delimiters-face)
4702 (if (and (not (eobp))
4703 (assoc (char-after b) cperl-starters))
4704 (progn
4705 (cperl-postpone-fontification
4706 b1 (1+ b1) 'face my-cperl-delimiters-face)
4707 (put-text-property b1 (1+ b1)
4708 'REx-part2 t)))))
4709 (if (> (point) max)
4710 (setq tmpend tb))))
4711 ((match-beginning 17) ; sub with prototype or attribute
4712 ;; 1+6+2+1+1=11 extra () before this (sub with proto/attr):
4713 ;;"\\<sub\\>\\(" ;12
4714 ;; cperl-white-and-comment-rex ;13
4715 ;; "\\([a-zA-Z_:'0-9]+\\)\\)?" ; name ;14
4716 ;;"\\(" cperl-maybe-white-and-comment-rex ;15,16
4717 ;; "\\(([^()]*)\\|:[^:]\\)\\)" ; 17:proto or attribute start
4718 (setq b1 (match-beginning 14) e1 (match-end 14))
4719 (if (memq (char-after (1- b))
4720 '(?\$ ?\@ ?\% ?\& ?\*))
4722 (goto-char b)
4723 (if (eq (char-after (match-beginning 17)) ?\( )
4724 (progn
4725 (cperl-commentify ; Prototypes; mark as string
4726 (match-beginning 17) (match-end 17) t)
4727 (goto-char (match-end 0))
4728 ;; Now look for attributes after prototype:
4729 (forward-comment (buffer-size))
4730 (and (looking-at ":[^:]")
4731 (cperl-find-sub-attrs st-l b1 e1 b)))
4732 ;; treat attributes without prototype
4733 (goto-char (match-beginning 17))
4734 (cperl-find-sub-attrs st-l b1 e1 b))))
4735 ;; 1+6+2+1+1+6+1=18 extra () before this:
4736 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'")
4737 ((match-beginning 19) ; old $abc'efg syntax
4738 (setq bb (match-end 0))
4739 ;;;(if (nth 3 state) nil ; in string
4740 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)
4741 (goto-char bb))
4742 ;; 1+6+2+1+1+6+1+1=19 extra () before this:
4743 ;; "__\\(END\\|DATA\\)__"
4744 ((match-beginning 20) ; __END__, __DATA__
4745 (setq bb (match-end 0))
4746 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat
4747 (cperl-commentify b bb nil)
4748 (setq end t))
4749 ;; "\\\\\\(['`\"($]\\)"
4750 ((match-beginning 21)
4751 ;; Trailing backslash; make non-quoting outside string/comment
4752 (setq bb (match-end 0))
4753 (goto-char b)
4754 (skip-chars-backward "\\\\")
4755 ;;;(setq i2 (= (% (skip-chars-backward "\\\\") 2) -1))
4756 (cperl-modify-syntax-type b cperl-st-punct)
4757 (goto-char bb))
4758 (t (error "Error in regexp of the sniffer")))
4759 (if (> (point) stop-point)
4760 (progn
4761 (if end
4762 (message "Garbage after __END__/__DATA__ ignored")
4763 (message "Unbalanced syntax found while scanning")
4764 (or (car err-l) (setcar err-l b)))
4765 (goto-char stop-point))))
4766 (setq cperl-syntax-state (cons state-point state)
4767 ;; Do not mark syntax as done past tmpend???
4768 cperl-syntax-done-to (or tmpend (max (point) max)))
4769 ;;(message "state-at=%s, done-to=%s" state-point cperl-syntax-done-to)
4771 (if (car err-l) (goto-char (car err-l))
4772 (or non-inter
4773 (message "Scanning for \"hard\" Perl constructions... done"))))
4774 (and (buffer-modified-p)
4775 (not modified)
4776 (set-buffer-modified-p nil))
4777 ;; I do not understand what this is doing here. It breaks font-locking
4778 ;; because it resets the syntax-table from font-lock-syntax-table to
4779 ;; cperl-mode-syntax-table.
4780 ;; (set-syntax-table cperl-mode-syntax-table)
4782 (list (car err-l) overshoot)))
4784 (defun cperl-find-pods-heres-region (min max)
4785 (interactive "r")
4786 (cperl-find-pods-heres min max))
4788 (defun cperl-backward-to-noncomment (lim)
4789 ;; Stops at lim or after non-whitespace that is not in comment
4790 ;; XXXX Wrongly understands end-of-multiline strings with # as comment
4791 (let (stop p pr)
4792 (while (and (not stop) (> (point) (or lim (point-min))))
4793 (skip-chars-backward " \t\n\f" lim)
4794 (setq p (point))
4795 (beginning-of-line)
4796 (if (memq (setq pr (get-text-property (point) 'syntax-type))
4797 '(pod here-doc here-doc-delim))
4798 (progn
4799 (cperl-unwind-to-safe nil)
4800 (setq pr (get-text-property (point) 'syntax-type))))
4801 (or (and (looking-at "^[ \t]*\\(#\\|$\\)")
4802 (not (memq pr '(string prestring))))
4803 (progn (cperl-to-comment-or-eol) (bolp))
4804 (progn
4805 (skip-chars-backward " \t")
4806 (if (< p (point)) (goto-char p))
4807 (setq stop t))))))
4809 ;; Used only in `cperl-calculate-indent'...
4810 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" !
4811 ;; Positions is before ?\{. Checks whether it starts a block.
4812 ;; No save-excursion! This is more a distinguisher of a block/hash ref...
4813 (cperl-backward-to-noncomment (point-min))
4814 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp
4815 ; Label may be mixed up with `$blah :'
4816 (save-excursion (cperl-after-label))
4817 (get-text-property (cperl-1- (point)) 'attrib-group)
4818 (and (memq (char-syntax (preceding-char)) '(?w ?_))
4819 (progn
4820 (backward-sexp)
4821 ;; sub {BLK}, print {BLK} $data, but NOT `bless', `return', `tr'
4822 (or (and (looking-at "[a-zA-Z0-9_:]+[ \t\n\f]*[{#]") ; Method call syntax
4823 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>")))
4824 ;; sub bless::foo {}
4825 (progn
4826 (cperl-backward-to-noncomment (point-min))
4827 (and (eq (preceding-char) ?b)
4828 (progn
4829 (forward-sexp -1)
4830 (looking-at "sub[ \t\n\f#]")))))))))
4832 ;;; What is the difference of (cperl-after-block-p lim t) and (cperl-block-p)?
4833 ;;; No save-excursion; condition-case ... In (cperl-block-p) the block
4834 ;;; may be a part of an in-statement construct, such as
4835 ;;; ${something()}, print {FH} $data.
4836 ;;; Moreover, one takes positive approach (looks for else,grep etc)
4837 ;;; another negative (looks for bless,tr etc)
4838 (defun cperl-after-block-p (lim &optional pre-block)
4839 "Return true if the preceding } (if PRE-BLOCK, following {) delimits a block.
4840 Would not look before LIM. Assumes that LIM is a good place to begin a
4841 statement. The kind of block we treat here is one after which a new
4842 statement would start; thus the block in ${func()} does not count."
4843 (save-excursion
4844 (condition-case nil
4845 (progn
4846 (or pre-block (forward-sexp -1))
4847 (cperl-backward-to-noncomment lim)
4848 (or (eq (point) lim)
4849 ;; if () {} // sub f () {} // sub f :a(') {}
4850 (eq (preceding-char) ?\) )
4851 ;; label: {}
4852 (save-excursion (cperl-after-label))
4853 ;; sub :attr {}
4854 (get-text-property (cperl-1- (point)) 'attrib-group)
4855 (if (memq (char-syntax (preceding-char)) '(?w ?_)) ; else {}
4856 (save-excursion
4857 (forward-sexp -1)
4858 ;; else {} but not else::func {}
4859 (or (and (looking-at "\\(else\\|continue\\|grep\\|map\\|BEGIN\\|END\\|CHECK\\|INIT\\)\\>")
4860 (not (looking-at "\\(\\sw\\|_\\)+::")))
4861 ;; sub f {}
4862 (progn
4863 (cperl-backward-to-noncomment lim)
4864 (and (eq (preceding-char) ?b)
4865 (progn
4866 (forward-sexp -1)
4867 (looking-at "sub[ \t\n\f#]"))))))
4868 ;; What precedes is not word... XXXX Last statement in sub???
4869 (cperl-after-expr-p lim))))
4870 (error nil))))
4872 (defun cperl-after-expr-p (&optional lim chars test)
4873 "Return true if the position is good for start of expression.
4874 TEST is the expression to evaluate at the found position. If absent,
4875 CHARS is a string that contains good characters to have before us (however,
4876 `}' is treated \"smartly\" if it is not in the list)."
4877 (let ((lim (or lim (point-min)))
4878 stop p pr)
4879 (cperl-update-syntaxification (point) (point))
4880 (save-excursion
4881 (while (and (not stop) (> (point) lim))
4882 (skip-chars-backward " \t\n\f" lim)
4883 (setq p (point))
4884 (beginning-of-line)
4885 ;;(memq (setq pr (get-text-property (point) 'syntax-type))
4886 ;; '(pod here-doc here-doc-delim))
4887 (if (get-text-property (point) 'here-doc-group)
4888 (progn
4889 (goto-char
4890 (cperl-beginning-of-property (point) 'here-doc-group))
4891 (beginning-of-line 0)))
4892 (if (get-text-property (point) 'in-pod)
4893 (progn
4894 (goto-char
4895 (cperl-beginning-of-property (point) 'in-pod))
4896 (beginning-of-line 0)))
4897 (if (looking-at "^[ \t]*\\(#\\|$\\)") nil ; Only comment, skip
4898 ;; Else: last iteration, or a label
4899 (cperl-to-comment-or-eol) ; Will not move past "." after a format
4900 (skip-chars-backward " \t")
4901 (if (< p (point)) (goto-char p))
4902 (setq p (point))
4903 (if (and (eq (preceding-char) ?:)
4904 (progn
4905 (forward-char -1)
4906 (skip-chars-backward " \t\n\f" lim)
4907 (memq (char-syntax (preceding-char)) '(?w ?_))))
4908 (forward-sexp -1) ; Possibly label. Skip it
4909 (goto-char p)
4910 (setq stop t))))
4911 (or (bobp) ; ???? Needed
4912 (eq (point) lim)
4913 (looking-at "[ \t]*__\\(END\\|DATA\\)__") ; After this anything goes
4914 (progn
4915 (if test (eval test)
4916 (or (memq (preceding-char) (append (or chars "{;") nil))
4917 (and (eq (preceding-char) ?\})
4918 (cperl-after-block-p lim))
4919 (and (eq (following-char) ?.) ; in format: see comment above
4920 (eq (get-text-property (point) 'syntax-type)
4921 'format)))))))))
4923 (defun cperl-backward-to-start-of-expr (&optional lim)
4924 (condition-case nil
4925 (progn
4926 (while (and (or (not lim)
4927 (> (point) lim))
4928 (not (cperl-after-expr-p lim)))
4929 (forward-sexp -1)
4930 ;; May be after $, @, $# etc of a variable
4931 (skip-chars-backward "$@%#")))
4932 (error nil)))
4934 (defun cperl-at-end-of-expr (&optional lim)
4935 ;; Since the SEXP approach below is very fragile, do some overengineering
4936 (or (looking-at (concat cperl-maybe-white-and-comment-rex "[;}]"))
4937 (condition-case nil
4938 (save-excursion
4939 ;; If nothing interesting after, does as (forward-sexp -1);
4940 ;; otherwise fails, or ends at a start of following sexp.
4941 ;; XXXX PROBLEMS: if what follows (after ";") @FOO, or ${bar}
4942 ;; may be stuck after @ or $; just put some stupid workaround now:
4943 (let ((p (point)))
4944 (forward-sexp 1)
4945 (forward-sexp -1)
4946 (while (memq (preceding-char) (append "%&@$*" nil))
4947 (forward-char -1))
4948 (or (< (point) p)
4949 (cperl-after-expr-p lim))))
4950 (error t))))
4952 (defun cperl-forward-to-end-of-expr (&optional lim)
4953 (let ((p (point))))
4954 (condition-case nil
4955 (progn
4956 (while (and (< (point) (or lim (point-max)))
4957 (not (cperl-at-end-of-expr)))
4958 (forward-sexp 1)))
4959 (error nil)))
4961 (defun cperl-backward-to-start-of-continued-exp (lim)
4962 (if (memq (preceding-char) (append ")]}\"'`" nil))
4963 (forward-sexp -1))
4964 (beginning-of-line)
4965 (if (<= (point) lim)
4966 (goto-char (1+ lim)))
4967 (skip-chars-forward " \t"))
4969 (defun cperl-after-block-and-statement-beg (lim)
4970 ;; We assume that we are after ?\}
4971 (and
4972 (cperl-after-block-p lim)
4973 (save-excursion
4974 (forward-sexp -1)
4975 (cperl-backward-to-noncomment (point-min))
4976 (or (bobp)
4977 (eq (point) lim)
4978 (not (= (char-syntax (preceding-char)) ?w))
4979 (progn
4980 (forward-sexp -1)
4981 (not
4982 (looking-at
4983 "\\(map\\|grep\\|printf?\\|system\\|exec\\|tr\\|s\\)\\>")))))))
4986 (defun cperl-indent-exp ()
4987 "Simple variant of indentation of continued-sexp.
4989 Will not indent comment if it starts at `comment-indent' or looks like
4990 continuation of the comment on the previous line.
4992 If `cperl-indent-region-fix-constructs', will improve spacing on
4993 conditional/loop constructs."
4994 (interactive)
4995 (save-excursion
4996 (let ((tmp-end (point-at-eol)) top done)
4997 (save-excursion
4998 (beginning-of-line)
4999 (while (null done)
5000 (setq top (point))
5001 ;; Plan A: if line has an unfinished paren-group, go to end-of-group
5002 (while (= -1 (nth 0 (parse-partial-sexp (point) tmp-end -1)))
5003 (setq top (point))) ; Get the outermost parens in line
5004 (goto-char top)
5005 (while (< (point) tmp-end)
5006 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol
5007 (or (eolp) (forward-sexp 1)))
5008 (if (> (point) tmp-end) ; Yes, there an unfinished block
5010 (if (eq ?\) (preceding-char))
5011 (progn ;; Plan B: find by REGEXP block followup this line
5012 (setq top (point))
5013 (condition-case nil
5014 (progn
5015 (forward-sexp -2)
5016 (if (eq (following-char) ?$ ) ; for my $var (list)
5017 (progn
5018 (forward-sexp -1)
5019 (if (looking-at "\\(my\\|local\\|our\\)\\>")
5020 (forward-sexp -1))))
5021 (if (looking-at
5022 (concat "\\(\\elsif\\|if\\|unless\\|while\\|until"
5023 "\\|for\\(each\\)?\\>\\(\\("
5024 cperl-maybe-white-and-comment-rex
5025 "\\(my\\|local\\|our\\)\\)?"
5026 cperl-maybe-white-and-comment-rex
5027 "\\$[_a-zA-Z0-9]+\\)?\\)\\>"))
5028 (progn
5029 (goto-char top)
5030 (forward-sexp 1)
5031 (setq top (point)))))
5032 (error (setq done t)))
5033 (goto-char top))
5034 (if (looking-at ; Try Plan C: continuation block
5035 (concat cperl-maybe-white-and-comment-rex
5036 "\\<\\(else\\|elsif\|continue\\)\\>"))
5037 (progn
5038 (goto-char (match-end 0))
5039 (setq tmp-end (point-at-eol)))
5040 (setq done t))))
5041 (setq tmp-end (point-at-eol)))
5042 (goto-char tmp-end)
5043 (setq tmp-end (point-marker)))
5044 (if cperl-indent-region-fix-constructs
5045 (cperl-fix-line-spacing tmp-end))
5046 (cperl-indent-region (point) tmp-end))))
5048 (defun cperl-fix-line-spacing (&optional end parse-data)
5049 "Improve whitespace in a conditional/loop construct.
5050 Returns some position at the last line."
5051 (interactive)
5052 (or end
5053 (setq end (point-max)))
5054 (let ((ee (point-at-eol))
5055 (cperl-indent-region-fix-constructs
5056 (or cperl-indent-region-fix-constructs 1))
5057 p pp ml have-brace ret)
5058 (save-excursion
5059 (beginning-of-line)
5060 (setq ret (point))
5061 ;; }? continue
5062 ;; blah; }
5063 (if (not
5064 (or (looking-at "[ \t]*\\(els\\(e\\|if\\)\\|continue\\|if\\|while\\|for\\(each\\)?\\|until\\)")
5065 (setq have-brace (save-excursion (search-forward "}" ee t)))))
5066 nil ; Do not need to do anything
5067 ;; Looking at:
5068 ;; }
5069 ;; else
5070 (if cperl-merge-trailing-else
5071 (if (looking-at
5072 "[ \t]*}[ \t]*\n[ \t\n]*\\(els\\(e\\|if\\)\\|continue\\)\\>")
5073 (progn
5074 (search-forward "}")
5075 (setq p (point))
5076 (skip-chars-forward " \t\n")
5077 (delete-region p (point))
5078 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5079 (beginning-of-line)))
5080 (if (looking-at "[ \t]*}[ \t]*\\(els\\(e\\|if\\)\\|continue\\)\\>")
5081 (save-excursion
5082 (search-forward "}")
5083 (delete-horizontal-space)
5084 (insert "\n")
5085 (setq ret (point))
5086 (if (cperl-indent-line parse-data)
5087 (progn
5088 (cperl-fix-line-spacing end parse-data)
5089 (setq ret (point)))))))
5090 ;; Looking at:
5091 ;; } else
5092 (if (looking-at "[ \t]*}\\(\t*\\|[ \t][ \t]+\\)\\<\\(els\\(e\\|if\\)\\|continue\\)\\>")
5093 (progn
5094 (search-forward "}")
5095 (delete-horizontal-space)
5096 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5097 (beginning-of-line)))
5098 ;; Looking at:
5099 ;; else {
5100 (if (looking-at
5101 "[ \t]*}?[ \t]*\\<\\(\\els\\(e\\|if\\)\\|continue\\|unless\\|if\\|while\\|for\\(each\\)?\\|until\\)\\>\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
5102 (progn
5103 (forward-word 1)
5104 (delete-horizontal-space)
5105 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5106 (beginning-of-line)))
5107 ;; Looking at:
5108 ;; foreach my $var
5109 (if (looking-at
5110 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)\\(\t*\\|[ \t][ \t]+\\)[^ \t\n]")
5111 (progn
5112 (forward-word 2)
5113 (delete-horizontal-space)
5114 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5115 (beginning-of-line)))
5116 ;; Looking at:
5117 ;; foreach my $var (
5118 (if (looking-at
5119 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)[ \t]*\\$[_a-zA-Z0-9]+\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
5120 (progn
5121 (forward-sexp 3)
5122 (delete-horizontal-space)
5123 (insert
5124 (make-string cperl-indent-region-fix-constructs ?\s))
5125 (beginning-of-line)))
5126 ;; Looking at (with or without "}" at start, ending after "({"):
5127 ;; } foreach my $var () OR {
5128 (if (looking-at
5129 "[ \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]*{")
5130 (progn
5131 (setq ml (match-beginning 8)) ; "(" or "{" after control word
5132 (re-search-forward "[({]")
5133 (forward-char -1)
5134 (setq p (point))
5135 (if (eq (following-char) ?\( )
5136 (progn
5137 (forward-sexp 1)
5138 (setq pp (point))) ; past parenth-group
5139 ;; after `else' or nothing
5140 (if ml ; after `else'
5141 (skip-chars-backward " \t\n")
5142 (beginning-of-line))
5143 (setq pp nil))
5144 ;; Now after the sexp before the brace
5145 ;; Multiline expr should be special
5146 (setq ml (and pp (save-excursion (goto-char p)
5147 (search-forward "\n" pp t))))
5148 (if (and (or (not pp) (< pp end)) ; Do not go too far...
5149 (looking-at "[ \t\n]*{"))
5150 (progn
5151 (cond
5152 ((bolp) ; Were before `{', no if/else/etc
5153 nil)
5154 ((looking-at "\\(\t*\\| [ \t]+\\){") ; Not exactly 1 SPACE
5155 (delete-horizontal-space)
5156 (if (if ml
5157 cperl-extra-newline-before-brace-multiline
5158 cperl-extra-newline-before-brace)
5159 (progn
5160 (delete-horizontal-space)
5161 (insert "\n")
5162 (setq ret (point))
5163 (if (cperl-indent-line parse-data)
5164 (progn
5165 (cperl-fix-line-spacing end parse-data)
5166 (setq ret (point)))))
5167 (insert
5168 (make-string cperl-indent-region-fix-constructs ?\s))))
5169 ((and (looking-at "[ \t]*\n")
5170 (not (if ml
5171 cperl-extra-newline-before-brace-multiline
5172 cperl-extra-newline-before-brace)))
5173 (setq pp (point))
5174 (skip-chars-forward " \t\n")
5175 (delete-region pp (point))
5176 (insert
5177 (make-string cperl-indent-region-fix-constructs ?\ )))
5178 ((and (looking-at "[\t ]*{")
5179 (if ml cperl-extra-newline-before-brace-multiline
5180 cperl-extra-newline-before-brace))
5181 (delete-horizontal-space)
5182 (insert "\n")
5183 (setq ret (point))
5184 (if (cperl-indent-line parse-data)
5185 (progn
5186 (cperl-fix-line-spacing end parse-data)
5187 (setq ret (point))))))
5188 ;; Now we are before `{'
5189 (if (looking-at "[ \t\n]*{[ \t]*[^ \t\n#]")
5190 (progn
5191 (skip-chars-forward " \t\n")
5192 (setq pp (point))
5193 (forward-sexp 1)
5194 (setq p (point))
5195 (goto-char pp)
5196 (setq ml (search-forward "\n" p t))
5197 (if (or cperl-break-one-line-blocks-when-indent ml)
5198 ;; not good: multi-line BLOCK
5199 (progn
5200 (goto-char (1+ pp))
5201 (delete-horizontal-space)
5202 (insert "\n")
5203 (setq ret (point))
5204 (if (cperl-indent-line parse-data)
5205 (setq ret (cperl-fix-line-spacing end parse-data)))))))))))
5206 (beginning-of-line)
5207 (setq p (point) pp (point-at-eol)) ; May be different from ee.
5208 ;; Now check whether there is a hanging `}'
5209 ;; Looking at:
5210 ;; } blah
5211 (if (and
5212 cperl-fix-hanging-brace-when-indent
5213 have-brace
5214 (not (looking-at "[ \t]*}[ \t]*\\(\\<\\(els\\(if\\|e\\)\\|continue\\|while\\|until\\)\\>\\|$\\|#\\)"))
5215 (condition-case nil
5216 (progn
5217 (up-list 1)
5218 (if (and (<= (point) pp)
5219 (eq (preceding-char) ?\} )
5220 (cperl-after-block-and-statement-beg (point-min)))
5222 (goto-char p)
5223 nil))
5224 (error nil)))
5225 (progn
5226 (forward-char -1)
5227 (skip-chars-backward " \t")
5228 (if (bolp)
5229 ;; `}' was the first thing on the line, insert NL *after* it.
5230 (progn
5231 (cperl-indent-line parse-data)
5232 (search-forward "}")
5233 (delete-horizontal-space)
5234 (insert "\n"))
5235 (delete-horizontal-space)
5236 (or (eq (preceding-char) ?\;)
5237 (bolp)
5238 (and (eq (preceding-char) ?\} )
5239 (cperl-after-block-p (point-min)))
5240 (insert ";"))
5241 (insert "\n")
5242 (setq ret (point)))
5243 (if (cperl-indent-line parse-data)
5244 (setq ret (cperl-fix-line-spacing end parse-data)))
5245 (beginning-of-line)))))
5246 ret))
5248 (defvar cperl-update-start) ; Do not need to make them local
5249 (defvar cperl-update-end)
5250 (defun cperl-delay-update-hook (beg end old-len)
5251 (setq cperl-update-start (min beg (or cperl-update-start (point-max))))
5252 (setq cperl-update-end (max end (or cperl-update-end (point-min)))))
5254 (defun cperl-indent-region (start end)
5255 "Simple variant of indentation of region in CPerl mode.
5256 Should be slow. Will not indent comment if it starts at `comment-indent'
5257 or looks like continuation of the comment on the previous line.
5258 Indents all the lines whose first character is between START and END
5259 inclusive.
5261 If `cperl-indent-region-fix-constructs', will improve spacing on
5262 conditional/loop constructs."
5263 (interactive "r")
5264 (cperl-update-syntaxification end end)
5265 (save-excursion
5266 (let (cperl-update-start cperl-update-end (h-a-c after-change-functions))
5267 (let ((indent-info (if cperl-emacs-can-parse
5268 (list nil nil nil) ; Cannot use '(), since will modify
5269 nil))
5270 (pm 0)
5271 after-change-functions ; Speed it up!
5272 st comm old-comm-indent new-comm-indent p pp i empty)
5273 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook))
5274 (goto-char start)
5275 (setq old-comm-indent (and (cperl-to-comment-or-eol)
5276 (current-column))
5277 new-comm-indent old-comm-indent)
5278 (goto-char start)
5279 (setq end (set-marker (make-marker) end)) ; indentation changes pos
5280 (or (bolp) (beginning-of-line 2))
5281 (while (and (<= (point) end) (not (eobp))) ; bol to check start
5282 (setq st (point))
5283 (if (or
5284 (setq empty (looking-at "[ \t]*\n"))
5285 (and (setq comm (looking-at "[ \t]*#"))
5286 (or (eq (current-indentation) (or old-comm-indent
5287 comment-column))
5288 (setq old-comm-indent nil))))
5289 (if (and old-comm-indent
5290 (not empty)
5291 (= (current-indentation) old-comm-indent)
5292 (not (eq (get-text-property (point) 'syntax-type) 'pod))
5293 (not (eq (get-text-property (point) 'syntax-table)
5294 cperl-st-cfence)))
5295 (let ((comment-column new-comm-indent))
5296 (indent-for-comment)))
5297 (progn
5298 (setq i (cperl-indent-line indent-info))
5299 (or comm
5300 (not i)
5301 (progn
5302 (if cperl-indent-region-fix-constructs
5303 (goto-char (cperl-fix-line-spacing end indent-info)))
5304 (if (setq old-comm-indent
5305 (and (cperl-to-comment-or-eol)
5306 (not (memq (get-text-property (point)
5307 'syntax-type)
5308 '(pod here-doc)))
5309 (not (eq (get-text-property (point)
5310 'syntax-table)
5311 cperl-st-cfence))
5312 (current-column)))
5313 (progn (indent-for-comment)
5314 (skip-chars-backward " \t")
5315 (skip-chars-backward "#")
5316 (setq new-comm-indent (current-column))))))))
5317 (beginning-of-line 2)))
5318 ;; Now run the update hooks
5319 (and after-change-functions
5320 cperl-update-end
5321 (save-excursion
5322 (goto-char cperl-update-end)
5323 (insert " ")
5324 (delete-char -1)
5325 (goto-char cperl-update-start)
5326 (insert " ")
5327 (delete-char -1))))))
5329 ;; Stolen from lisp-mode with a lot of improvements
5331 (defun cperl-fill-paragraph (&optional justify iteration)
5332 "Like `fill-paragraph', but handle CPerl comments.
5333 If any of the current line is a comment, fill the comment or the
5334 block of it that point is in, preserving the comment's initial
5335 indentation and initial hashes. Behaves usually outside of comment."
5336 ;; (interactive "P") ; Only works when called from fill-paragraph. -stef
5337 (let (;; Non-nil if the current line contains a comment.
5338 has-comment
5339 fill-paragraph-function ; do not recurse
5340 ;; If has-comment, the appropriate fill-prefix for the comment.
5341 comment-fill-prefix
5342 ;; Line that contains code and comment (or nil)
5343 start
5344 c spaces len dc (comment-column comment-column))
5345 ;; Figure out what kind of comment we are looking at.
5346 (save-excursion
5347 (beginning-of-line)
5348 (cond
5350 ;; A line with nothing but a comment on it?
5351 ((looking-at "[ \t]*#[# \t]*")
5352 (setq has-comment t
5353 comment-fill-prefix (buffer-substring (match-beginning 0)
5354 (match-end 0))))
5356 ;; A line with some code, followed by a comment? Remember that the
5357 ;; semi which starts the comment shouldn't be part of a string or
5358 ;; character.
5359 ((cperl-to-comment-or-eol)
5360 (setq has-comment t)
5361 (looking-at "#+[ \t]*")
5362 (setq start (point) c (current-column)
5363 comment-fill-prefix
5364 (concat (make-string (current-column) ?\s)
5365 (buffer-substring (match-beginning 0) (match-end 0)))
5366 spaces (progn (skip-chars-backward " \t")
5367 (buffer-substring (point) start))
5368 dc (- c (current-column)) len (- start (point))
5369 start (point-marker))
5370 (delete-char len)
5371 (insert (make-string dc ?-))))) ; Placeholder (to avoid splitting???)
5372 (if (not has-comment)
5373 (fill-paragraph justify) ; Do the usual thing outside of comment
5374 ;; Narrow to include only the comment, and then fill the region.
5375 (save-restriction
5376 (narrow-to-region
5377 ;; Find the first line we should include in the region to fill.
5378 (if start (progn (beginning-of-line) (point))
5379 (save-excursion
5380 (while (and (zerop (forward-line -1))
5381 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")))
5382 ;; We may have gone to far. Go forward again.
5383 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")
5384 (forward-line 1))
5385 (point)))
5386 ;; Find the beginning of the first line past the region to fill.
5387 (save-excursion
5388 (while (progn (forward-line 1)
5389 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")))
5390 (point)))
5391 ;; Remove existing hashes
5392 (goto-char (point-min))
5393 (save-excursion
5394 (while (progn (forward-line 1) (< (point) (point-max)))
5395 (skip-chars-forward " \t")
5396 (if (looking-at "#+")
5397 (progn
5398 (if (and (eq (point) (match-beginning 0))
5399 (not (eq (point) (match-end 0)))) nil
5400 (error
5401 "Bug in Emacs: `looking-at' in `narrow-to-region': match-data is garbage"))
5402 (delete-char (- (match-end 0) (match-beginning 0)))))))
5404 ;; Lines with only hashes on them can be paragraph boundaries.
5405 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$"))
5406 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$"))
5407 (fill-prefix comment-fill-prefix))
5408 (fill-paragraph justify)))
5409 (if (and start)
5410 (progn
5411 (goto-char start)
5412 (if (> dc 0)
5413 (progn (delete-char dc) (insert spaces)))
5414 (if (or (= (current-column) c) iteration) nil
5415 (setq comment-column c)
5416 (indent-for-comment)
5417 ;; Repeat once more, flagging as iteration
5418 (cperl-fill-paragraph justify t))))))
5421 (defun cperl-do-auto-fill ()
5422 ;; Break out if the line is short enough
5423 (if (> (save-excursion
5424 (end-of-line)
5425 (current-column))
5426 fill-column)
5427 (let ((c (save-excursion (beginning-of-line)
5428 (cperl-to-comment-or-eol) (point)))
5429 (s (memq (following-char) '(?\s ?\t))) marker)
5430 (if (>= c (point))
5431 ;; Don't break line inside code: only inside comment.
5433 (setq marker (point-marker))
5434 (fill-paragraph nil)
5435 (goto-char marker)
5436 ;; Is not enough, sometimes marker is a start of line
5437 (if (bolp) (progn (re-search-forward "#+[ \t]*")
5438 (goto-char (match-end 0))))
5439 ;; Following space could have gone:
5440 (if (or (not s) (memq (following-char) '(?\s ?\t))) nil
5441 (insert " ")
5442 (backward-char 1))
5443 ;; Previous space could have gone:
5444 (or (memq (preceding-char) '(?\s ?\t)) (insert " "))))))
5446 (defun cperl-imenu-addback (lst &optional isback name)
5447 ;; We suppose that the lst is a DAG, unless the first element only
5448 ;; loops back, and ISBACK is set. Thus this function cannot be
5449 ;; applied twice without ISBACK set.
5450 (cond ((not cperl-imenu-addback) lst)
5452 (or name
5453 (setq name "+++BACK+++"))
5454 (mapc (lambda (elt)
5455 (if (and (listp elt) (listp (cdr elt)))
5456 (progn
5457 ;; In the other order it goes up
5458 ;; one level only ;-(
5459 (setcdr elt (cons (cons name lst)
5460 (cdr elt)))
5461 (cperl-imenu-addback (cdr elt) t name))))
5462 (if isback (cdr lst) lst))
5463 lst)))
5465 (defun cperl-imenu--create-perl-index (&optional regexp)
5466 (require 'imenu) ; May be called from TAGS creator
5467 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '())
5468 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function))
5469 (index-meth-alist '()) meth
5470 packages ends-ranges p marker is-proto
5471 (prev-pos 0) is-pack index index1 name (end-range 0) package)
5472 (goto-char (point-min))
5473 (cperl-update-syntaxification (point-max) (point-max))
5474 ;; Search for the function
5475 (progn ;;save-match-data
5476 (while (re-search-forward
5477 (or regexp cperl-imenu--function-name-regexp-perl)
5478 nil t)
5479 ;; 2=package-group, 5=package-name 8=sub-name
5480 (cond
5481 ((and ; Skip some noise if building tags
5482 (match-beginning 5) ; package name
5483 ;;(eq (char-after (match-beginning 2)) ?p) ; package
5484 (not (save-match-data
5485 (looking-at "[ \t\n]*;")))) ; Plain text word 'package'
5486 nil)
5487 ((and
5488 (or (match-beginning 2)
5489 (match-beginning 8)) ; package or sub
5490 ;; Skip if quoted (will not skip multi-line ''-strings :-():
5491 (null (get-text-property (match-beginning 1) 'syntax-table))
5492 (null (get-text-property (match-beginning 1) 'syntax-type))
5493 (null (get-text-property (match-beginning 1) 'in-pod)))
5494 (setq is-pack (match-beginning 2))
5495 ;; (if (looking-at "([^()]*)[ \t\n\f]*")
5496 ;; (goto-char (match-end 0))) ; Messes what follows
5497 (setq meth nil
5498 p (point))
5499 (while (and ends-ranges (>= p (car ends-ranges)))
5500 ;; delete obsolete entries
5501 (setq ends-ranges (cdr ends-ranges) packages (cdr packages)))
5502 (setq package (or (car packages) "")
5503 end-range (or (car ends-ranges) 0))
5504 (if is-pack ; doing "package"
5505 (progn
5506 (if (match-beginning 5) ; named package
5507 (setq name (buffer-substring (match-beginning 5)
5508 (match-end 5))
5509 name (progn
5510 (set-text-properties 0 (length name) nil name)
5511 name)
5512 package (concat name "::")
5513 name (concat "package " name))
5514 ;; Support nameless packages
5515 (setq name "package;" package ""))
5516 (setq end-range
5517 (save-excursion
5518 (parse-partial-sexp (point) (point-max) -1) (point))
5519 ends-ranges (cons end-range ends-ranges)
5520 packages (cons package packages)))
5521 (setq is-proto
5522 (or (eq (following-char) ?\;)
5523 (eq 0 (get-text-property (point) 'attrib-group)))))
5524 ;; Skip this function name if it is a prototype declaration.
5525 (if (and is-proto (not is-pack)) nil
5526 (or is-pack
5527 (setq name
5528 (buffer-substring (match-beginning 8) (match-end 8)))
5529 (set-text-properties 0 (length name) nil name))
5530 (setq marker (make-marker))
5531 (set-marker marker (match-end (if is-pack 2 8)))
5532 (cond (is-pack nil)
5533 ((string-match "[:']" name)
5534 (setq meth t))
5535 ((> p end-range) nil)
5537 (setq name (concat package name) meth t)))
5538 (setq index (cons name marker))
5539 (if is-pack
5540 (push index index-pack-alist)
5541 (push index index-alist))
5542 (if meth (push index index-meth-alist))
5543 (push index index-unsorted-alist)))
5544 ((match-beginning 16) ; POD section
5545 (setq name (buffer-substring (match-beginning 17) (match-end 17))
5546 marker (make-marker))
5547 (set-marker marker (match-beginning 17))
5548 (set-text-properties 0 (length name) nil name)
5549 (setq name (concat (make-string
5550 (* 3 (- (char-after (match-beginning 16)) ?1))
5551 ?\ )
5552 name)
5553 index (cons name marker))
5554 (setq index1 (cons (concat "=" name) (cdr index)))
5555 (push index index-pod-alist)
5556 (push index1 index-unsorted-alist)))))
5557 (setq index-alist
5558 (if (default-value 'imenu-sort-function)
5559 (sort index-alist (default-value 'imenu-sort-function))
5560 (nreverse index-alist)))
5561 (and index-pod-alist
5562 (push (cons "+POD headers+..."
5563 (nreverse index-pod-alist))
5564 index-alist))
5565 (and (or index-pack-alist index-meth-alist)
5566 (let ((lst index-pack-alist) hier-list pack elt group name)
5567 ;; Remove "package ", reverse and uniquify.
5568 (while lst
5569 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8))
5570 (if (assoc name hier-list) nil
5571 (setq hier-list (cons (cons name (cdr elt)) hier-list))))
5572 (setq lst index-meth-alist)
5573 (while lst
5574 (setq elt (car lst) lst (cdr lst))
5575 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt))
5576 (setq pack (substring (car elt) 0 (match-beginning 0)))
5577 (if (setq group (assoc pack hier-list))
5578 (if (listp (cdr group))
5579 ;; Have some functions already
5580 (setcdr group
5581 (cons (cons (substring
5582 (car elt)
5583 (+ 2 (match-beginning 0)))
5584 (cdr elt))
5585 (cdr group)))
5586 (setcdr group (list (cons (substring
5587 (car elt)
5588 (+ 2 (match-beginning 0)))
5589 (cdr elt)))))
5590 (setq hier-list
5591 (cons (cons pack
5592 (list (cons (substring
5593 (car elt)
5594 (+ 2 (match-beginning 0)))
5595 (cdr elt))))
5596 hier-list))))))
5597 (push (cons "+Hierarchy+..."
5598 hier-list)
5599 index-alist)))
5600 (and index-pack-alist
5601 (push (cons "+Packages+..."
5602 (nreverse index-pack-alist))
5603 index-alist))
5604 (and (or index-pack-alist index-pod-alist
5605 (default-value 'imenu-sort-function))
5606 index-unsorted-alist
5607 (push (cons "+Unsorted List+..."
5608 (nreverse index-unsorted-alist))
5609 index-alist))
5610 (cperl-imenu-addback index-alist)))
5613 ;; Suggested by Mark A. Hershberger
5614 (defun cperl-outline-level ()
5615 (looking-at outline-regexp)
5616 (cond ((not (match-beginning 1)) 0) ; beginning-of-file
5617 ;;;; 2=package-group, 5=package-name 8=sub-name 16=head-level
5618 ((match-beginning 2) 0) ; package
5619 ((match-beginning 8) 1) ; sub
5620 ((match-beginning 16)
5621 (- (char-after (match-beginning 16)) ?0)) ; headN ==> N
5622 (t 5))) ; should not happen
5625 (defun cperl-windowed-init ()
5626 "Initialization under windowed version."
5627 (cond ((featurep 'ps-print)
5628 (or cperl-faces-init
5629 (progn
5630 (and (boundp 'font-lock-multiline)
5631 (setq cperl-font-lock-multiline t))
5632 (cperl-init-faces))))
5633 ((not cperl-faces-init)
5634 (add-hook 'font-lock-mode-hook
5635 (function
5636 (lambda ()
5637 (if (memq major-mode '(perl-mode cperl-mode))
5638 (progn
5639 (or cperl-faces-init (cperl-init-faces)))))))
5640 (if (fboundp 'eval-after-load)
5641 (eval-after-load
5642 "ps-print"
5643 '(or cperl-faces-init (cperl-init-faces)))))))
5645 (defvar cperl-font-lock-keywords-1 nil
5646 "Additional expressions to highlight in Perl mode. Minimal set.")
5647 (defvar cperl-font-lock-keywords nil
5648 "Additional expressions to highlight in Perl mode. Default set.")
5649 (defvar cperl-font-lock-keywords-2 nil
5650 "Additional expressions to highlight in Perl mode. Maximal set")
5652 (defun cperl-load-font-lock-keywords ()
5653 (or cperl-faces-init (cperl-init-faces))
5654 cperl-font-lock-keywords)
5656 (defun cperl-load-font-lock-keywords-1 ()
5657 (or cperl-faces-init (cperl-init-faces))
5658 cperl-font-lock-keywords-1)
5660 (defun cperl-load-font-lock-keywords-2 ()
5661 (or cperl-faces-init (cperl-init-faces))
5662 cperl-font-lock-keywords-2)
5664 (defun cperl-init-faces-weak ()
5665 ;; Allow `cperl-find-pods-heres' to run.
5666 (or (boundp 'font-lock-constant-face)
5667 (cperl-force-face font-lock-constant-face
5668 "Face for constant and label names"))
5669 (or (boundp 'font-lock-warning-face)
5670 (cperl-force-face font-lock-warning-face
5671 "Face for things which should stand out"))
5672 ;;(setq font-lock-constant-face 'font-lock-constant-face)
5675 (defun cperl-init-faces ()
5676 (condition-case errs
5677 (progn
5678 (require 'font-lock)
5679 (and (fboundp 'font-lock-fontify-anchored-keywords)
5680 (featurep 'font-lock-extra)
5681 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'."))
5682 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored)
5683 (if (fboundp 'font-lock-fontify-anchored-keywords)
5684 (setq font-lock-anchored t))
5685 (setq
5686 t-font-lock-keywords
5687 (list
5688 `("[ \t]+$" 0 ',cperl-invalid-face t)
5689 (cons
5690 (concat
5691 "\\(^\\|[^$@%&\\]\\)\\<\\("
5692 (mapconcat
5693 'identity
5694 '("if" "until" "while" "elsif" "else" "unless" "for"
5695 "foreach" "continue" "exit" "die" "last" "goto" "next"
5696 "redo" "return" "local" "exec" "sub" "do" "dump" "use" "our"
5697 "require" "package" "eval" "my" "BEGIN" "END" "CHECK" "INIT")
5698 "\\|") ; Flow control
5699 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]"
5700 ; In what follows we use `type' style
5701 ; for overwritable builtins
5702 (list
5703 (concat
5704 "\\(^\\|[^$@%&\\]\\)\\<\\("
5705 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm"
5706 ;; "and" "atan2" "bind" "binmode" "bless" "caller"
5707 ;; "chdir" "chmod" "chown" "chr" "chroot" "close"
5708 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt"
5709 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent"
5710 ;; "endhostent" "endnetent" "endprotoent" "endpwent"
5711 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl"
5712 ;; "fileno" "flock" "fork" "formline" "ge" "getc"
5713 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr"
5714 ;; "gethostbyname" "gethostent" "getlogin"
5715 ;; "getnetbyaddr" "getnetbyname" "getnetent"
5716 ;; "getpeername" "getpgrp" "getppid" "getpriority"
5717 ;; "getprotobyname" "getprotobynumber" "getprotoent"
5718 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname"
5719 ;; "getservbyport" "getservent" "getsockname"
5720 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int"
5721 ;; "ioctl" "join" "kill" "lc" "lcfirst" "le" "length"
5722 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt"
5723 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne"
5724 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe"
5725 ;; "quotemeta" "rand" "read" "readdir" "readline"
5726 ;; "readlink" "readpipe" "recv" "ref" "rename" "require"
5727 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek"
5728 ;; "seekdir" "select" "semctl" "semget" "semop" "send"
5729 ;; "setgrent" "sethostent" "setnetent" "setpgrp"
5730 ;; "setpriority" "setprotoent" "setpwent" "setservent"
5731 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite"
5732 ;; "shutdown" "sin" "sleep" "socket" "socketpair"
5733 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink"
5734 ;; "syscall" "sysopen" "sysread" "system" "syswrite" "tell"
5735 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst"
5736 ;; "umask" "unlink" "unpack" "utime" "values" "vec"
5737 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor"
5738 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|"
5739 "b\\(in\\(d\\|mode\\)\\|less\\)\\|"
5740 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|"
5741 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|"
5742 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|"
5743 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|"
5744 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|"
5745 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|"
5746 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|"
5747 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w"
5748 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|"
5749 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|"
5750 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|"
5751 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|"
5752 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|"
5753 "l\\(i\\(sten\\|nk\\)\\|stat\\|c\\(\\|first\\)\\|t\\|e"
5754 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|"
5755 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|"
5756 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|"
5757 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin"
5758 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name"
5759 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r"
5760 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|"
5761 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|"
5762 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|"
5763 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|open\\|tem\\|write\\)\\|"
5764 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|"
5765 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|"
5766 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|"
5767 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|"
5768 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)"
5769 "\\)\\>") 2 'font-lock-type-face)
5770 ;; In what follows we use `other' style
5771 ;; for nonoverwritable builtins
5772 ;; Somehow 's', 'm' are not auto-generated???
5773 (list
5774 (concat
5775 "\\(^\\|[^$@%&\\]\\)\\<\\("
5776 ;; "AUTOLOAD" "BEGIN" "CHECK" "DESTROY" "END" "INIT" "__END__" "chomp"
5777 ;; "chop" "defined" "delete" "do" "each" "else" "elsif"
5778 ;; "eval" "exists" "for" "foreach" "format" "goto"
5779 ;; "grep" "if" "keys" "last" "local" "map" "my" "next"
5780 ;; "no" "our" "package" "pop" "pos" "print" "printf" "push"
5781 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift"
5782 ;; "sort" "splice" "split" "study" "sub" "tie" "tr"
5783 ;; "undef" "unless" "unshift" "untie" "until" "use"
5784 ;; "while" "y"
5785 "AUTOLOAD\\|BEGIN\\|CHECK\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|"
5786 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|"
5787 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|INIT\\|if\\|keys\\|"
5788 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|our\\|"
5789 "p\\(ackage\\|rint\\(\\|f\\)\\|ush\\|o\\(p\\|s\\)\\)\\|"
5790 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|"
5791 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|"
5792 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|"
5793 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually
5794 "\\|[sm]" ; Added manually
5795 "\\)\\>") 2 'cperl-nonoverridable-face)
5796 ;; (mapconcat 'identity
5797 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if"
5798 ;; "#include" "#define" "#undef")
5799 ;; "\\|")
5800 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0
5801 font-lock-function-name-face keep) ; Not very good, triggers at "[a-z]"
5802 ;; This highlights declarations and definitions differently.
5803 ;; We do not try to highlight in the case of attributes:
5804 ;; it is already done by `cperl-find-pods-heres'
5805 (list (concat "\\<sub"
5806 cperl-white-and-comment-rex ; whitespace/comments
5807 "\\([^ \n\t{;()]+\\)" ; 2=name (assume non-anonymous)
5808 "\\("
5809 cperl-maybe-white-and-comment-rex ;whitespace/comments?
5810 "([^()]*)\\)?" ; prototype
5811 cperl-maybe-white-and-comment-rex ; whitespace/comments?
5812 "[{;]")
5813 2 (if cperl-font-lock-multiline
5814 '(if (eq (char-after (cperl-1- (match-end 0))) ?\{ )
5815 'font-lock-function-name-face
5816 'font-lock-variable-name-face)
5817 ;; need to manually set 'multiline' for older font-locks
5818 '(progn
5819 (if (< 1 (count-lines (match-beginning 0)
5820 (match-end 0)))
5821 (put-text-property
5822 (+ 3 (match-beginning 0)) (match-end 0)
5823 'syntax-type 'multiline))
5824 (if (eq (char-after (cperl-1- (match-end 0))) ?\{ )
5825 'font-lock-function-name-face
5826 'font-lock-variable-name-face))))
5827 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B;
5828 2 font-lock-function-name-face)
5829 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$"
5830 1 font-lock-function-name-face)
5831 (cond ((featurep 'font-lock-extra)
5832 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5833 (2 font-lock-string-face t)
5834 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef}
5835 (font-lock-anchored
5836 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5837 (2 font-lock-string-face t)
5838 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5839 nil nil
5840 (1 font-lock-string-face t))))
5841 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5842 2 font-lock-string-face t)))
5843 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1
5844 font-lock-string-face t)
5845 '("^[ \t]*\\([a-zA-Z0-9_]+[ \t]*:\\)[ \t]*\\($\\|{\\|\\<\\(until\\|while\\|for\\(each\\)?\\|do\\)\\>\\)" 1
5846 font-lock-constant-face) ; labels
5847 '("\\<\\(continue\\|next\\|last\\|redo\\|goto\\)\\>[ \t]+\\([a-zA-Z0-9_:]+\\)" ; labels as targets
5848 2 font-lock-constant-face)
5849 ;; Uncomment to get perl-mode-like vars
5850 ;;; '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face)
5851 ;;; '("\\([@%]\\|\\$#\\)\\(\\sw+\\)"
5852 ;;; (2 (cons font-lock-variable-name-face '(underline))))
5853 (cond ((featurep 'font-lock-extra)
5854 '("^[ \t]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
5855 (3 font-lock-variable-name-face)
5856 (4 '(another 4 nil
5857 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
5858 (1 font-lock-variable-name-face)
5859 (2 '(restart 2 nil) nil t)))
5860 nil t))) ; local variables, multiple
5861 (font-lock-anchored
5862 ;; 1=my_etc, 2=white? 3=(+white? 4=white? 5=var
5863 `(,(concat "\\<\\(my\\|local\\|our\\)"
5864 cperl-maybe-white-and-comment-rex
5865 "\\(("
5866 cperl-maybe-white-and-comment-rex
5867 "\\)?\\([$@%*]\\([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
5868 (5 ,(if cperl-font-lock-multiline
5869 'font-lock-variable-name-face
5870 '(progn (setq cperl-font-lock-multiline-start
5871 (match-beginning 0))
5872 'font-lock-variable-name-face)))
5873 (,(concat "\\="
5874 cperl-maybe-white-and-comment-rex
5876 cperl-maybe-white-and-comment-rex
5877 "\\([$@%*]\\([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
5878 ;; Bug in font-lock: limit is used not only to limit
5879 ;; searches, but to set the "extend window for
5880 ;; facification" property. Thus we need to minimize.
5881 ,(if cperl-font-lock-multiline
5882 '(if (match-beginning 3)
5883 (save-excursion
5884 (goto-char (match-beginning 3))
5885 (condition-case nil
5886 (forward-sexp 1)
5887 (error
5888 (condition-case nil
5889 (forward-char 200)
5890 (error nil)))) ; typeahead
5891 (1- (point))) ; report limit
5892 (forward-char -2)) ; disable continued expr
5893 '(if (match-beginning 3)
5894 (point-max) ; No limit for continuation
5895 (forward-char -2))) ; disable continued expr
5896 ,(if cperl-font-lock-multiline
5898 '(progn ; Do at end
5899 ;; "my" may be already fontified (POD),
5900 ;; so cperl-font-lock-multiline-start is nil
5901 (if (or (not cperl-font-lock-multiline-start)
5902 (> 2 (count-lines
5903 cperl-font-lock-multiline-start
5904 (point))))
5906 (put-text-property
5907 (1+ cperl-font-lock-multiline-start) (point)
5908 'syntax-type 'multiline))
5909 (setq cperl-font-lock-multiline-start nil)))
5910 (3 font-lock-variable-name-face))))
5911 (t '("^[ \t{}]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)"
5912 3 font-lock-variable-name-face)))
5913 '("\\<for\\(each\\)?\\([ \t]+\\(my\\|local\\|our\\)\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*("
5914 4 font-lock-variable-name-face)
5915 ;; Avoid $!, and s!!, qq!! etc. when not fontifying syntactically
5916 '("\\(?:^\\|[^smywqrx$]\\)\\(!\\)" 1 font-lock-negation-char-face)
5917 '("\\[\\(\\^\\)" 1 font-lock-negation-char-face prepend)))
5918 (setq
5919 t-font-lock-keywords-1
5920 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock
5921 ;; not yet as of XEmacs 19.12, works with 21.1.11
5923 (not (featurep 'xemacs))
5924 (string< "21.1.9" emacs-version)
5925 (and (string< "21.1.10" emacs-version)
5926 (string< emacs-version "21.1.2")))
5928 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1
5929 (if (eq (char-after (match-beginning 2)) ?%)
5930 'cperl-hash-face
5931 'cperl-array-face)
5932 t) ; arrays and hashes
5933 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)"
5935 (if (= (- (match-end 2) (match-beginning 2)) 1)
5936 (if (eq (char-after (match-beginning 3)) ?{)
5937 'cperl-hash-face
5938 'cperl-array-face) ; arrays and hashes
5939 font-lock-variable-name-face) ; Just to put something
5941 ("\\(@\\|\\$#\\)\\(\\$+\\([a-zA-Z_:][a-zA-Z0-9_:]*\\|[^ \t\n]\\)\\)"
5942 (1 cperl-array-face)
5943 (2 font-lock-variable-name-face))
5944 ("\\(%\\)\\(\\$+\\([a-zA-Z_:][a-zA-Z0-9_:]*\\|[^ \t\n]\\)\\)"
5945 (1 cperl-hash-face)
5946 (2 font-lock-variable-name-face))
5947 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2")
5948 ;;; Too much noise from \s* @s[ and friends
5949 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)"
5950 ;;(3 font-lock-function-name-face t t)
5951 ;;(4
5952 ;; (if (cperl-slash-is-regexp)
5953 ;; font-lock-function-name-face 'default) nil t))
5955 (if cperl-highlight-variables-indiscriminately
5956 (setq t-font-lock-keywords-1
5957 (append t-font-lock-keywords-1
5958 (list '("\\([$*]{?\\sw+\\)" 1
5959 font-lock-variable-name-face)))))
5960 (setq cperl-font-lock-keywords-1
5961 (if cperl-syntaxify-by-font-lock
5962 (cons 'cperl-fontify-update
5963 t-font-lock-keywords)
5964 t-font-lock-keywords)
5965 cperl-font-lock-keywords cperl-font-lock-keywords-1
5966 cperl-font-lock-keywords-2 (append
5967 cperl-font-lock-keywords-1
5968 t-font-lock-keywords-1)))
5969 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init))
5970 (if (or (featurep 'choose-color) (featurep 'font-lock-extra))
5971 (eval ; Avoid a warning
5972 '(font-lock-require-faces
5973 (list
5974 ;; Color-light Color-dark Gray-light Gray-dark Mono
5975 (list 'font-lock-comment-face
5976 ["Firebrick" "OrangeRed" "DimGray" "Gray80"]
5978 [nil nil t t t]
5979 [nil nil t t t]
5980 nil)
5981 (list 'font-lock-string-face
5982 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"]
5985 [nil nil t t t]
5986 nil)
5987 (list 'font-lock-function-name-face
5988 (vector
5989 "Blue" "LightSkyBlue" "Gray50" "LightGray"
5990 (cdr (assq 'background-color ; if mono
5991 (frame-parameters))))
5992 (vector
5993 nil nil nil nil
5994 (cdr (assq 'foreground-color ; if mono
5995 (frame-parameters))))
5996 [nil nil t t t]
5998 nil)
5999 (list 'font-lock-variable-name-face
6000 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"]
6002 [nil nil t t t]
6003 [nil nil t t t]
6004 nil)
6005 (list 'font-lock-type-face
6006 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"]
6008 [nil nil t t t]
6010 [nil nil t t t])
6011 (list 'font-lock-warning-face
6012 ["Pink" "Red" "Gray50" "LightGray"]
6013 ["gray20" "gray90"
6014 "gray80" "gray20"]
6015 [nil nil t t t]
6017 [nil nil t t t]
6019 (list 'font-lock-constant-face
6020 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"]
6022 [nil nil t t t]
6024 [nil nil t t t])
6025 (list 'cperl-nonoverridable-face
6026 ["chartreuse3" ("orchid1" "orange")
6027 nil "Gray80"]
6028 [nil nil "gray90"]
6029 [nil nil nil t t]
6030 [nil nil t t]
6031 [nil nil t t t])
6032 (list 'cperl-array-face
6033 ["blue" "yellow" nil "Gray80"]
6034 ["lightyellow2" ("navy" "os2blue" "darkgreen")
6035 "gray90"]
6038 nil)
6039 (list 'cperl-hash-face
6040 ["red" "red" nil "Gray80"]
6041 ["lightyellow2" ("navy" "os2blue" "darkgreen")
6042 "gray90"]
6045 nil))))
6046 ;; Do it the dull way, without choose-color
6047 (defvar cperl-guessed-background nil
6048 "Display characteristics as guessed by cperl.")
6049 ;; (or (fboundp 'x-color-defined-p)
6050 ;; (defalias 'x-color-defined-p
6051 ;; (cond ((fboundp 'color-defined-p) 'color-defined-p)
6052 ;; ;; XEmacs >= 19.12
6053 ;; ((fboundp 'valid-color-name-p) 'valid-color-name-p)
6054 ;; ;; XEmacs 19.11
6055 ;; (t 'x-valid-color-name-p))))
6056 (cperl-force-face font-lock-constant-face
6057 "Face for constant and label names")
6058 (cperl-force-face font-lock-variable-name-face
6059 "Face for variable names")
6060 (cperl-force-face font-lock-type-face
6061 "Face for data types")
6062 (cperl-force-face cperl-nonoverridable-face
6063 "Face for data types from another group")
6064 (cperl-force-face font-lock-warning-face
6065 "Face for things which should stand out")
6066 (cperl-force-face font-lock-comment-face
6067 "Face for comments")
6068 (cperl-force-face font-lock-function-name-face
6069 "Face for function names")
6070 (cperl-force-face cperl-hash-face
6071 "Face for hashes")
6072 (cperl-force-face cperl-array-face
6073 "Face for arrays")
6074 ;;(defvar font-lock-constant-face 'font-lock-constant-face)
6075 ;;(defvar font-lock-variable-name-face 'font-lock-variable-name-face)
6076 ;;(or (boundp 'font-lock-type-face)
6077 ;; (defconst font-lock-type-face
6078 ;; 'font-lock-type-face
6079 ;; "Face to use for data types."))
6080 ;;(or (boundp 'cperl-nonoverridable-face)
6081 ;; (defconst cperl-nonoverridable-face
6082 ;; 'cperl-nonoverridable-face
6083 ;; "Face to use for data types from another group."))
6084 ;;(if (not (featurep 'xemacs)) nil
6085 ;; (or (boundp 'font-lock-comment-face)
6086 ;; (defconst font-lock-comment-face
6087 ;; 'font-lock-comment-face
6088 ;; "Face to use for comments."))
6089 ;; (or (boundp 'font-lock-keyword-face)
6090 ;; (defconst font-lock-keyword-face
6091 ;; 'font-lock-keyword-face
6092 ;; "Face to use for keywords."))
6093 ;; (or (boundp 'font-lock-function-name-face)
6094 ;; (defconst font-lock-function-name-face
6095 ;; 'font-lock-function-name-face
6096 ;; "Face to use for function names.")))
6097 (if (and
6098 (not (cperl-is-face 'cperl-array-face))
6099 (cperl-is-face 'font-lock-emphasized-face))
6100 (copy-face 'font-lock-emphasized-face 'cperl-array-face))
6101 (if (and
6102 (not (cperl-is-face 'cperl-hash-face))
6103 (cperl-is-face 'font-lock-other-emphasized-face))
6104 (copy-face 'font-lock-other-emphasized-face 'cperl-hash-face))
6105 (if (and
6106 (not (cperl-is-face 'cperl-nonoverridable-face))
6107 (cperl-is-face 'font-lock-other-type-face))
6108 (copy-face 'font-lock-other-type-face 'cperl-nonoverridable-face))
6109 ;;(or (boundp 'cperl-hash-face)
6110 ;; (defconst cperl-hash-face
6111 ;; 'cperl-hash-face
6112 ;; "Face to use for hashes."))
6113 ;;(or (boundp 'cperl-array-face)
6114 ;; (defconst cperl-array-face
6115 ;; 'cperl-array-face
6116 ;; "Face to use for arrays."))
6117 ;; Here we try to guess background
6118 (let ((background
6119 (if (boundp 'font-lock-background-mode)
6120 font-lock-background-mode
6121 'light))
6122 (face-list (and (fboundp 'face-list) (face-list))))
6123 ;;;; (fset 'cperl-is-face
6124 ;;;; (cond ((fboundp 'find-face)
6125 ;;;; (symbol-function 'find-face))
6126 ;;;; (face-list
6127 ;;;; (function (lambda (face) (member face face-list))))
6128 ;;;; (t
6129 ;;;; (function (lambda (face) (boundp face))))))
6130 (defvar cperl-guessed-background
6131 (if (and (boundp 'font-lock-display-type)
6132 (eq font-lock-display-type 'grayscale))
6133 'gray
6134 background)
6135 "Background as guessed by CPerl mode")
6136 (and (not (cperl-is-face 'font-lock-constant-face))
6137 (cperl-is-face 'font-lock-reference-face)
6138 (copy-face 'font-lock-reference-face 'font-lock-constant-face))
6139 (if (cperl-is-face 'font-lock-type-face) nil
6140 (copy-face 'default 'font-lock-type-face)
6141 (cond
6142 ((eq background 'light)
6143 (set-face-foreground 'font-lock-type-face
6144 (if (x-color-defined-p "seagreen")
6145 "seagreen"
6146 "sea green")))
6147 ((eq background 'dark)
6148 (set-face-foreground 'font-lock-type-face
6149 (if (x-color-defined-p "os2pink")
6150 "os2pink"
6151 "pink")))
6153 (set-face-background 'font-lock-type-face "gray90"))))
6154 (if (cperl-is-face 'cperl-nonoverridable-face)
6156 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face)
6157 (cond
6158 ((eq background 'light)
6159 (set-face-foreground 'cperl-nonoverridable-face
6160 (if (x-color-defined-p "chartreuse3")
6161 "chartreuse3"
6162 "chartreuse")))
6163 ((eq background 'dark)
6164 (set-face-foreground 'cperl-nonoverridable-face
6165 (if (x-color-defined-p "orchid1")
6166 "orchid1"
6167 "orange")))))
6168 ;;; (if (cperl-is-face 'font-lock-other-emphasized-face) nil
6169 ;;; (copy-face 'bold-italic 'font-lock-other-emphasized-face)
6170 ;;; (cond
6171 ;;; ((eq background 'light)
6172 ;;; (set-face-background 'font-lock-other-emphasized-face
6173 ;;; (if (x-color-defined-p "lightyellow2")
6174 ;;; "lightyellow2"
6175 ;;; (if (x-color-defined-p "lightyellow")
6176 ;;; "lightyellow"
6177 ;;; "light yellow"))))
6178 ;;; ((eq background 'dark)
6179 ;;; (set-face-background 'font-lock-other-emphasized-face
6180 ;;; (if (x-color-defined-p "navy")
6181 ;;; "navy"
6182 ;;; (if (x-color-defined-p "darkgreen")
6183 ;;; "darkgreen"
6184 ;;; "dark green"))))
6185 ;;; (t (set-face-background 'font-lock-other-emphasized-face "gray90"))))
6186 ;;; (if (cperl-is-face 'font-lock-emphasized-face) nil
6187 ;;; (copy-face 'bold 'font-lock-emphasized-face)
6188 ;;; (cond
6189 ;;; ((eq background 'light)
6190 ;;; (set-face-background 'font-lock-emphasized-face
6191 ;;; (if (x-color-defined-p "lightyellow2")
6192 ;;; "lightyellow2"
6193 ;;; "lightyellow")))
6194 ;;; ((eq background 'dark)
6195 ;;; (set-face-background 'font-lock-emphasized-face
6196 ;;; (if (x-color-defined-p "navy")
6197 ;;; "navy"
6198 ;;; (if (x-color-defined-p "darkgreen")
6199 ;;; "darkgreen"
6200 ;;; "dark green"))))
6201 ;;; (t (set-face-background 'font-lock-emphasized-face "gray90"))))
6202 (if (cperl-is-face 'font-lock-variable-name-face) nil
6203 (copy-face 'italic 'font-lock-variable-name-face))
6204 (if (cperl-is-face 'font-lock-constant-face) nil
6205 (copy-face 'italic 'font-lock-constant-face))))
6206 (setq cperl-faces-init t))
6207 (error (message "cperl-init-faces (ignored): %s" errs))))
6210 (defun cperl-ps-print-init ()
6211 "Initialization of `ps-print' components for faces used in CPerl."
6212 (eval-after-load "ps-print"
6213 '(setq ps-bold-faces
6214 ;; font-lock-variable-name-face
6215 ;; font-lock-constant-face
6216 (append '(cperl-array-face cperl-hash-face)
6217 ps-bold-faces)
6218 ps-italic-faces
6219 ;; font-lock-constant-face
6220 (append '(cperl-nonoverridable-face cperl-hash-face)
6221 ps-italic-faces)
6222 ps-underlined-faces
6223 ;; font-lock-type-face
6224 (append '(cperl-array-face cperl-hash-face underline cperl-nonoverridable-face)
6225 ps-underlined-faces))))
6227 (defvar ps-print-face-extension-alist)
6229 (defun cperl-ps-print (&optional file)
6230 "Pretty-print in CPerl style.
6231 If optional argument FILE is an empty string, prints to printer, otherwise
6232 to the file FILE. If FILE is nil, prompts for a file name.
6234 Style of printout regulated by the variable `cperl-ps-print-face-properties'."
6235 (interactive)
6236 (or file
6237 (setq file (read-from-minibuffer
6238 "Print to file (if empty - to printer): "
6239 (concat (buffer-file-name) ".ps")
6240 nil nil 'file-name-history)))
6241 (or (> (length file) 0)
6242 (setq file nil))
6243 (require 'ps-print) ; To get ps-print-face-extension-alist
6244 (let ((ps-print-color-p t)
6245 (ps-print-face-extension-alist ps-print-face-extension-alist))
6246 (cperl-ps-extend-face-list cperl-ps-print-face-properties)
6247 (ps-print-buffer-with-faces file)))
6249 ;;; (defun cperl-ps-print-init ()
6250 ;;; "Initialization of `ps-print' components for faces used in CPerl."
6251 ;;; ;; Guard against old versions
6252 ;;; (defvar ps-underlined-faces nil)
6253 ;;; (defvar ps-bold-faces nil)
6254 ;;; (defvar ps-italic-faces nil)
6255 ;;; (setq ps-bold-faces
6256 ;;; (append '(font-lock-emphasized-face
6257 ;;; cperl-array-face
6258 ;;; font-lock-keyword-face
6259 ;;; font-lock-variable-name-face
6260 ;;; font-lock-constant-face
6261 ;;; font-lock-reference-face
6262 ;;; font-lock-other-emphasized-face
6263 ;;; cperl-hash-face)
6264 ;;; ps-bold-faces))
6265 ;;; (setq ps-italic-faces
6266 ;;; (append '(cperl-nonoverridable-face
6267 ;;; font-lock-constant-face
6268 ;;; font-lock-reference-face
6269 ;;; font-lock-other-emphasized-face
6270 ;;; cperl-hash-face)
6271 ;;; ps-italic-faces))
6272 ;;; (setq ps-underlined-faces
6273 ;;; (append '(font-lock-emphasized-face
6274 ;;; cperl-array-face
6275 ;;; font-lock-other-emphasized-face
6276 ;;; cperl-hash-face
6277 ;;; cperl-nonoverridable-face font-lock-type-face)
6278 ;;; ps-underlined-faces))
6279 ;;; (cons 'font-lock-type-face ps-underlined-faces))
6282 (if (cperl-enable-font-lock) (cperl-windowed-init))
6284 (defconst cperl-styles-entries
6285 '(cperl-indent-level cperl-brace-offset cperl-continued-brace-offset
6286 cperl-label-offset cperl-extra-newline-before-brace
6287 cperl-extra-newline-before-brace-multiline
6288 cperl-merge-trailing-else
6289 cperl-continued-statement-offset))
6291 (defconst cperl-style-examples
6292 "##### Numbers etc are: cperl-indent-level cperl-brace-offset
6293 ##### cperl-continued-brace-offset cperl-label-offset
6294 ##### cperl-continued-statement-offset
6295 ##### cperl-merge-trailing-else cperl-extra-newline-before-brace
6297 ########### (Do not forget cperl-extra-newline-before-brace-multiline)
6299 ### CPerl (=GNU - extra-newline-before-brace + merge-trailing-else) 2/0/0/-2/2/t/nil
6300 if (foo) {
6302 baz;
6303 label:
6305 boon;
6307 } else {
6308 stop;
6311 ### PerlStyle (=CPerl with 4 as indent) 4/0/0/-4/4/t/nil
6312 if (foo) {
6314 baz;
6315 label:
6317 boon;
6319 } else {
6320 stop;
6323 ### GNU 2/0/0/-2/2/nil/t
6324 if (foo)
6327 baz;
6328 label:
6330 boon;
6333 else
6335 stop;
6338 ### C++ (=PerlStyle with braces aligned with control words) 4/0/-4/-4/4/nil/t
6339 if (foo)
6342 baz;
6343 label:
6345 boon;
6348 else
6350 stop;
6353 ### BSD (=C++, but will not change preexisting merge-trailing-else
6354 ### and extra-newline-before-brace ) 4/0/-4/-4/4
6355 if (foo)
6358 baz;
6359 label:
6361 boon;
6364 else
6366 stop;
6369 ### K&R (=C++ with indent 5 - merge-trailing-else, but will not
6370 ### change preexisting extra-newline-before-brace) 5/0/-5/-5/5/nil
6371 if (foo)
6374 baz;
6375 label:
6377 boon;
6380 else
6382 stop;
6385 ### Whitesmith (=PerlStyle, but will not change preexisting
6386 ### extra-newline-before-brace and merge-trailing-else) 4/0/0/-4/4
6387 if (foo)
6390 baz;
6391 label:
6393 boon;
6396 else
6398 stop;
6401 "Examples of if/else with different indent styles (with v4.23).")
6403 (defconst cperl-style-alist
6404 '(("CPerl" ;; =GNU - extra-newline-before-brace + cperl-merge-trailing-else
6405 (cperl-indent-level . 2)
6406 (cperl-brace-offset . 0)
6407 (cperl-continued-brace-offset . 0)
6408 (cperl-label-offset . -2)
6409 (cperl-continued-statement-offset . 2)
6410 (cperl-extra-newline-before-brace . nil)
6411 (cperl-extra-newline-before-brace-multiline . nil)
6412 (cperl-merge-trailing-else . t))
6414 ("PerlStyle" ; CPerl with 4 as indent
6415 (cperl-indent-level . 4)
6416 (cperl-brace-offset . 0)
6417 (cperl-continued-brace-offset . 0)
6418 (cperl-label-offset . -4)
6419 (cperl-continued-statement-offset . 4)
6420 (cperl-extra-newline-before-brace . nil)
6421 (cperl-extra-newline-before-brace-multiline . nil)
6422 (cperl-merge-trailing-else . t))
6424 ("GNU"
6425 (cperl-indent-level . 2)
6426 (cperl-brace-offset . 0)
6427 (cperl-continued-brace-offset . 0)
6428 (cperl-label-offset . -2)
6429 (cperl-continued-statement-offset . 2)
6430 (cperl-extra-newline-before-brace . t)
6431 (cperl-extra-newline-before-brace-multiline . t)
6432 (cperl-merge-trailing-else . nil))
6434 ("K&R"
6435 (cperl-indent-level . 5)
6436 (cperl-brace-offset . 0)
6437 (cperl-continued-brace-offset . -5)
6438 (cperl-label-offset . -5)
6439 (cperl-continued-statement-offset . 5)
6440 ;;(cperl-extra-newline-before-brace . nil) ; ???
6441 ;;(cperl-extra-newline-before-brace-multiline . nil)
6442 (cperl-merge-trailing-else . nil))
6444 ("BSD"
6445 (cperl-indent-level . 4)
6446 (cperl-brace-offset . 0)
6447 (cperl-continued-brace-offset . -4)
6448 (cperl-label-offset . -4)
6449 (cperl-continued-statement-offset . 4)
6450 ;;(cperl-extra-newline-before-brace . nil) ; ???
6451 ;;(cperl-extra-newline-before-brace-multiline . nil)
6452 ;;(cperl-merge-trailing-else . nil) ; ???
6455 ("C++"
6456 (cperl-indent-level . 4)
6457 (cperl-brace-offset . 0)
6458 (cperl-continued-brace-offset . -4)
6459 (cperl-label-offset . -4)
6460 (cperl-continued-statement-offset . 4)
6461 (cperl-extra-newline-before-brace . t)
6462 (cperl-extra-newline-before-brace-multiline . t)
6463 (cperl-merge-trailing-else . nil))
6465 ("Whitesmith"
6466 (cperl-indent-level . 4)
6467 (cperl-brace-offset . 0)
6468 (cperl-continued-brace-offset . 0)
6469 (cperl-label-offset . -4)
6470 (cperl-continued-statement-offset . 4)
6471 ;;(cperl-extra-newline-before-brace . nil) ; ???
6472 ;;(cperl-extra-newline-before-brace-multiline . nil)
6473 ;;(cperl-merge-trailing-else . nil) ; ???
6475 ("Current"))
6476 "List of variables to set to get a particular indentation style.
6477 Should be used via `cperl-set-style' or via Perl menu.
6479 See examples in `cperl-style-examples'.")
6481 (defun cperl-set-style (style)
6482 "Set CPerl mode variables to use one of several different indentation styles.
6483 The arguments are a string representing the desired style.
6484 The list of styles is in `cperl-style-alist', available styles
6485 are CPerl, PerlStyle, GNU, K&R, BSD, C++ and Whitesmith.
6487 The current value of style is memorized (unless there is a memorized
6488 data already), may be restored by `cperl-set-style-back'.
6490 Choosing \"Current\" style will not change style, so this may be used for
6491 side-effect of memorizing only. Examples in `cperl-style-examples'."
6492 (interactive
6493 (let ((list (mapcar (function (lambda (elt) (list (car elt))))
6494 cperl-style-alist)))
6495 (list (completing-read "Enter style: " list nil 'insist))))
6496 (or cperl-old-style
6497 (setq cperl-old-style
6498 (mapcar (function
6499 (lambda (name)
6500 (cons name (eval name))))
6501 cperl-styles-entries)))
6502 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym)
6503 (while style
6504 (setq setting (car style) style (cdr style))
6505 (set (car setting) (cdr setting)))))
6507 (defun cperl-set-style-back ()
6508 "Restore a style memorized by `cperl-set-style'."
6509 (interactive)
6510 (or cperl-old-style (error "The style was not changed"))
6511 (let (setting)
6512 (while cperl-old-style
6513 (setq setting (car cperl-old-style)
6514 cperl-old-style (cdr cperl-old-style))
6515 (set (car setting) (cdr setting)))))
6517 (defun cperl-check-syntax ()
6518 (interactive)
6519 (require 'mode-compile)
6520 (let ((perl-dbg-flags (concat cperl-extra-perl-args " -wc")))
6521 (eval '(mode-compile)))) ; Avoid a warning
6523 (defun cperl-info-buffer (type)
6524 ;; Returns buffer with documentation. Creates if missing.
6525 ;; If TYPE, this vars buffer.
6526 ;; Special care is taken to not stomp over an existing info buffer
6527 (let* ((bname (if type "*info-perl-var*" "*info-perl*"))
6528 (info (get-buffer bname))
6529 (oldbuf (get-buffer "*info*")))
6530 (if info info
6531 (save-window-excursion
6532 ;; Get Info running
6533 (require 'info)
6534 (cond (oldbuf
6535 (set-buffer oldbuf)
6536 (rename-buffer "*info-perl-tmp*")))
6537 (save-window-excursion
6538 (info))
6539 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc"))
6540 (set-buffer "*info*")
6541 (rename-buffer bname)
6542 (cond (oldbuf
6543 (set-buffer "*info-perl-tmp*")
6544 (rename-buffer "*info*")
6545 (set-buffer bname)))
6546 (make-local-variable 'window-min-height)
6547 (setq window-min-height 2)
6548 (current-buffer)))))
6550 (defun cperl-word-at-point (&optional p)
6551 "Return the word at point or at P."
6552 (save-excursion
6553 (if p (goto-char p))
6554 (or (cperl-word-at-point-hard)
6555 (progn
6556 (require 'etags)
6557 (funcall (or (and (boundp 'find-tag-default-function)
6558 find-tag-default-function)
6559 (get major-mode 'find-tag-default-function)
6560 ;; XEmacs 19.12 has `find-tag-default-hook'; it is
6561 ;; automatically used within `find-tag-default':
6562 'find-tag-default))))))
6564 (defun cperl-info-on-command (command)
6565 "Show documentation for Perl command COMMAND in other window.
6566 If perl-info buffer is shown in some frame, uses this frame.
6567 Customized by setting variables `cperl-shrink-wrap-info-frame',
6568 `cperl-max-help-size'."
6569 (interactive
6570 (let* ((default (cperl-word-at-point))
6571 (read (read-string
6572 (format "Find doc for Perl function (default %s): "
6573 default))))
6574 (list (if (equal read "")
6575 default
6576 read))))
6578 (let ((buffer (current-buffer))
6579 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///"
6580 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner
6581 max-height char-height buf-list)
6582 (if (string-match "^-[a-zA-Z]$" command)
6583 (setq cmd-desc "^-X[ \t\n]"))
6584 (setq isvar (string-match "^[$@%]" command)
6585 buf (cperl-info-buffer isvar)
6586 iniwin (selected-window)
6587 fr1 (window-frame iniwin))
6588 (set-buffer buf)
6589 (goto-char (point-min))
6590 (or isvar
6591 (progn (re-search-forward "^-X[ \t\n]")
6592 (forward-line -1)))
6593 (if (re-search-forward cmd-desc nil t)
6594 (progn
6595 ;; Go back to beginning of the group (ex, for qq)
6596 (if (re-search-backward "^[ \t\n\f]")
6597 (forward-line 1))
6598 (beginning-of-line)
6599 ;; Get some of
6600 (setq pos (point)
6601 buf-list (list buf "*info-perl-var*" "*info-perl*"))
6602 (while (and (not win) buf-list)
6603 (setq win (get-buffer-window (car buf-list) t))
6604 (setq buf-list (cdr buf-list)))
6605 (or (not win)
6606 (eq (window-buffer win) buf)
6607 (set-window-buffer win buf))
6608 (and win (setq fr2 (window-frame win)))
6609 (if (or (not fr2) (eq fr1 fr2))
6610 (pop-to-buffer buf)
6611 (special-display-popup-frame buf) ; Make it visible
6612 (select-window win))
6613 (goto-char pos) ; Needed (?!).
6614 ;; Resize
6615 (setq iniheight (window-height)
6616 frheight (frame-height)
6617 not-loner (< iniheight (1- frheight))) ; Are not alone
6618 (cond ((if not-loner cperl-max-help-size
6619 cperl-shrink-wrap-info-frame)
6620 (setq height
6621 (+ 2
6622 (count-lines
6624 (save-excursion
6625 (if (re-search-forward
6626 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t)
6627 (match-beginning 0) (point-max)))))
6628 max-height
6629 (if not-loner
6630 (/ (* (- frheight 3) cperl-max-help-size) 100)
6631 (setq char-height (frame-char-height))
6632 ;; Non-functioning under OS/2:
6633 (if (eq char-height 1) (setq char-height 18))
6634 ;; Title, menubar, + 2 for slack
6635 (- (/ (display-pixel-height) char-height) 4)))
6636 (if (> height max-height) (setq height max-height))
6637 ;;(message "was %s doing %s" iniheight height)
6638 (if not-loner
6639 (enlarge-window (- height iniheight))
6640 (set-frame-height (window-frame win) (1+ height)))))
6641 (set-window-start (selected-window) pos))
6642 (message "No entry for %s found." command))
6643 ;;(pop-to-buffer buffer)
6644 (select-window iniwin)))
6646 (defun cperl-info-on-current-command ()
6647 "Show documentation for Perl command at point in other window."
6648 (interactive)
6649 (cperl-info-on-command (cperl-word-at-point)))
6651 (defun cperl-imenu-info-imenu-search ()
6652 (if (looking-at "^-X[ \t\n]") nil
6653 (re-search-backward
6654 "^\n\\([-a-zA-Z_]+\\)[ \t\n]")
6655 (forward-line 1)))
6657 (defun cperl-imenu-info-imenu-name ()
6658 (buffer-substring
6659 (match-beginning 1) (match-end 1)))
6661 (defun cperl-imenu-on-info ()
6662 "Shows imenu for Perl Info Buffer.
6663 Opens Perl Info buffer if needed."
6664 (interactive)
6665 (let* ((buffer (current-buffer))
6666 imenu-create-index-function
6667 imenu-prev-index-position-function
6668 imenu-extract-index-name-function
6669 (index-item (save-restriction
6670 (save-window-excursion
6671 (set-buffer (cperl-info-buffer nil))
6672 (setq imenu-create-index-function
6673 'imenu-default-create-index-function
6674 imenu-prev-index-position-function
6675 'cperl-imenu-info-imenu-search
6676 imenu-extract-index-name-function
6677 'cperl-imenu-info-imenu-name)
6678 (imenu-choose-buffer-index)))))
6679 (and index-item
6680 (progn
6681 (push-mark)
6682 (pop-to-buffer "*info-perl*")
6683 (cond
6684 ((markerp (cdr index-item))
6685 (goto-char (marker-position (cdr index-item))))
6687 (goto-char (cdr index-item))))
6688 (set-window-start (selected-window) (point))
6689 (pop-to-buffer buffer)))))
6691 (defun cperl-lineup (beg end &optional step minshift)
6692 "Lineup construction in a region.
6693 Beginning of region should be at the start of a construction.
6694 All first occurrences of this construction in the lines that are
6695 partially contained in the region are lined up at the same column.
6697 MINSHIFT is the minimal amount of space to insert before the construction.
6698 STEP is the tabwidth to position constructions.
6699 If STEP is nil, `cperl-lineup-step' will be used
6700 \(or `cperl-indent-level', if `cperl-lineup-step' is nil).
6701 Will not move the position at the start to the left."
6702 (interactive "r")
6703 (let (search col tcol seen b)
6704 (save-excursion
6705 (goto-char end)
6706 (end-of-line)
6707 (setq end (point-marker))
6708 (goto-char beg)
6709 (skip-chars-forward " \t\f")
6710 (setq beg (point-marker))
6711 (indent-region beg end nil)
6712 (goto-char beg)
6713 (setq col (current-column))
6714 (if (looking-at "[a-zA-Z0-9_]")
6715 (if (looking-at "\\<[a-zA-Z0-9_]+\\>")
6716 (setq search
6717 (concat "\\<"
6718 (regexp-quote
6719 (buffer-substring (match-beginning 0)
6720 (match-end 0))) "\\>"))
6721 (error "Cannot line up in a middle of the word"))
6722 (if (looking-at "$")
6723 (error "Cannot line up end of line"))
6724 (setq search (regexp-quote (char-to-string (following-char)))))
6725 (setq step (or step cperl-lineup-step cperl-indent-level))
6726 (or minshift (setq minshift 1))
6727 (while (progn
6728 (beginning-of-line 2)
6729 (and (< (point) end)
6730 (re-search-forward search end t)
6731 (goto-char (match-beginning 0))))
6732 (setq tcol (current-column) seen t)
6733 (if (> tcol col) (setq col tcol)))
6734 (or seen
6735 (error "The construction to line up occurred only once"))
6736 (goto-char beg)
6737 (setq col (+ col minshift))
6738 (if (/= (% col step) 0) (setq step (* step (1+ (/ col step)))))
6739 (while
6740 (progn
6741 (cperl-make-indent col)
6742 (beginning-of-line 2)
6743 (and (< (point) end)
6744 (re-search-forward search end t)
6745 (goto-char (match-beginning 0)))))))) ; No body
6747 (defun cperl-etags (&optional add all files) ;; NOT USED???
6748 "Run etags with appropriate options for Perl files.
6749 If optional argument ALL is `recursive', will process Perl files
6750 in subdirectories too."
6751 (interactive)
6752 (let ((cmd "etags")
6753 (args '("-l" "none" "-r"
6754 ;; 1=fullname 2=package? 3=name 4=proto? 5=attrs? (VERY APPROX!)
6755 "/\\<sub[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([ \t]*:[^#{;]*\\)?\\([{#]\\|$\\)/\\3/"
6756 "-r"
6757 "/\\<package[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)\\)[ \\t]*\\([#;]\\|$\\)/\\1/"
6758 "-r"
6759 "/\\<\\(package\\)[ \\t]*;/\\1;/"))
6760 res)
6761 (if add (setq args (cons "-a" args)))
6762 (or files (setq files (list buffer-file-name)))
6763 (cond
6764 ((eq all 'recursive)
6765 ;;(error "Not implemented: recursive")
6766 (setq args (append (list "-e"
6767 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/}
6768 use File::Find;
6769 find(\\&wanted, '.');
6770 exec @ARGV;"
6771 cmd) args)
6772 cmd "perl"))
6773 (all
6774 ;;(error "Not implemented: all")
6775 (setq args (append (list "-e"
6776 "push @ARGV, <*.PL *.pl *.pm>;
6777 exec @ARGV;"
6778 cmd) args)
6779 cmd "perl"))
6781 (setq args (append args files))))
6782 (setq res (apply 'call-process cmd nil nil nil args))
6783 (or (eq res 0)
6784 (message "etags returned \"%s\"" res))))
6786 (defun cperl-toggle-auto-newline ()
6787 "Toggle the state of `cperl-auto-newline'."
6788 (interactive)
6789 (setq cperl-auto-newline (not cperl-auto-newline))
6790 (message "Newlines will %sbe auto-inserted now."
6791 (if cperl-auto-newline "" "not ")))
6793 (defun cperl-toggle-abbrev ()
6794 "Toggle the state of automatic keyword expansion in CPerl mode."
6795 (interactive)
6796 (abbrev-mode (if abbrev-mode 0 1))
6797 (message "Perl control structure will %sbe auto-inserted now."
6798 (if abbrev-mode "" "not ")))
6801 (defun cperl-toggle-electric ()
6802 "Toggle the state of parentheses doubling in CPerl mode."
6803 (interactive)
6804 (setq cperl-electric-parens (if (cperl-val 'cperl-electric-parens) 'null t))
6805 (message "Parentheses will %sbe auto-doubled now."
6806 (if (cperl-val 'cperl-electric-parens) "" "not ")))
6808 (defun cperl-toggle-autohelp ()
6809 "Toggle the state of Auto-Help on Perl constructs (put in the message area).
6810 Delay of auto-help controlled by `cperl-lazy-help-time'."
6811 (interactive)
6812 (if (fboundp 'run-with-idle-timer)
6813 (progn
6814 (if cperl-lazy-installed
6815 (cperl-lazy-unstall)
6816 (cperl-lazy-install))
6817 (message "Perl help messages will %sbe automatically shown now."
6818 (if cperl-lazy-installed "" "not ")))
6819 (message "Cannot automatically show Perl help messages - run-with-idle-timer missing.")))
6821 (defun cperl-toggle-construct-fix ()
6822 "Toggle whether `indent-region'/`indent-sexp' fix whitespace too."
6823 (interactive)
6824 (setq cperl-indent-region-fix-constructs
6825 (if cperl-indent-region-fix-constructs
6828 (message "indent-region/indent-sexp will %sbe automatically fix whitespace."
6829 (if cperl-indent-region-fix-constructs "" "not ")))
6831 (defun cperl-toggle-set-debug-unwind (arg &optional backtrace)
6832 "Toggle (or, with numeric argument, set) debugging state of syntaxification.
6833 Nonpositive numeric argument disables debugging messages. The message
6834 summarizes which regions it was decided to rescan for syntactic constructs.
6836 The message looks like this:
6838 Syxify req=123..138 actual=101..146 done-to: 112=>146 statepos: 73=>117
6840 Numbers are character positions in the buffer. REQ provides the range to
6841 rescan requested by `font-lock'. ACTUAL is the range actually resyntaxified;
6842 for correct operation it should start and end outside any special syntactic
6843 construct. DONE-TO and STATEPOS indicate changes to internal caches maintained
6844 by CPerl."
6845 (interactive "P")
6846 (or arg
6847 (setq arg (if (eq cperl-syntaxify-by-font-lock
6848 (if backtrace 'backtrace 'message)) 0 1)))
6849 (setq arg (if (> arg 0) (if backtrace 'backtrace 'message) t))
6850 (setq cperl-syntaxify-by-font-lock arg)
6851 (message "Debugging messages of syntax unwind %sabled."
6852 (if (eq arg t) "dis" "en")))
6854 ;;;; Tags file creation.
6856 (defvar cperl-tmp-buffer " *cperl-tmp*")
6858 (defun cperl-setup-tmp-buf ()
6859 (set-buffer (get-buffer-create cperl-tmp-buffer))
6860 (set-syntax-table cperl-mode-syntax-table)
6861 (buffer-disable-undo)
6862 (auto-fill-mode 0)
6863 (if cperl-use-syntax-table-text-property-for-tags
6864 (progn
6865 (make-local-variable 'parse-sexp-lookup-properties)
6866 ;; Do not introduce variable if not needed, we check it!
6867 (set 'parse-sexp-lookup-properties t))))
6869 ;; Copied from imenu-example--name-and-position.
6870 (defvar imenu-use-markers)
6872 (defun cperl-imenu-name-and-position ()
6873 "Return the current/previous sexp and its (beginning) location.
6874 Does not move point."
6875 (save-excursion
6876 (forward-sexp -1)
6877 (let ((beg (if imenu-use-markers (point-marker) (point)))
6878 (end (progn (forward-sexp) (point))))
6879 (cons (buffer-substring beg end)
6880 beg))))
6882 (defun cperl-xsub-scan ()
6883 (require 'imenu)
6884 (let ((index-alist '())
6885 (prev-pos 0) index index1 name package prefix)
6886 (goto-char (point-min))
6887 ;; Search for the function
6888 (progn ;;save-match-data
6889 (while (re-search-forward
6890 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)"
6891 nil t)
6892 (cond
6893 ((match-beginning 2) ; SECTION
6894 (setq package (buffer-substring (match-beginning 2) (match-end 2)))
6895 (goto-char (match-beginning 0))
6896 (skip-chars-forward " \t")
6897 (forward-char 1)
6898 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>")
6899 (setq prefix (buffer-substring (match-beginning 1) (match-end 1)))
6900 (setq prefix nil)))
6901 ((not package) nil) ; C language section
6902 ((match-beginning 3) ; XSUB
6903 (goto-char (1+ (match-beginning 3)))
6904 (setq index (cperl-imenu-name-and-position))
6905 (setq name (buffer-substring (match-beginning 3) (match-end 3)))
6906 (if (and prefix (string-match (concat "^" prefix) name))
6907 (setq name (substring name (length prefix))))
6908 (cond ((string-match "::" name) nil)
6910 (setq index1 (cons (concat package "::" name) (cdr index)))
6911 (push index1 index-alist)))
6912 (setcar index name)
6913 (push index index-alist))
6914 (t ; BOOT: section
6915 ;; (beginning-of-line)
6916 (setq index (cperl-imenu-name-and-position))
6917 (setcar index (concat package "::BOOT:"))
6918 (push index index-alist)))))
6919 index-alist))
6921 (defvar cperl-unreadable-ok nil)
6923 (defun cperl-find-tags (ifile xs topdir)
6924 (let ((b (get-buffer cperl-tmp-buffer)) ind lst elt pos ret rel
6925 (cperl-pod-here-fontify nil) f file)
6926 (save-excursion
6927 (if b (set-buffer b)
6928 (cperl-setup-tmp-buf))
6929 (erase-buffer)
6930 (condition-case err
6931 (setq file (car (insert-file-contents ifile)))
6932 (error (if cperl-unreadable-ok nil
6933 (if (y-or-n-p
6934 (format "File %s unreadable. Continue? " ifile))
6935 (setq cperl-unreadable-ok t)
6936 (error "Aborting: unreadable file %s" ifile)))))
6937 (if (not file)
6938 (message "Unreadable file %s" ifile)
6939 (message "Scanning file %s ..." file)
6940 (if (and cperl-use-syntax-table-text-property-for-tags
6941 (not xs))
6942 (condition-case err ; after __END__ may have garbage
6943 (cperl-find-pods-heres nil nil noninteractive)
6944 (error (message "While scanning for syntax: %s" err))))
6945 (if xs
6946 (setq lst (cperl-xsub-scan))
6947 (setq ind (cperl-imenu--create-perl-index))
6948 (setq lst (cdr (assoc "+Unsorted List+..." ind))))
6949 (setq lst
6950 (mapcar
6951 (function
6952 (lambda (elt)
6953 (cond ((string-match "^[_a-zA-Z]" (car elt))
6954 (goto-char (cdr elt))
6955 (beginning-of-line) ; pos should be of the start of the line
6956 (list (car elt)
6957 (point)
6958 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l
6959 (buffer-substring (progn
6960 (goto-char (cdr elt))
6961 ;; After name now...
6962 (or (eolp) (forward-char 1))
6963 (point))
6964 (progn
6965 (beginning-of-line)
6966 (point))))))))
6967 lst))
6968 (erase-buffer)
6969 (while lst
6970 (setq elt (car lst) lst (cdr lst))
6971 (if elt
6972 (progn
6973 (insert (elt elt 3)
6975 (if (string-match "^package " (car elt))
6976 (substring (car elt) 8)
6977 (car elt) )
6979 (number-to-string (elt elt 2)) ; Line
6981 (number-to-string (1- (elt elt 1))) ; Char pos 0-based
6982 "\n")
6983 (if (and (string-match "^[_a-zA-Z]+::" (car elt))
6984 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]"
6985 (elt elt 3)))
6986 ;; Need to insert the name without package as well
6987 (setq lst (cons (cons (substring (elt elt 3)
6988 (match-beginning 1)
6989 (match-end 1))
6990 (cdr elt))
6991 lst))))))
6992 (setq pos (point))
6993 (goto-char 1)
6994 (setq rel file)
6995 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties
6996 (set-text-properties 0 (length rel) nil rel)
6997 (and (equal topdir (substring rel 0 (length topdir)))
6998 (setq rel (substring file (length topdir))))
6999 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n")
7000 (setq ret (buffer-substring 1 (point-max)))
7001 (erase-buffer)
7002 (or noninteractive
7003 (message "Scanning file %s finished" file))
7004 ret))))
7006 (defun cperl-add-tags-recurse-noxs ()
7007 "Add to TAGS data for \"pure\" Perl files in the current directory and kids.
7008 Use as
7009 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
7010 -f cperl-add-tags-recurse-noxs
7012 (cperl-write-tags nil nil t t nil t))
7014 (defun cperl-add-tags-recurse-noxs-fullpath ()
7015 "Add to TAGS data for \"pure\" Perl in the current directory and kids.
7016 Writes down fullpath, so TAGS is relocatable (but if the build directory
7017 is relocated, the file TAGS inside it breaks). Use as
7018 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
7019 -f cperl-add-tags-recurse-noxs-fullpath
7021 (cperl-write-tags nil nil t t nil t ""))
7023 (defun cperl-add-tags-recurse ()
7024 "Add to TAGS file data for Perl files in the current directory and kids.
7025 Use as
7026 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
7027 -f cperl-add-tags-recurse
7029 (cperl-write-tags nil nil t t))
7031 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir)
7032 ;; If INBUFFER, do not select buffer, and do not save
7033 ;; If ERASE is `ignore', do not erase, and do not try to delete old info.
7034 (require 'etags)
7035 (if file nil
7036 (setq file (if dir default-directory (buffer-file-name)))
7037 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!")))
7038 (or topdir
7039 (setq topdir default-directory))
7040 (let ((tags-file-name "TAGS")
7041 (case-fold-search (and (featurep 'xemacs) (eq system-type 'emx)))
7042 xs rel tm)
7043 (save-excursion
7044 (cond (inbuffer nil) ; Already there
7045 ((file-exists-p tags-file-name)
7046 (if (featurep 'xemacs)
7047 (visit-tags-table-buffer)
7048 (visit-tags-table-buffer tags-file-name)))
7049 (t (set-buffer (find-file-noselect tags-file-name))))
7050 (cond
7051 (dir
7052 (cond ((eq erase 'ignore))
7053 (erase
7054 (erase-buffer)
7055 (setq erase 'ignore)))
7056 (let ((files
7057 (condition-case err
7058 (directory-files file t
7059 (if recurse nil cperl-scan-files-regexp)
7061 (error
7062 (if cperl-unreadable-ok nil
7063 (if (y-or-n-p
7064 (format "Directory %s unreadable. Continue? " file))
7065 (setq cperl-unreadable-ok t
7066 tm nil) ; Return empty list
7067 (error "Aborting: unreadable directory %s" file)))))))
7068 (mapc (function
7069 (lambda (file)
7070 (cond
7071 ((string-match cperl-noscan-files-regexp file)
7072 nil)
7073 ((not (file-directory-p file))
7074 (if (string-match cperl-scan-files-regexp file)
7075 (cperl-write-tags file erase recurse nil t noxs topdir)))
7076 ((not recurse) nil)
7077 (t (cperl-write-tags file erase recurse t t noxs topdir)))))
7078 files)))
7080 (setq xs (string-match "\\.xs$" file))
7081 (if (not (and xs noxs))
7082 (progn
7083 (cond ((eq erase 'ignore) (goto-char (point-max)))
7084 (erase (erase-buffer))
7086 (goto-char 1)
7087 (setq rel file)
7088 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties
7089 (set-text-properties 0 (length rel) nil rel)
7090 (and (equal topdir (substring rel 0 (length topdir)))
7091 (setq rel (substring file (length topdir))))
7092 (if (search-forward (concat "\f\n" rel ",") nil t)
7093 (progn
7094 (search-backward "\f\n")
7095 (delete-region (point)
7096 (save-excursion
7097 (forward-char 1)
7098 (if (search-forward "\f\n"
7099 nil 'toend)
7100 (- (point) 2)
7101 (point-max)))))
7102 (goto-char (point-max)))))
7103 (insert (cperl-find-tags file xs topdir))))))
7104 (if inbuffer nil ; Delegate to the caller
7105 (save-buffer 0) ; No backup
7106 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs?
7107 (initialize-new-tags-table))))))
7109 (defvar cperl-tags-hier-regexp-list
7110 (concat
7111 "^\\("
7112 "\\(package\\)\\>"
7113 "\\|"
7114 "sub\\>[^\n]+::"
7115 "\\|"
7116 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB?
7117 "\\|"
7118 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section
7119 "\\)"))
7121 (defvar cperl-hierarchy '(() ())
7122 "Global hierarchy of classes.")
7124 (defun cperl-tags-hier-fill ()
7125 ;; Suppose we are in a tag table cooked by cperl.
7126 (goto-char 1)
7127 (let (type pack name pos line chunk ord cons1 file str info fileind)
7128 (while (re-search-forward cperl-tags-hier-regexp-list nil t)
7129 (setq pos (match-beginning 0)
7130 pack (match-beginning 2))
7131 (beginning-of-line)
7132 (if (looking-at (concat
7133 "\\([^\n]+\\)"
7134 "\C-?"
7135 "\\([^\n]+\\)"
7136 "\C-a"
7137 "\\([0-9]+\\)"
7139 "\\([0-9]+\\)"))
7140 (progn
7141 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1))
7142 name (buffer-substring (match-beginning 2) (match-end 2))
7143 ;;pos (buffer-substring (match-beginning 3) (match-end 3))
7144 line (buffer-substring (match-beginning 3) (match-end 3))
7145 ord (if pack 1 0)
7146 file (file-of-tag)
7147 fileind (format "%s:%s" file line)
7148 ;; Moves to beginning of the next line:
7149 info (cperl-etags-snarf-tag file line))
7150 ;; Move back
7151 (forward-char -1)
7152 ;; Make new member of hierarchy name ==> file ==> pos if needed
7153 (if (setq cons1 (assoc name (nth ord cperl-hierarchy)))
7154 ;; Name known
7155 (setcdr cons1 (cons (cons fileind (vector file info))
7156 (cdr cons1)))
7157 ;; First occurrence of the name, start alist
7158 (setq cons1 (cons name (list (cons fileind (vector file info)))))
7159 (if pack
7160 (setcar (cdr cperl-hierarchy)
7161 (cons cons1 (nth 1 cperl-hierarchy)))
7162 (setcar cperl-hierarchy
7163 (cons cons1 (car cperl-hierarchy)))))))
7164 (end-of-line))))
7166 (declare-function x-popup-menu "menu.c" (position menu))
7168 (defun cperl-tags-hier-init (&optional update)
7169 "Show hierarchical menu of classes and methods.
7170 Finds info about classes by a scan of loaded TAGS files.
7171 Supposes that the TAGS files contain fully qualified function names.
7172 One may build such TAGS files from CPerl mode menu."
7173 (interactive)
7174 (require 'etags)
7175 (require 'imenu)
7176 (if (or update (null (nth 2 cperl-hierarchy)))
7177 (let ((remover (function (lambda (elt) ; (name (file1...) (file2..))
7178 (or (nthcdr 2 elt)
7179 ;; Only in one file
7180 (setcdr elt (cdr (nth 1 elt)))))))
7181 pack name cons1 to l1 l2 l3 l4 b)
7182 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later!
7183 (setq cperl-hierarchy (list l1 l2 l3))
7184 (if (featurep 'xemacs) ; Not checked
7185 (progn
7186 (or tags-file-name
7187 ;; Does this work in XEmacs?
7188 (call-interactively 'visit-tags-table))
7189 (message "Updating list of classes...")
7190 (set-buffer (get-file-buffer tags-file-name))
7191 (cperl-tags-hier-fill))
7192 (or tags-table-list
7193 (call-interactively 'visit-tags-table))
7194 (mapc
7195 (function
7196 (lambda (tagsfile)
7197 (message "Updating list of classes... %s" tagsfile)
7198 (set-buffer (get-file-buffer tagsfile))
7199 (cperl-tags-hier-fill)))
7200 tags-table-list)
7201 (message "Updating list of classes... postprocessing..."))
7202 (mapc remover (car cperl-hierarchy))
7203 (mapc remover (nth 1 cperl-hierarchy))
7204 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy))
7205 (cons "Methods: " (car cperl-hierarchy))))
7206 (cperl-tags-treeify to 1)
7207 (setcar (nthcdr 2 cperl-hierarchy)
7208 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to))))
7209 (message "Updating list of classes: done, requesting display...")
7210 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy))
7212 (or (nth 2 cperl-hierarchy)
7213 (error "No items found"))
7214 (setq update
7215 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy))
7216 (if (if (fboundp 'display-popup-menus-p)
7217 (let ((f 'display-popup-menus-p))
7218 (funcall f))
7219 window-system)
7220 (x-popup-menu t (nth 2 cperl-hierarchy))
7221 (require 'tmm)
7222 (tmm-prompt (nth 2 cperl-hierarchy))))
7223 (if (and update (listp update))
7224 (progn (while (cdr update) (setq update (cdr update)))
7225 (setq update (car update)))) ; Get the last from the list
7226 (if (vectorp update)
7227 (progn
7228 (find-file (elt update 0))
7229 (cperl-etags-goto-tag-location (elt update 1))))
7230 (if (eq update -999) (cperl-tags-hier-init t)))
7232 (defun cperl-tags-treeify (to level)
7233 ;; cadr of `to' is read-write. On start it is a cons
7234 (let* ((regexp (concat "^\\(" (mapconcat
7235 'identity
7236 (make-list level "[_a-zA-Z0-9]+")
7237 "::")
7238 "\\)\\(::\\)?"))
7239 (packages (cdr (nth 1 to)))
7240 (methods (cdr (nth 2 to)))
7241 l1 head tail cons1 cons2 ord writeto packs recurse
7242 root-packages root-functions ms many_ms same_name ps
7243 (move-deeper
7244 (function
7245 (lambda (elt)
7246 (cond ((and (string-match regexp (car elt))
7247 (or (eq ord 1) (match-end 2)))
7248 (setq head (substring (car elt) 0 (match-end 1))
7249 tail (if (match-end 2) (substring (car elt)
7250 (match-end 2)))
7251 recurse t)
7252 (if (setq cons1 (assoc head writeto)) nil
7253 ;; Need to init new head
7254 (setcdr writeto (cons (list head (list "Packages: ")
7255 (list "Methods: "))
7256 (cdr writeto)))
7257 (setq cons1 (nth 1 writeto)))
7258 (setq cons2 (nth ord cons1)) ; Either packs or meths
7259 (setcdr cons2 (cons elt (cdr cons2))))
7260 ((eq ord 2)
7261 (setq root-functions (cons elt root-functions)))
7263 (setq root-packages (cons elt root-packages))))))))
7264 (setcdr to l1) ; Init to dynamic space
7265 (setq writeto to)
7266 (setq ord 1)
7267 (mapc move-deeper packages)
7268 (setq ord 2)
7269 (mapc move-deeper methods)
7270 (if recurse
7271 (mapc (function (lambda (elt)
7272 (cperl-tags-treeify elt (1+ level))))
7273 (cdr to)))
7274 ;;Now clean up leaders with one child only
7275 (mapc (function (lambda (elt)
7276 (if (not (and (listp (cdr elt))
7277 (eq (length elt) 2))) nil
7278 (setcar elt (car (nth 1 elt)))
7279 (setcdr elt (cdr (nth 1 elt))))))
7280 (cdr to))
7281 ;; Sort the roots of subtrees
7282 (if (default-value 'imenu-sort-function)
7283 (setcdr to
7284 (sort (cdr to) (default-value 'imenu-sort-function))))
7285 ;; Now add back functions removed from display
7286 (mapc (function (lambda (elt)
7287 (setcdr to (cons elt (cdr to)))))
7288 (if (default-value 'imenu-sort-function)
7289 (nreverse
7290 (sort root-functions (default-value 'imenu-sort-function)))
7291 root-functions))
7292 ;; Now add back packages removed from display
7293 (mapc (function (lambda (elt)
7294 (setcdr to (cons (cons (concat "package " (car elt))
7295 (cdr elt))
7296 (cdr to)))))
7297 (if (default-value 'imenu-sort-function)
7298 (nreverse
7299 (sort root-packages (default-value 'imenu-sort-function)))
7300 root-packages))))
7302 ;;;(x-popup-menu t
7303 ;;; '(keymap "Name1"
7304 ;;; ("Ret1" "aa")
7305 ;;; ("Head1" "ab"
7306 ;;; keymap "Name2"
7307 ;;; ("Tail1" "x") ("Tail2" "y"))))
7309 (defun cperl-list-fold (list name limit)
7310 (let (list1 list2 elt1 (num 0))
7311 (if (<= (length list) limit) list
7312 (setq list1 nil list2 nil)
7313 (while list
7314 (setq num (1+ num)
7315 elt1 (car list)
7316 list (cdr list))
7317 (if (<= num imenu-max-items)
7318 (setq list2 (cons elt1 list2))
7319 (setq list1 (cons (cons name
7320 (nreverse list2))
7321 list1)
7322 list2 (list elt1)
7323 num 1)))
7324 (nreverse (cons (cons name
7325 (nreverse list2))
7326 list1)))))
7328 (defun cperl-menu-to-keymap (menu &optional name)
7329 (let (list)
7330 (cons 'keymap
7331 (mapcar
7332 (function
7333 (lambda (elt)
7334 (cond ((listp (cdr elt))
7335 (setq list (cperl-list-fold
7336 (cdr elt) (car elt) imenu-max-items))
7337 (cons nil
7338 (cons (car elt)
7339 (cperl-menu-to-keymap list))))
7341 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34
7342 (cperl-list-fold menu "Root" imenu-max-items)))))
7345 (defvar cperl-bad-style-regexp
7346 (mapconcat 'identity
7347 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign
7348 "[-<>=+^&|]+[^- \t\n=+<>~]") ; sign+ char
7349 "\\|")
7350 "Finds places such that insertion of a whitespace may help a lot.")
7352 (defvar cperl-not-bad-style-regexp
7353 (mapconcat
7354 'identity
7355 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++
7356 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used.
7357 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field)
7358 "<\\$?\\sw+\\(\\.\\(\\sw\\|_\\)+\\)?>" ; <IN> <stdin.h>
7359 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN
7360 "-[0-9]" ; -5
7361 "\\+\\+" ; ++var
7362 "--" ; --var
7363 ".->" ; a->b
7364 "->" ; a SPACE ->b
7365 "\\[-" ; a[-1]
7366 "\\\\[&$@*\\\\]" ; \&func
7367 "^=" ; =head
7368 "\\$." ; $|
7369 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO'
7370 "||"
7371 "&&"
7372 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text>
7373 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value
7374 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below
7375 ;;"[*/+-|&<.]+="
7377 "\\|")
7378 "If matches at the start of match found by `my-bad-c-style-regexp',
7379 insertion of a whitespace will not help.")
7381 (defvar found-bad)
7383 (defun cperl-find-bad-style ()
7384 "Find places in the buffer where insertion of a whitespace may help.
7385 Prompts user for insertion of spaces.
7386 Currently it is tuned to C and Perl syntax."
7387 (interactive)
7388 (let (found-bad (p (point)))
7389 (setq last-nonmenu-event 13) ; To disable popup
7390 (goto-char (point-min))
7391 (map-y-or-n-p "Insert space here? "
7392 (lambda (arg) (insert " "))
7393 'cperl-next-bad-style
7394 '("location" "locations" "insert a space into")
7395 '((?\C-r (lambda (arg)
7396 (let ((buffer-quit-function
7397 'exit-recursive-edit))
7398 (message "Exit with Esc Esc")
7399 (recursive-edit)
7400 t)) ; Consider acted upon
7401 "edit, exit with Esc Esc")
7402 (?e (lambda (arg)
7403 (let ((buffer-quit-function
7404 'exit-recursive-edit))
7405 (message "Exit with Esc Esc")
7406 (recursive-edit)
7407 t)) ; Consider acted upon
7408 "edit, exit with Esc Esc"))
7410 (if found-bad (goto-char found-bad)
7411 (goto-char p)
7412 (message "No appropriate place found"))))
7414 (defun cperl-next-bad-style ()
7415 (let (p (not-found t) (point (point)) found)
7416 (while (and not-found
7417 (re-search-forward cperl-bad-style-regexp nil 'to-end))
7418 (setq p (point))
7419 (goto-char (match-beginning 0))
7420 (if (or
7421 (looking-at cperl-not-bad-style-regexp)
7422 ;; Check for a < -b and friends
7423 (and (eq (following-char) ?\-)
7424 (save-excursion
7425 (skip-chars-backward " \t\n")
7426 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\( ?\[ ?\{))))
7427 ;; Now check for syntax type
7428 (save-match-data
7429 (setq found (point))
7430 (beginning-of-defun)
7431 (let ((pps (parse-partial-sexp (point) found)))
7432 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))
7433 (goto-char (match-end 0))
7434 (goto-char (1- p))
7435 (setq not-found nil
7436 found-bad found)))
7437 (not not-found)))
7440 ;;; Getting help
7441 (defvar cperl-have-help-regexp
7442 ;;(concat "\\("
7443 (mapconcat
7444 'identity
7445 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable
7446 "[$@]\\^[a-zA-Z]" ; Special variable
7447 "[$@][^ \n\t]" ; Special variable
7448 "-[a-zA-Z]" ; File test
7449 "\\\\[a-zA-Z0]" ; Special chars
7450 "^=[a-z][a-zA-Z0-9_]*" ; POD sections
7451 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator
7452 "[a-zA-Z_0-9:]+" ; symbol or number
7453 "x="
7454 "#!")
7455 ;;"\\)\\|\\("
7456 "\\|")
7457 ;;"\\)"
7459 "Matches places in the buffer we can find help for.")
7461 (defvar cperl-message-on-help-error t)
7462 (defvar cperl-help-from-timer nil)
7464 (defun cperl-word-at-point-hard ()
7465 ;; Does not save-excursion
7466 ;; Get to the something meaningful
7467 (or (eobp) (eolp) (forward-char 1))
7468 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]"
7469 (point-at-bol)
7470 'to-beg)
7471 ;; (cond
7472 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol
7473 ;; (skip-chars-backward " \n\t\r({[]});,")
7474 ;; (or (bobp) (backward-char 1))))
7475 ;; Try to backtrace
7476 (cond
7477 ((looking-at "[a-zA-Z0-9_:]") ; symbol
7478 (skip-chars-backward "a-zA-Z0-9_:")
7479 (cond
7480 ((and (eq (preceding-char) ?^) ; $^I
7481 (eq (char-after (- (point) 2)) ?\$))
7482 (forward-char -2))
7483 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob
7484 (forward-char -1))
7485 ((and (eq (preceding-char) ?\=)
7486 (eq (current-column) 1))
7487 (forward-char -1))) ; =head1
7488 (if (and (eq (preceding-char) ?\<)
7489 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH>
7490 (forward-char -1)))
7491 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x=
7492 (forward-char -1))
7493 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I
7494 (forward-char -1))
7495 ((looking-at "[-!&*+,-./<=>?\\\\^|~]")
7496 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~")
7497 (cond
7498 ((and (eq (preceding-char) ?\$)
7499 (not (eq (char-after (- (point) 2)) ?\$))) ; $-
7500 (forward-char -1))
7501 ((and (eq (following-char) ?\>)
7502 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char)))
7503 (save-excursion
7504 (forward-sexp -1)
7505 (and (eq (preceding-char) ?\<)
7506 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH>
7507 (search-backward "<"))))
7508 ((and (eq (following-char) ?\$)
7509 (eq (preceding-char) ?\<)
7510 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh>
7511 (forward-char -1)))
7512 (if (looking-at cperl-have-help-regexp)
7513 (buffer-substring (match-beginning 0) (match-end 0))))
7515 (defun cperl-get-help ()
7516 "Get one-line docs on the symbol at the point.
7517 The data for these docs is a little bit obsolete and may be in fact longer
7518 than a line. Your contribution to update/shorten it is appreciated."
7519 (interactive)
7520 (save-match-data ; May be called "inside" query-replace
7521 (save-excursion
7522 (let ((word (cperl-word-at-point-hard)))
7523 (if word
7524 (if (and cperl-help-from-timer ; Bail out if not in mainland
7525 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings.
7526 (or (memq (get-text-property (point) 'face)
7527 '(font-lock-comment-face font-lock-string-face))
7528 (memq (get-text-property (point) 'syntax-type)
7529 '(pod here-doc format))))
7531 (cperl-describe-perl-symbol word))
7532 (if cperl-message-on-help-error
7533 (message "Nothing found for %s..."
7534 (buffer-substring (point) (min (+ 5 (point)) (point-max))))))))))
7536 ;;; Stolen from perl-descr.el by Johan Vromans:
7538 (defvar cperl-doc-buffer " *perl-doc*"
7539 "Where the documentation can be found.")
7541 (defun cperl-describe-perl-symbol (val)
7542 "Display the documentation of symbol at point, a Perl operator."
7543 (let ((enable-recursive-minibuffers t)
7544 args-file regexp)
7545 (cond
7546 ((string-match "^[&*][a-zA-Z_]" val)
7547 (setq val (concat (substring val 0 1) "NAME")))
7548 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val)
7549 (setq val (concat "@" (substring val 1 (match-end 1)))))
7550 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val)
7551 (setq val (concat "%" (substring val 1 (match-end 1)))))
7552 ((and (string= val "x") (string-match "^x=" val))
7553 (setq val "x="))
7554 ((string-match "^\\$[\C-a-\C-z]" val)
7555 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1))))))
7556 ((string-match "^CORE::" val)
7557 (setq val "CORE::"))
7558 ((string-match "^SUPER::" val)
7559 (setq val "SUPER::"))
7560 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val))
7561 (setq val "<NAME>")))
7562 (setq regexp (concat "^"
7563 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?"
7564 (regexp-quote val)
7565 "\\([ \t([/]\\|$\\)"))
7567 ;; get the buffer with the documentation text
7568 (cperl-switch-to-doc-buffer)
7570 ;; lookup in the doc
7571 (goto-char (point-min))
7572 (let ((case-fold-search nil))
7573 (list
7574 (if (re-search-forward regexp (point-max) t)
7575 (save-excursion
7576 (beginning-of-line 1)
7577 (let ((lnstart (point)))
7578 (end-of-line)
7579 (message "%s" (buffer-substring lnstart (point)))))
7580 (if cperl-message-on-help-error
7581 (message "No definition for %s" val)))))))
7583 (defvar cperl-short-docs 'please-ignore-this-line
7584 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl)
7585 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5]
7586 ... Range (list context); flip/flop [no flop when flip] (scalar context).
7587 ! ... Logical negation.
7588 ... != ... Numeric inequality.
7589 ... !~ ... Search pattern, substitution, or translation (negated).
7590 $! In numeric context: errno. In a string context: error string.
7591 $\" The separator which joins elements of arrays interpolated in strings.
7592 $# The output format for printed numbers. Default is %.15g or close.
7593 $$ Process number of this script. Changes in the fork()ed child process.
7594 $% The current page number of the currently selected output channel.
7596 The following variables are always local to the current block:
7598 $1 Match of the 1st set of parentheses in the last match (auto-local).
7599 $2 Match of the 2nd set of parentheses in the last match (auto-local).
7600 $3 Match of the 3rd set of parentheses in the last match (auto-local).
7601 $4 Match of the 4th set of parentheses in the last match (auto-local).
7602 $5 Match of the 5th set of parentheses in the last match (auto-local).
7603 $6 Match of the 6th set of parentheses in the last match (auto-local).
7604 $7 Match of the 7th set of parentheses in the last match (auto-local).
7605 $8 Match of the 8th set of parentheses in the last match (auto-local).
7606 $9 Match of the 9th set of parentheses in the last match (auto-local).
7607 $& The string matched by the last pattern match (auto-local).
7608 $' The string after what was matched by the last match (auto-local).
7609 $` The string before what was matched by the last match (auto-local).
7611 $( The real gid of this process.
7612 $) The effective gid of this process.
7613 $* Deprecated: Set to 1 to do multiline matching within a string.
7614 $+ The last bracket matched by the last search pattern.
7615 $, The output field separator for the print operator.
7616 $- The number of lines left on the page.
7617 $. The current input line number of the last filehandle that was read.
7618 $/ The input record separator, newline by default.
7619 $0 Name of the file containing the current perl script (read/write).
7620 $: String may be broken after these characters to fill ^-lines in a format.
7621 $; Subscript separator for multi-dim array emulation. Default \"\\034\".
7622 $< The real uid of this process.
7623 $= The page length of the current output channel. Default is 60 lines.
7624 $> The effective uid of this process.
7625 $? The status returned by the last ``, pipe close or `system'.
7626 $@ The perl error message from the last eval or do @var{EXPR} command.
7627 $ARGV The name of the current file used with <> .
7628 $[ Deprecated: The index of the first element/char in an array/string.
7629 $\\ The output record separator for the print operator.
7630 $] The perl version string as displayed with perl -v.
7631 $^ The name of the current top-of-page format.
7632 $^A The current value of the write() accumulator for format() lines.
7633 $^D The value of the perl debug (-D) flags.
7634 $^E Information about the last system error other than that provided by $!.
7635 $^F The highest system file descriptor, ordinarily 2.
7636 $^H The current set of syntax checks enabled by `use strict'.
7637 $^I The value of the in-place edit extension (perl -i option).
7638 $^L What formats output to perform a formfeed. Default is \\f.
7639 $^M A buffer for emergency memory allocation when running out of memory.
7640 $^O The operating system name under which this copy of Perl was built.
7641 $^P Internal debugging flag.
7642 $^T The time the script was started. Used by -A/-M/-C file tests.
7643 $^W True if warnings are requested (perl -w flag).
7644 $^X The name under which perl was invoked (argv[0] in C-speech).
7645 $_ The default input and pattern-searching space.
7646 $| Auto-flush after write/print on current output channel? Default 0.
7647 $~ The name of the current report format.
7648 ... % ... Modulo division.
7649 ... %= ... Modulo division assignment.
7650 %ENV Contains the current environment.
7651 %INC List of files that have been require-d or do-ne.
7652 %SIG Used to set signal handlers for various signals.
7653 ... & ... Bitwise and.
7654 ... && ... Logical and.
7655 ... &&= ... Logical and assignment.
7656 ... &= ... Bitwise and assignment.
7657 ... * ... Multiplication.
7658 ... ** ... Exponentiation.
7659 *NAME Glob: all objects referred by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2.
7660 &NAME(arg0, ...) Subroutine call. Arguments go to @_.
7661 ... + ... Addition. +EXPR Makes EXPR into scalar context.
7662 ++ Auto-increment (magical on strings). ++EXPR EXPR++
7663 ... += ... Addition assignment.
7664 , Comma operator.
7665 ... - ... Subtraction.
7666 -- Auto-decrement (NOT magical on strings). --EXPR EXPR--
7667 ... -= ... Subtraction assignment.
7668 -A Access time in days since script started.
7669 -B File is a non-text (binary) file.
7670 -C Inode change time in days since script started.
7671 -M Age in days since script started.
7672 -O File is owned by real uid.
7673 -R File is readable by real uid.
7674 -S File is a socket .
7675 -T File is a text file.
7676 -W File is writable by real uid.
7677 -X File is executable by real uid.
7678 -b File is a block special file.
7679 -c File is a character special file.
7680 -d File is a directory.
7681 -e File exists .
7682 -f File is a plain file.
7683 -g File has setgid bit set.
7684 -k File has sticky bit set.
7685 -l File is a symbolic link.
7686 -o File is owned by effective uid.
7687 -p File is a named pipe (FIFO).
7688 -r File is readable by effective uid.
7689 -s File has non-zero size.
7690 -t Tests if filehandle (STDIN by default) is opened to a tty.
7691 -u File has setuid bit set.
7692 -w File is writable by effective uid.
7693 -x File is executable by effective uid.
7694 -z File has zero size.
7695 . Concatenate strings.
7696 .. Range (list context); flip/flop (scalar context) operator.
7697 .= Concatenate assignment strings
7698 ... / ... Division. /PATTERN/ioxsmg Pattern match
7699 ... /= ... Division assignment.
7700 /PATTERN/ioxsmg Pattern match.
7701 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well.
7702 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword).
7703 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>).
7704 <> Reads line from union of files in @ARGV (= command line) and STDIN.
7705 ... << ... Bitwise shift left. << start of HERE-DOCUMENT.
7706 ... <= ... Numeric less than or equal to.
7707 ... <=> ... Numeric compare.
7708 ... = ... Assignment.
7709 ... == ... Numeric equality.
7710 ... =~ ... Search pattern, substitution, or translation
7711 ... > ... Numeric greater than.
7712 ... >= ... Numeric greater than or equal to.
7713 ... >> ... Bitwise shift right.
7714 ... >>= ... Bitwise shift right assignment.
7715 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match.
7716 ?PATTERN? One-time pattern match.
7717 @ARGV Command line arguments (not including the command name - see $0).
7718 @INC List of places to look for perl scripts during do/include/use.
7719 @_ Parameter array for subroutines; result of split() unless in list context.
7720 \\ Creates reference to what follows, like \\$var, or quotes non-\\w in strings.
7721 \\0 Octal char, e.g. \\033.
7722 \\E Case modification terminator. See \\Q, \\L, and \\U.
7723 \\L Lowercase until \\E . See also \\l, lc.
7724 \\U Upcase until \\E . See also \\u, uc.
7725 \\Q Quote metacharacters until \\E . See also quotemeta.
7726 \\a Alarm character (octal 007).
7727 \\b Backspace character (octal 010).
7728 \\c Control character, e.g. \\c[ .
7729 \\e Escape character (octal 033).
7730 \\f Formfeed character (octal 014).
7731 \\l Lowercase the next character. See also \\L and \\u, lcfirst.
7732 \\n Newline character (octal 012 on most systems).
7733 \\r Return character (octal 015 on most systems).
7734 \\t Tab character (octal 011).
7735 \\u Upcase the next character. See also \\U and \\l, ucfirst.
7736 \\x Hex character, e.g. \\x1b.
7737 ... ^ ... Bitwise exclusive or.
7738 __END__ Ends program source.
7739 __DATA__ Ends program source.
7740 __FILE__ Current (source) filename.
7741 __LINE__ Current line in current source.
7742 __PACKAGE__ Current package.
7743 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>.
7744 ARGVOUT Output filehandle with -i flag.
7745 BEGIN { ... } Immediately executed (during compilation) piece of code.
7746 END { ... } Pseudo-subroutine executed after the script finishes.
7747 CHECK { ... } Pseudo-subroutine executed after the script is compiled.
7748 INIT { ... } Pseudo-subroutine executed before the script starts running.
7749 DATA Input filehandle for what follows after __END__ or __DATA__.
7750 accept(NEWSOCKET,GENERICSOCKET)
7751 alarm(SECONDS)
7752 atan2(X,Y)
7753 bind(SOCKET,NAME)
7754 binmode(FILEHANDLE)
7755 caller[(LEVEL)]
7756 chdir(EXPR)
7757 chmod(LIST)
7758 chop[(LIST|VAR)]
7759 chown(LIST)
7760 chroot(FILENAME)
7761 close(FILEHANDLE)
7762 closedir(DIRHANDLE)
7763 ... cmp ... String compare.
7764 connect(SOCKET,NAME)
7765 continue of { block } continue { block }. Is executed after `next' or at end.
7766 cos(EXPR)
7767 crypt(PLAINTEXT,SALT)
7768 dbmclose(%HASH)
7769 dbmopen(%HASH,DBNAME,MODE)
7770 defined(EXPR)
7771 delete($HASH{KEY})
7772 die(LIST)
7773 do { ... }|SUBR while|until EXPR executes at least once
7774 do(EXPR|SUBR([LIST])) (with while|until executes at least once)
7775 dump LABEL
7776 each(%HASH)
7777 endgrent
7778 endhostent
7779 endnetent
7780 endprotoent
7781 endpwent
7782 endservent
7783 eof[([FILEHANDLE])]
7784 ... eq ... String equality.
7785 eval(EXPR) or eval { BLOCK }
7786 exec([TRUENAME] ARGV0, ARGVs) or exec(SHELL_COMMAND_LINE)
7787 exit(EXPR)
7788 exp(EXPR)
7789 fcntl(FILEHANDLE,FUNCTION,SCALAR)
7790 fileno(FILEHANDLE)
7791 flock(FILEHANDLE,OPERATION)
7792 for (EXPR;EXPR;EXPR) { ... }
7793 foreach [VAR] (@ARRAY) { ... }
7794 fork
7795 ... ge ... String greater than or equal.
7796 getc[(FILEHANDLE)]
7797 getgrent
7798 getgrgid(GID)
7799 getgrnam(NAME)
7800 gethostbyaddr(ADDR,ADDRTYPE)
7801 gethostbyname(NAME)
7802 gethostent
7803 getlogin
7804 getnetbyaddr(ADDR,ADDRTYPE)
7805 getnetbyname(NAME)
7806 getnetent
7807 getpeername(SOCKET)
7808 getpgrp(PID)
7809 getppid
7810 getpriority(WHICH,WHO)
7811 getprotobyname(NAME)
7812 getprotobynumber(NUMBER)
7813 getprotoent
7814 getpwent
7815 getpwnam(NAME)
7816 getpwuid(UID)
7817 getservbyname(NAME,PROTO)
7818 getservbyport(PORT,PROTO)
7819 getservent
7820 getsockname(SOCKET)
7821 getsockopt(SOCKET,LEVEL,OPTNAME)
7822 gmtime(EXPR)
7823 goto LABEL
7824 ... gt ... String greater than.
7825 hex(EXPR)
7826 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR
7827 index(STR,SUBSTR[,OFFSET])
7828 int(EXPR)
7829 ioctl(FILEHANDLE,FUNCTION,SCALAR)
7830 join(EXPR,LIST)
7831 keys(%HASH)
7832 kill(LIST)
7833 last [LABEL]
7834 ... le ... String less than or equal.
7835 length(EXPR)
7836 link(OLDFILE,NEWFILE)
7837 listen(SOCKET,QUEUESIZE)
7838 local(LIST)
7839 localtime(EXPR)
7840 log(EXPR)
7841 lstat(EXPR|FILEHANDLE|VAR)
7842 ... lt ... String less than.
7843 m/PATTERN/iogsmx
7844 mkdir(FILENAME,MODE)
7845 msgctl(ID,CMD,ARG)
7846 msgget(KEY,FLAGS)
7847 msgrcv(ID,VAR,SIZE,TYPE.FLAGS)
7848 msgsnd(ID,MSG,FLAGS)
7849 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH).
7850 our VAR or our (VAR1,...) Lexically enable a global variable ($V, @A, or %H).
7851 ... ne ... String inequality.
7852 next [LABEL]
7853 oct(EXPR)
7854 open(FILEHANDLE[,EXPR])
7855 opendir(DIRHANDLE,EXPR)
7856 ord(EXPR) ASCII value of the first char of the string.
7857 pack(TEMPLATE,LIST)
7858 package NAME Introduces package context.
7859 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe.
7860 pop(ARRAY)
7861 print [FILEHANDLE] [(LIST)]
7862 printf [FILEHANDLE] (FORMAT,LIST)
7863 push(ARRAY,LIST)
7864 q/STRING/ Synonym for 'STRING'
7865 qq/STRING/ Synonym for \"STRING\"
7866 qx/STRING/ Synonym for `STRING`
7867 rand[(EXPR)]
7868 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7869 readdir(DIRHANDLE)
7870 readlink(EXPR)
7871 recv(SOCKET,SCALAR,LEN,FLAGS)
7872 redo [LABEL]
7873 rename(OLDNAME,NEWNAME)
7874 require [FILENAME | PERL_VERSION]
7875 reset[(EXPR)]
7876 return(LIST)
7877 reverse(LIST)
7878 rewinddir(DIRHANDLE)
7879 rindex(STR,SUBSTR[,OFFSET])
7880 rmdir(FILENAME)
7881 s/PATTERN/REPLACEMENT/gieoxsm
7882 scalar(EXPR)
7883 seek(FILEHANDLE,POSITION,WHENCE)
7884 seekdir(DIRHANDLE,POS)
7885 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT)
7886 semctl(ID,SEMNUM,CMD,ARG)
7887 semget(KEY,NSEMS,SIZE,FLAGS)
7888 semop(KEY,...)
7889 send(SOCKET,MSG,FLAGS[,TO])
7890 setgrent
7891 sethostent(STAYOPEN)
7892 setnetent(STAYOPEN)
7893 setpgrp(PID,PGRP)
7894 setpriority(WHICH,WHO,PRIORITY)
7895 setprotoent(STAYOPEN)
7896 setpwent
7897 setservent(STAYOPEN)
7898 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL)
7899 shift[(ARRAY)]
7900 shmctl(ID,CMD,ARG)
7901 shmget(KEY,SIZE,FLAGS)
7902 shmread(ID,VAR,POS,SIZE)
7903 shmwrite(ID,STRING,POS,SIZE)
7904 shutdown(SOCKET,HOW)
7905 sin(EXPR)
7906 sleep[(EXPR)]
7907 socket(SOCKET,DOMAIN,TYPE,PROTOCOL)
7908 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL)
7909 sort [SUBROUTINE] (LIST)
7910 splice(ARRAY,OFFSET[,LENGTH[,LIST]])
7911 split[(/PATTERN/[,EXPR[,LIMIT]])]
7912 sprintf(FORMAT,LIST)
7913 sqrt(EXPR)
7914 srand(EXPR)
7915 stat(EXPR|FILEHANDLE|VAR)
7916 study[(SCALAR)]
7917 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...}
7918 substr(EXPR,OFFSET[,LEN])
7919 symlink(OLDFILE,NEWFILE)
7920 syscall(LIST)
7921 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7922 system([TRUENAME] ARGV0 [,ARGV]) or system(SHELL_COMMAND_LINE)
7923 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7924 tell[(FILEHANDLE)]
7925 telldir(DIRHANDLE)
7926 time
7927 times
7928 tr/SEARCHLIST/REPLACEMENTLIST/cds
7929 truncate(FILE|EXPR,LENGTH)
7930 umask[(EXPR)]
7931 undef[(EXPR)]
7932 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR
7933 unlink(LIST)
7934 unpack(TEMPLATE,EXPR)
7935 unshift(ARRAY,LIST)
7936 until (EXPR) { ... } EXPR until EXPR
7937 utime(LIST)
7938 values(%HASH)
7939 vec(EXPR,OFFSET,BITS)
7940 wait
7941 waitpid(PID,FLAGS)
7942 wantarray Returns true if the sub/eval is called in list context.
7943 warn(LIST)
7944 while (EXPR) { ... } EXPR while EXPR
7945 write[(EXPR|FILEHANDLE)]
7946 ... x ... Repeat string or array.
7947 x= ... Repetition assignment.
7948 y/SEARCHLIST/REPLACEMENTLIST/
7949 ... | ... Bitwise or.
7950 ... || ... Logical or.
7951 ~ ... Unary bitwise complement.
7952 #! OS interpreter indicator. If contains `perl', used for options, and -x.
7953 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'.
7954 CORE:: Prefix to access builtin function if imported sub obscures it.
7955 SUPER:: Prefix to lookup for a method in @ISA classes.
7956 DESTROY Shorthand for `sub DESTROY {...}'.
7957 ... EQ ... Obsolete synonym of `eq'.
7958 ... GE ... Obsolete synonym of `ge'.
7959 ... GT ... Obsolete synonym of `gt'.
7960 ... LE ... Obsolete synonym of `le'.
7961 ... LT ... Obsolete synonym of `lt'.
7962 ... NE ... Obsolete synonym of `ne'.
7963 abs [ EXPR ] absolute value
7964 ... and ... Low-precedence synonym for &&.
7965 bless REFERENCE [, PACKAGE] Makes reference into an object of a package.
7966 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''!
7967 chr Converts a number to char with the same ordinal.
7968 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}.
7969 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}.
7970 exists $HASH{KEY} True if the key exists.
7971 format [NAME] = Start of output format. Ended by a single dot (.) on a line.
7972 formline PICTURE, LIST Backdoor into \"format\" processing.
7973 glob EXPR Synonym of <EXPR>.
7974 lc [ EXPR ] Returns lowercased EXPR.
7975 lcfirst [ EXPR ] Returns EXPR with lower-cased first letter.
7976 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK.
7977 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST.
7978 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method.
7979 not ... Low-precedence synonym for ! - negation.
7980 ... or ... Low-precedence synonym for ||.
7981 pos STRING Set/Get end-position of the last match over this string, see \\G.
7982 quotemeta [ EXPR ] Quote regexp metacharacters.
7983 qw/WORD1 .../ Synonym of split('', 'WORD1 ...')
7984 readline FH Synonym of <FH>.
7985 readpipe CMD Synonym of `CMD`.
7986 ref [ EXPR ] Type of EXPR when dereferenced.
7987 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.)
7988 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable.
7989 tied Returns internal object for a tied data.
7990 uc [ EXPR ] Returns upcased EXPR.
7991 ucfirst [ EXPR ] Returns EXPR with upcased first letter.
7992 untie VAR Unlink an object from a simple Perl variable.
7993 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'.
7994 ... xor ... Low-precedence synonym for exclusive or.
7995 prototype \\&SUB Returns prototype of the function given a reference.
7996 =head1 Top-level heading.
7997 =head2 Second-level heading.
7998 =head3 Third-level heading (is there such?).
7999 =over [ NUMBER ] Start list.
8000 =item [ TITLE ] Start new item in the list.
8001 =back End list.
8002 =cut Switch from POD to Perl.
8003 =pod Switch from Perl to POD.
8006 (defun cperl-switch-to-doc-buffer (&optional interactive)
8007 "Go to the perl documentation buffer and insert the documentation."
8008 (interactive "p")
8009 (let ((buf (get-buffer-create cperl-doc-buffer)))
8010 (if interactive
8011 (switch-to-buffer-other-window buf)
8012 (set-buffer buf))
8013 (if (= (buffer-size) 0)
8014 (progn
8015 (insert (documentation-property 'cperl-short-docs
8016 'variable-documentation))
8017 (setq buffer-read-only t)))))
8019 (defun cperl-beautify-regexp-piece (b e embed level)
8020 ;; b is before the starting delimiter, e before the ending
8021 ;; e should be a marker, may be changed, but remains "correct".
8022 ;; EMBED is nil if we process the whole REx.
8023 ;; The REx is guaranteed to have //x
8024 ;; LEVEL shows how many levels deep to go
8025 ;; position at enter and at leave is not defined
8026 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code pos)
8027 (if embed
8028 (progn
8029 (goto-char b)
8030 (setq c (if (eq embed t) (current-indentation) (current-column)))
8031 (cond ((looking-at "(\\?\\\\#") ; (?#) wrongly commented when //x-ing
8032 (forward-char 2)
8033 (delete-char 1)
8034 (forward-char 1))
8035 ((looking-at "(\\?[^a-zA-Z]")
8036 (forward-char 3))
8037 ((looking-at "(\\?") ; (?i)
8038 (forward-char 2))
8040 (forward-char 1))))
8041 (goto-char (1+ b))
8042 (setq c (1- (current-column))))
8043 (setq c1 (+ c (or cperl-regexp-indent-step cperl-indent-level)))
8044 (or (looking-at "[ \t]*[\n#]")
8045 (progn
8046 (insert "\n")))
8047 (goto-char e)
8048 (beginning-of-line)
8049 (if (re-search-forward "[^ \t]" e t)
8050 (progn ; Something before the ending delimiter
8051 (goto-char e)
8052 (delete-horizontal-space)
8053 (insert "\n")
8054 (cperl-make-indent c)
8055 (set-marker e (point))))
8056 (goto-char b)
8057 (end-of-line 2)
8058 (while (< (point) (marker-position e))
8059 (beginning-of-line)
8060 (setq s (point)
8061 inline t)
8062 (skip-chars-forward " \t")
8063 (delete-region s (point))
8064 (cperl-make-indent c1)
8065 (while (and
8066 inline
8067 (looking-at
8068 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word
8069 "\\|" ; Embedded variable
8070 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3
8071 "\\|" ; $ ^
8072 "[$^]"
8073 "\\|" ; simple-code simple-code*?
8074 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5
8075 "\\|" ; Class
8076 "\\(\\[\\)" ; 6
8077 "\\|" ; Grouping
8078 "\\((\\(\\?\\)?\\)" ; 7 8
8079 "\\|" ; |
8080 "\\(|\\)"))) ; 9
8081 (goto-char (match-end 0))
8082 (setq spaces t)
8083 (cond ((match-beginning 1) ; Alphanum word + junk
8084 (forward-char -1))
8085 ((or (match-beginning 3) ; $ab[12]
8086 (and (match-beginning 5) ; X* X+ X{2,3}
8087 (eq (preceding-char) ?\{)))
8088 (forward-char -1)
8089 (forward-sexp 1))
8090 ((and ; [], already syntaxified
8091 (match-beginning 6)
8092 cperl-regexp-scan
8093 cperl-use-syntax-table-text-property)
8094 (forward-char -1)
8095 (forward-sexp 1)
8096 (or (eq (preceding-char) ?\])
8097 (error "[]-group not terminated"))
8098 (re-search-forward
8099 "\\=\\([*+?]\\|{[0-9]+\\(,[0-9]*\\)?}\\)\\??" e t))
8100 ((match-beginning 6) ; []
8101 (setq tmp (point))
8102 (if (looking-at "\\^?\\]")
8103 (goto-char (match-end 0)))
8104 ;; XXXX POSIX classes?!
8105 (while (and (not pos)
8106 (re-search-forward "\\[:\\|\\]" e t))
8107 (if (eq (preceding-char) ?:)
8108 (or (re-search-forward ":\\]" e t)
8109 (error "[:POSIX:]-group in []-group not terminated"))
8110 (setq pos t)))
8111 (or (eq (preceding-char) ?\])
8112 (error "[]-group not terminated"))
8113 (re-search-forward
8114 "\\=\\([*+?]\\|{[0-9]+\\(,[0-9]*\\)?}\\)\\??" e t))
8115 ((match-beginning 7) ; ()
8116 (goto-char (match-beginning 0))
8117 (setq pos (current-column))
8118 (or (eq pos c1)
8119 (progn
8120 (delete-horizontal-space)
8121 (insert "\n")
8122 (cperl-make-indent c1)))
8123 (setq tmp (point))
8124 (forward-sexp 1)
8125 ;; (or (forward-sexp 1)
8126 ;; (progn
8127 ;; (goto-char tmp)
8128 ;; (error "()-group not terminated")))
8129 (set-marker m (1- (point)))
8130 (set-marker m1 (point))
8131 (if (= level 1)
8132 (if (progn ; indent rigidly if multiline
8133 ;; In fact does not make a lot of sense, since
8134 ;; the starting position can be already lost due
8135 ;; to insertion of "\n" and " "
8136 (goto-char tmp)
8137 (search-forward "\n" m1 t))
8138 (indent-rigidly (point) m1 (- c1 pos)))
8139 (setq level (1- level))
8140 (cond
8141 ((not (match-beginning 8))
8142 (cperl-beautify-regexp-piece tmp m t level))
8143 ((eq (char-after (+ 2 tmp)) ?\{) ; Code
8145 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional
8146 (goto-char (+ 2 tmp))
8147 (forward-sexp 1)
8148 (cperl-beautify-regexp-piece (point) m t level))
8149 ((eq (char-after (+ 2 tmp)) ?<) ; Lookbehind
8150 (goto-char (+ 3 tmp))
8151 (cperl-beautify-regexp-piece (point) m t level))
8153 (cperl-beautify-regexp-piece tmp m t level))))
8154 (goto-char m1)
8155 (cond ((looking-at "[*+?]\\??")
8156 (goto-char (match-end 0)))
8157 ((eq (following-char) ?\{)
8158 (forward-sexp 1)
8159 (if (eq (following-char) ?\?)
8160 (forward-char))))
8161 (skip-chars-forward " \t")
8162 (setq spaces nil)
8163 (if (looking-at "[#\n]")
8164 (progn
8165 (or (eolp) (indent-for-comment))
8166 (beginning-of-line 2))
8167 (delete-horizontal-space)
8168 (insert "\n"))
8169 (end-of-line)
8170 (setq inline nil))
8171 ((match-beginning 9) ; |
8172 (forward-char -1)
8173 (setq tmp (point))
8174 (beginning-of-line)
8175 (if (re-search-forward "[^ \t]" tmp t)
8176 (progn
8177 (goto-char tmp)
8178 (delete-horizontal-space)
8179 (insert "\n"))
8180 ;; first at line
8181 (delete-region (point) tmp))
8182 (cperl-make-indent c)
8183 (forward-char 1)
8184 (skip-chars-forward " \t")
8185 (setq spaces nil)
8186 (if (looking-at "[#\n]")
8187 (beginning-of-line 2)
8188 (delete-horizontal-space)
8189 (insert "\n"))
8190 (end-of-line)
8191 (setq inline nil)))
8192 (or (looking-at "[ \t\n]")
8193 (not spaces)
8194 (insert " "))
8195 (skip-chars-forward " \t"))
8196 (or (looking-at "[#\n]")
8197 (error "Unknown code `%s' in a regexp"
8198 (buffer-substring (point) (1+ (point)))))
8199 (and inline (end-of-line 2)))
8200 ;; Special-case the last line of group
8201 (if (and (>= (point) (marker-position e))
8202 (/= (current-indentation) c))
8203 (progn
8204 (beginning-of-line)
8205 (cperl-make-indent c)))))
8207 (defun cperl-make-regexp-x ()
8208 ;; Returns position of the start
8209 ;; XXX this is called too often! Need to cache the result!
8210 (save-excursion
8211 (or cperl-use-syntax-table-text-property
8212 (error "I need to have a regexp marked!"))
8213 ;; Find the start
8214 (if (looking-at "\\s|")
8215 nil ; good already
8216 (if (or (looking-at "\\([smy]\\|qr\\)\\s|")
8217 (and (eq (preceding-char) ?q)
8218 (looking-at "\\(r\\)\\s|")))
8219 (goto-char (match-end 1))
8220 (re-search-backward "\\s|"))) ; Assume it is scanned already.
8221 ;;(forward-char 1)
8222 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column))
8223 (sub-p (eq (preceding-char) ?s)) s)
8224 (forward-sexp 1)
8225 (set-marker e (1- (point)))
8226 (setq delim (preceding-char))
8227 (if (and sub-p (eq delim (char-after (- (point) 2))))
8228 (error "Possible s/blah// - do not know how to deal with"))
8229 (if sub-p (forward-sexp 1))
8230 (if (looking-at "\\sw*x")
8231 (setq have-x t)
8232 (insert "x"))
8233 ;; Protect fragile " ", "#"
8234 (if have-x nil
8235 (goto-char (1+ b))
8236 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too?
8237 (forward-char -1)
8238 (insert "\\")
8239 (forward-char 1)))
8240 b)))
8242 (defun cperl-beautify-regexp (&optional deep)
8243 "Do it. (Experimental, may change semantics, recheck the result.)
8244 We suppose that the regexp is scanned already."
8245 (interactive "P")
8246 (setq deep (if deep (prefix-numeric-value deep) -1))
8247 (save-excursion
8248 (goto-char (cperl-make-regexp-x))
8249 (let ((b (point)) (e (make-marker)))
8250 (forward-sexp 1)
8251 (set-marker e (1- (point)))
8252 (cperl-beautify-regexp-piece b e nil deep))))
8254 (defun cperl-regext-to-level-start ()
8255 "Goto start of an enclosing group in regexp.
8256 We suppose that the regexp is scanned already."
8257 (interactive)
8258 (let ((limit (cperl-make-regexp-x)) done)
8259 (while (not done)
8260 (or (eq (following-char) ?\()
8261 (search-backward "(" (1+ limit) t)
8262 (error "Cannot find `(' which starts a group"))
8263 (setq done
8264 (save-excursion
8265 (skip-chars-backward "\\")
8266 (looking-at "\\(\\\\\\\\\\)*(")))
8267 (or done (forward-char -1)))))
8269 (defun cperl-contract-level ()
8270 "Find an enclosing group in regexp and contract it.
8271 \(Experimental, may change semantics, recheck the result.)
8272 We suppose that the regexp is scanned already."
8273 (interactive)
8274 ;; (save-excursion ; Can't, breaks `cperl-contract-levels'
8275 (cperl-regext-to-level-start)
8276 (let ((b (point)) (e (make-marker)) c)
8277 (forward-sexp 1)
8278 (set-marker e (1- (point)))
8279 (goto-char b)
8280 (while (re-search-forward "\\(#\\)\\|\n" e 'to-end)
8281 (cond
8282 ((match-beginning 1) ; #-comment
8283 (or c (setq c (current-indentation)))
8284 (beginning-of-line 2) ; Skip
8285 (cperl-make-indent c))
8287 (delete-char -1)
8288 (just-one-space))))))
8290 (defun cperl-contract-levels ()
8291 "Find an enclosing group in regexp and contract all the kids.
8292 \(Experimental, may change semantics, recheck the result.)
8293 We suppose that the regexp is scanned already."
8294 (interactive)
8295 (save-excursion
8296 (condition-case nil
8297 (cperl-regext-to-level-start)
8298 (error ; We are outside outermost group
8299 (goto-char (cperl-make-regexp-x))))
8300 (let ((b (point)) (e (make-marker)) s c)
8301 (forward-sexp 1)
8302 (set-marker e (1- (point)))
8303 (goto-char (1+ b))
8304 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t)
8305 (cond
8306 ((match-beginning 1) ; Skip
8307 nil)
8308 (t ; Group
8309 (cperl-contract-level)))))))
8311 (defun cperl-beautify-level (&optional deep)
8312 "Find an enclosing group in regexp and beautify it.
8313 \(Experimental, may change semantics, recheck the result.)
8314 We suppose that the regexp is scanned already."
8315 (interactive "P")
8316 (setq deep (if deep (prefix-numeric-value deep) -1))
8317 (save-excursion
8318 (cperl-regext-to-level-start)
8319 (let ((b (point)) (e (make-marker)))
8320 (forward-sexp 1)
8321 (set-marker e (1- (point)))
8322 (cperl-beautify-regexp-piece b e 'level deep))))
8324 (defun cperl-invert-if-unless-modifiers ()
8325 "Change `B if A;' into `if (A) {B}' etc if possible.
8326 \(Unfinished.)"
8327 (interactive)
8328 (let (A B pre-B post-B pre-if post-if pre-A post-A if-string
8329 (w-rex "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>"))
8330 (and (= (char-syntax (preceding-char)) ?w)
8331 (forward-sexp -1))
8332 (setq pre-if (point))
8333 (cperl-backward-to-start-of-expr)
8334 (setq pre-B (point))
8335 (forward-sexp 1) ; otherwise forward-to-end-of-expr is NOP
8336 (cperl-forward-to-end-of-expr)
8337 (setq post-A (point))
8338 (goto-char pre-if)
8339 (or (looking-at w-rex)
8340 ;; Find the position
8341 (progn (goto-char post-A)
8342 (while (and
8343 (not (looking-at w-rex))
8344 (> (point) pre-B))
8345 (forward-sexp -1))
8346 (setq pre-if (point))))
8347 (or (looking-at w-rex)
8348 (error "Can't find `if', `unless', `while', `until', `for' or `foreach'"))
8349 ;; 1 B 2 ... 3 B-com ... 4 if 5 ... if-com 6 ... 7 A 8
8350 (setq if-string (buffer-substring (match-beginning 0) (match-end 0)))
8351 ;; First, simple part: find code boundaries
8352 (forward-sexp 1)
8353 (setq post-if (point))
8354 (forward-sexp -2)
8355 (forward-sexp 1)
8356 (setq post-B (point))
8357 (cperl-backward-to-start-of-expr)
8358 (setq pre-B (point))
8359 (setq B (buffer-substring pre-B post-B))
8360 (goto-char pre-if)
8361 (forward-sexp 2)
8362 (forward-sexp -1)
8363 ;; May be after $, @, $# etc of a variable
8364 (skip-chars-backward "$@%#")
8365 (setq pre-A (point))
8366 (cperl-forward-to-end-of-expr)
8367 (setq post-A (point))
8368 (setq A (buffer-substring pre-A post-A))
8369 ;; Now modify (from end, to not break the stuff)
8370 (skip-chars-forward " \t;")
8371 (delete-region pre-A (point)) ; we move to pre-A
8372 (insert "\n" B ";\n}")
8373 (and (looking-at "[ \t]*#") (cperl-indent-for-comment))
8374 (delete-region pre-if post-if)
8375 (delete-region pre-B post-B)
8376 (goto-char pre-B)
8377 (insert if-string " (" A ") {")
8378 (setq post-B (point))
8379 (if (looking-at "[ \t]+$")
8380 (delete-horizontal-space)
8381 (if (looking-at "[ \t]*#")
8382 (cperl-indent-for-comment)
8383 (just-one-space)))
8384 (forward-line 1)
8385 (if (looking-at "[ \t]*$")
8386 (progn ; delete line
8387 (delete-horizontal-space)
8388 (delete-region (point) (1+ (point)))))
8389 (cperl-indent-line)
8390 (goto-char (1- post-B))
8391 (forward-sexp 1)
8392 (cperl-indent-line)
8393 (goto-char pre-B)))
8395 (defun cperl-invert-if-unless ()
8396 "Change `if (A) {B}' into `B if A;' etc (or visa versa) if possible.
8397 If the cursor is not on the leading keyword of the BLOCK flavor of
8398 construct, will assume it is the STATEMENT flavor, so will try to find
8399 the appropriate statement modifier."
8400 (interactive)
8401 (and (= (char-syntax (preceding-char)) ?w)
8402 (forward-sexp -1))
8403 (if (looking-at "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>")
8404 (let ((pre-if (point))
8405 pre-A post-A pre-B post-B A B state p end-B-code is-block B-comment
8406 (if-string (buffer-substring (match-beginning 0) (match-end 0))))
8407 (forward-sexp 2)
8408 (setq post-A (point))
8409 (forward-sexp -1)
8410 (setq pre-A (point))
8411 (setq is-block (and (eq (following-char) ?\( )
8412 (save-excursion
8413 (condition-case nil
8414 (progn
8415 (forward-sexp 2)
8416 (forward-sexp -1)
8417 (eq (following-char) ?\{ ))
8418 (error nil)))))
8419 (if is-block
8420 (progn
8421 (goto-char post-A)
8422 (forward-sexp 1)
8423 (setq post-B (point))
8424 (forward-sexp -1)
8425 (setq pre-B (point))
8426 (if (and (eq (following-char) ?\{ )
8427 (progn
8428 (cperl-backward-to-noncomment post-A)
8429 (eq (preceding-char) ?\) )))
8430 (if (condition-case nil
8431 (progn
8432 (goto-char post-B)
8433 (forward-sexp 1)
8434 (forward-sexp -1)
8435 (looking-at "\\<els\\(e\\|if\\)\\>"))
8436 (error nil))
8437 (error
8438 "`%s' (EXPR) {BLOCK} with `else'/`elsif'" if-string)
8439 (goto-char (1- post-B))
8440 (cperl-backward-to-noncomment pre-B)
8441 (if (eq (preceding-char) ?\;)
8442 (forward-char -1))
8443 (setq end-B-code (point))
8444 (goto-char pre-B)
8445 (while (re-search-forward "\\<\\(for\\|foreach\\|if\\|unless\\|while\\|until\\)\\>\\|;" end-B-code t)
8446 (setq p (match-beginning 0)
8447 A (buffer-substring p (match-end 0))
8448 state (parse-partial-sexp pre-B p))
8449 (or (nth 3 state)
8450 (nth 4 state)
8451 (nth 5 state)
8452 (error "`%s' inside `%s' BLOCK" A if-string))
8453 (goto-char (match-end 0)))
8454 ;; Finally got it
8455 (goto-char (1+ pre-B))
8456 (skip-chars-forward " \t\n")
8457 (setq B (buffer-substring (point) end-B-code))
8458 (goto-char end-B-code)
8459 (or (looking-at ";?[ \t\n]*}")
8460 (progn
8461 (skip-chars-forward "; \t\n")
8462 (setq B-comment
8463 (buffer-substring (point) (1- post-B)))))
8464 (and (equal B "")
8465 (setq B "1"))
8466 (goto-char (1- post-A))
8467 (cperl-backward-to-noncomment pre-A)
8468 (or (looking-at "[ \t\n]*)")
8469 (goto-char (1- post-A)))
8470 (setq p (point))
8471 (goto-char (1+ pre-A))
8472 (skip-chars-forward " \t\n")
8473 (setq A (buffer-substring (point) p))
8474 (delete-region pre-B post-B)
8475 (delete-region pre-A post-A)
8476 (goto-char pre-if)
8477 (insert B " ")
8478 (and B-comment (insert B-comment " "))
8479 (just-one-space)
8480 (forward-word 1)
8481 (setq pre-A (point))
8482 (insert " " A ";")
8483 (delete-horizontal-space)
8484 (setq post-B (point))
8485 (if (looking-at "#")
8486 (indent-for-comment))
8487 (goto-char post-B)
8488 (forward-char -1)
8489 (delete-horizontal-space)
8490 (goto-char pre-A)
8491 (just-one-space)
8492 (goto-char pre-if)
8493 (setq pre-A (set-marker (make-marker) pre-A))
8494 (while (<= (point) (marker-position pre-A))
8495 (cperl-indent-line)
8496 (forward-line 1))
8497 (goto-char (marker-position pre-A))
8498 (if B-comment
8499 (progn
8500 (forward-line -1)
8501 (indent-for-comment)
8502 (goto-char (marker-position pre-A)))))
8503 (error "`%s' (EXPR) not with an {BLOCK}" if-string)))
8504 ;; (error "`%s' not with an (EXPR)" if-string)
8505 (forward-sexp -1)
8506 (cperl-invert-if-unless-modifiers)))
8507 ;;(error "Not at `if', `unless', `while', `until', `for' or `foreach'")
8508 (cperl-invert-if-unless-modifiers)))
8510 ;;; By Anthony Foiani <afoiani@uswest.com>
8511 ;;; Getting help on modules in C-h f ?
8512 ;;; This is a modified version of `man'.
8513 ;;; Need to teach it how to lookup functions
8514 ;;;###autoload
8515 (defun cperl-perldoc (word)
8516 "Run `perldoc' on WORD."
8517 (interactive
8518 (list (let* ((default-entry (cperl-word-at-point))
8519 (input (read-string
8520 (format "perldoc entry%s: "
8521 (if (string= default-entry "")
8523 (format " (default %s)" default-entry))))))
8524 (if (string= input "")
8525 (if (string= default-entry "")
8526 (error "No perldoc args given")
8527 default-entry)
8528 input))))
8529 (require 'man)
8530 (let* ((case-fold-search nil)
8531 (is-func (and
8532 (string-match "^[a-z]+$" word)
8533 (string-match (concat "^" word "\\>")
8534 (documentation-property
8535 'cperl-short-docs
8536 'variable-documentation))))
8537 (Man-switches "")
8538 (manual-program (if is-func "perldoc -f" "perldoc")))
8539 (cond
8540 ((featurep 'xemacs)
8541 (let ((Manual-program "perldoc")
8542 (Manual-switches (if is-func (list "-f"))))
8543 (manual-entry word)))
8545 (Man-getpage-in-background word)))))
8547 ;;;###autoload
8548 (defun cperl-perldoc-at-point ()
8549 "Run a `perldoc' on the word around point."
8550 (interactive)
8551 (cperl-perldoc (cperl-word-at-point)))
8553 (defcustom pod2man-program "pod2man"
8554 "*File name for `pod2man'."
8555 :type 'file
8556 :group 'cperl)
8558 ;;; By Nick Roberts <Nick.Roberts@src.bae.co.uk> (with changes)
8559 (defun cperl-pod-to-manpage ()
8560 "Create a virtual manpage in Emacs from the Perl Online Documentation."
8561 (interactive)
8562 (require 'man)
8563 (let* ((pod2man-args (concat buffer-file-name " | nroff -man "))
8564 (bufname (concat "Man " buffer-file-name))
8565 (buffer (generate-new-buffer bufname)))
8566 (with-current-buffer buffer
8567 (let ((process-environment (copy-sequence process-environment)))
8568 ;; Prevent any attempt to use display terminal fanciness.
8569 (setenv "TERM" "dumb")
8570 (set-process-sentinel
8571 (start-process pod2man-program buffer "sh" "-c"
8572 (format (cperl-pod2man-build-command) pod2man-args))
8573 'Man-bgproc-sentinel)))))
8575 ;;; Updated version by him too
8576 (defun cperl-build-manpage ()
8577 "Create a virtual manpage in Emacs from the POD in the file."
8578 (interactive)
8579 (require 'man)
8580 (cond
8581 ((featurep 'xemacs)
8582 (let ((Manual-program "perldoc"))
8583 (manual-entry buffer-file-name)))
8585 (let* ((manual-program "perldoc")
8586 (Man-switches ""))
8587 (Man-getpage-in-background buffer-file-name)))))
8589 (defun cperl-pod2man-build-command ()
8590 "Builds the entire background manpage and cleaning command."
8591 (let ((command (concat pod2man-program " %s 2>/dev/null"))
8592 (flist (and (boundp 'Man-filter-list) Man-filter-list)))
8593 (while (and flist (car flist))
8594 (let ((pcom (car (car flist)))
8595 (pargs (cdr (car flist))))
8596 (setq command
8597 (concat command " | " pcom " "
8598 (mapconcat (lambda (phrase)
8599 (if (not (stringp phrase))
8600 (error "Malformed Man-filter-list"))
8601 phrase)
8602 pargs " ")))
8603 (setq flist (cdr flist))))
8604 command))
8607 (defun cperl-next-interpolated-REx-1 ()
8608 "Move point to next REx which has interpolated parts without //o.
8609 Skips RExes consisting of one interpolated variable.
8611 Note that skipped RExen are not performance hits."
8612 (interactive "")
8613 (cperl-next-interpolated-REx 1))
8615 (defun cperl-next-interpolated-REx-0 ()
8616 "Move point to next REx which has interpolated parts without //o."
8617 (interactive "")
8618 (cperl-next-interpolated-REx 0))
8620 (defun cperl-next-interpolated-REx (&optional skip beg limit)
8621 "Move point to next REx which has interpolated parts.
8622 SKIP is a list of possible types to skip, BEG and LIMIT are the starting
8623 point and the limit of search (default to point and end of buffer).
8625 SKIP may be a number, then it behaves as list of numbers up to SKIP; this
8626 semantic may be used as a numeric argument.
8628 Types are 0 for / $rex /o (interpolated once), 1 for /$rex/ (if $rex is
8629 a result of qr//, this is not a performance hit), t for the rest."
8630 (interactive "P")
8631 (if (numberp skip) (setq skip (list 0 skip)))
8632 (or beg (setq beg (point)))
8633 (or limit (setq limit (point-max))) ; needed for n-s-p-c
8634 (let (pp)
8635 (and (eq (get-text-property beg 'syntax-type) 'string)
8636 (setq beg (next-single-property-change beg 'syntax-type nil limit)))
8637 (cperl-map-pods-heres
8638 (function (lambda (s e p)
8639 (if (memq (get-text-property s 'REx-interpolated) skip)
8641 (setq pp s)
8642 nil))) ; nil stops
8643 'REx-interpolated beg limit)
8644 (if pp (goto-char pp)
8645 (message "No more interpolated REx"))))
8647 ;;; Initial version contributed by Trey Belew
8648 (defun cperl-here-doc-spell (&optional beg end)
8649 "Spell-check HERE-documents in the Perl buffer.
8650 If a region is highlighted, restricts to the region."
8651 (interactive "")
8652 (cperl-pod-spell t beg end))
8654 (defun cperl-pod-spell (&optional do-heres beg end)
8655 "Spell-check POD documentation.
8656 If invoked with prefix argument, will do HERE-DOCs instead.
8657 If a region is highlighted, restricts to the region."
8658 (interactive "P")
8659 (save-excursion
8660 (let (beg end)
8661 (if (cperl-mark-active)
8662 (setq beg (min (mark) (point))
8663 end (max (mark) (point)))
8664 (setq beg (point-min)
8665 end (point-max)))
8666 (cperl-map-pods-heres (function
8667 (lambda (s e p)
8668 (if do-heres
8669 (setq e (save-excursion
8670 (goto-char e)
8671 (forward-line -1)
8672 (point))))
8673 (ispell-region s e)
8675 (if do-heres 'here-doc-group 'in-pod)
8676 beg end))))
8678 (defun cperl-map-pods-heres (func &optional prop s end)
8679 "Executes a function over regions of pods or here-documents.
8680 PROP is the text-property to search for; default to `in-pod'. Stop when
8681 function returns nil."
8682 (let (pos posend has-prop (cont t))
8683 (or prop (setq prop 'in-pod))
8684 (or s (setq s (point-min)))
8685 (or end (setq end (point-max)))
8686 (cperl-update-syntaxification end end)
8687 (save-excursion
8688 (goto-char (setq pos s))
8689 (while (and cont (< pos end))
8690 (setq has-prop (get-text-property pos prop))
8691 (setq posend (next-single-property-change pos prop nil end))
8692 (and has-prop
8693 (setq cont (funcall func pos posend prop)))
8694 (setq pos posend)))))
8696 ;;; Based on code by Masatake YAMATO:
8697 (defun cperl-get-here-doc-region (&optional pos pod)
8698 "Return HERE document region around the point.
8699 Return nil if the point is not in a HERE document region. If POD is non-nil,
8700 will return a POD section if point is in a POD section."
8701 (or pos (setq pos (point)))
8702 (cperl-update-syntaxification pos pos)
8703 (if (or (eq 'here-doc (get-text-property pos 'syntax-type))
8704 (and pod
8705 (eq 'pod (get-text-property pos 'syntax-type))))
8706 (let ((b (cperl-beginning-of-property pos 'syntax-type))
8707 (e (next-single-property-change pos 'syntax-type)))
8708 (cons b (or e (point-max))))))
8710 (defun cperl-narrow-to-here-doc (&optional pos)
8711 "Narrows editing region to the HERE-DOC at POS.
8712 POS defaults to the point."
8713 (interactive "d")
8714 (or pos (setq pos (point)))
8715 (let ((p (cperl-get-here-doc-region pos)))
8716 (or p (error "Not inside a HERE document"))
8717 (narrow-to-region (car p) (cdr p))
8718 (message
8719 "When you are finished with narrow editing, type C-x n w")))
8721 (defun cperl-select-this-pod-or-here-doc (&optional pos)
8722 "Select the HERE-DOC (or POD section) at POS.
8723 POS defaults to the point."
8724 (interactive "d")
8725 (let ((p (cperl-get-here-doc-region pos t)))
8726 (if p
8727 (progn
8728 (goto-char (car p))
8729 (push-mark (cdr p) nil t)) ; Message, activate in transient-mode
8730 (message "I do not think POS is in POD or a HERE-doc..."))))
8732 (defun cperl-facemenu-add-face-function (face end)
8733 "A callback to process user-initiated font-change requests.
8734 Translates `bold', `italic', and `bold-italic' requests to insertion of
8735 corresponding POD directives, and `underline' to C<> POD directive.
8737 Such requests are usually bound to M-o LETTER."
8738 (or (get-text-property (point) 'in-pod)
8739 (error "Faces can only be set within POD"))
8740 (setq facemenu-end-add-face (if (eq face 'bold-italic) ">>" ">"))
8741 (cdr (or (assq face '((bold . "B<")
8742 (italic . "I<")
8743 (bold-italic . "B<I<")
8744 (underline . "C<")))
8745 (error "Face %s not configured for cperl-mode"
8746 face))))
8748 (defun cperl-time-fontification (&optional l step lim)
8749 "Times how long it takes to do incremental fontification in a region.
8750 L is the line to start at, STEP is the number of lines to skip when
8751 doing next incremental fontification, LIM is the maximal number of
8752 incremental fontification to perform. Messages are accumulated in
8753 *Messages* buffer.
8755 May be used for pinpointing which construct slows down buffer fontification:
8756 start with default arguments, then refine the slowdown regions."
8757 (interactive "nLine to start at: \nnStep to do incremental fontification: ")
8758 (or l (setq l 1))
8759 (or step (setq step 500))
8760 (or lim (setq lim 40))
8761 (let* ((timems (function (lambda ()
8762 (let ((tt (current-time)))
8763 (+ (* 1000 (nth 1 tt)) (/ (nth 2 tt) 1000))))))
8764 (tt (funcall timems)) (c 0) delta tot)
8765 (goto-char (point-min))
8766 (forward-line (1- l))
8767 (cperl-mode)
8768 (setq tot (- (- tt (setq tt (funcall timems)))))
8769 (message "cperl-mode at %s: %s" l tot)
8770 (while (and (< c lim) (not (eobp)))
8771 (forward-line step)
8772 (setq l (+ l step))
8773 (setq c (1+ c))
8774 (cperl-update-syntaxification (point) (point))
8775 (setq delta (- (- tt (setq tt (funcall timems)))) tot (+ tot delta))
8776 (message "to %s:%6s,%7s" l delta tot))
8777 tot))
8779 (defvar font-lock-cache-position)
8781 (defun cperl-emulate-lazy-lock (&optional window-size)
8782 "Emulate `lazy-lock' without `condition-case', so `debug-on-error' works.
8783 Start fontifying the buffer from the start (or end) using the given
8784 WINDOW-SIZE (units is lines). Negative WINDOW-SIZE starts at end, and
8785 goes backwards; default is -50. This function is not CPerl-specific; it
8786 may be used to debug problems with delayed incremental fontification."
8787 (interactive
8788 "nSize of window for incremental fontification, negative goes backwards: ")
8789 (or window-size (setq window-size -50))
8790 (let ((pos (if (> window-size 0)
8791 (point-min)
8792 (point-max)))
8794 (goto-char pos)
8795 (normal-mode)
8796 ;; Why needed??? With older font-locks???
8797 (set (make-local-variable 'font-lock-cache-position) (make-marker))
8798 (while (if (> window-size 0)
8799 (< pos (point-max))
8800 (> pos (point-min)))
8801 (setq p (progn
8802 (forward-line window-size)
8803 (point)))
8804 (font-lock-fontify-region (min p pos) (max p pos))
8805 (setq pos p))))
8808 (defun cperl-lazy-install ()) ; Avoid a warning
8809 (defun cperl-lazy-unstall ()) ; Avoid a warning
8811 (if (fboundp 'run-with-idle-timer)
8812 (progn
8813 (defvar cperl-help-shown nil
8814 "Non-nil means that the help was already shown now.")
8816 (defvar cperl-lazy-installed nil
8817 "Non-nil means that the lazy-help handlers are installed now.")
8819 (defun cperl-lazy-install ()
8820 "Switches on Auto-Help on Perl constructs (put in the message area).
8821 Delay of auto-help controlled by `cperl-lazy-help-time'."
8822 (interactive)
8823 (make-local-variable 'cperl-help-shown)
8824 (if (and (cperl-val 'cperl-lazy-help-time)
8825 (not cperl-lazy-installed))
8826 (progn
8827 (add-hook 'post-command-hook 'cperl-lazy-hook)
8828 (run-with-idle-timer
8829 (cperl-val 'cperl-lazy-help-time 1000000 5)
8831 'cperl-get-help-defer)
8832 (setq cperl-lazy-installed t))))
8834 (defun cperl-lazy-unstall ()
8835 "Switches off Auto-Help on Perl constructs (put in the message area).
8836 Delay of auto-help controlled by `cperl-lazy-help-time'."
8837 (interactive)
8838 (remove-hook 'post-command-hook 'cperl-lazy-hook)
8839 (cancel-function-timers 'cperl-get-help-defer)
8840 (setq cperl-lazy-installed nil))
8842 (defun cperl-lazy-hook ()
8843 (setq cperl-help-shown nil))
8845 (defun cperl-get-help-defer ()
8846 (if (not (memq major-mode '(perl-mode cperl-mode))) nil
8847 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t))
8848 (cperl-get-help)
8849 (setq cperl-help-shown t))))
8850 (cperl-lazy-install)))
8853 ;;; Plug for wrong font-lock:
8855 (defun cperl-font-lock-unfontify-region-function (beg end)
8856 (let* ((modified (buffer-modified-p)) (buffer-undo-list t)
8857 (inhibit-read-only t) (inhibit-point-motion-hooks t)
8858 before-change-functions after-change-functions
8859 deactivate-mark buffer-file-name buffer-file-truename)
8860 (remove-text-properties beg end '(face nil))
8861 (if (and (not modified) (buffer-modified-p))
8862 (set-buffer-modified-p nil))))
8864 (defun cperl-font-lock-fontify-region-function (beg end loudly)
8865 "Extends the region to safe positions, then calls the default function.
8866 Newer `font-lock's can do it themselves.
8867 We unwind only as far as needed for fontification. Syntaxification may
8868 do extra unwind via `cperl-unwind-to-safe'."
8869 (save-excursion
8870 (goto-char beg)
8871 (while (and beg
8872 (progn
8873 (beginning-of-line)
8874 (eq (get-text-property (setq beg (point)) 'syntax-type)
8875 'multiline)))
8876 (if (setq beg (cperl-beginning-of-property beg 'syntax-type))
8877 (goto-char beg)))
8878 (setq beg (point))
8879 (goto-char end)
8880 (while (and end
8881 (progn
8882 (or (bolp) (condition-case nil
8883 (forward-line 1)
8884 (error nil)))
8885 (eq (get-text-property (setq end (point)) 'syntax-type)
8886 'multiline)))
8887 (setq end (next-single-property-change end 'syntax-type nil (point-max)))
8888 (goto-char end))
8889 (setq end (point)))
8890 (font-lock-default-fontify-region beg end loudly))
8892 (defvar cperl-d-l nil)
8893 (defun cperl-fontify-syntaxically (end)
8894 ;; Some vars for debugging only
8895 ;; (message "Syntaxifying...")
8896 (let ((dbg (point)) (iend end) (idone cperl-syntax-done-to)
8897 (istate (car cperl-syntax-state))
8898 start from-start edebug-backtrace-buffer)
8899 (if (eq cperl-syntaxify-by-font-lock 'backtrace)
8900 (progn
8901 (require 'edebug)
8902 (let ((f 'edebug-backtrace))
8903 (funcall f)))) ; Avoid compile-time warning
8904 (or cperl-syntax-done-to
8905 (setq cperl-syntax-done-to (point-min)
8906 from-start t))
8907 (setq start (if (and cperl-hook-after-change
8908 (not from-start))
8909 cperl-syntax-done-to ; Fontify without change; ignore start
8910 ;; Need to forget what is after `start'
8911 (min cperl-syntax-done-to (point))))
8912 (goto-char start)
8913 (beginning-of-line)
8914 (setq start (point))
8915 (and cperl-syntaxify-unwind
8916 (setq end (cperl-unwind-to-safe t end)
8917 start (point)))
8918 (and (> end start)
8919 (setq cperl-syntax-done-to start) ; In case what follows fails
8920 (cperl-find-pods-heres start end t nil t))
8921 (if (memq cperl-syntaxify-by-font-lock '(backtrace message))
8922 (message "Syxify req=%s..%s actual=%s..%s done-to: %s=>%s statepos: %s=>%s"
8923 dbg iend start end idone cperl-syntax-done-to
8924 istate (car cperl-syntax-state))) ; For debugging
8925 nil)) ; Do not iterate
8927 (defun cperl-fontify-update (end)
8928 (let ((pos (point-min)) prop posend)
8929 (setq end (point-max))
8930 (while (< pos end)
8931 (setq prop (get-text-property pos 'cperl-postpone)
8932 posend (next-single-property-change pos 'cperl-postpone nil end))
8933 (and prop (put-text-property pos posend (car prop) (cdr prop)))
8934 (setq pos posend)))
8935 nil) ; Do not iterate
8937 (defun cperl-fontify-update-bad (end)
8938 ;; Since fontification happens with different region than syntaxification,
8939 ;; do to the end of buffer, not to END;;; likewise, start earlier if needed
8940 (let* ((pos (point)) (prop (get-text-property pos 'cperl-postpone)) posend)
8941 (if prop
8942 (setq pos (or (cperl-beginning-of-property
8943 (cperl-1+ pos) 'cperl-postpone)
8944 (point-min))))
8945 (while (< pos end)
8946 (setq posend (next-single-property-change pos 'cperl-postpone))
8947 (and prop (put-text-property pos posend (car prop) (cdr prop)))
8948 (setq pos posend)
8949 (setq prop (get-text-property pos 'cperl-postpone))))
8950 nil) ; Do not iterate
8952 ;; Called when any modification is made to buffer text.
8953 (defun cperl-after-change-function (beg end old-len)
8954 ;; We should have been informed about changes by `font-lock'. Since it
8955 ;; does not inform as which calls are deferred, do it ourselves
8956 (if cperl-syntax-done-to
8957 (setq cperl-syntax-done-to (min cperl-syntax-done-to beg))))
8959 (defun cperl-update-syntaxification (from to)
8960 (cond
8961 ((not cperl-use-syntax-table-text-property) nil)
8962 ((fboundp 'syntax-propertize) (syntax-propertize to))
8963 ((and cperl-syntaxify-by-font-lock
8964 (or (null cperl-syntax-done-to)
8965 (< cperl-syntax-done-to to)))
8966 (save-excursion
8967 (goto-char from)
8968 (cperl-fontify-syntaxically to)))))
8970 (defvar cperl-version
8971 (let ((v "Revision: 6.2"))
8972 (string-match ":\\s *\\([0-9.]+\\)" v)
8973 (substring v (match-beginning 1) (match-end 1)))
8974 "Version of IZ-supported CPerl package this file is based on.")
8976 (provide 'cperl-mode)
8978 ;;; cperl-mode.el ends here