Add declarations for builds without X.
[bpt/emacs.git] / lisp / progmodes / cperl-mode.el
1 ;;; cperl-mode.el --- Perl code editing commands for Emacs
2
3 ;; Copyright (C) 1985, 1986, 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 ;; 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
6
7 ;; Author: Ilya Zakharevich and Bob Olson
8 ;; Maintainer: Ilya Zakharevich <ilyaz@cpan.org>
9 ;; Keywords: languages, Perl
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Corrections made by Ilya Zakharevich ilyaz@cpan.org
27
28 ;;; Commentary:
29
30 ;; You can either fine-tune the bells and whistles of this mode or
31 ;; bulk enable them by putting
32
33 ;; (setq cperl-hairy t)
34
35 ;; in your .emacs file. (Emacs rulers do not consider it politically
36 ;; correct to make whistles enabled by default.)
37
38 ;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<<
39 ;; or as help on variables `cperl-tips', `cperl-problems', <<<<<<
40 ;; `cperl-praise', `cperl-speed'. <<<<<<
41
42 ;; The mode information (on C-h m) provides some customization help.
43 ;; If you use font-lock feature of this mode, it is advisable to use
44 ;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock.
45
46 ;; Faces used now: three faces for first-class and second-class keywords
47 ;; and control flow words, one for each: comments, string, labels,
48 ;; functions definitions and packages, arrays, hashes, and variable
49 ;; definitions. If you do not see all these faces, your font-lock does
50 ;; not define them, so you need to define them manually.
51
52 ;; This mode supports font-lock, imenu and mode-compile. In the
53 ;; hairy version font-lock is on, but you should activate imenu
54 ;; yourself (note that mode-compile is not standard yet). Well, you
55 ;; can use imenu from keyboard anyway (M-x imenu), but it is better
56 ;; to bind it like that:
57
58 ;; (define-key global-map [M-S-down-mouse-3] 'imenu)
59
60 ;;; Font lock bugs as of v4.32:
61
62 ;; The following kinds of Perl code erroneously start strings:
63 ;; \$` \$' \$"
64 ;; $opt::s $opt_s $opt{s} (s => ...) /\s+.../
65 ;; likewise with m, tr, y, q, qX instead of s
66
67 ;;; Code:
68 \f
69 (defvar vc-rcs-header)
70 (defvar vc-sccs-header)
71
72 (eval-when-compile
73 (condition-case nil
74 (require 'custom)
75 (error nil))
76 (condition-case nil
77 (require 'man)
78 (error nil))
79 (defvar cperl-can-font-lock
80 (or (featurep 'xemacs)
81 (and (boundp 'emacs-major-version)
82 (or window-system
83 (> emacs-major-version 20)))))
84 (if cperl-can-font-lock
85 (require 'font-lock))
86 (defvar msb-menu-cond)
87 (defvar gud-perldb-history)
88 (defvar font-lock-background-mode) ; not in Emacs
89 (defvar font-lock-display-type) ; ditto
90 (defvar paren-backwards-message) ; Not in newer XEmacs?
91 (or (fboundp 'defgroup)
92 (defmacro defgroup (name val doc &rest arr)
93 nil))
94 (or (fboundp 'custom-declare-variable)
95 (defmacro defcustom (name val doc &rest arr)
96 `(defvar ,name ,val ,doc)))
97 (or (and (fboundp 'custom-declare-variable)
98 (string< "19.31" emacs-version)) ; Checked with 19.30: defface does not work
99 (defmacro defface (&rest arr)
100 nil))
101 ;; Avoid warning (tmp definitions)
102 (or (fboundp 'x-color-defined-p)
103 (defmacro x-color-defined-p (col)
104 (cond ((fboundp 'color-defined-p) `(color-defined-p ,col))
105 ;; XEmacs >= 19.12
106 ((fboundp 'valid-color-name-p) `(valid-color-name-p ,col))
107 ;; XEmacs 19.11
108 ((fboundp 'x-valid-color-name-p) `(x-valid-color-name-p ,col))
109 (t '(error "Cannot implement color-defined-p")))))
110 (defmacro cperl-is-face (arg) ; Takes quoted arg
111 (cond ((fboundp 'find-face)
112 `(find-face ,arg))
113 (;;(and (fboundp 'face-list)
114 ;; (face-list))
115 (fboundp 'face-list)
116 `(member ,arg (and (fboundp 'face-list)
117 (face-list))))
118 (t
119 `(boundp ,arg))))
120 (defmacro cperl-make-face (arg descr) ; Takes unquoted arg
121 (cond ((fboundp 'make-face)
122 `(make-face (quote ,arg)))
123 (t
124 `(defvar ,arg (quote ,arg) ,descr))))
125 (defmacro cperl-force-face (arg descr) ; Takes unquoted arg
126 `(progn
127 (or (cperl-is-face (quote ,arg))
128 (cperl-make-face ,arg ,descr))
129 (or (boundp (quote ,arg)) ; We use unquoted variants too
130 (defvar ,arg (quote ,arg) ,descr))))
131 (if (featurep 'xemacs)
132 (defmacro cperl-etags-snarf-tag (file line)
133 `(progn
134 (beginning-of-line 2)
135 (list ,file ,line)))
136 (defmacro cperl-etags-snarf-tag (file line)
137 `(etags-snarf-tag)))
138 (if (featurep 'xemacs)
139 (defmacro cperl-etags-goto-tag-location (elt)
140 ;;(progn
141 ;; (switch-to-buffer (get-file-buffer (elt ,elt 0)))
142 ;; (set-buffer (get-file-buffer (elt ,elt 0)))
143 ;; Probably will not work due to some save-excursion???
144 ;; Or save-file-position?
145 ;; (message "Did I get to line %s?" (elt ,elt 1))
146 `(goto-line (string-to-int (elt ,elt 1))))
147 ;;)
148 (defmacro cperl-etags-goto-tag-location (elt)
149 `(etags-goto-tag-location ,elt))))
150
151 (defvar cperl-can-font-lock
152 (or (featurep 'xemacs)
153 (and (boundp 'emacs-major-version)
154 (or window-system
155 (> emacs-major-version 20)))))
156
157 (defun cperl-choose-color (&rest list)
158 (let (answer)
159 (while list
160 (or answer
161 (if (or (x-color-defined-p (car list))
162 (null (cdr list)))
163 (setq answer (car list))))
164 (setq list (cdr list)))
165 answer))
166
167 (defgroup cperl nil
168 "Major mode for editing Perl code."
169 :prefix "cperl-"
170 :group 'languages
171 :version "20.3")
172
173 (defgroup cperl-indentation-details nil
174 "Indentation."
175 :prefix "cperl-"
176 :group 'cperl)
177
178 (defgroup cperl-affected-by-hairy nil
179 "Variables affected by `cperl-hairy'."
180 :prefix "cperl-"
181 :group 'cperl)
182
183 (defgroup cperl-autoinsert-details nil
184 "Auto-insert tuneup."
185 :prefix "cperl-"
186 :group 'cperl)
187
188 (defgroup cperl-faces nil
189 "Fontification colors."
190 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
191 :prefix "cperl-"
192 :group 'cperl)
193
194 (defgroup cperl-speed nil
195 "Speed vs. validity tuneup."
196 :prefix "cperl-"
197 :group 'cperl)
198
199 (defgroup cperl-help-system nil
200 "Help system tuneup."
201 :prefix "cperl-"
202 :group 'cperl)
203
204 \f
205 (defcustom cperl-extra-newline-before-brace nil
206 "*Non-nil means that if, elsif, while, until, else, for, foreach
207 and do constructs look like:
208
209 if ()
210 {
211 }
212
213 instead of:
214
215 if () {
216 }"
217 :type 'boolean
218 :group 'cperl-autoinsert-details)
219
220 (defcustom cperl-extra-newline-before-brace-multiline
221 cperl-extra-newline-before-brace
222 "*Non-nil means the same as `cperl-extra-newline-before-brace', but
223 for constructs with multiline if/unless/while/until/for/foreach condition."
224 :type 'boolean
225 :group 'cperl-autoinsert-details)
226
227 (defcustom cperl-indent-level 2
228 "*Indentation of CPerl statements with respect to containing block."
229 :type 'integer
230 :group 'cperl-indentation-details)
231
232 ;; Is is not unusual to put both things like perl-indent-level and
233 ;; cperl-indent-level in the local variable section of a file. If only
234 ;; one of perl-mode and cperl-mode is in use, a warning will be issued
235 ;; about the variable. Autoload these here, so that no warning is
236 ;; issued when using either perl-mode or cperl-mode.
237 ;;;###autoload(put 'cperl-indent-level 'safe-local-variable 'integerp)
238 ;;;###autoload(put 'cperl-brace-offset 'safe-local-variable 'integerp)
239 ;;;###autoload(put 'cperl-continued-brace-offset 'safe-local-variable 'integerp)
240 ;;;###autoload(put 'cperl-label-offset 'safe-local-variable 'integerp)
241 ;;;###autoload(put 'cperl-continued-statement-offset 'safe-local-variable 'integerp)
242 ;;;###autoload(put 'cperl-extra-newline-before-brace 'safe-local-variable 'booleanp)
243 ;;;###autoload(put 'cperl-merge-trailing-else 'safe-local-variable 'booleanp)
244
245 (defcustom cperl-lineup-step nil
246 "*`cperl-lineup' will always lineup at multiple of this number.
247 If nil, the value of `cperl-indent-level' will be used."
248 :type '(choice (const nil) integer)
249 :group 'cperl-indentation-details)
250
251 (defcustom cperl-brace-imaginary-offset 0
252 "*Imagined indentation of a Perl open brace that actually follows a statement.
253 An open brace following other text is treated as if it were this far
254 to the right of the start of its line."
255 :type 'integer
256 :group 'cperl-indentation-details)
257
258 (defcustom cperl-brace-offset 0
259 "*Extra indentation for braces, compared with other text in same context."
260 :type 'integer
261 :group 'cperl-indentation-details)
262 (defcustom cperl-label-offset -2
263 "*Offset of CPerl label lines relative to usual indentation."
264 :type 'integer
265 :group 'cperl-indentation-details)
266 (defcustom cperl-min-label-indent 1
267 "*Minimal offset of CPerl label lines."
268 :type 'integer
269 :group 'cperl-indentation-details)
270 (defcustom cperl-continued-statement-offset 2
271 "*Extra indent for lines not starting new statements."
272 :type 'integer
273 :group 'cperl-indentation-details)
274 (defcustom cperl-continued-brace-offset 0
275 "*Extra indent for substatements that start with open-braces.
276 This is in addition to cperl-continued-statement-offset."
277 :type 'integer
278 :group 'cperl-indentation-details)
279 (defcustom cperl-close-paren-offset -1
280 "*Extra indent for substatements that start with close-parenthesis."
281 :type 'integer
282 :group 'cperl-indentation-details)
283
284 (defcustom cperl-indent-wrt-brace t
285 "*Non-nil means indent statements in if/etc block relative brace, not if/etc.
286 Versions 5.2 ... 5.20 behaved as if this were `nil'."
287 :type 'boolean
288 :group 'cperl-indentation-details)
289
290 (defcustom cperl-auto-newline nil
291 "*Non-nil means automatically newline before and after braces,
292 and after colons and semicolons, inserted in CPerl code. The following
293 \\[cperl-electric-backspace] will remove the inserted whitespace.
294 Insertion after colons requires both this variable and
295 `cperl-auto-newline-after-colon' set."
296 :type 'boolean
297 :group 'cperl-autoinsert-details)
298
299 (defcustom cperl-autoindent-on-semi nil
300 "*Non-nil means automatically indent after insertion of (semi)colon.
301 Active if `cperl-auto-newline' is false."
302 :type 'boolean
303 :group 'cperl-autoinsert-details)
304
305 (defcustom cperl-auto-newline-after-colon nil
306 "*Non-nil means automatically newline even after colons.
307 Subject to `cperl-auto-newline' setting."
308 :type 'boolean
309 :group 'cperl-autoinsert-details)
310
311 (defcustom cperl-tab-always-indent t
312 "*Non-nil means TAB in CPerl mode should always reindent the current line,
313 regardless of where in the line point is when the TAB command is used."
314 :type 'boolean
315 :group 'cperl-indentation-details)
316
317 (defcustom cperl-font-lock nil
318 "*Non-nil (and non-null) means CPerl buffers will use `font-lock-mode'.
319 Can be overwritten by `cperl-hairy' if nil."
320 :type '(choice (const null) boolean)
321 :group 'cperl-affected-by-hairy)
322
323 (defcustom cperl-electric-lbrace-space nil
324 "*Non-nil (and non-null) means { after $ should be preceded by ` '.
325 Can be overwritten by `cperl-hairy' if nil."
326 :type '(choice (const null) boolean)
327 :group 'cperl-affected-by-hairy)
328
329 (defcustom cperl-electric-parens-string "({[]})<"
330 "*String of parentheses that should be electric in CPerl.
331 Closing ones are electric only if the region is highlighted."
332 :type 'string
333 :group 'cperl-affected-by-hairy)
334
335 (defcustom cperl-electric-parens nil
336 "*Non-nil (and non-null) means parentheses should be electric in CPerl.
337 Can be overwritten by `cperl-hairy' if nil."
338 :type '(choice (const null) boolean)
339 :group 'cperl-affected-by-hairy)
340
341 (defvar zmacs-regions) ; Avoid warning
342
343 (defcustom cperl-electric-parens-mark
344 (and window-system
345 (or (and (boundp 'transient-mark-mode) ; For Emacs
346 transient-mark-mode)
347 (and (boundp 'zmacs-regions) ; For XEmacs
348 zmacs-regions)))
349 "*Not-nil means that electric parens look for active mark.
350 Default is yes if there is visual feedback on mark."
351 :type 'boolean
352 :group 'cperl-autoinsert-details)
353
354 (defcustom cperl-electric-linefeed nil
355 "*If true, LFD should be hairy in CPerl, otherwise C-c LFD is hairy.
356 In any case these two mean plain and hairy linefeeds together.
357 Can be overwritten by `cperl-hairy' if nil."
358 :type '(choice (const null) boolean)
359 :group 'cperl-affected-by-hairy)
360
361 (defcustom cperl-electric-keywords nil
362 "*Not-nil (and non-null) means keywords are electric in CPerl.
363 Can be overwritten by `cperl-hairy' if nil.
364
365 Uses `abbrev-mode' to do the expansion. If you want to use your
366 own abbrevs in cperl-mode, but do not want keywords to be
367 electric, you must redefine `cperl-mode-abbrev-table': do
368 \\[edit-abbrevs], search for `cperl-mode-abbrev-table', and, in
369 that paragraph, delete the words that appear at the ends of lines and
370 that begin with \"cperl-electric\".
371 "
372 :type '(choice (const null) boolean)
373 :group 'cperl-affected-by-hairy)
374
375 (defcustom cperl-electric-backspace-untabify t
376 "*Not-nil means electric-backspace will untabify in CPerl."
377 :type 'boolean
378 :group 'cperl-autoinsert-details)
379
380 (defcustom cperl-hairy nil
381 "*Not-nil means most of the bells and whistles are enabled in CPerl.
382 Affects: `cperl-font-lock', `cperl-electric-lbrace-space',
383 `cperl-electric-parens', `cperl-electric-linefeed', `cperl-electric-keywords',
384 `cperl-info-on-command-no-prompt', `cperl-clobber-lisp-bindings',
385 `cperl-lazy-help-time'."
386 :type 'boolean
387 :group 'cperl-affected-by-hairy)
388
389 (defcustom cperl-comment-column 32
390 "*Column to put comments in CPerl (use \\[cperl-indent] to lineup with code)."
391 :type 'integer
392 :group 'cperl-indentation-details)
393
394 (defcustom cperl-indent-comment-at-column-0 nil
395 "*Non-nil means that comment started at column 0 should be indentable."
396 :type 'boolean
397 :group 'cperl-indentation-details)
398
399 (defcustom cperl-vc-sccs-header '("($sccs) = ('%W\%' =~ /(\\d+(\\.\\d+)+)/) ;")
400 "*Special version of `vc-sccs-header' that is used in CPerl mode buffers."
401 :type '(repeat string)
402 :group 'cperl)
403
404 (defcustom cperl-vc-rcs-header '("($rcs) = (' $Id\$ ' =~ /(\\d+(\\.\\d+)+)/);")
405 "*Special version of `vc-rcs-header' that is used in CPerl mode buffers."
406 :type '(repeat string)
407 :group 'cperl)
408
409 ;; This became obsolete...
410 (defvar cperl-vc-header-alist nil)
411 (make-obsolete-variable
412 'cperl-vc-header-alist
413 "use cperl-vc-rcs-header or cperl-vc-sccs-header instead.")
414
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)
424
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)
431
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)
438
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)
444
445 (defcustom cperl-pod-face 'font-lock-comment-face
446 "*Face for POD highlighting."
447 :type 'face
448 :group 'cperl-faces)
449
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)
455
456 (defcustom cperl-here-face 'font-lock-string-face
457 "*Face for here-docs highlighting."
458 :type 'face
459 :group 'cperl-faces)
460
461 ;;; Some double-evaluation happened with font-locks... Needed with 21.2...
462 (defvar cperl-singly-quote-face (featurep 'xemacs))
463
464 (defcustom cperl-invalid-face 'underline
465 "*Face for highlighting trailing whitespace."
466 :type 'face
467 :version "21.1"
468 :group 'cperl-faces)
469
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)
474
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)
479
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)
488
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)
494
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)
500
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)
507
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)
513
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)
518
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)
523
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)
529
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)
535
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)
541
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)
546
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)
552
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)
558
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)
563
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)
568
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)
574
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)
579
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)
586
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)
592
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)
599
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)
605
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)
612
613 (defcustom cperl-syntaxify-by-font-lock
614 (and cperl-can-font-lock
615 (boundp 'parse-sexp-lookup-properties))
616 "*Non-nil means that CPerl uses `font-lock's routines for syntaxification."
617 :type '(choice (const message) boolean)
618 :group 'cperl-speed)
619
620 (defcustom cperl-syntaxify-unwind
621 t
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)
626
627 (defcustom cperl-syntaxify-for-menu
628 t
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)
633
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)
653
654 (defvar cperl-dark-background
655 (cperl-choose-color "navy" "os2blue" "darkgreen"))
656 (defvar cperl-dark-foreground
657 (cperl-choose-color "orchid1" "orange"))
658
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)
671
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)
684
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)
697
698 \f
699
700 ;;; Short extra-docs.
701
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.
707
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.
713
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 :-().
719
720 Note that to enable Compile choices in the menu you need to install
721 mode-compile.el.
722
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:
725
726 (defalias 'perl-mode 'cperl-mode)
727
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
732
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.
736
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.
741
742 Run Perl/Tools/Insert-spaces-if-needed to fix your lazy typing.
743
744 Switch auto-help on/off with Perl/Tools/Auto-help.
745
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
748
749 \\[normal-mode]
750
751 In cases of more severe confusion sometimes it is helpful to do
752
753 \\[load-library] cperl-mode RET
754 \\[normal-mode]
755
756 Before reporting (non-)problems look in the problem section of online
757 micro-docs on what I know about CPerl problems.")
758
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
764
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).
768
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).")
772
773 (defvar cperl-problems-old-emaxen 'please-ignore-this-line
774 "Description of problems in CPerl mode specific for older Emacs versions.
775
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).
781
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.
787
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.
794
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).
800
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).
804
805 Similar problems arise in regexps, when /(\\s|$)/ should be rewritten
806 as /($|\\s)/. Note that such a transposition is not always possible.
807
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.
812
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'.")
816
817 (defvar cperl-praise 'please-ignore-this-line
818 "Advantages of CPerl mode.
819
820 0) It uses the newest `syntax-table' property ;-);
821
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.
825
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.
829
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);
834
835 3) Everything is customizable, one-by-one or in a big sweep;
836
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 impoves readability (in one
843 interactive sweep over the buffer);
844 d) Has support for imenu, including:
845 1) Separate unordered list of \"interesting places\";
846 2) Separate TOC of POD sections;
847 3) Separate list of packages;
848 4) Hierarchical view of methods in (sub)packages;
849 5) and functions (by the full name - with package);
850 e) Has an interface to INFO docs for Perl; The interface is
851 very flexible, including shrink-wrapping of
852 documentation buffer/frame;
853 f) Has a builtin list of one-line explanations for perl constructs.
854 g) Can show these explanations if you stay long enough at the
855 corresponding place (or on demand);
856 h) Has an enhanced fontification (using 3 or 4 additional faces
857 comparing to font-lock - basically, different
858 namespaces in Perl have different colors);
859 i) Can construct TAGS basing on its knowledge of Perl syntax,
860 the standard menu has 6 different way to generate
861 TAGS (if \"by directory\", .xs files - with C-language
862 bindings - are included in the scan);
863 j) Can build a hierarchical view of classes (via imenu) basing
864 on generated TAGS file;
865 k) Has electric parentheses, electric newlines, uses Abbrev
866 for electric logical constructs
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 }
874 to
875 B if A;
876
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.
889
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).
893
894 6) Indent-region improves inline-comments as well; also corrects
895 whitespace *inside* the conditional/loop constructs.
896
897 7) Fill-paragraph correctly handles multi-line comments;
898
899 8) Can switch to different indentation styles by one command, and restore
900 the settings present before the switch.
901
902 9) When doing indentation of control constructs, may correct
903 line-breaks/spacing between elements of the construct.
904
905 10) Uses a linear-time algorith for indentation of regions (on Emaxen with
906 capable syntax engines).
907
908 11) Syntax-highlight, indentation, sexp-recognition inside regular expressions.
909 ")
910
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.)
914
915 There is a perception that CPerl is slower than alternatives. This part
916 of documentation is designed to overcome this misconception.
917
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.
923
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
927
928 A1) CPerl may work around these deficiencies (for big chunks, mostly
929 PODs and HERE-documents), or
930 A2) On capable Emaxen CPerl will use improved syntax-handlings
931 which reads mark-up hints directly.
932
933 The scan in case A2 is much more comprehensive, thus may be slower.
934
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).
938
939 One can disable the scan altogether (both A1 and A2) by setting
940 `cperl-pod-here-scan'
941 to nil.
942
943 B) Speed of editing operations.
944
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.
951
952 One can unset `cperl-syntaxify-unwind'. This might speed up editing
953 of, say, long POD sections.")
954
955 (defvar cperl-tips-faces 'please-ignore-this-line
956 "CPerl mode uses following faces for highlighting:
957
958 `cperl-array-face' Array names
959 `cperl-hash-face' Hash names
960 `font-lock-comment-face' Comments, PODs and whatever is considered
961 syntaxically to be not code
962 `font-lock-constant-face' HERE-doc delimiters, labels, delimiters of
963 2-arg operators s/y/tr/ or of RExen,
964 `font-lock-warning-face' Special-cased m// and s//foo/,
965 `font-lock-function-name-face' _ as a target of a file tests, file tests,
966 subroutine names at the moment of definition
967 (except those conflicting with Perl operators),
968 package names (when recognized), format names
969 `font-lock-keyword-face' Control flow switch constructs, declarators
970 `cperl-nonoverridable-face' Non-overridable keywords, modifiers of RExen
971 `font-lock-string-face' Strings, qw() constructs, RExen, POD sections,
972 literal parts and the terminator of formats
973 and whatever is syntaxically considered
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' Trailing whitespace
979
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.
984
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.)
987
988 In regular expressions (except character classes):
989 `font-lock-string-face' \"Normal\" stuff and non-0-length constructs
990 `font-lock-constant-face': Delimiters
991 `font-lock-warning-face' Special-cased m// and s//foo/,
992 Mismatched closing delimiters, parens
993 we couldn't match, misplaced quantifiers,
994 unrecognized escape sequences
995 `cperl-nonoverridable-face' Modifiers, as gism in m/REx/gism
996 `font-lock-type-face' POSIX classes inside charclasses,
997 escape sequences with arguments (\x \23 \p \N)
998 and others match-a-char escape sequences
999 `font-lock-keyword-face' Capturing parens, and |
1000 `font-lock-function-name-face' Special symbols: $ ^ . [ ] [^ ] (?{ }) (??{ })
1001 `font-lock-builtin-face' \"Remaining\" 0-length constructs, executable
1002 parts of a REx, not-capturing parens
1003 `font-lock-variable-name-face' Interpolated constructs, embedded code
1004 `font-lock-comment-face' Embedded comments
1005
1006 ")
1007
1008 \f
1009
1010 ;;; Portability stuff:
1011
1012 (defmacro cperl-define-key (emacs-key definition &optional xemacs-key)
1013 `(define-key cperl-mode-map
1014 ,(if xemacs-key
1015 `(if (featurep 'xemacs) ,xemacs-key ,emacs-key)
1016 emacs-key)
1017 ,definition))
1018
1019 (defvar cperl-del-back-ch
1020 (car (append (where-is-internal 'delete-backward-char)
1021 (where-is-internal 'backward-delete-char-untabify)))
1022 "Character generated by key bound to `delete-backward-char'.")
1023
1024 (and (vectorp cperl-del-back-ch) (= (length cperl-del-back-ch) 1)
1025 (setq cperl-del-back-ch (aref cperl-del-back-ch 0)))
1026
1027 (defun cperl-mark-active () (mark)) ; Avoid undefined warning
1028 (if (featurep 'xemacs)
1029 (progn
1030 ;; "Active regions" are on: use region only if active
1031 ;; "Active regions" are off: use region unconditionally
1032 (defun cperl-use-region-p ()
1033 (if zmacs-regions (mark) t)))
1034 (defun cperl-use-region-p ()
1035 (if transient-mark-mode mark-active t))
1036 (defun cperl-mark-active () mark-active))
1037
1038 (defsubst cperl-enable-font-lock ()
1039 cperl-can-font-lock)
1040
1041 (defun cperl-putback-char (c) ; Emacs 19
1042 (set 'unread-command-events (list c))) ; Avoid undefined warning
1043
1044 (if (featurep 'xemacs)
1045 (defun cperl-putback-char (c) ; XEmacs >= 19.12
1046 (setq unread-command-events (list (eval '(character-to-event c))))))
1047
1048 (or (fboundp 'uncomment-region)
1049 (defun uncomment-region (beg end)
1050 (interactive "r")
1051 (comment-region beg end -1)))
1052
1053 (defvar cperl-do-not-fontify
1054 (if (string< emacs-version "19.30")
1055 'fontified
1056 'lazy-lock)
1057 "Text property which inhibits refontification.")
1058
1059 (defsubst cperl-put-do-not-fontify (from to &optional post)
1060 ;; If POST, do not do it with postponed fontification
1061 (if (and post cperl-syntaxify-by-font-lock)
1062 nil
1063 (put-text-property (max (point-min) (1- from))
1064 to cperl-do-not-fontify t)))
1065
1066 (defcustom cperl-mode-hook nil
1067 "Hook run by CPerl mode."
1068 :type 'hook
1069 :group 'cperl)
1070
1071 (defvar cperl-syntax-state nil)
1072 (defvar cperl-syntax-done-to nil)
1073 (defvar cperl-emacs-can-parse (> (length (save-excursion
1074 (parse-partial-sexp (point) (point)))) 9))
1075 \f
1076 ;; Make customization possible "in reverse"
1077 (defsubst cperl-val (symbol &optional default hairy)
1078 (cond
1079 ((eq (symbol-value symbol) 'null) default)
1080 (cperl-hairy (or hairy t))
1081 (t (symbol-value symbol))))
1082 \f
1083
1084 (defun cperl-make-indent (column &optional minimum keep)
1085 "Makes indent of the current line the requested amount.
1086 Unless KEEP, removes the old indentation. Works around a bug in ancient
1087 versions of Emacs."
1088 (let ((prop (get-text-property (point) 'syntax-type)))
1089 (or keep
1090 (delete-horizontal-space))
1091 (indent-to column minimum)
1092 ;; In old versions (e.g., 19.33) `indent-to' would not inherit properties
1093 (and prop
1094 (> (current-column) 0)
1095 (save-excursion
1096 (beginning-of-line)
1097 (or (get-text-property (point) 'syntax-type)
1098 (and (looking-at "\\=[ \t]")
1099 (put-text-property (point) (match-end 0)
1100 'syntax-type prop)))))))
1101
1102 ;;; Probably it is too late to set these guys already, but it can help later:
1103
1104 ;;;(and cperl-clobber-mode-lists
1105 ;;;(setq auto-mode-alist
1106 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist ))
1107 ;;;(and (boundp 'interpreter-mode-alist)
1108 ;;; (setq interpreter-mode-alist (append interpreter-mode-alist
1109 ;;; '(("miniperl" . perl-mode))))))
1110 (eval-when-compile
1111 (mapc (lambda (p)
1112 (condition-case nil
1113 (require p)
1114 (error nil)))
1115 '(imenu easymenu etags timer man info))
1116 (if (fboundp 'ps-extend-face-list)
1117 (defmacro cperl-ps-extend-face-list (arg)
1118 `(ps-extend-face-list ,arg))
1119 (defmacro cperl-ps-extend-face-list (arg)
1120 `(error "This version of Emacs has no `ps-extend-face-list'")))
1121 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs,
1122 ;; macros instead of defsubsts don't work on Emacs, so we do the
1123 ;; expansion manually. Any other suggestions?
1124 (require 'cl))
1125
1126 (defvar cperl-mode-abbrev-table nil
1127 "Abbrev table in use in CPerl mode buffers.")
1128
1129 (add-hook 'edit-var-mode-alist '(perl-mode (regexp . "^cperl-")))
1130
1131 (defvar cperl-mode-map () "Keymap used in CPerl mode.")
1132
1133 (if cperl-mode-map nil
1134 (setq cperl-mode-map (make-sparse-keymap))
1135 (cperl-define-key "{" 'cperl-electric-lbrace)
1136 (cperl-define-key "[" 'cperl-electric-paren)
1137 (cperl-define-key "(" 'cperl-electric-paren)
1138 (cperl-define-key "<" 'cperl-electric-paren)
1139 (cperl-define-key "}" 'cperl-electric-brace)
1140 (cperl-define-key "]" 'cperl-electric-rparen)
1141 (cperl-define-key ")" 'cperl-electric-rparen)
1142 (cperl-define-key ";" 'cperl-electric-semi)
1143 (cperl-define-key ":" 'cperl-electric-terminator)
1144 (cperl-define-key "\C-j" 'newline-and-indent)
1145 (cperl-define-key "\C-c\C-j" 'cperl-linefeed)
1146 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless)
1147 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline)
1148 (cperl-define-key "\C-c\C-k" 'cperl-toggle-abbrev)
1149 (cperl-define-key "\C-c\C-w" 'cperl-toggle-construct-fix)
1150 (cperl-define-key "\C-c\C-f" 'auto-fill-mode)
1151 (cperl-define-key "\C-c\C-e" 'cperl-toggle-electric)
1152 (cperl-define-key "\C-c\C-b" 'cperl-find-bad-style)
1153 (cperl-define-key "\C-c\C-p" 'cperl-pod-spell)
1154 (cperl-define-key "\C-c\C-d" 'cperl-here-doc-spell)
1155 (cperl-define-key "\C-c\C-n" 'cperl-narrow-to-here-doc)
1156 (cperl-define-key "\C-c\C-v" 'cperl-next-interpolated-REx)
1157 (cperl-define-key "\C-c\C-x" 'cperl-next-interpolated-REx-0)
1158 (cperl-define-key "\C-c\C-y" 'cperl-next-interpolated-REx-1)
1159 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp)
1160 (cperl-define-key "\C-c\C-hp" 'cperl-perldoc)
1161 (cperl-define-key "\C-c\C-hP" 'cperl-perldoc-at-point)
1162 (cperl-define-key "\e\C-q" 'cperl-indent-exp) ; Usually not bound
1163 (cperl-define-key [?\C-\M-\|] 'cperl-lineup
1164 [(control meta |)])
1165 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph)
1166 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment)
1167 (cperl-define-key "\177" 'cperl-electric-backspace)
1168 (cperl-define-key "\t" 'cperl-indent-command)
1169 ;; don't clobber the backspace binding:
1170 (cperl-define-key "\C-c\C-hF" 'cperl-info-on-command
1171 [(control c) (control h) F])
1172 (if (cperl-val 'cperl-clobber-lisp-bindings)
1173 (progn
1174 (cperl-define-key "\C-hf"
1175 ;;(concat (char-to-string help-char) "f") ; does not work
1176 'cperl-info-on-command
1177 [(control h) f])
1178 (cperl-define-key "\C-hv"
1179 ;;(concat (char-to-string help-char) "v") ; does not work
1180 'cperl-get-help
1181 [(control h) v])
1182 (cperl-define-key "\C-c\C-hf"
1183 ;;(concat (char-to-string help-char) "f") ; does not work
1184 (key-binding "\C-hf")
1185 [(control c) (control h) f])
1186 (cperl-define-key "\C-c\C-hv"
1187 ;;(concat (char-to-string help-char) "v") ; does not work
1188 (key-binding "\C-hv")
1189 [(control c) (control h) v]))
1190 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-current-command
1191 [(control c) (control h) f])
1192 (cperl-define-key "\C-c\C-hv"
1193 ;;(concat (char-to-string help-char) "v") ; does not work
1194 'cperl-get-help
1195 [(control c) (control h) v]))
1196 (if (and (featurep 'xemacs)
1197 (<= emacs-minor-version 11) (<= emacs-major-version 19))
1198 (progn
1199 ;; substitute-key-definition is usefulness-deenhanced...
1200 ;;;;;(cperl-define-key "\M-q" 'cperl-fill-paragraph)
1201 (cperl-define-key "\e;" 'cperl-indent-for-comment)
1202 (cperl-define-key "\e\C-\\" 'cperl-indent-region))
1203 (or (boundp 'fill-paragraph-function)
1204 (substitute-key-definition
1205 'fill-paragraph 'cperl-fill-paragraph
1206 cperl-mode-map global-map))
1207 (substitute-key-definition
1208 'indent-sexp 'cperl-indent-exp
1209 cperl-mode-map global-map)
1210 (substitute-key-definition
1211 'indent-region 'cperl-indent-region
1212 cperl-mode-map global-map)
1213 (substitute-key-definition
1214 'indent-for-comment 'cperl-indent-for-comment
1215 cperl-mode-map global-map)))
1216
1217 (defvar cperl-menu)
1218 (defvar cperl-lazy-installed)
1219 (defvar cperl-old-style nil)
1220 (condition-case nil
1221 (progn
1222 (require 'easymenu)
1223 (easy-menu-define
1224 cperl-menu cperl-mode-map "Menu for CPerl mode"
1225 '("Perl"
1226 ["Beginning of function" beginning-of-defun t]
1227 ["End of function" end-of-defun t]
1228 ["Mark function" mark-defun t]
1229 ["Indent expression" cperl-indent-exp t]
1230 ["Fill paragraph/comment" fill-paragraph t]
1231 "----"
1232 ["Line up a construction" cperl-lineup (cperl-use-region-p)]
1233 ["Invert if/unless/while etc" cperl-invert-if-unless t]
1234 ("Regexp"
1235 ["Beautify" cperl-beautify-regexp
1236 cperl-use-syntax-table-text-property]
1237 ["Beautify one level deep" (cperl-beautify-regexp 1)
1238 cperl-use-syntax-table-text-property]
1239 ["Beautify a group" cperl-beautify-level
1240 cperl-use-syntax-table-text-property]
1241 ["Beautify a group one level deep" (cperl-beautify-level 1)
1242 cperl-use-syntax-table-text-property]
1243 ["Contract a group" cperl-contract-level
1244 cperl-use-syntax-table-text-property]
1245 ["Contract groups" cperl-contract-levels
1246 cperl-use-syntax-table-text-property]
1247 "----"
1248 ["Find next interpolated" cperl-next-interpolated-REx
1249 (next-single-property-change (point-min) 'REx-interpolated)]
1250 ["Find next interpolated (no //o)"
1251 cperl-next-interpolated-REx-0
1252 (or (text-property-any (point-min) (point-max) 'REx-interpolated t)
1253 (text-property-any (point-min) (point-max) 'REx-interpolated 1))]
1254 ["Find next interpolated (neither //o nor whole-REx)"
1255 cperl-next-interpolated-REx-1
1256 (text-property-any (point-min) (point-max) 'REx-interpolated t)])
1257 ["Insert spaces if needed to fix style" cperl-find-bad-style t]
1258 ["Refresh \"hard\" constructions" cperl-find-pods-heres t]
1259 "----"
1260 ["Indent region" cperl-indent-region (cperl-use-region-p)]
1261 ["Comment region" cperl-comment-region (cperl-use-region-p)]
1262 ["Uncomment region" cperl-uncomment-region (cperl-use-region-p)]
1263 "----"
1264 ["Run" mode-compile (fboundp 'mode-compile)]
1265 ["Kill" mode-compile-kill (and (fboundp 'mode-compile-kill)
1266 (get-buffer "*compilation*"))]
1267 ["Next error" next-error (get-buffer "*compilation*")]
1268 ["Check syntax" cperl-check-syntax (fboundp 'mode-compile)]
1269 "----"
1270 ["Debugger" cperl-db t]
1271 "----"
1272 ("Tools"
1273 ["Imenu" imenu (fboundp 'imenu)]
1274 ["Imenu on Perl Info" cperl-imenu-on-info (featurep 'imenu)]
1275 "----"
1276 ["Ispell PODs" cperl-pod-spell
1277 ;; Better not to update syntaxification here:
1278 ;; debugging syntaxificatio can be broken by this???
1279 (or
1280 (get-text-property (point-min) 'in-pod)
1281 (< (progn
1282 (and cperl-syntaxify-for-menu
1283 (cperl-update-syntaxification (point-max) (point-max)))
1284 (next-single-property-change (point-min) 'in-pod nil (point-max)))
1285 (point-max)))]
1286 ["Ispell HERE-DOCs" cperl-here-doc-spell
1287 (< (progn
1288 (and cperl-syntaxify-for-menu
1289 (cperl-update-syntaxification (point-max) (point-max)))
1290 (next-single-property-change (point-min) 'here-doc-group nil (point-max)))
1291 (point-max))]
1292 ["Narrow to this HERE-DOC" cperl-narrow-to-here-doc
1293 (eq 'here-doc (progn
1294 (and cperl-syntaxify-for-menu
1295 (cperl-update-syntaxification (point) (point)))
1296 (get-text-property (point) 'syntax-type)))]
1297 ["Select this HERE-DOC or POD section"
1298 cperl-select-this-pod-or-here-doc
1299 (memq (progn
1300 (and cperl-syntaxify-for-menu
1301 (cperl-update-syntaxification (point) (point)))
1302 (get-text-property (point) 'syntax-type))
1303 '(here-doc pod))]
1304 "----"
1305 ["CPerl pretty print (exprmntl)" cperl-ps-print
1306 (fboundp 'ps-extend-face-list)]
1307 "----"
1308 ["Syntaxify region" cperl-find-pods-heres-region
1309 (cperl-use-region-p)]
1310 ["Profile syntaxification" cperl-time-fontification t]
1311 ["Debug errors in delayed fontification" cperl-emulate-lazy-lock t]
1312 ["Debug unwind for syntactic scan" cperl-toggle-set-debug-unwind t]
1313 ["Debug backtrace on syntactic scan (BEWARE!!!)"
1314 (cperl-toggle-set-debug-unwind nil t) t]
1315 "----"
1316 ["Class Hierarchy from TAGS" cperl-tags-hier-init t]
1317 ;;["Update classes" (cperl-tags-hier-init t) tags-table-list]
1318 ("Tags"
1319 ;;; ["Create tags for current file" cperl-etags t]
1320 ;;; ["Add tags for current file" (cperl-etags t) t]
1321 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t]
1322 ;;; ["Add tags for Perl files in directory" (cperl-etags t t) t]
1323 ;;; ["Create tags for Perl files in (sub)directories"
1324 ;;; (cperl-etags nil 'recursive) t]
1325 ;;; ["Add tags for Perl files in (sub)directories"
1326 ;;; (cperl-etags t 'recursive) t])
1327 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer)
1328 ["Create tags for current file" (cperl-write-tags nil t) t]
1329 ["Add tags for current file" (cperl-write-tags) t]
1330 ["Create tags for Perl files in directory"
1331 (cperl-write-tags nil t nil t) t]
1332 ["Add tags for Perl files in directory"
1333 (cperl-write-tags nil nil nil t) t]
1334 ["Create tags for Perl files in (sub)directories"
1335 (cperl-write-tags nil t t t) t]
1336 ["Add tags for Perl files in (sub)directories"
1337 (cperl-write-tags nil nil t t) t]))
1338 ("Perl docs"
1339 ["Define word at point" imenu-go-find-at-position
1340 (fboundp 'imenu-go-find-at-position)]
1341 ["Help on function" cperl-info-on-command t]
1342 ["Help on function at point" cperl-info-on-current-command t]
1343 ["Help on symbol at point" cperl-get-help t]
1344 ["Perldoc" cperl-perldoc t]
1345 ["Perldoc on word at point" cperl-perldoc-at-point t]
1346 ["View manpage of POD in this file" cperl-build-manpage t]
1347 ["Auto-help on" cperl-lazy-install
1348 (and (fboundp 'run-with-idle-timer)
1349 (not cperl-lazy-installed))]
1350 ["Auto-help off" cperl-lazy-unstall
1351 (and (fboundp 'run-with-idle-timer)
1352 cperl-lazy-installed)])
1353 ("Toggle..."
1354 ["Auto newline" cperl-toggle-auto-newline t]
1355 ["Electric parens" cperl-toggle-electric t]
1356 ["Electric keywords" cperl-toggle-abbrev t]
1357 ["Fix whitespace on indent" cperl-toggle-construct-fix t]
1358 ["Auto-help on Perl constructs" cperl-toggle-autohelp t]
1359 ["Auto fill" auto-fill-mode t])
1360 ("Indent styles..."
1361 ["CPerl" (cperl-set-style "CPerl") t]
1362 ["PerlStyle" (cperl-set-style "PerlStyle") t]
1363 ["GNU" (cperl-set-style "GNU") t]
1364 ["C++" (cperl-set-style "C++") t]
1365 ["K&R" (cperl-set-style "K&R") t]
1366 ["BSD" (cperl-set-style "BSD") t]
1367 ["Whitesmith" (cperl-set-style "Whitesmith") t]
1368 ["Memorize Current" (cperl-set-style "Current") t]
1369 ["Memorized" (cperl-set-style-back) cperl-old-style])
1370 ("Micro-docs"
1371 ["Tips" (describe-variable 'cperl-tips) t]
1372 ["Problems" (describe-variable 'cperl-problems) t]
1373 ["Speed" (describe-variable 'cperl-speed) t]
1374 ["Praise" (describe-variable 'cperl-praise) t]
1375 ["Faces" (describe-variable 'cperl-tips-faces) t]
1376 ["CPerl mode" (describe-function 'cperl-mode) t]
1377 ["CPerl version"
1378 (message "The version of master-file for this CPerl is %s-Emacs"
1379 cperl-version) t]))))
1380 (error nil))
1381
1382 (autoload 'c-macro-expand "cmacexp"
1383 "Display the result of expanding all C macros occurring in the region.
1384 The expansion is entirely correct because it uses the C preprocessor."
1385 t)
1386
1387 ;;; These two must be unwound, otherwise take exponential time
1388 (defconst cperl-maybe-white-and-comment-rex "[ \t\n]*\\(#[^\n]*\n[ \t\n]*\\)*"
1389 "Regular expression to match optional whitespace with interpspersed comments.
1390 Should contain exactly one group.")
1391
1392 ;;; This one is tricky to unwind; still very inefficient...
1393 (defconst cperl-white-and-comment-rex "\\([ \t\n]\\|#[^\n]*\n\\)+"
1394 "Regular expression to match whitespace with interpspersed comments.
1395 Should contain exactly one group.")
1396
1397
1398 ;;; Is incorporated in `cperl-imenu--function-name-regexp-perl'
1399 ;;; `cperl-outline-regexp', `defun-prompt-regexp'.
1400 ;;; Details of groups in this may be used in several functions; see comments
1401 ;;; near mentioned above variable(s)...
1402 ;;; sub($$):lvalue{} sub:lvalue{} Both allowed...
1403 (defsubst cperl-after-sub-regexp (named attr) ; 9 groups without attr...
1404 "Match the text after `sub' in a subroutine declaration.
1405 If NAMED is nil, allows anonymous subroutines. Matches up to the first \":\"
1406 of attributes (if present), or end of the name or prototype (whatever is
1407 the last)."
1408 (concat ; Assume n groups before this...
1409 "\\(" ; n+1=name-group
1410 cperl-white-and-comment-rex ; n+2=pre-name
1411 "\\(::[a-zA-Z_0-9:']+\\|[a-zA-Z_'][a-zA-Z_0-9:']*\\)" ; n+3=name
1412 "\\)" ; END n+1=name-group
1413 (if named "" "?")
1414 "\\(" ; n+4=proto-group
1415 cperl-maybe-white-and-comment-rex ; n+5=pre-proto
1416 "\\(([^()]*)\\)" ; n+6=prototype
1417 "\\)?" ; END n+4=proto-group
1418 "\\(" ; n+7=attr-group
1419 cperl-maybe-white-and-comment-rex ; n+8=pre-attr
1420 "\\(" ; n+9=start-attr
1421 ":"
1422 (if attr (concat
1423 "\\("
1424 cperl-maybe-white-and-comment-rex ; whitespace-comments
1425 "\\(\\sw\\|_\\)+" ; attr-name
1426 ;; attr-arg (1 level of internal parens allowed!)
1427 "\\((\\(\\\\.\\|[^\\\\()]\\|([^\\\\()]*)\\)*)\\)?"
1428 "\\(" ; optional : (XXX allows trailing???)
1429 cperl-maybe-white-and-comment-rex ; whitespace-comments
1430 ":\\)?"
1431 "\\)+")
1432 "[^:]")
1433 "\\)"
1434 "\\)?" ; END n+6=proto-group
1435 ))
1436
1437 ;;; Details of groups in this are used in `cperl-imenu--create-perl-index'
1438 ;;; and `cperl-outline-level'.
1439 ;;;; Was: 2=sub|package; now 2=package-group, 5=package-name 8=sub-name (+3)
1440 (defvar cperl-imenu--function-name-regexp-perl
1441 (concat
1442 "^\\(" ; 1 = all
1443 "\\([ \t]*package" ; 2 = package-group
1444 "\\(" ; 3 = package-name-group
1445 cperl-white-and-comment-rex ; 4 = pre-package-name
1446 "\\([a-zA-Z_0-9:']+\\)\\)?\\)" ; 5 = package-name
1447 "\\|"
1448 "[ \t]*sub"
1449 (cperl-after-sub-regexp 'named nil) ; 8=name 11=proto 14=attr-start
1450 cperl-maybe-white-and-comment-rex ; 15=pre-block
1451 "\\|"
1452 "=head\\([1-4]\\)[ \t]+" ; 16=level
1453 "\\([^\n]+\\)$" ; 17=text
1454 "\\)"))
1455
1456 (defvar cperl-outline-regexp
1457 (concat cperl-imenu--function-name-regexp-perl "\\|" "\\`"))
1458
1459 (defvar cperl-mode-syntax-table nil
1460 "Syntax table in use in CPerl mode buffers.")
1461
1462 (defvar cperl-string-syntax-table nil
1463 "Syntax table in use in CPerl mode string-like chunks.")
1464
1465 (defsubst cperl-1- (p)
1466 (max (point-min) (1- p)))
1467
1468 (defsubst cperl-1+ (p)
1469 (min (point-max) (1+ p)))
1470
1471 (if cperl-mode-syntax-table
1472 ()
1473 (setq cperl-mode-syntax-table (make-syntax-table))
1474 (modify-syntax-entry ?\\ "\\" cperl-mode-syntax-table)
1475 (modify-syntax-entry ?/ "." cperl-mode-syntax-table)
1476 (modify-syntax-entry ?* "." cperl-mode-syntax-table)
1477 (modify-syntax-entry ?+ "." cperl-mode-syntax-table)
1478 (modify-syntax-entry ?- "." cperl-mode-syntax-table)
1479 (modify-syntax-entry ?= "." cperl-mode-syntax-table)
1480 (modify-syntax-entry ?% "." cperl-mode-syntax-table)
1481 (modify-syntax-entry ?< "." cperl-mode-syntax-table)
1482 (modify-syntax-entry ?> "." cperl-mode-syntax-table)
1483 (modify-syntax-entry ?& "." cperl-mode-syntax-table)
1484 (modify-syntax-entry ?$ "\\" cperl-mode-syntax-table)
1485 (modify-syntax-entry ?\n ">" cperl-mode-syntax-table)
1486 (modify-syntax-entry ?# "<" cperl-mode-syntax-table)
1487 (modify-syntax-entry ?' "\"" cperl-mode-syntax-table)
1488 (modify-syntax-entry ?` "\"" cperl-mode-syntax-table)
1489 (if cperl-under-as-char
1490 (modify-syntax-entry ?_ "w" cperl-mode-syntax-table))
1491 (modify-syntax-entry ?: "_" cperl-mode-syntax-table)
1492 (modify-syntax-entry ?| "." cperl-mode-syntax-table)
1493 (setq cperl-string-syntax-table (copy-syntax-table cperl-mode-syntax-table))
1494 (modify-syntax-entry ?$ "." cperl-string-syntax-table)
1495 (modify-syntax-entry ?\{ "." cperl-string-syntax-table)
1496 (modify-syntax-entry ?\} "." cperl-string-syntax-table)
1497 (modify-syntax-entry ?# "." cperl-string-syntax-table)) ; (?# comment )
1498
1499
1500 \f
1501 (defvar cperl-faces-init nil)
1502 ;; Fix for msb.el
1503 (defvar cperl-msb-fixed nil)
1504 (defvar cperl-use-major-mode 'cperl-mode)
1505 (defvar cperl-font-lock-multiline-start nil)
1506 (defvar cperl-font-lock-multiline nil)
1507 (defvar cperl-font-locking nil)
1508
1509 ;; NB as it stands the code in cperl-mode assumes this only has one
1510 ;; element. If Xemacs 19 support were dropped, this could all be simplified.
1511 (defvar cperl-compilation-error-regexp-alist
1512 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORKS).
1513 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]"
1514 2 3))
1515 "Alist that specifies how to match errors in perl output.")
1516
1517 (defvar compilation-error-regexp-alist)
1518
1519 ;;;###autoload
1520 (defun cperl-mode ()
1521 "Major mode for editing Perl code.
1522 Expression and list commands understand all C brackets.
1523 Tab indents for Perl code.
1524 Paragraphs are separated by blank lines only.
1525 Delete converts tabs to spaces as it moves back.
1526
1527 Various characters in Perl almost always come in pairs: {}, (), [],
1528 sometimes <>. When the user types the first, she gets the second as
1529 well, with optional special formatting done on {}. (Disabled by
1530 default.) You can always quote (with \\[quoted-insert]) the left
1531 \"paren\" to avoid the expansion. The processing of < is special,
1532 since most the time you mean \"less\". CPerl mode tries to guess
1533 whether you want to type pair <>, and inserts is if it
1534 appropriate. You can set `cperl-electric-parens-string' to the string that
1535 contains the parenths from the above list you want to be electrical.
1536 Electricity of parenths is controlled by `cperl-electric-parens'.
1537 You may also set `cperl-electric-parens-mark' to have electric parens
1538 look for active mark and \"embrace\" a region if possible.'
1539
1540 CPerl mode provides expansion of the Perl control constructs:
1541
1542 if, else, elsif, unless, while, until, continue, do,
1543 for, foreach, formy and foreachmy.
1544
1545 and POD directives (Disabled by default, see `cperl-electric-keywords'.)
1546
1547 The user types the keyword immediately followed by a space, which
1548 causes the construct to be expanded, and the point is positioned where
1549 she is most likely to want to be. eg. when the user types a space
1550 following \"if\" the following appears in the buffer: if () { or if ()
1551 } { } and the cursor is between the parentheses. The user can then
1552 type some boolean expression within the parens. Having done that,
1553 typing \\[cperl-linefeed] places you - appropriately indented - on a
1554 new line between the braces (if you typed \\[cperl-linefeed] in a POD
1555 directive line, then appropriate number of new lines is inserted).
1556
1557 If CPerl decides that you want to insert \"English\" style construct like
1558
1559 bite if angry;
1560
1561 it will not do any expansion. See also help on variable
1562 `cperl-extra-newline-before-brace'. (Note that one can switch the
1563 help message on expansion by setting `cperl-message-electric-keyword'
1564 to nil.)
1565
1566 \\[cperl-linefeed] is a convenience replacement for typing carriage
1567 return. It places you in the next line with proper indentation, or if
1568 you type it inside the inline block of control construct, like
1569
1570 foreach (@lines) {print; print}
1571
1572 and you are on a boundary of a statement inside braces, it will
1573 transform the construct into a multiline and will place you into an
1574 appropriately indented blank line. If you need a usual
1575 `newline-and-indent' behavior, it is on \\[newline-and-indent],
1576 see documentation on `cperl-electric-linefeed'.
1577
1578 Use \\[cperl-invert-if-unless] to change a construction of the form
1579
1580 if (A) { B }
1581
1582 into
1583
1584 B if A;
1585
1586 \\{cperl-mode-map}
1587
1588 Setting the variable `cperl-font-lock' to t switches on font-lock-mode
1589 \(even with older Emacsen), `cperl-electric-lbrace-space' to t switches
1590 on electric space between $ and {, `cperl-electric-parens-string' is
1591 the string that contains parentheses that should be electric in CPerl
1592 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'),
1593 setting `cperl-electric-keywords' enables electric expansion of
1594 control structures in CPerl. `cperl-electric-linefeed' governs which
1595 one of two linefeed behavior is preferable. You can enable all these
1596 options simultaneously (recommended mode of use) by setting
1597 `cperl-hairy' to t. In this case you can switch separate options off
1598 by setting them to `null'. Note that one may undo the extra
1599 whitespace inserted by semis and braces in `auto-newline'-mode by
1600 consequent \\[cperl-electric-backspace].
1601
1602 If your site has perl5 documentation in info format, you can use commands
1603 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it.
1604 These keys run commands `cperl-info-on-current-command' and
1605 `cperl-info-on-command', which one is which is controlled by variable
1606 `cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings'
1607 \(in turn affected by `cperl-hairy').
1608
1609 Even if you have no info-format documentation, short one-liner-style
1610 help is available on \\[cperl-get-help], and one can run perldoc or
1611 man via menu.
1612
1613 It is possible to show this help automatically after some idle time.
1614 This is regulated by variable `cperl-lazy-help-time'. Default with
1615 `cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5
1616 secs idle time . It is also possible to switch this on/off from the
1617 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'.
1618
1619 Use \\[cperl-lineup] to vertically lineup some construction - put the
1620 beginning of the region at the start of construction, and make region
1621 span the needed amount of lines.
1622
1623 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify',
1624 `cperl-pod-face', `cperl-pod-head-face' control processing of POD and
1625 here-docs sections. With capable Emaxen results of scan are used
1626 for indentation too, otherwise they are used for highlighting only.
1627
1628 Variables controlling indentation style:
1629 `cperl-tab-always-indent'
1630 Non-nil means TAB in CPerl mode should always reindent the current line,
1631 regardless of where in the line point is when the TAB command is used.
1632 `cperl-indent-left-aligned-comments'
1633 Non-nil means that the comment starting in leftmost column should indent.
1634 `cperl-auto-newline'
1635 Non-nil means automatically newline before and after braces,
1636 and after colons and semicolons, inserted in Perl code. The following
1637 \\[cperl-electric-backspace] will remove the inserted whitespace.
1638 Insertion after colons requires both this variable and
1639 `cperl-auto-newline-after-colon' set.
1640 `cperl-auto-newline-after-colon'
1641 Non-nil means automatically newline even after colons.
1642 Subject to `cperl-auto-newline' setting.
1643 `cperl-indent-level'
1644 Indentation of Perl statements within surrounding block.
1645 The surrounding block's indentation is the indentation
1646 of the line on which the open-brace appears.
1647 `cperl-continued-statement-offset'
1648 Extra indentation given to a substatement, such as the
1649 then-clause of an if, or body of a while, or just a statement continuation.
1650 `cperl-continued-brace-offset'
1651 Extra indentation given to a brace that starts a substatement.
1652 This is in addition to `cperl-continued-statement-offset'.
1653 `cperl-brace-offset'
1654 Extra indentation for line if it starts with an open brace.
1655 `cperl-brace-imaginary-offset'
1656 An open brace following other text is treated as if it the line started
1657 this far to the right of the actual line indentation.
1658 `cperl-label-offset'
1659 Extra indentation for line that is a label.
1660 `cperl-min-label-indent'
1661 Minimal indentation for line that is a label.
1662
1663 Settings for classic indent-styles: K&R BSD=C++ GNU PerlStyle=Whitesmith
1664 `cperl-indent-level' 5 4 2 4
1665 `cperl-brace-offset' 0 0 0 0
1666 `cperl-continued-brace-offset' -5 -4 0 0
1667 `cperl-label-offset' -5 -4 -2 -4
1668 `cperl-continued-statement-offset' 5 4 2 4
1669
1670 CPerl knows several indentation styles, and may bulk set the
1671 corresponding variables. Use \\[cperl-set-style] to do this. Use
1672 \\[cperl-set-style-back] to restore the memorized preexisting values
1673 \(both available from menu). See examples in `cperl-style-examples'.
1674
1675 Part of the indentation style is how different parts of if/elsif/else
1676 statements are broken into lines; in CPerl, this is reflected on how
1677 templates for these constructs are created (controlled by
1678 `cperl-extra-newline-before-brace'), and how reflow-logic should treat \"continuation\" blocks of else/elsif/continue, controlled by the same variable,
1679 and by `cperl-extra-newline-before-brace-multiline',
1680 `cperl-merge-trailing-else', `cperl-indent-region-fix-constructs'.
1681
1682 If `cperl-indent-level' is 0, the statement after opening brace in
1683 column 0 is indented on
1684 `cperl-brace-offset'+`cperl-continued-statement-offset'.
1685
1686 Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook'
1687 with no args.
1688
1689 DO NOT FORGET to read micro-docs (available from `Perl' menu)
1690 or as help on variables `cperl-tips', `cperl-problems',
1691 `cperl-praise', `cperl-speed'."
1692 (interactive)
1693 (kill-all-local-variables)
1694 (use-local-map cperl-mode-map)
1695 (if (cperl-val 'cperl-electric-linefeed)
1696 (progn
1697 (local-set-key "\C-J" 'cperl-linefeed)
1698 (local-set-key "\C-C\C-J" 'newline-and-indent)))
1699 (if (and
1700 (cperl-val 'cperl-clobber-lisp-bindings)
1701 (cperl-val 'cperl-info-on-command-no-prompt))
1702 (progn
1703 ;; don't clobber the backspace binding:
1704 (cperl-define-key "\C-hf" 'cperl-info-on-current-command [(control h) f])
1705 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command
1706 [(control c) (control h) f])))
1707 (setq major-mode cperl-use-major-mode)
1708 (setq mode-name "CPerl")
1709 (let ((prev-a-c abbrevs-changed))
1710 (define-abbrev-table 'cperl-mode-abbrev-table '(
1711 ("if" "if" cperl-electric-keyword 0)
1712 ("elsif" "elsif" cperl-electric-keyword 0)
1713 ("while" "while" cperl-electric-keyword 0)
1714 ("until" "until" cperl-electric-keyword 0)
1715 ("unless" "unless" cperl-electric-keyword 0)
1716 ("else" "else" cperl-electric-else 0)
1717 ("continue" "continue" cperl-electric-else 0)
1718 ("for" "for" cperl-electric-keyword 0)
1719 ("foreach" "foreach" cperl-electric-keyword 0)
1720 ("formy" "formy" cperl-electric-keyword 0)
1721 ("foreachmy" "foreachmy" cperl-electric-keyword 0)
1722 ("do" "do" cperl-electric-keyword 0)
1723 ("=pod" "=pod" cperl-electric-pod 0)
1724 ("=over" "=over" cperl-electric-pod 0)
1725 ("=head1" "=head1" cperl-electric-pod 0)
1726 ("=head2" "=head2" cperl-electric-pod 0)
1727 ("pod" "pod" cperl-electric-pod 0)
1728 ("over" "over" cperl-electric-pod 0)
1729 ("head1" "head1" cperl-electric-pod 0)
1730 ("head2" "head2" cperl-electric-pod 0)))
1731 (setq abbrevs-changed prev-a-c))
1732 (setq local-abbrev-table cperl-mode-abbrev-table)
1733 (if (cperl-val 'cperl-electric-keywords)
1734 (abbrev-mode 1))
1735 (set-syntax-table cperl-mode-syntax-table)
1736 ;; Until Emacs is multi-threaded, we do not actually need it local:
1737 (make-local-variable 'cperl-font-lock-multiline-start)
1738 (make-local-variable 'cperl-font-locking)
1739 (make-local-variable 'outline-regexp)
1740 ;; (setq outline-regexp imenu-example--function-name-regexp-perl)
1741 (setq outline-regexp cperl-outline-regexp)
1742 (make-local-variable 'outline-level)
1743 (setq outline-level 'cperl-outline-level)
1744 (make-local-variable 'paragraph-start)
1745 (setq paragraph-start (concat "^$\\|" page-delimiter))
1746 (make-local-variable 'paragraph-separate)
1747 (setq paragraph-separate paragraph-start)
1748 (make-local-variable 'paragraph-ignore-fill-prefix)
1749 (setq paragraph-ignore-fill-prefix t)
1750 (if (featurep 'xemacs)
1751 (progn
1752 (make-local-variable 'paren-backwards-message)
1753 (set 'paren-backwards-message t)))
1754 (make-local-variable 'indent-line-function)
1755 (setq indent-line-function 'cperl-indent-line)
1756 (make-local-variable 'require-final-newline)
1757 (setq require-final-newline mode-require-final-newline)
1758 (make-local-variable 'comment-start)
1759 (setq comment-start "# ")
1760 (make-local-variable 'comment-end)
1761 (setq comment-end "")
1762 (make-local-variable 'comment-column)
1763 (setq comment-column cperl-comment-column)
1764 (make-local-variable 'comment-start-skip)
1765 (setq comment-start-skip "#+ *")
1766 (make-local-variable 'defun-prompt-regexp)
1767 ;;; "[ \t]*sub"
1768 ;;; (cperl-after-sub-regexp 'named nil) ; 8=name 11=proto 14=attr-start
1769 ;;; cperl-maybe-white-and-comment-rex ; 15=pre-block
1770 (setq defun-prompt-regexp
1771 (concat "^[ \t]*\\(sub"
1772 (cperl-after-sub-regexp 'named 'attr-groups)
1773 "\\|" ; per toke.c
1774 "\\(BEGIN\\|CHECK\\|INIT\\|END\\|AUTOLOAD\\|DESTROY\\)"
1775 "\\)"
1776 cperl-maybe-white-and-comment-rex))
1777 (make-local-variable 'comment-indent-function)
1778 (setq comment-indent-function 'cperl-comment-indent)
1779 (and (boundp 'fill-paragraph-function)
1780 (progn
1781 (make-local-variable 'fill-paragraph-function)
1782 (set 'fill-paragraph-function 'cperl-fill-paragraph)))
1783 (make-local-variable 'parse-sexp-ignore-comments)
1784 (setq parse-sexp-ignore-comments t)
1785 (make-local-variable 'indent-region-function)
1786 (setq indent-region-function 'cperl-indent-region)
1787 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off!
1788 (make-local-variable 'imenu-create-index-function)
1789 (setq imenu-create-index-function
1790 (function cperl-imenu--create-perl-index))
1791 (make-local-variable 'imenu-sort-function)
1792 (setq imenu-sort-function nil)
1793 (make-local-variable 'vc-rcs-header)
1794 (set 'vc-rcs-header cperl-vc-rcs-header)
1795 (make-local-variable 'vc-sccs-header)
1796 (set 'vc-sccs-header cperl-vc-sccs-header)
1797 ;; This one is obsolete...
1798 (make-local-variable 'vc-header-alist)
1799 (with-no-warnings
1800 (set 'vc-header-alist (or cperl-vc-header-alist ; Avoid warning
1801 `((SCCS ,(car cperl-vc-sccs-header))
1802 (RCS ,(car cperl-vc-rcs-header)))))
1803 )
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);; xmeacs 19.x
1815 (make-local-variable 'compilation-error-regexp-alist)
1816 (set 'compilation-error-regexp-alist
1817 (append cperl-compilation-error-regexp-alist
1818 (symbol-value 'compilation-error-regexp-alist)))))
1819 (make-local-variable 'font-lock-defaults)
1820 (setq font-lock-defaults
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"))))
1828 (t
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 (progn
1836 (make-local-variable 'parse-sexp-lookup-properties)
1837 ;; Do not introduce variable if not needed, we check it!
1838 (set 'parse-sexp-lookup-properties t)
1839 ;; Fix broken font-lock:
1840 (or (boundp 'font-lock-unfontify-region-function)
1841 (set 'font-lock-unfontify-region-function
1842 'font-lock-default-unfontify-region))
1843 (unless (featurep 'xemacs) ; Our: just a plug for wrong font-lock
1844 (make-local-variable 'font-lock-unfontify-region-function)
1845 (set 'font-lock-unfontify-region-function ; not present with old Emacs
1846 'cperl-font-lock-unfontify-region-function))
1847 (make-local-variable 'cperl-syntax-done-to)
1848 (setq cperl-syntax-done-to nil) ; reset syntaxification cache
1849 (make-local-variable 'font-lock-syntactic-keywords)
1850 (setq font-lock-syntactic-keywords
1851 (if cperl-syntaxify-by-font-lock
1852 '((cperl-fontify-syntaxically))
1853 ;; unless font-lock-syntactic-keywords, font-lock (pre-22.1)
1854 ;; used to ignore syntax-table text-properties. (t) is a hack
1855 ;; to make font-lock think that font-lock-syntactic-keywords
1856 ;; are defined.
1857 '(t)))))
1858 (if (boundp 'font-lock-multiline) ; Newer font-lock; use its facilities
1859 (progn
1860 (setq cperl-font-lock-multiline t) ; Not localized...
1861 (set (make-local-variable 'font-lock-multiline) t))
1862 (make-local-variable 'font-lock-fontify-region-function)
1863 (set 'font-lock-fontify-region-function ; not present with old Emacs
1864 'cperl-font-lock-fontify-region-function))
1865 (make-local-variable 'font-lock-fontify-region-function)
1866 (set 'font-lock-fontify-region-function ; not present with old Emacs
1867 'cperl-font-lock-fontify-region-function)
1868 (make-local-variable 'cperl-old-style)
1869 (if (boundp 'normal-auto-fill-function) ; 19.33 and later
1870 (set (make-local-variable 'normal-auto-fill-function)
1871 'cperl-do-auto-fill)
1872 (or (fboundp 'cperl-old-auto-fill-mode)
1873 (progn
1874 (fset 'cperl-old-auto-fill-mode (symbol-function 'auto-fill-mode))
1875 (defun auto-fill-mode (&optional arg)
1876 (interactive "P")
1877 (eval '(cperl-old-auto-fill-mode arg)) ; Avoid a warning
1878 (and auto-fill-function (memq major-mode '(perl-mode cperl-mode))
1879 (setq auto-fill-function 'cperl-do-auto-fill))))))
1880 (if (cperl-enable-font-lock)
1881 (if (cperl-val 'cperl-font-lock)
1882 (progn (or cperl-faces-init (cperl-init-faces))
1883 (font-lock-mode 1))))
1884 (set (make-local-variable 'facemenu-add-face-function)
1885 'cperl-facemenu-add-face-function) ; XXXX What this guy is for???
1886 (and (boundp 'msb-menu-cond)
1887 (not cperl-msb-fixed)
1888 (cperl-msb-fix))
1889 (if (featurep 'easymenu)
1890 (easy-menu-add cperl-menu)) ; A NOP in Emacs.
1891 (run-mode-hooks 'cperl-mode-hook)
1892 (if cperl-hook-after-change
1893 (add-hook 'after-change-functions 'cperl-after-change-function nil t))
1894 ;; After hooks since fontification will break this
1895 (if cperl-pod-here-scan
1896 (or cperl-syntaxify-by-font-lock
1897 (progn (or cperl-faces-init (cperl-init-faces-weak))
1898 (cperl-find-pods-heres)))))
1899 \f
1900 ;; Fix for perldb - make default reasonable
1901 (defun cperl-db ()
1902 (interactive)
1903 (require 'gud)
1904 (perldb (read-from-minibuffer "Run perldb (like this): "
1905 (if (consp gud-perldb-history)
1906 (car gud-perldb-history)
1907 (concat "perl " ;;(file-name-nondirectory
1908 ;; I have problems
1909 ;; in OS/2
1910 ;; otherwise
1911 (buffer-file-name)))
1912 nil nil
1913 '(gud-perldb-history . 1))))
1914 \f
1915 (defun cperl-msb-fix ()
1916 ;; Adds perl files to msb menu, supposes that msb is already loaded
1917 (setq cperl-msb-fixed t)
1918 (let* ((l (length msb-menu-cond))
1919 (last (nth (1- l) msb-menu-cond))
1920 (precdr (nthcdr (- l 2) msb-menu-cond)) ; cdr of this is last
1921 (handle (1- (nth 1 last))))
1922 (setcdr precdr (list
1923 (list
1924 '(memq major-mode '(cperl-mode perl-mode))
1925 handle
1926 "Perl Files (%d)")
1927 last))))
1928 \f
1929 ;; This is used by indent-for-comment
1930 ;; to decide how much to indent a comment in CPerl code
1931 ;; based on its context. Do fallback if comment is found wrong.
1932
1933 (defvar cperl-wrong-comment)
1934 (defvar cperl-st-cfence '(14)) ; Comment-fence
1935 (defvar cperl-st-sfence '(15)) ; String-fence
1936 (defvar cperl-st-punct '(1))
1937 (defvar cperl-st-word '(2))
1938 (defvar cperl-st-bra '(4 . ?\>))
1939 (defvar cperl-st-ket '(5 . ?\<))
1940
1941
1942 (defun cperl-comment-indent () ; called at point at supposed comment
1943 (let ((p (point)) (c (current-column)) was phony)
1944 (if (and (not cperl-indent-comment-at-column-0)
1945 (looking-at "^#"))
1946 0 ; Existing comment at bol stays there.
1947 ;; Wrong comment found
1948 (save-excursion
1949 (setq was (cperl-to-comment-or-eol)
1950 phony (eq (get-text-property (point) 'syntax-table)
1951 cperl-st-cfence))
1952 (if phony
1953 (progn ; Too naive???
1954 (re-search-forward "#\\|$") ; Hmm, what about embedded #?
1955 (if (eq (preceding-char) ?\#)
1956 (forward-char -1))
1957 (setq was nil)))
1958 (if (= (point) p) ; Our caller found a correct place
1959 (progn
1960 (skip-chars-backward " \t")
1961 (setq was (current-column))
1962 (if (eq was 0)
1963 comment-column
1964 (max (1+ was) ; Else indent at comment column
1965 comment-column)))
1966 ;; No, the caller found a random place; we need to edit ourselves
1967 (if was nil
1968 (insert comment-start)
1969 (backward-char (length comment-start)))
1970 (setq cperl-wrong-comment t)
1971 (cperl-make-indent comment-column 1) ; Indent min 1
1972 c)))))
1973
1974 ;;;(defun cperl-comment-indent-fallback ()
1975 ;;; "Is called if the standard comment-search procedure fails.
1976 ;;;Point is at start of real comment."
1977 ;;; (let ((c (current-column)) target cnt prevc)
1978 ;;; (if (= c comment-column) nil
1979 ;;; (setq cnt (skip-chars-backward "[ \t]"))
1980 ;;; (setq target (max (1+ (setq prevc
1981 ;;; (current-column))) ; Else indent at comment column
1982 ;;; comment-column))
1983 ;;; (if (= c comment-column) nil
1984 ;;; (delete-backward-char cnt)
1985 ;;; (while (< prevc target)
1986 ;;; (insert "\t")
1987 ;;; (setq prevc (current-column)))
1988 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column))))
1989 ;;; (while (< prevc target)
1990 ;;; (insert " ")
1991 ;;; (setq prevc (current-column)))))))
1992
1993 (defun cperl-indent-for-comment ()
1994 "Substitute for `indent-for-comment' in CPerl."
1995 (interactive)
1996 (let (cperl-wrong-comment)
1997 (indent-for-comment)
1998 (if cperl-wrong-comment ; set by `cperl-comment-indent'
1999 (progn (cperl-to-comment-or-eol)
2000 (forward-char (length comment-start))))))
2001
2002 (defun cperl-comment-region (b e arg)
2003 "Comment or uncomment each line in the region in CPerl mode.
2004 See `comment-region'."
2005 (interactive "r\np")
2006 (let ((comment-start "#"))
2007 (comment-region b e arg)))
2008
2009 (defun cperl-uncomment-region (b e arg)
2010 "Uncomment or comment each line in the region in CPerl mode.
2011 See `comment-region'."
2012 (interactive "r\np")
2013 (let ((comment-start "#"))
2014 (comment-region b e (- arg))))
2015
2016 (defvar cperl-brace-recursing nil)
2017
2018 (defun cperl-electric-brace (arg &optional only-before)
2019 "Insert character and correct line's indentation.
2020 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the
2021 place (even in empty line), but not after. If after \")\" and the inserted
2022 char is \"{\", insert extra newline before only if
2023 `cperl-extra-newline-before-brace'."
2024 (interactive "P")
2025 (let (insertpos
2026 (other-end (if (and cperl-electric-parens-mark
2027 (cperl-mark-active)
2028 (< (mark) (point)))
2029 (mark)
2030 nil)))
2031 (if (and other-end
2032 (not cperl-brace-recursing)
2033 (cperl-val 'cperl-electric-parens)
2034 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)))
2035 ;; Need to insert a matching pair
2036 (progn
2037 (save-excursion
2038 (setq insertpos (point-marker))
2039 (goto-char other-end)
2040 (setq last-command-char ?\{)
2041 (cperl-electric-lbrace arg insertpos))
2042 (forward-char 1))
2043 ;; Check whether we close something "usual" with `}'
2044 (if (and (eq last-command-char ?\})
2045 (not
2046 (condition-case nil
2047 (save-excursion
2048 (up-list (- (prefix-numeric-value arg)))
2049 ;;(cperl-after-block-p (point-min))
2050 (or (cperl-after-expr-p nil "{;)")
2051 ;; after sub, else, continue
2052 (cperl-after-block-p nil 'pre)))
2053 (error nil))))
2054 ;; Just insert the guy
2055 (self-insert-command (prefix-numeric-value arg))
2056 (if (and (not arg) ; No args, end (of empty line or auto)
2057 (eolp)
2058 (or (and (null only-before)
2059 (save-excursion
2060 (skip-chars-backward " \t")
2061 (bolp)))
2062 (and (eq last-command-char ?\{) ; Do not insert newline
2063 ;; if after ")" and `cperl-extra-newline-before-brace'
2064 ;; is nil, do not insert extra newline.
2065 (not cperl-extra-newline-before-brace)
2066 (save-excursion
2067 (skip-chars-backward " \t")
2068 (eq (preceding-char) ?\))))
2069 (if cperl-auto-newline
2070 (progn (cperl-indent-line) (newline) t) nil)))
2071 (progn
2072 (self-insert-command (prefix-numeric-value arg))
2073 (cperl-indent-line)
2074 (if cperl-auto-newline
2075 (setq insertpos (1- (point))))
2076 (if (and cperl-auto-newline (null only-before))
2077 (progn
2078 (newline)
2079 (cperl-indent-line)))
2080 (save-excursion
2081 (if insertpos (progn (goto-char insertpos)
2082 (search-forward (make-string
2083 1 last-command-char))
2084 (setq insertpos (1- (point)))))
2085 (delete-char -1))))
2086 (if insertpos
2087 (save-excursion
2088 (goto-char insertpos)
2089 (self-insert-command (prefix-numeric-value arg)))
2090 (self-insert-command (prefix-numeric-value arg)))))))
2091
2092 (defun cperl-electric-lbrace (arg &optional end)
2093 "Insert character, correct line's indentation, correct quoting by space."
2094 (interactive "P")
2095 (let ((cperl-brace-recursing t)
2096 (cperl-auto-newline cperl-auto-newline)
2097 (other-end (or end
2098 (if (and cperl-electric-parens-mark
2099 (cperl-mark-active)
2100 (> (mark) (point)))
2101 (save-excursion
2102 (goto-char (mark))
2103 (point-marker))
2104 nil)))
2105 pos after)
2106 (and (cperl-val 'cperl-electric-lbrace-space)
2107 (eq (preceding-char) ?$)
2108 (save-excursion
2109 (skip-chars-backward "$")
2110 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)"))
2111 (insert ?\s))
2112 ;; Check whether we are in comment
2113 (if (and
2114 (save-excursion
2115 (beginning-of-line)
2116 (not (looking-at "[ \t]*#")))
2117 (cperl-after-expr-p nil "{;)"))
2118 nil
2119 (setq cperl-auto-newline nil))
2120 (cperl-electric-brace arg)
2121 (and (cperl-val 'cperl-electric-parens)
2122 (eq last-command-char ?{)
2123 (memq last-command-char
2124 (append cperl-electric-parens-string nil))
2125 (or (if other-end (goto-char (marker-position other-end)))
2126 t)
2127 (setq last-command-char ?} pos (point))
2128 (progn (cperl-electric-brace arg t)
2129 (goto-char pos)))))
2130
2131 (defun cperl-electric-paren (arg)
2132 "Insert an opening parenthesis or a matching pair of parentheses.
2133 See `cperl-electric-parens'."
2134 (interactive "P")
2135 (let ((beg (save-excursion (beginning-of-line) (point)))
2136 (other-end (if (and cperl-electric-parens-mark
2137 (cperl-mark-active)
2138 (> (mark) (point)))
2139 (save-excursion
2140 (goto-char (mark))
2141 (point-marker))
2142 nil)))
2143 (if (and (cperl-val 'cperl-electric-parens)
2144 (memq last-command-char
2145 (append cperl-electric-parens-string nil))
2146 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))
2147 ;;(not (save-excursion (search-backward "#" beg t)))
2148 (if (eq last-command-char ?<)
2149 (progn
2150 (and abbrev-mode ; later it is too late, may be after `for'
2151 (expand-abbrev))
2152 (cperl-after-expr-p nil "{;(,:="))
2153 1))
2154 (progn
2155 (self-insert-command (prefix-numeric-value arg))
2156 (if other-end (goto-char (marker-position other-end)))
2157 (insert (make-string
2158 (prefix-numeric-value arg)
2159 (cdr (assoc last-command-char '((?{ .?})
2160 (?[ . ?])
2161 (?( . ?))
2162 (?< . ?>))))))
2163 (forward-char (- (prefix-numeric-value arg))))
2164 (self-insert-command (prefix-numeric-value arg)))))
2165
2166 (defun cperl-electric-rparen (arg)
2167 "Insert a matching pair of parentheses if marking is active.
2168 If not, or if we are not at the end of marking range, would self-insert.
2169 Affected by `cperl-electric-parens'."
2170 (interactive "P")
2171 (let ((beg (save-excursion (beginning-of-line) (point)))
2172 (other-end (if (and cperl-electric-parens-mark
2173 (cperl-val 'cperl-electric-parens)
2174 (memq last-command-char
2175 (append cperl-electric-parens-string nil))
2176 (cperl-mark-active)
2177 (< (mark) (point)))
2178 (mark)
2179 nil))
2180 p)
2181 (if (and other-end
2182 (cperl-val 'cperl-electric-parens)
2183 (memq last-command-char '( ?\) ?\] ?\} ?\> ))
2184 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))
2185 ;;(not (save-excursion (search-backward "#" beg t)))
2186 )
2187 (progn
2188 (self-insert-command (prefix-numeric-value arg))
2189 (setq p (point))
2190 (if other-end (goto-char other-end))
2191 (insert (make-string
2192 (prefix-numeric-value arg)
2193 (cdr (assoc last-command-char '((?\} . ?\{)
2194 (?\] . ?\[)
2195 (?\) . ?\()
2196 (?\> . ?\<))))))
2197 (goto-char (1+ p)))
2198 (self-insert-command (prefix-numeric-value arg)))))
2199
2200 (defun cperl-electric-keyword ()
2201 "Insert a construction appropriate after a keyword.
2202 Help message may be switched off by setting `cperl-message-electric-keyword'
2203 to nil."
2204 (let ((beg (save-excursion (beginning-of-line) (point)))
2205 (dollar (and (eq last-command-char ?$)
2206 (eq this-command 'self-insert-command)))
2207 (delete (and (memq last-command-char '(?\s ?\n ?\t ?\f))
2208 (memq this-command '(self-insert-command newline))))
2209 my do)
2210 (and (save-excursion
2211 (condition-case nil
2212 (progn
2213 (backward-sexp 1)
2214 (setq do (looking-at "do\\>")))
2215 (error nil))
2216 (cperl-after-expr-p nil "{;:"))
2217 (save-excursion
2218 (not
2219 (re-search-backward
2220 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>"
2221 beg t)))
2222 (save-excursion (or (not (re-search-backward "^=" nil t))
2223 (or
2224 (looking-at "=cut")
2225 (and cperl-use-syntax-table-text-property
2226 (not (eq (get-text-property (point)
2227 'syntax-type)
2228 'pod))))))
2229 (save-excursion (forward-sexp -1)
2230 (not (memq (following-char) (append "$@%&*" nil))))
2231 (progn
2232 (and (eq (preceding-char) ?y)
2233 (progn ; "foreachmy"
2234 (forward-char -2)
2235 (insert " ")
2236 (forward-char 2)
2237 (setq my t dollar t
2238 delete
2239 (memq this-command '(self-insert-command newline)))))
2240 (and dollar (insert " $"))
2241 (cperl-indent-line)
2242 ;;(insert " () {\n}")
2243 (cond
2244 (cperl-extra-newline-before-brace
2245 (insert (if do "\n" " ()\n"))
2246 (insert "{")
2247 (cperl-indent-line)
2248 (insert "\n")
2249 (cperl-indent-line)
2250 (insert "\n}")
2251 (and do (insert " while ();")))
2252 (t
2253 (insert (if do " {\n} while ();" " () {\n}"))))
2254 (or (looking-at "[ \t]\\|$") (insert " "))
2255 (cperl-indent-line)
2256 (if dollar (progn (search-backward "$")
2257 (if my
2258 (forward-char 1)
2259 (delete-char 1)))
2260 (search-backward ")")
2261 (if (eq last-command-char ?\()
2262 (progn ; Avoid "if (())"
2263 (delete-backward-char 1)
2264 (delete-backward-char -1))))
2265 (if delete
2266 (cperl-putback-char cperl-del-back-ch))
2267 (if cperl-message-electric-keyword
2268 (message "Precede char by C-q to avoid expansion"))))))
2269
2270 (defun cperl-ensure-newlines (n &optional pos)
2271 "Make sure there are N newlines after the point."
2272 (or pos (setq pos (point)))
2273 (if (looking-at "\n")
2274 (forward-char 1)
2275 (insert "\n"))
2276 (if (> n 1)
2277 (cperl-ensure-newlines (1- n) pos)
2278 (goto-char pos)))
2279
2280 (defun cperl-electric-pod ()
2281 "Insert a POD chunk appropriate after a =POD directive."
2282 (let ((delete (and (memq last-command-char '(?\s ?\n ?\t ?\f))
2283 (memq this-command '(self-insert-command newline))))
2284 head1 notlast name p really-delete over)
2285 (and (save-excursion
2286 (forward-word -1)
2287 (and
2288 (eq (preceding-char) ?=)
2289 (progn
2290 (setq head1 (looking-at "head1\\>[ \t]*$"))
2291 (setq over (and (looking-at "over\\>[ \t]*$")
2292 (not (looking-at "over[ \t]*\n\n\n*=item\\>"))))
2293 (forward-char -1)
2294 (bolp))
2295 (or
2296 (get-text-property (point) 'in-pod)
2297 (cperl-after-expr-p nil "{;:")
2298 (and (re-search-backward "\\(\\`\n?\\|^\n\\)=\\sw+" (point-min) t)
2299 (not (looking-at "\n*=cut"))
2300 (or (not cperl-use-syntax-table-text-property)
2301 (eq (get-text-property (point) 'syntax-type) 'pod))))))
2302 (progn
2303 (save-excursion
2304 (setq notlast (re-search-forward "^\n=" nil t)))
2305 (or notlast
2306 (progn
2307 (insert "\n\n=cut")
2308 (cperl-ensure-newlines 2)
2309 (forward-word -2)
2310 (if (and head1
2311 (not
2312 (save-excursion
2313 (forward-char -1)
2314 (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\>"
2315 nil t)))) ; Only one
2316 (progn
2317 (forward-word 1)
2318 (setq name (file-name-sans-extension
2319 (file-name-nondirectory (buffer-file-name)))
2320 p (point))
2321 (insert " NAME\n\n" name
2322 " - \n\n=head1 SYNOPSIS\n\n\n\n"
2323 "=head1 DESCRIPTION")
2324 (cperl-ensure-newlines 4)
2325 (goto-char p)
2326 (forward-word 2)
2327 (end-of-line)
2328 (setq really-delete t))
2329 (forward-word 1))))
2330 (if over
2331 (progn
2332 (setq p (point))
2333 (insert "\n\n=item \n\n\n\n"
2334 "=back")
2335 (cperl-ensure-newlines 2)
2336 (goto-char p)
2337 (forward-word 1)
2338 (end-of-line)
2339 (setq really-delete t)))
2340 (if (and delete really-delete)
2341 (cperl-putback-char cperl-del-back-ch))))))
2342
2343 (defun cperl-electric-else ()
2344 "Insert a construction appropriate after a keyword.
2345 Help message may be switched off by setting `cperl-message-electric-keyword'
2346 to nil."
2347 (let ((beg (save-excursion (beginning-of-line) (point))))
2348 (and (save-excursion
2349 (backward-sexp 1)
2350 (cperl-after-expr-p nil "{;:"))
2351 (save-excursion
2352 (not
2353 (re-search-backward
2354 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>"
2355 beg t)))
2356 (save-excursion (or (not (re-search-backward "^=" nil t))
2357 (looking-at "=cut")
2358 (and cperl-use-syntax-table-text-property
2359 (not (eq (get-text-property (point)
2360 'syntax-type)
2361 'pod)))))
2362 (progn
2363 (cperl-indent-line)
2364 ;;(insert " {\n\n}")
2365 (cond
2366 (cperl-extra-newline-before-brace
2367 (insert "\n")
2368 (insert "{")
2369 (cperl-indent-line)
2370 (insert "\n\n}"))
2371 (t
2372 (insert " {\n\n}")))
2373 (or (looking-at "[ \t]\\|$") (insert " "))
2374 (cperl-indent-line)
2375 (forward-line -1)
2376 (cperl-indent-line)
2377 (cperl-putback-char cperl-del-back-ch)
2378 (setq this-command 'cperl-electric-else)
2379 (if cperl-message-electric-keyword
2380 (message "Precede char by C-q to avoid expansion"))))))
2381
2382 (defun cperl-linefeed ()
2383 "Go to end of line, open a new line and indent appropriately.
2384 If in POD, insert appropriate lines."
2385 (interactive)
2386 (let ((beg (save-excursion (beginning-of-line) (point)))
2387 (end (save-excursion (end-of-line) (point)))
2388 (pos (point)) start over cut res)
2389 (if (and ; Check if we need to split:
2390 ; i.e., on a boundary and inside "{...}"
2391 (save-excursion (cperl-to-comment-or-eol)
2392 (>= (point) pos)) ; Not in a comment
2393 (or (save-excursion
2394 (skip-chars-backward " \t" beg)
2395 (forward-char -1)
2396 (looking-at "[;{]")) ; After { or ; + spaces
2397 (looking-at "[ \t]*}") ; Before }
2398 (re-search-forward "\\=[ \t]*;" end t)) ; Before spaces + ;
2399 (save-excursion
2400 (and
2401 (eq (car (parse-partial-sexp pos end -1)) -1)
2402 ; Leave the level of parens
2403 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr
2404 ; Are at end
2405 (cperl-after-block-p (point-min))
2406 (progn
2407 (backward-sexp 1)
2408 (setq start (point-marker))
2409 (<= start pos))))) ; Redundant? Are after the
2410 ; start of parens group.
2411 (progn
2412 (skip-chars-backward " \t")
2413 (or (memq (preceding-char) (append ";{" nil))
2414 (insert ";"))
2415 (insert "\n")
2416 (forward-line -1)
2417 (cperl-indent-line)
2418 (goto-char start)
2419 (or (looking-at "{[ \t]*$") ; If there is a statement
2420 ; before, move it to separate line
2421 (progn
2422 (forward-char 1)
2423 (insert "\n")
2424 (cperl-indent-line)))
2425 (forward-line 1) ; We are on the target line
2426 (cperl-indent-line)
2427 (beginning-of-line)
2428 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement
2429 ; after, move it to separate line
2430 (progn
2431 (end-of-line)
2432 (search-backward "}" beg)
2433 (skip-chars-backward " \t")
2434 (or (memq (preceding-char) (append ";{" nil))
2435 (insert ";"))
2436 (insert "\n")
2437 (cperl-indent-line)
2438 (forward-line -1)))
2439 (forward-line -1) ; We are on the line before target
2440 (end-of-line)
2441 (newline-and-indent))
2442 (end-of-line) ; else - no splitting
2443 (cond
2444 ((and (looking-at "\n[ \t]*{$")
2445 (save-excursion
2446 (skip-chars-backward " \t")
2447 (eq (preceding-char) ?\)))) ; Probably if () {} group
2448 ; with an extra newline.
2449 (forward-line 2)
2450 (cperl-indent-line))
2451 ((save-excursion ; In POD header
2452 (forward-paragraph -1)
2453 ;; (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\b")
2454 ;; We are after \n now, so look for the rest
2455 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+")
2456 (progn
2457 (setq cut (looking-at "\\(\\`\n?\\|\n\\)=cut\\>"))
2458 (setq over (looking-at "\\(\\`\n?\\|\n\\)=over\\>"))
2459 t)))
2460 (if (and over
2461 (progn
2462 (forward-paragraph -1)
2463 (forward-word 1)
2464 (setq pos (point))
2465 (setq cut (buffer-substring (point)
2466 (save-excursion
2467 (end-of-line)
2468 (point))))
2469 (delete-char (- (save-excursion (end-of-line) (point))
2470 (point)))
2471 (setq res (expand-abbrev))
2472 (save-excursion
2473 (goto-char pos)
2474 (insert cut))
2475 res))
2476 nil
2477 (cperl-ensure-newlines (if cut 2 4))
2478 (forward-line 2)))
2479 ((get-text-property (point) 'in-pod) ; In POD section
2480 (cperl-ensure-newlines 4)
2481 (forward-line 2))
2482 ((looking-at "\n[ \t]*$") ; Next line is empty - use it.
2483 (forward-line 1)
2484 (cperl-indent-line))
2485 (t
2486 (newline-and-indent))))))
2487
2488 (defun cperl-electric-semi (arg)
2489 "Insert character and correct line's indentation."
2490 (interactive "P")
2491 (if cperl-auto-newline
2492 (cperl-electric-terminator arg)
2493 (self-insert-command (prefix-numeric-value arg))
2494 (if cperl-autoindent-on-semi
2495 (cperl-indent-line))))
2496
2497 (defun cperl-electric-terminator (arg)
2498 "Insert character and correct line's indentation."
2499 (interactive "P")
2500 (let ((end (point))
2501 (auto (and cperl-auto-newline
2502 (or (not (eq last-command-char ?:))
2503 cperl-auto-newline-after-colon)))
2504 insertpos)
2505 (if (and ;;(not arg)
2506 (eolp)
2507 (not (save-excursion
2508 (beginning-of-line)
2509 (skip-chars-forward " \t")
2510 (or
2511 ;; Ignore in comment lines
2512 (= (following-char) ?#)
2513 ;; Colon is special only after a label
2514 ;; So quickly rule out most other uses of colon
2515 ;; and do no indentation for them.
2516 (and (eq last-command-char ?:)
2517 (save-excursion
2518 (forward-word 1)
2519 (skip-chars-forward " \t")
2520 (and (< (point) end)
2521 (progn (goto-char (- end 1))
2522 (not (looking-at ":"))))))
2523 (progn
2524 (beginning-of-defun)
2525 (let ((pps (parse-partial-sexp (point) end)))
2526 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))))))
2527 (progn
2528 (self-insert-command (prefix-numeric-value arg))
2529 ;;(forward-char -1)
2530 (if auto (setq insertpos (point-marker)))
2531 ;;(forward-char 1)
2532 (cperl-indent-line)
2533 (if auto
2534 (progn
2535 (newline)
2536 (cperl-indent-line)))
2537 (save-excursion
2538 (if insertpos (goto-char (1- (marker-position insertpos)))
2539 (forward-char -1))
2540 (delete-char 1))))
2541 (if insertpos
2542 (save-excursion
2543 (goto-char insertpos)
2544 (self-insert-command (prefix-numeric-value arg)))
2545 (self-insert-command (prefix-numeric-value arg)))))
2546
2547 (defun cperl-electric-backspace (arg)
2548 "Backspace, or remove the whitespace around the point inserted by an electric
2549 key. Will untabify if `cperl-electric-backspace-untabify' is non-nil."
2550 (interactive "p")
2551 (if (and cperl-auto-newline
2552 (memq last-command '(cperl-electric-semi
2553 cperl-electric-terminator
2554 cperl-electric-lbrace))
2555 (memq (preceding-char) '(?\s ?\t ?\n)))
2556 (let (p)
2557 (if (eq last-command 'cperl-electric-lbrace)
2558 (skip-chars-forward " \t\n"))
2559 (setq p (point))
2560 (skip-chars-backward " \t\n")
2561 (delete-region (point) p))
2562 (and (eq last-command 'cperl-electric-else)
2563 ;; We are removing the whitespace *inside* cperl-electric-else
2564 (setq this-command 'cperl-electric-else-really))
2565 (if (and cperl-auto-newline
2566 (eq last-command 'cperl-electric-else-really)
2567 (memq (preceding-char) '(?\s ?\t ?\n)))
2568 (let (p)
2569 (skip-chars-forward " \t\n")
2570 (setq p (point))
2571 (skip-chars-backward " \t\n")
2572 (delete-region (point) p))
2573 (if cperl-electric-backspace-untabify
2574 (backward-delete-char-untabify arg)
2575 (delete-backward-char arg)))))
2576
2577 (put 'cperl-electric-backspace 'delete-selection 'supersede)
2578
2579 (defun cperl-inside-parens-p () ;; NOT USED????
2580 (condition-case ()
2581 (save-excursion
2582 (save-restriction
2583 (narrow-to-region (point)
2584 (progn (beginning-of-defun) (point)))
2585 (goto-char (point-max))
2586 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\()))
2587 (error nil)))
2588 \f
2589 (defun cperl-indent-command (&optional whole-exp)
2590 "Indent current line as Perl code, or in some cases insert a tab character.
2591 If `cperl-tab-always-indent' is non-nil (the default), always indent current
2592 line. Otherwise, indent the current line only if point is at the left margin
2593 or in the line's indentation; otherwise insert a tab.
2594
2595 A numeric argument, regardless of its value,
2596 means indent rigidly all the lines of the expression starting after point
2597 so that this line becomes properly indented.
2598 The relative indentation among the lines of the expression are preserved."
2599 (interactive "P")
2600 (cperl-update-syntaxification (point) (point))
2601 (if whole-exp
2602 ;; If arg, always indent this line as Perl
2603 ;; and shift remaining lines of expression the same amount.
2604 (let ((shift-amt (cperl-indent-line))
2605 beg end)
2606 (save-excursion
2607 (if cperl-tab-always-indent
2608 (beginning-of-line))
2609 (setq beg (point))
2610 (forward-sexp 1)
2611 (setq end (point))
2612 (goto-char beg)
2613 (forward-line 1)
2614 (setq beg (point)))
2615 (if (and shift-amt (> end beg))
2616 (indent-code-rigidly beg end shift-amt "#")))
2617 (if (and (not cperl-tab-always-indent)
2618 (save-excursion
2619 (skip-chars-backward " \t")
2620 (not (bolp))))
2621 (insert-tab)
2622 (cperl-indent-line))))
2623
2624 (defun cperl-indent-line (&optional parse-data)
2625 "Indent current line as Perl code.
2626 Return the amount the indentation changed by."
2627 (let ((case-fold-search nil)
2628 (pos (- (point-max) (point)))
2629 indent i beg shift-amt)
2630 (setq indent (cperl-calculate-indent parse-data)
2631 i indent)
2632 (beginning-of-line)
2633 (setq beg (point))
2634 (cond ((or (eq indent nil) (eq indent t))
2635 (setq indent (current-indentation) i nil))
2636 ;;((eq indent t) ; Never?
2637 ;; (setq indent (cperl-calculate-indent-within-comment)))
2638 ;;((looking-at "[ \t]*#")
2639 ;; (setq indent 0))
2640 (t
2641 (skip-chars-forward " \t")
2642 (if (listp indent) (setq indent (car indent)))
2643 (cond ((and (looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]")
2644 (not (looking-at "[smy]:\\|tr:")))
2645 (and (> indent 0)
2646 (setq indent (max cperl-min-label-indent
2647 (+ indent cperl-label-offset)))))
2648 ((= (following-char) ?})
2649 (setq indent (- indent cperl-indent-level)))
2650 ((memq (following-char) '(?\) ?\])) ; To line up with opening paren.
2651 (setq indent (+ indent cperl-close-paren-offset)))
2652 ((= (following-char) ?{)
2653 (setq indent (+ indent cperl-brace-offset))))))
2654 (skip-chars-forward " \t")
2655 (setq shift-amt (and i (- indent (current-column))))
2656 (if (or (not shift-amt)
2657 (zerop shift-amt))
2658 (if (> (- (point-max) pos) (point))
2659 (goto-char (- (point-max) pos)))
2660 ;;;(delete-region beg (point))
2661 ;;;(indent-to indent)
2662 (cperl-make-indent indent)
2663 ;; If initial point was within line's indentation,
2664 ;; position after the indentation. Else stay at same point in text.
2665 (if (> (- (point-max) pos) (point))
2666 (goto-char (- (point-max) pos))))
2667 shift-amt))
2668
2669 (defun cperl-after-label ()
2670 ;; Returns true if the point is after label. Does not do save-excursion.
2671 (and (eq (preceding-char) ?:)
2672 (memq (char-syntax (char-after (- (point) 2)))
2673 '(?w ?_))
2674 (progn
2675 (backward-sexp)
2676 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))))
2677
2678 (defun cperl-get-state (&optional parse-start start-state)
2679 ;; returns list (START STATE DEPTH PRESTART),
2680 ;; START is a good place to start parsing, or equal to
2681 ;; PARSE-START if preset,
2682 ;; STATE is what is returned by `parse-partial-sexp'.
2683 ;; DEPTH is true is we are immediately after end of block
2684 ;; which contains START.
2685 ;; PRESTART is the position basing on which START was found.
2686 (save-excursion
2687 (let ((start-point (point)) depth state start prestart)
2688 (if (and parse-start
2689 (<= parse-start start-point))
2690 (goto-char parse-start)
2691 (beginning-of-defun)
2692 (setq start-state nil))
2693 (setq prestart (point))
2694 (if start-state nil
2695 ;; Try to go out, if sub is not on the outermost level
2696 (while (< (point) start-point)
2697 (setq start (point) parse-start start depth nil
2698 state (parse-partial-sexp start start-point -1))
2699 (if (> (car state) -1) nil
2700 ;; The current line could start like }}}, so the indentation
2701 ;; corresponds to a different level than what we reached
2702 (setq depth t)
2703 (beginning-of-line 2))) ; Go to the next line.
2704 (if start (goto-char start))) ; Not at the start of file
2705 (setq start (point))
2706 (or state (setq state (parse-partial-sexp start start-point -1 nil start-state)))
2707 (list start state depth prestart))))
2708
2709 (defvar cperl-look-for-prop '((pod in-pod) (here-doc-delim here-doc-group)))
2710
2711 (defun cperl-beginning-of-property (p prop &optional lim)
2712 "Given that P has a property PROP, find where the property starts.
2713 Will not look before LIM."
2714 ;;; XXXX What to do at point-max???
2715 (or (previous-single-property-change (cperl-1+ p) prop lim)
2716 (point-min))
2717 ;;; (cond ((eq p (point-min))
2718 ;;; p)
2719 ;;; ((and lim (<= p lim))
2720 ;;; p)
2721 ;;; ((not (get-text-property (1- p) prop))
2722 ;;; p)
2723 ;;; (t (or (previous-single-property-change p look-prop lim)
2724 ;;; (point-min))))
2725 )
2726
2727 (defun cperl-sniff-for-indent (&optional parse-data) ; was parse-start
2728 ;; Old workhorse for calculation of indentation; the major problem
2729 ;; is that it mixes the sniffer logic to understand what the current line
2730 ;; MEANS with the logic to actually calculate where to indent it.
2731 ;; The latter part should be eventually moved to `cperl-calculate-indent';
2732 ;; actually, this is mostly done now...
2733 (cperl-update-syntaxification (point) (point))
2734 (let ((res (get-text-property (point) 'syntax-type)))
2735 (save-excursion
2736 (cond
2737 ((and (memq res '(pod here-doc here-doc-delim format))
2738 (not (get-text-property (point) 'indentable)))
2739 (vector res))
2740 ;; before start of POD - whitespace found since do not have 'pod!
2741 ((looking-at "[ \t]*\n=")
2742 (error "Spaces before POD section!"))
2743 ((and (not cperl-indent-left-aligned-comments)
2744 (looking-at "^#"))
2745 [comment-special:at-beginning-of-line])
2746 ((get-text-property (point) 'in-pod)
2747 [in-pod])
2748 (t
2749 (beginning-of-line)
2750 (let* ((indent-point (point))
2751 (char-after-pos (save-excursion
2752 (skip-chars-forward " \t")
2753 (point)))
2754 (char-after (char-after char-after-pos))
2755 (pre-indent-point (point))
2756 p prop look-prop is-block delim)
2757 (save-excursion ; Know we are not in POD, find appropriate pos before
2758 (cperl-backward-to-noncomment nil)
2759 (setq p (max (point-min) (1- (point)))
2760 prop (get-text-property p 'syntax-type)
2761 look-prop (or (nth 1 (assoc prop cperl-look-for-prop))
2762 'syntax-type))
2763 (if (memq prop '(pod here-doc format here-doc-delim))
2764 (progn
2765 (goto-char (cperl-beginning-of-property p look-prop))
2766 (beginning-of-line)
2767 (setq pre-indent-point (point)))))
2768 (goto-char pre-indent-point) ; Orig line skipping preceeding pod/etc
2769 (let* ((case-fold-search nil)
2770 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data)))
2771 (start (or (nth 2 parse-data) ; last complete sexp terminated
2772 (nth 0 s-s))) ; Good place to start parsing
2773 (state (nth 1 s-s))
2774 (containing-sexp (car (cdr state)))
2775 old-indent)
2776 (if (and
2777 ;;containing-sexp ;; We are buggy at toplevel :-(
2778 parse-data)
2779 (progn
2780 (setcar parse-data pre-indent-point)
2781 (setcar (cdr parse-data) state)
2782 (or (nth 2 parse-data)
2783 (setcar (cddr parse-data) start))
2784 ;; Before this point: end of statement
2785 (setq old-indent (nth 3 parse-data))))
2786 (cond ((get-text-property (point) 'indentable)
2787 ;; indent to "after" the surrounding open
2788 ;; (same offset as `cperl-beautify-regexp-piece'),
2789 ;; skip blanks if we do not close the expression.
2790 (setq delim ; We do not close the expression
2791 (get-text-property
2792 (cperl-1+ char-after-pos) 'indentable)
2793 p (1+ (cperl-beginning-of-property
2794 (point) 'indentable))
2795 is-block ; misused for: preceeding line in REx
2796 (save-excursion ; Find preceeding line
2797 (cperl-backward-to-noncomment p)
2798 (beginning-of-line)
2799 (if (<= (point) p)
2800 (progn ; get indent from the first line
2801 (goto-char p)
2802 (skip-chars-forward " \t")
2803 (if (memq (char-after (point))
2804 (append "#\n" nil))
2805 nil ; Can't use intentation of this line...
2806 (point)))
2807 (skip-chars-forward " \t")
2808 (point)))
2809 prop (parse-partial-sexp p char-after-pos))
2810 (cond ((not delim) ; End the REx, ignore is-block
2811 (vector 'indentable 'terminator p is-block))
2812 (is-block ; Indent w.r.t. preceeding line
2813 (vector 'indentable 'cont-line char-after-pos
2814 is-block char-after p))
2815 (t ; No preceeding line...
2816 (vector 'indentable 'first-line p))))
2817 ((get-text-property char-after-pos 'REx-part2)
2818 (vector 'REx-part2 (point)))
2819 ((nth 4 state)
2820 [comment])
2821 ((nth 3 state)
2822 [string])
2823 ;; XXXX Do we need to special-case this?
2824 ((null containing-sexp)
2825 ;; Line is at top level. May be data or function definition,
2826 ;; or may be function argument declaration.
2827 ;; Indent like the previous top level line
2828 ;; unless that ends in a closeparen without semicolon,
2829 ;; in which case this line is the first argument decl.
2830 (skip-chars-forward " \t")
2831 (cperl-backward-to-noncomment (or old-indent (point-min)))
2832 (setq state
2833 (or (bobp)
2834 (eq (point) old-indent) ; old-indent was at comment
2835 (eq (preceding-char) ?\;)
2836 ;; Had ?\) too
2837 (and (eq (preceding-char) ?\})
2838 (cperl-after-block-and-statement-beg
2839 (point-min))) ; Was start - too close
2840 (memq char-after (append ")]}" nil))
2841 (and (eq (preceding-char) ?\:) ; label
2842 (progn
2843 (forward-sexp -1)
2844 (skip-chars-backward " \t")
2845 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:")))
2846 (get-text-property (point) 'first-format-line)))
2847
2848 ;; Look at previous line that's at column 0
2849 ;; to determine whether we are in top-level decls
2850 ;; or function's arg decls. Set basic-indent accordingly.
2851 ;; Now add a little if this is a continuation line.
2852 (and state
2853 parse-data
2854 (not (eq char-after ?\C-j))
2855 (setcdr (cddr parse-data)
2856 (list pre-indent-point)))
2857 (vector 'toplevel start char-after state (nth 2 s-s)))
2858 ((not
2859 (or (setq is-block
2860 (and (setq delim (= (char-after containing-sexp) ?{))
2861 (save-excursion ; Is it a hash?
2862 (goto-char containing-sexp)
2863 (cperl-block-p))))
2864 cperl-indent-parens-as-block))
2865 ;; group is an expression, not a block:
2866 ;; indent to just after the surrounding open parens,
2867 ;; skip blanks if we do not close the expression.
2868 (goto-char (1+ containing-sexp))
2869 (or (memq char-after
2870 (append (if delim "}" ")]}") nil))
2871 (looking-at "[ \t]*\\(#\\|$\\)")
2872 (skip-chars-forward " \t"))
2873 (setq old-indent (point)) ; delim=is-brace
2874 (vector 'in-parens char-after (point) delim containing-sexp))
2875 (t
2876 ;; Statement level. Is it a continuation or a new statement?
2877 ;; Find previous non-comment character.
2878 (goto-char pre-indent-point) ; Skip one level of POD/etc
2879 (cperl-backward-to-noncomment containing-sexp)
2880 ;; Back up over label lines, since they don't
2881 ;; affect whether our line is a continuation.
2882 ;; (Had \, too)
2883 (while;;(or (eq (preceding-char) ?\,)
2884 (and (eq (preceding-char) ?:)
2885 (or;;(eq (char-after (- (point) 2)) ?\') ; ????
2886 (memq (char-syntax (char-after (- (point) 2)))
2887 '(?w ?_))))
2888 ;;)
2889 ;; This is always FALSE?
2890 (if (eq (preceding-char) ?\,)
2891 ;; Will go to beginning of line, essentially.
2892 ;; Will ignore embedded sexpr XXXX.
2893 (cperl-backward-to-start-of-continued-exp containing-sexp))
2894 (beginning-of-line)
2895 (cperl-backward-to-noncomment containing-sexp))
2896 ;; Now we get non-label preceeding the indent point
2897 (if (not (or (eq (1- (point)) containing-sexp)
2898 (memq (preceding-char)
2899 (append (if is-block " ;{" " ,;{") '(nil)))
2900 (and (eq (preceding-char) ?\})
2901 (cperl-after-block-and-statement-beg
2902 containing-sexp))
2903 (get-text-property (point) 'first-format-line)))
2904 ;; This line is continuation of preceding line's statement;
2905 ;; indent `cperl-continued-statement-offset' more than the
2906 ;; previous line of the statement.
2907 ;;
2908 ;; There might be a label on this line, just
2909 ;; consider it bad style and ignore it.
2910 (progn
2911 (cperl-backward-to-start-of-continued-exp containing-sexp)
2912 (vector 'continuation (point) char-after is-block delim))
2913 ;; This line starts a new statement.
2914 ;; Position following last unclosed open brace
2915 (goto-char containing-sexp)
2916 ;; Is line first statement after an open-brace?
2917 (or
2918 ;; If no, find that first statement and indent like
2919 ;; it. If the first statement begins with label, do
2920 ;; not believe when the indentation of the label is too
2921 ;; small.
2922 (save-excursion
2923 (forward-char 1)
2924 (let ((colon-line-end 0))
2925 (while
2926 (progn (skip-chars-forward " \t\n")
2927 ;; s: foo : bar :x is NOT label
2928 (and (looking-at "#\\|\\([a-zA-Z0-9_$]+\\):[^:]\\|=[a-zA-Z]")
2929 (not (looking-at "[sym]:\\|tr:"))))
2930 ;; Skip over comments and labels following openbrace.
2931 (cond ((= (following-char) ?\#)
2932 (forward-line 1))
2933 ((= (following-char) ?\=)
2934 (goto-char
2935 (or (next-single-property-change (point) 'in-pod)
2936 (point-max)))) ; do not loop if no syntaxification
2937 ;; label:
2938 (t
2939 (save-excursion (end-of-line)
2940 (setq colon-line-end (point)))
2941 (search-forward ":"))))
2942 ;; We are at beginning of code (NOT label or comment)
2943 ;; First, the following code counts
2944 ;; if it is before the line we want to indent.
2945 (and (< (point) indent-point)
2946 (vector 'have-prev-sibling (point) colon-line-end
2947 containing-sexp))))
2948 (progn
2949 ;; If no previous statement,
2950 ;; indent it relative to line brace is on.
2951
2952 ;; For open-braces not the first thing in a line,
2953 ;; add in cperl-brace-imaginary-offset.
2954
2955 ;; If first thing on a line: ?????
2956 ;; Move back over whitespace before the openbrace.
2957 (setq ; brace first thing on a line
2958 old-indent (progn (skip-chars-backward " \t") (bolp)))
2959 ;; Should we indent w.r.t. earlier than start?
2960 ;; Move to start of control group, possibly on a different line
2961 (or cperl-indent-wrt-brace
2962 (cperl-backward-to-noncomment (point-min)))
2963 ;; If the openbrace is preceded by a parenthesized exp,
2964 ;; move to the beginning of that;
2965 (if (eq (preceding-char) ?\))
2966 (progn
2967 (forward-sexp -1)
2968 (cperl-backward-to-noncomment (point-min))))
2969 ;; In the case it starts a subroutine, indent with
2970 ;; respect to `sub', not with respect to the
2971 ;; first thing on the line, say in the case of
2972 ;; anonymous sub in a hash.
2973 (if (and;; Is it a sub in group starting on this line?
2974 (cond ((get-text-property (point) 'attrib-group)
2975 (goto-char (cperl-beginning-of-property
2976 (point) 'attrib-group)))
2977 ((eq (preceding-char) ?b)
2978 (forward-sexp -1)
2979 (looking-at "sub\\>")))
2980 (setq p (nth 1 ; start of innermost containing list
2981 (parse-partial-sexp
2982 (save-excursion (beginning-of-line)
2983 (point))
2984 (point)))))
2985 (progn
2986 (goto-char (1+ p)) ; enclosing block on the same line
2987 (skip-chars-forward " \t")
2988 (vector 'code-start-in-block containing-sexp char-after
2989 (and delim (not is-block)) ; is a HASH
2990 old-indent ; brace first thing on a line
2991 t (point) ; have something before...
2992 )
2993 ;;(current-column)
2994 )
2995 ;; Get initial indentation of the line we are on.
2996 ;; If line starts with label, calculate label indentation
2997 (vector 'code-start-in-block containing-sexp char-after
2998 (and delim (not is-block)) ; is a HASH
2999 old-indent ; brace first thing on a line
3000 nil (point))))))))))))))) ; nothing interesting before
3001
3002 (defvar cperl-indent-rules-alist
3003 '((pod nil) ; via `syntax-type' property
3004 (here-doc nil) ; via `syntax-type' property
3005 (here-doc-delim nil) ; via `syntax-type' property
3006 (format nil) ; via `syntax-type' property
3007 (in-pod nil) ; via `in-pod' property
3008 (comment-special:at-beginning-of-line nil)
3009 (string t)
3010 (comment nil))
3011 "Alist of indentation rules for CPerl mode.
3012 The values mean:
3013 nil: do not indent;
3014 number: add this amount of indentation.")
3015
3016 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start
3017 "Return appropriate indentation for current line as Perl code.
3018 In usual case returns an integer: the column to indent to.
3019 Returns nil if line starts inside a string, t if in a comment.
3020
3021 Will not correct the indentation for labels, but will correct it for braces
3022 and closing parentheses and brackets."
3023 ;; This code is still a broken architecture: in some cases we need to
3024 ;; compensate for some modifications which `cperl-indent-line' will add later
3025 (save-excursion
3026 (let ((i (cperl-sniff-for-indent parse-data)) what p)
3027 (cond
3028 ;;((or (null i) (eq i t) (numberp i))
3029 ;; i)
3030 ((vectorp i)
3031 (setq what (assoc (elt i 0) cperl-indent-rules-alist))
3032 (cond
3033 (what (cadr what)) ; Load from table
3034 ;;
3035 ;; Indenters for regular expressions with //x and qw()
3036 ;;
3037 ((eq 'REx-part2 (elt i 0)) ;; [self start] start of /REP in s//REP/x
3038 (goto-char (elt i 1))
3039 (condition-case nil ; Use indentation of the 1st part
3040 (forward-sexp -1))
3041 (current-column))
3042 ((eq 'indentable (elt i 0)) ; Indenter for REGEXP qw() etc
3043 (cond ;;; [indentable terminator start-pos is-block]
3044 ((eq 'terminator (elt i 1)) ; Lone terminator of "indentable string"
3045 (goto-char (elt i 2)) ; After opening parens
3046 (1- (current-column)))
3047 ((eq 'first-line (elt i 1)); [indentable first-line start-pos]
3048 (goto-char (elt i 2))
3049 (+ (or cperl-regexp-indent-step cperl-indent-level)
3050 -1
3051 (current-column)))
3052 ((eq 'cont-line (elt i 1)); [indentable cont-line pos prev-pos first-char start-pos]
3053 ;; Indent as the level after closing parens
3054 (goto-char (elt i 2)) ; indent line
3055 (skip-chars-forward " \t)") ; Skip closing parens
3056 (setq p (point))
3057 (goto-char (elt i 3)) ; previous line
3058 (skip-chars-forward " \t)") ; Skip closing parens
3059 ;; Number of parens in between:
3060 (setq p (nth 0 (parse-partial-sexp (point) p))
3061 what (elt i 4)) ; First char on current line
3062 (goto-char (elt i 3)) ; previous line
3063 (+ (* p (or cperl-regexp-indent-step cperl-indent-level))
3064 (cond ((eq what ?\) )
3065 (- cperl-close-paren-offset)) ; compensate
3066 ((eq what ?\| )
3067 (- (or cperl-regexp-indent-step cperl-indent-level)))
3068 (t 0))
3069 (if (eq (following-char) ?\| )
3070 (or cperl-regexp-indent-step cperl-indent-level)
3071 0)
3072 (current-column)))
3073 (t
3074 (error "Unrecognized value of indent: %s" i))))
3075 ;;
3076 ;; Indenter for stuff at toplevel
3077 ;;
3078 ((eq 'toplevel (elt i 0)) ;; [toplevel start char-after state immed-after-block]
3079 (+ (save-excursion ; To beg-of-defun, or end of last sexp
3080 (goto-char (elt i 1)) ; start = Good place to start parsing
3081 (- (current-indentation) ;
3082 (if (elt i 4) cperl-indent-level 0))) ; immed-after-block
3083 (if (eq (elt i 2) ?{) cperl-continued-brace-offset 0) ; char-after
3084 ;; Look at previous line that's at column 0
3085 ;; to determine whether we are in top-level decls
3086 ;; or function's arg decls. Set basic-indent accordingly.
3087 ;; Now add a little if this is a continuation line.
3088 (if (elt i 3) ; state (XXX What is the semantic???)
3089 0
3090 cperl-continued-statement-offset)))
3091 ;;
3092 ;; Indenter for stuff in "parentheses" (or brackets, braces-as-hash)
3093 ;;
3094 ((eq 'in-parens (elt i 0))
3095 ;; in-parens char-after old-indent-point is-brace containing-sexp
3096
3097 ;; group is an expression, not a block:
3098 ;; indent to just after the surrounding open parens,
3099 ;; skip blanks if we do not close the expression.
3100 (+ (progn
3101 (goto-char (elt i 2)) ; old-indent-point
3102 (current-column))
3103 (if (and (elt i 3) ; is-brace
3104 (eq (elt i 1) ?\})) ; char-after
3105 ;; Correct indentation of trailing ?\}
3106 (+ cperl-indent-level cperl-close-paren-offset)
3107 0)))
3108 ;;
3109 ;; Indenter for continuation lines
3110 ;;
3111 ((eq 'continuation (elt i 0))
3112 ;; [continuation statement-start char-after is-block is-brace]
3113 (goto-char (elt i 1)) ; statement-start
3114 (+ (if (memq (elt i 2) (append "}])" nil)) ; char-after
3115 0 ; Closing parenth
3116 cperl-continued-statement-offset)
3117 (if (or (elt i 3) ; is-block
3118 (not (elt i 4)) ; is-brace
3119 (not (eq (elt i 2) ?\}))) ; char-after
3120 0
3121 ;; Now it is a hash reference
3122 (+ cperl-indent-level cperl-close-paren-offset))
3123 ;; Labels do not take :: ...
3124 (if (looking-at "\\(\\w\\|_\\)+[ \t]*:")
3125 (if (> (current-indentation) cperl-min-label-indent)
3126 (- (current-indentation) cperl-label-offset)
3127 ;; Do not move `parse-data', this should
3128 ;; be quick anyway (this comment comes
3129 ;; from different location):
3130 (cperl-calculate-indent))
3131 (current-column))
3132 (if (eq (elt i 2) ?\{) ; char-after
3133 cperl-continued-brace-offset 0)))
3134 ;;
3135 ;; Indenter for lines in a block which are not leading lines
3136 ;;
3137 ((eq 'have-prev-sibling (elt i 0))
3138 ;; [have-prev-sibling sibling-beg colon-line-end block-start]
3139 (goto-char (elt i 1)) ; sibling-beg
3140 (if (> (elt i 2) (point)) ; colon-line-end; have label before point
3141 (if (> (current-indentation)
3142 cperl-min-label-indent)
3143 (- (current-indentation) cperl-label-offset)
3144 ;; Do not believe: `max' was involved in calculation of indent
3145 (+ cperl-indent-level
3146 (save-excursion
3147 (goto-char (elt i 3)) ; block-start
3148 (current-indentation))))
3149 (current-column)))
3150 ;;
3151 ;; Indenter for the first line in a block
3152 ;;
3153 ((eq 'code-start-in-block (elt i 0))
3154 ;;[code-start-in-block before-brace char-after
3155 ;; is-a-HASH-ref brace-is-first-thing-on-a-line
3156 ;; group-starts-before-start-of-sub start-of-control-group]
3157 (goto-char (elt i 1))
3158 ;; For open brace in column zero, don't let statement
3159 ;; start there too. If cperl-indent-level=0,
3160 ;; use cperl-brace-offset + cperl-continued-statement-offset instead.
3161 (+ (if (and (bolp) (zerop cperl-indent-level))
3162 (+ cperl-brace-offset cperl-continued-statement-offset)
3163 cperl-indent-level)
3164 (if (and (elt i 3) ; is-a-HASH-ref
3165 (eq (elt i 2) ?\})) ; char-after: End of a hash reference
3166 (+ cperl-indent-level cperl-close-paren-offset)
3167 0)
3168 ;; Unless openbrace is the first nonwhite thing on the line,
3169 ;; add the cperl-brace-imaginary-offset.
3170 (if (elt i 4) 0 ; brace-is-first-thing-on-a-line
3171 cperl-brace-imaginary-offset)
3172 (progn
3173 (goto-char (elt i 6)) ; start-of-control-group
3174 (if (elt i 5) ; group-starts-before-start-of-sub
3175 (current-column)
3176 ;; Get initial indentation of the line we are on.
3177 ;; If line starts with label, calculate label indentation
3178 (if (save-excursion
3179 (beginning-of-line)
3180 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]"))
3181 (if (> (current-indentation) cperl-min-label-indent)
3182 (- (current-indentation) cperl-label-offset)
3183 ;; Do not move `parse-data', this should
3184 ;; be quick anyway:
3185 (cperl-calculate-indent))
3186 (current-indentation))))))
3187 (t
3188 (error "Unrecognized value of indent: %s" i))))
3189 (t
3190 (error "Got strange value of indent: %s" i))))))
3191
3192 (defun cperl-calculate-indent-within-comment ()
3193 "Return the indentation amount for line, assuming that
3194 the current line is to be regarded as part of a block comment."
3195 (let (end star-start)
3196 (save-excursion
3197 (beginning-of-line)
3198 (skip-chars-forward " \t")
3199 (setq end (point))
3200 (and (= (following-char) ?#)
3201 (forward-line -1)
3202 (cperl-to-comment-or-eol)
3203 (setq end (point)))
3204 (goto-char end)
3205 (current-column))))
3206
3207
3208 (defun cperl-to-comment-or-eol ()
3209 "Go to position before comment on the current line, or to end of line.
3210 Returns true if comment is found. In POD will not move the point."
3211 ;; If the line is inside other syntax groups (qq-style strings, HERE-docs)
3212 ;; then looks for literal # or end-of-line.
3213 (let (state stop-in cpoint (lim (progn (end-of-line) (point))) pr e)
3214 (or cperl-font-locking
3215 (cperl-update-syntaxification lim lim))
3216 (beginning-of-line)
3217 (if (setq pr (get-text-property (point) 'syntax-type))
3218 (setq e (next-single-property-change (point) 'syntax-type nil (point-max))))
3219 (if (or (eq pr 'pod)
3220 (if (or (not e) (> e lim)) ; deep inside a group
3221 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)))
3222 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t))
3223 ;; Else - need to do it the hard way
3224 (and (and e (<= e lim))
3225 (goto-char e))
3226 (while (not stop-in)
3227 (setq state (parse-partial-sexp (point) lim nil nil nil t))
3228 ; stop at comment
3229 ;; If fails (beginning-of-line inside sexp), then contains not-comment
3230 (if (nth 4 state) ; After `#';
3231 ; (nth 2 state) can be
3232 ; beginning of m,s,qq and so
3233 ; on
3234 (if (nth 2 state)
3235 (progn
3236 (setq cpoint (point))
3237 (goto-char (nth 2 state))
3238 (cond
3239 ((looking-at "\\(s\\|tr\\)\\>")
3240 (or (re-search-forward
3241 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*"
3242 lim 'move)
3243 (setq stop-in t)))
3244 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>")
3245 (or (re-search-forward
3246 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#"
3247 lim 'move)
3248 (setq stop-in t)))
3249 (t ; It was fair comment
3250 (setq stop-in t) ; Finish
3251 (goto-char (1- cpoint)))))
3252 (setq stop-in t) ; Finish
3253 (forward-char -1))
3254 (setq stop-in t))) ; Finish
3255 (nth 4 state))))
3256
3257 (defsubst cperl-modify-syntax-type (at how)
3258 (if (< at (point-max))
3259 (progn
3260 (put-text-property at (1+ at) 'syntax-table how)
3261 (put-text-property at (1+ at) 'rear-nonsticky '(syntax-table)))))
3262
3263 (defun cperl-protect-defun-start (s e)
3264 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations
3265 (save-excursion
3266 (goto-char s)
3267 (while (re-search-forward "^\\s(" e 'to-end)
3268 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct))))
3269
3270 (defun cperl-commentify (bb e string &optional noface)
3271 (if cperl-use-syntax-table-text-property
3272 (if (eq noface 'n) ; Only immediate
3273 nil
3274 ;; We suppose that e is _after_ the end of construction, as after eol.
3275 (setq string (if string cperl-st-sfence cperl-st-cfence))
3276 (if (> bb (- e 2))
3277 ;; one-char string/comment?!
3278 (cperl-modify-syntax-type bb cperl-st-punct)
3279 (cperl-modify-syntax-type bb string)
3280 (cperl-modify-syntax-type (1- e) string))
3281 (if (and (eq string cperl-st-sfence) (> (- e 2) bb))
3282 (put-text-property (1+ bb) (1- e)
3283 'syntax-table cperl-string-syntax-table))
3284 (cperl-protect-defun-start bb e))
3285 ;; Fontify
3286 (or noface
3287 (not cperl-pod-here-fontify)
3288 (put-text-property bb e 'face (if string 'font-lock-string-face
3289 'font-lock-comment-face)))))
3290
3291 (defvar cperl-starters '(( ?\( . ?\) )
3292 ( ?\[ . ?\] )
3293 ( ?\{ . ?\} )
3294 ( ?\< . ?\> )))
3295
3296 (defun cperl-cached-syntax-table (st)
3297 "Get a syntax table cached in ST, or create and cache into ST a syntax table.
3298 All the entries of the syntax table are \".\", except for a backslash, which
3299 is quoting."
3300 (if (car-safe st)
3301 (car st)
3302 (setcar st (make-syntax-table))
3303 (setq st (car st))
3304 (let ((i 0))
3305 (while (< i 256)
3306 (modify-syntax-entry i "." st)
3307 (setq i (1+ i))))
3308 (modify-syntax-entry ?\\ "\\" st)
3309 st))
3310
3311 (defun cperl-forward-re (lim end is-2arg st-l err-l argument
3312 &optional ostart oend)
3313 "Find the end of a regular expression or a stringish construct (q[] etc).
3314 The point should be before the starting delimiter.
3315
3316 Goes to LIM if none is found. If IS-2ARG is non-nil, assumes that it
3317 is s/// or tr/// like expression. If END is nil, generates an error
3318 message if needed. If SET-ST is non-nil, will use (or generate) a
3319 cached syntax table in ST-L. If ERR-L is non-nil, will store the
3320 error message in its CAR (unless it already contains some error
3321 message). ARGUMENT should be the name of the construct (used in error
3322 messages). OSTART, OEND may be set in recursive calls when processing
3323 the second argument of 2ARG construct.
3324
3325 Works *before* syntax recognition is done. In IS-2ARG situation may
3326 modify syntax-type text property if the situation is too hard."
3327 (let (b starter ender st i i2 go-forward reset-st set-st)
3328 (skip-chars-forward " \t")
3329 ;; ender means matching-char matcher.
3330 (setq b (point)
3331 starter (if (eobp) 0 (char-after b))
3332 ender (cdr (assoc starter cperl-starters)))
3333 ;; What if starter == ?\\ ????
3334 (setq st (cperl-cached-syntax-table st-l))
3335 (setq set-st t)
3336 ;; Whether we have an intermediate point
3337 (setq i nil)
3338 ;; Prepare the syntax table:
3339 (if (not ender) ; m/blah/, s/x//, s/x/y/
3340 (modify-syntax-entry starter "$" st)
3341 (modify-syntax-entry starter (concat "(" (list ender)) st)
3342 (modify-syntax-entry ender (concat ")" (list starter)) st))
3343 (condition-case bb
3344 (progn
3345 ;; We use `$' syntax class to find matching stuff, but $$
3346 ;; is recognized the same as $, so we need to check this manually.
3347 (if (and (eq starter (char-after (cperl-1+ b)))
3348 (not ender))
3349 ;; $ has TeXish matching rules, so $$ equiv $...
3350 (forward-char 2)
3351 (setq reset-st (syntax-table))
3352 (set-syntax-table st)
3353 (forward-sexp 1)
3354 (if (<= (point) (1+ b))
3355 (error "Unfinished regular expression"))
3356 (set-syntax-table reset-st)
3357 (setq reset-st nil)
3358 ;; Now the problem is with m;blah;;
3359 (and (not ender)
3360 (eq (preceding-char)
3361 (char-after (- (point) 2)))
3362 (save-excursion
3363 (forward-char -2)
3364 (= 0 (% (skip-chars-backward "\\\\") 2)))
3365 (forward-char -1)))
3366 ;; Now we are after the first part.
3367 (and is-2arg ; Have trailing part
3368 (not ender)
3369 (eq (following-char) starter) ; Empty trailing part
3370 (progn
3371 (or (eq (char-syntax (following-char)) ?.)
3372 ;; Make trailing letter into punctuation
3373 (cperl-modify-syntax-type (point) cperl-st-punct))
3374 (setq is-2arg nil go-forward t))) ; Ignore the tail
3375 (if is-2arg ; Not number => have second part
3376 (progn
3377 (setq i (point) i2 i)
3378 (if ender
3379 (if (memq (following-char) '(?\s ?\t ?\n ?\f))
3380 (progn
3381 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
3382 (goto-char (match-end 0))
3383 (skip-chars-forward " \t\n\f"))
3384 (setq i2 (point))))
3385 (forward-char -1))
3386 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st)
3387 (if ender (modify-syntax-entry ender "." st))
3388 (setq set-st nil)
3389 (setq ender (cperl-forward-re lim end nil st-l err-l
3390 argument starter ender)
3391 ender (nth 2 ender)))))
3392 (error (goto-char lim)
3393 (setq set-st nil)
3394 (if reset-st
3395 (set-syntax-table reset-st))
3396 (or end
3397 (message
3398 "End of `%s%s%c ... %c' string/RE not found: %s"
3399 argument
3400 (if ostart (format "%c ... %c" ostart (or oend ostart)) "")
3401 starter (or ender starter) bb)
3402 (or (car err-l) (setcar err-l b)))))
3403 (if set-st
3404 (progn
3405 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st)
3406 (if ender (modify-syntax-entry ender "." st))))
3407 ;; i: have 2 args, after end of the first arg
3408 ;; i2: start of the second arg, if any (before delim if `ender').
3409 ;; ender: the last arg bounded by parens-like chars, the second one of them
3410 ;; starter: the starting delimiter of the first arg
3411 ;; go-forward: has 2 args, and the second part is empty
3412 (list i i2 ender starter go-forward)))
3413
3414 (defun cperl-forward-group-in-re (&optional st-l)
3415 "Find the end of a group in a REx.
3416 Return the error message (if any). Does not work if delimiter is `)'.
3417 Works before syntax recognition is done."
3418 ;; Works *before* syntax recognition is done
3419 (or st-l (setq st-l (list nil))) ; Avoid overwriting '()
3420 (let (st b reset-st)
3421 (condition-case b
3422 (progn
3423 (setq st (cperl-cached-syntax-table st-l))
3424 (modify-syntax-entry ?\( "()" st)
3425 (modify-syntax-entry ?\) ")(" st)
3426 (setq reset-st (syntax-table))
3427 (set-syntax-table st)
3428 (forward-sexp 1))
3429 (error (message
3430 "cperl-forward-group-in-re: error %s" b)))
3431 ;; now restore the initial state
3432 (if st
3433 (progn
3434 (modify-syntax-entry ?\( "." st)
3435 (modify-syntax-entry ?\) "." st)))
3436 (if reset-st
3437 (set-syntax-table reset-st))
3438 b))
3439
3440
3441 (defvar font-lock-string-face)
3442 ;;(defvar font-lock-reference-face)
3443 (defvar font-lock-constant-face)
3444 (defsubst cperl-postpone-fontification (b e type val &optional now)
3445 ;; Do after syntactic fontification?
3446 (if cperl-syntaxify-by-font-lock
3447 (or now (put-text-property b e 'cperl-postpone (cons type val)))
3448 (put-text-property b e type val)))
3449
3450 ;;; Here is how the global structures (those which cannot be
3451 ;;; recognized locally) are marked:
3452 ;; a) PODs:
3453 ;; Start-to-end is marked `in-pod' ==> t
3454 ;; Each non-literal part is marked `syntax-type' ==> `pod'
3455 ;; Each literal part is marked `syntax-type' ==> `in-pod'
3456 ;; b) HEREs:
3457 ;; Start-to-end is marked `here-doc-group' ==> t
3458 ;; The body is marked `syntax-type' ==> `here-doc'
3459 ;; The delimiter is marked `syntax-type' ==> `here-doc-delim'
3460 ;; c) FORMATs:
3461 ;; First line (to =) marked `first-format-line' ==> t
3462 ;; After-this--to-end is marked `syntax-type' ==> `format'
3463 ;; d) 'Q'uoted string:
3464 ;; part between markers inclusive is marked `syntax-type' ==> `string'
3465 ;; part between `q' and the first marker is marked `syntax-type' ==> `prestring'
3466 ;; second part of s///e is marked `syntax-type' ==> `multiline'
3467 ;; e) Attributes of subroutines: `attrib-group' ==> t
3468 ;; (or 0 if declaration); up to `{' or ';': `syntax-type' => `sub-decl'.
3469 ;; f) Multiline my/our declaration lists etc: `syntax-type' => `multiline'
3470
3471 ;;; In addition, some parts of RExes may be marked as `REx-interpolated'
3472 ;;; (value: 0 in //o, 1 if "interpolated variable" is whole-REx, t otherwise).
3473
3474 (defun cperl-unwind-to-safe (before &optional end)
3475 ;; if BEFORE, go to the previous start-of-line on each step of unwinding
3476 (let ((pos (point)) opos)
3477 (while (and pos (progn
3478 (beginning-of-line)
3479 (get-text-property (setq pos (point)) 'syntax-type)))
3480 (setq opos pos
3481 pos (cperl-beginning-of-property pos 'syntax-type))
3482 (if (eq pos (point-min))
3483 (setq pos nil))
3484 (if pos
3485 (if before
3486 (progn
3487 (goto-char (cperl-1- pos))
3488 (beginning-of-line)
3489 (setq pos (point)))
3490 (goto-char (setq pos (cperl-1- pos))))
3491 ;; Up to the start
3492 (goto-char (point-min))))
3493 ;; Skip empty lines
3494 (and (looking-at "\n*=")
3495 (/= 0 (skip-chars-backward "\n"))
3496 (forward-char))
3497 (setq pos (point))
3498 (if end
3499 ;; Do the same for end, going small steps
3500 (save-excursion
3501 (while (and end (get-text-property end 'syntax-type))
3502 (setq pos end
3503 end (next-single-property-change end 'syntax-type nil (point-max)))
3504 (if end (progn (goto-char end)
3505 (or (bolp) (forward-line 1))
3506 (setq end (point)))))
3507 (or end pos)))))
3508
3509 ;;; These are needed for byte-compile (at least with v19)
3510 (defvar cperl-nonoverridable-face)
3511 (defvar font-lock-variable-name-face)
3512 (defvar font-lock-function-name-face)
3513 (defvar font-lock-keyword-face)
3514 (defvar font-lock-builtin-face)
3515 (defvar font-lock-type-face)
3516 (defvar font-lock-comment-face)
3517 (defvar font-lock-warning-face)
3518
3519 (defun cperl-find-sub-attrs (&optional st-l b-fname e-fname pos)
3520 "Syntaxically mark (and fontify) attributes of a subroutine.
3521 Should be called with the point before leading colon of an attribute."
3522 ;; Works *before* syntax recognition is done
3523 (or st-l (setq st-l (list nil))) ; Avoid overwriting '()
3524 (let (st b p reset-st after-first (start (point)) start1 end1)
3525 (condition-case b
3526 (while (looking-at
3527 (concat
3528 "\\(" ; 1=optional? colon
3529 ":" cperl-maybe-white-and-comment-rex ; 2=whitespace/comment?
3530 "\\)"
3531 (if after-first "?" "")
3532 ;; No space between name and paren allowed...
3533 "\\(\\sw+\\)" ; 3=name
3534 "\\((\\)?")) ; 4=optional paren
3535 (and (match-beginning 1)
3536 (cperl-postpone-fontification
3537 (match-beginning 0) (cperl-1+ (match-beginning 0))
3538 'face font-lock-constant-face))
3539 (setq start1 (match-beginning 3) end1 (match-end 3))
3540 (cperl-postpone-fontification start1 end1
3541 'face font-lock-constant-face)
3542 (goto-char end1) ; end or before `('
3543 (if (match-end 4) ; Have attribute arguments...
3544 (progn
3545 (if st nil
3546 (setq st (cperl-cached-syntax-table st-l))
3547 (modify-syntax-entry ?\( "()" st)
3548 (modify-syntax-entry ?\) ")(" st))
3549 (setq reset-st (syntax-table) p (point))
3550 (set-syntax-table st)
3551 (forward-sexp 1)
3552 (set-syntax-table reset-st)
3553 (setq reset-st nil)
3554 (cperl-commentify p (point) t))) ; mark as string
3555 (forward-comment (buffer-size))
3556 (setq after-first t))
3557 (error (message
3558 "L%d: attribute `%s': %s"
3559 (count-lines (point-min) (point))
3560 (and start1 end1 (buffer-substring start1 end1)) b)
3561 (setq start nil)))
3562 (and start
3563 (progn
3564 (put-text-property start (point)
3565 'attrib-group (if (looking-at "{") t 0))
3566 (and pos
3567 (< 1 (count-lines (+ 3 pos) (point))) ; end of `sub'
3568 ;; Apparently, we do not need `multiline': faces added now
3569 (put-text-property (+ 3 pos) (cperl-1+ (point))
3570 'syntax-type 'sub-decl))
3571 (and b-fname ; Fontify here: the following condition
3572 (cperl-postpone-fontification ; is too hard to determine by
3573 b-fname e-fname 'face ; a REx, so do it here
3574 (if (looking-at "{")
3575 font-lock-function-name-face
3576 font-lock-variable-name-face)))))
3577 ;; now restore the initial state
3578 (if st
3579 (progn
3580 (modify-syntax-entry ?\( "." st)
3581 (modify-syntax-entry ?\) "." st)))
3582 (if reset-st
3583 (set-syntax-table reset-st))))
3584
3585 (defsubst cperl-look-at-leading-count (is-x-REx e)
3586 (if (and
3587 (< (point) e)
3588 (re-search-forward (concat "\\=" (if is-x-REx "[ \t\n]*" "") "[{?+*]")
3589 (1- e) t)) ; return nil on failure, no moving
3590 (if (eq ?\{ (preceding-char)) nil
3591 (cperl-postpone-fontification
3592 (1- (point)) (point)
3593 'face font-lock-warning-face))))
3594
3595 ;;; Debugging this may require (setq max-specpdl-size 2000)...
3596 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max end-of-here-doc)
3597 "Scans the buffer for hard-to-parse Perl constructions.
3598 If `cperl-pod-here-fontify' is not-nil after evaluation, will fontify
3599 the sections using `cperl-pod-head-face', `cperl-pod-face',
3600 `cperl-here-face'."
3601 (interactive)
3602 (or min (setq min (point-min)
3603 cperl-syntax-state nil
3604 cperl-syntax-done-to min))
3605 (or max (setq max (point-max)))
3606 (let* ((cperl-pod-here-fontify (eval cperl-pod-here-fontify)) go tmpend
3607 face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb
3608 is-REx is-x-REx REx-subgr-start REx-subgr-end was-subgr i2 hairy-RE
3609 (case-fold-search nil) (inhibit-read-only t) (buffer-undo-list t)
3610 (modified (buffer-modified-p)) overshoot is-o-REx
3611 (after-change-functions nil)
3612 (cperl-font-locking t)
3613 (use-syntax-state (and cperl-syntax-state
3614 (>= min (car cperl-syntax-state))))
3615 (state-point (if use-syntax-state
3616 (car cperl-syntax-state)
3617 (point-min)))
3618 (state (if use-syntax-state
3619 (cdr cperl-syntax-state)))
3620 ;; (st-l '(nil)) (err-l '(nil)) ; Would overwrite - propagates from a function call to a function call!
3621 (st-l (list nil)) (err-l (list nil))
3622 ;; Somehow font-lock may be not loaded yet...
3623 ;; (e.g., when building TAGS via command-line call)
3624 (font-lock-string-face (if (boundp 'font-lock-string-face)
3625 font-lock-string-face
3626 'font-lock-string-face))
3627 (my-cperl-delimiters-face (if (boundp 'font-lock-constant-face)
3628 font-lock-constant-face
3629 'font-lock-constant-face))
3630 (my-cperl-REx-spec-char-face ; [] ^.$ and wrapper-of ({})
3631 (if (boundp 'font-lock-function-name-face)
3632 font-lock-function-name-face
3633 'font-lock-function-name-face))
3634 (font-lock-variable-name-face ; interpolated vars and ({})-code
3635 (if (boundp 'font-lock-variable-name-face)
3636 font-lock-variable-name-face
3637 'font-lock-variable-name-face))
3638 (font-lock-function-name-face ; used in `cperl-find-sub-attrs'
3639 (if (boundp 'font-lock-function-name-face)
3640 font-lock-function-name-face
3641 'font-lock-function-name-face))
3642 (font-lock-constant-face ; used in `cperl-find-sub-attrs'
3643 (if (boundp 'font-lock-constant-face)
3644 font-lock-constant-face
3645 'font-lock-constant-face))
3646 (my-cperl-REx-0length-face ; 0-length, (?:)etc, non-literal \
3647 (if (boundp 'font-lock-builtin-face)
3648 font-lock-builtin-face
3649 'font-lock-builtin-face))
3650 (font-lock-comment-face
3651 (if (boundp 'font-lock-comment-face)
3652 font-lock-comment-face
3653 'font-lock-comment-face))
3654 (font-lock-warning-face
3655 (if (boundp 'font-lock-warning-face)
3656 font-lock-warning-face
3657 'font-lock-warning-face))
3658 (my-cperl-REx-ctl-face ; (|)
3659 (if (boundp 'font-lock-keyword-face)
3660 font-lock-keyword-face
3661 'font-lock-keyword-face))
3662 (my-cperl-REx-modifiers-face ; //gims
3663 (if (boundp 'cperl-nonoverridable-face)
3664 cperl-nonoverridable-face
3665 'cperl-nonoverridable-face))
3666 (my-cperl-REx-length1-face ; length=1 escaped chars, POSIX classes
3667 (if (boundp 'font-lock-type-face)
3668 font-lock-type-face
3669 'font-lock-type-face))
3670 (stop-point (if ignore-max
3671 (point-max)
3672 max))
3673 (search
3674 (concat
3675 "\\(\\`\n?\\|^\n\\)=" ; POD
3676 "\\|"
3677 ;; One extra () before this:
3678 "<<" ; HERE-DOC
3679 "\\(" ; 1 + 1
3680 ;; First variant "BLAH" or just ``.
3681 "[ \t]*" ; Yes, whitespace is allowed!
3682 "\\([\"'`]\\)" ; 2 + 1 = 3
3683 "\\([^\"'`\n]*\\)" ; 3 + 1
3684 "\\3"
3685 "\\|"
3686 ;; Second variant: Identifier or \ID (same as 'ID') or empty
3687 "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1
3688 ;; Do not have <<= or << 30 or <<30 or << $blah.
3689 ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1
3690 "\\(\\)" ; To preserve count of pars :-( 6 + 1
3691 "\\)"
3692 "\\|"
3693 ;; 1+6 extra () before this:
3694 "^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" ;FRMAT
3695 (if cperl-use-syntax-table-text-property
3696 (concat
3697 "\\|"
3698 ;; 1+6+2=9 extra () before this:
3699 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" ; QUOTED CONSTRUCT
3700 "\\|"
3701 ;; 1+6+2+1=10 extra () before this:
3702 "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob>
3703 "\\|"
3704 ;; 1+6+2+1+1=11 extra () before this
3705 "\\<sub\\>" ; sub with proto/attr
3706 "\\("
3707 cperl-white-and-comment-rex
3708 "\\(::[a-zA-Z_:'0-9]*\\|[a-zA-Z_'][a-zA-Z_:'0-9]*\\)\\)?" ; name
3709 "\\("
3710 cperl-maybe-white-and-comment-rex
3711 "\\(([^()]*)\\|:[^:]\\)\\)" ; prototype or attribute start
3712 "\\|"
3713 ;; 1+6+2+1+1+6=17 extra () before this:
3714 "\\$\\(['{]\\)" ; $' or ${foo}
3715 "\\|"
3716 ;; 1+6+2+1+1+6+1=18 extra () before this (old pack'var syntax;
3717 ;; we do not support intervening comments...):
3718 "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'"
3719 ;; 1+6+2+1+1+6+1+1=19 extra () before this:
3720 "\\|"
3721 "__\\(END\\|DATA\\)__" ; __END__ or __DATA__
3722 ;; 1+6+2+1+1+6+1+1+1=20 extra () before this:
3723 "\\|"
3724 "\\\\\\(['`\"($]\\)") ; BACKWACKED something-hairy
3725 ""))))
3726 (unwind-protect
3727 (progn
3728 (save-excursion
3729 (or non-inter
3730 (message "Scanning for \"hard\" Perl constructions..."))
3731 ;;(message "find: %s --> %s" min max)
3732 (and cperl-pod-here-fontify
3733 ;; We had evals here, do not know why...
3734 (setq face cperl-pod-face
3735 head-face cperl-pod-head-face
3736 here-face cperl-here-face))
3737 (remove-text-properties min max
3738 '(syntax-type t in-pod t syntax-table t
3739 attrib-group t
3740 REx-interpolated t
3741 cperl-postpone t
3742 syntax-subtype t
3743 rear-nonsticky t
3744 front-sticky t
3745 here-doc-group t
3746 first-format-line t
3747 REx-part2 t
3748 indentable t))
3749 ;; Need to remove face as well...
3750 (goto-char min)
3751 (and (eq system-type 'emx)
3752 (eq (point) 1)
3753 (let ((case-fold-search t))
3754 (looking-at "extproc[ \t]")) ; Analogue of #!
3755 (cperl-commentify min
3756 (save-excursion (end-of-line) (point))
3757 nil))
3758 (while (and
3759 (< (point) max)
3760 (re-search-forward search max t))
3761 (setq tmpend nil) ; Valid for most cases
3762 (setq b (match-beginning 0)
3763 state (save-excursion (parse-partial-sexp
3764 state-point b nil nil state))
3765 state-point b)
3766 (cond
3767 ;; 1+6+2+1+1+6=17 extra () before this:
3768 ;; "\\$\\(['{]\\)"
3769 ((match-beginning 18) ; $' or ${foo}
3770 (if (eq (preceding-char) ?\') ; $'
3771 (progn
3772 (setq b (1- (point))
3773 state (parse-partial-sexp
3774 state-point (1- b) nil nil state)
3775 state-point (1- b))
3776 (if (nth 3 state) ; in string
3777 (cperl-modify-syntax-type (1- b) cperl-st-punct))
3778 (goto-char (1+ b)))
3779 ;; else: ${
3780 (setq bb (match-beginning 0))
3781 (cperl-modify-syntax-type bb cperl-st-punct)))
3782 ;; No processing in strings/comments beyond this point:
3783 ((or (nth 3 state) (nth 4 state))
3784 t) ; Do nothing in comment/string
3785 ((match-beginning 1) ; POD section
3786 ;; "\\(\\`\n?\\|^\n\\)="
3787 (setq b (match-beginning 0)
3788 state (parse-partial-sexp
3789 state-point b nil nil state)
3790 state-point b)
3791 (if (or (nth 3 state) (nth 4 state)
3792 (looking-at "cut\\>"))
3793 (if (or (nth 3 state) (nth 4 state) ignore-max)
3794 nil ; Doing a chunk only
3795 (message "=cut is not preceded by a POD section")
3796 (or (car err-l) (setcar err-l (point))))
3797 (beginning-of-line)
3798
3799 (setq b (point)
3800 bb b
3801 tb (match-beginning 0)
3802 b1 nil) ; error condition
3803 ;; We do not search to max, since we may be called from
3804 ;; some hook of fontification, and max is random
3805 (or (re-search-forward "^\n=cut\\>" stop-point 'toend)
3806 (progn
3807 (goto-char b)
3808 (if (re-search-forward "\n=cut\\>" stop-point 'toend)
3809 (progn
3810 (message "=cut is not preceded by an empty line")
3811 (setq b1 t)
3812 (or (car err-l) (setcar err-l b))))))
3813 (beginning-of-line 2) ; An empty line after =cut is not POD!
3814 (setq e (point))
3815 (and (> e max)
3816 (progn
3817 (remove-text-properties
3818 max e '(syntax-type t in-pod t syntax-table t
3819 attrib-group t
3820 REx-interpolated t
3821 cperl-postpone t
3822 syntax-subtype t
3823 here-doc-group t
3824 rear-nonsticky t
3825 front-sticky t
3826 first-format-line t
3827 REx-part2 t
3828 indentable t))
3829 (setq tmpend tb)))
3830 (put-text-property b e 'in-pod t)
3831 (put-text-property b e 'syntax-type 'in-pod)
3832 (goto-char b)
3833 (while (re-search-forward "\n\n[ \t]" e t)
3834 ;; We start 'pod 1 char earlier to include the preceding line
3835 (beginning-of-line)
3836 (put-text-property (cperl-1- b) (point) 'syntax-type 'pod)
3837 (cperl-put-do-not-fontify b (point) t)
3838 ;; mark the non-literal parts as PODs
3839 (if cperl-pod-here-fontify
3840 (cperl-postpone-fontification b (point) 'face face t))
3841 (re-search-forward "\n\n[^ \t\f\n]" e 'toend)
3842 (beginning-of-line)
3843 (setq b (point)))
3844 (put-text-property (cperl-1- (point)) e 'syntax-type 'pod)
3845 (cperl-put-do-not-fontify (point) e t)
3846 (if cperl-pod-here-fontify
3847 (progn
3848 ;; mark the non-literal parts as PODs
3849 (cperl-postpone-fontification (point) e 'face face t)
3850 (goto-char bb)
3851 (if (looking-at
3852 "=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$")
3853 ;; mark the headers
3854 (cperl-postpone-fontification
3855 (match-beginning 1) (match-end 1)
3856 'face head-face))
3857 (while (re-search-forward
3858 ;; One paragraph
3859 "^\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$"
3860 e 'toend)
3861 ;; mark the headers
3862 (cperl-postpone-fontification
3863 (match-beginning 1) (match-end 1)
3864 'face head-face))))
3865 (cperl-commentify bb e nil)
3866 (goto-char e)
3867 (or (eq e (point-max))
3868 (forward-char -1)))) ; Prepare for immediate POD start.
3869 ;; Here document
3870 ;; We can do many here-per-line;
3871 ;; but multiline quote on the same line as <<HERE confuses us...
3872 ;; ;; One extra () before this:
3873 ;;"<<"
3874 ;; "\\(" ; 1 + 1
3875 ;; ;; First variant "BLAH" or just ``.
3876 ;; "[ \t]*" ; Yes, whitespace is allowed!
3877 ;; "\\([\"'`]\\)" ; 2 + 1
3878 ;; "\\([^\"'`\n]*\\)" ; 3 + 1
3879 ;; "\\3"
3880 ;; "\\|"
3881 ;; ;; Second variant: Identifier or \ID or empty
3882 ;; "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1
3883 ;; ;; Do not have <<= or << 30 or <<30 or << $blah.
3884 ;; ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1
3885 ;; "\\(\\)" ; To preserve count of pars :-( 6 + 1
3886 ;; "\\)"
3887 ((match-beginning 2) ; 1 + 1
3888 (setq b (point)
3889 tb (match-beginning 0)
3890 c (and ; not HERE-DOC
3891 (match-beginning 5)
3892 (save-match-data
3893 (or (looking-at "[ \t]*(") ; << function_call()
3894 (save-excursion ; 1 << func_name, or $foo << 10
3895 (condition-case nil
3896 (progn
3897 (goto-char tb)
3898 ;;; XXX What to do: foo <<bar ???
3899 ;;; XXX Need to support print {a} <<B ???
3900 (forward-sexp -1)
3901 (save-match-data
3902 ; $foo << b; $f .= <<B;
3903 ; ($f+1) << b; a($f) . <<B;
3904 ; foo 1, <<B; $x{a} <<b;
3905 (cond
3906 ((looking-at "[0-9$({]")
3907 (forward-sexp 1)
3908 (and
3909 (looking-at "[ \t]*<<")
3910 (condition-case nil
3911 ;; print $foo <<EOF
3912 (progn
3913 (forward-sexp -2)
3914 (not
3915 (looking-at "\\(printf?\\|system\\|exec\\|sort\\)\\>")))
3916 (error t)))))))
3917 (error nil))) ; func(<<EOF)
3918 (and (not (match-beginning 6)) ; Empty
3919 (looking-at
3920 "[ \t]*[=0-9$@%&(]"))))))
3921 (if c ; Not here-doc
3922 nil ; Skip it.
3923 (setq c (match-end 2)) ; 1 + 1
3924 (if (match-beginning 5) ;4 + 1
3925 (setq b1 (match-beginning 5) ; 4 + 1
3926 e1 (match-end 5)) ; 4 + 1
3927 (setq b1 (match-beginning 4) ; 3 + 1
3928 e1 (match-end 4))) ; 3 + 1
3929 (setq tag (buffer-substring b1 e1)
3930 qtag (regexp-quote tag))
3931 (cond (cperl-pod-here-fontify
3932 ;; Highlight the starting delimiter
3933 (cperl-postpone-fontification
3934 b1 e1 'face my-cperl-delimiters-face)
3935 (cperl-put-do-not-fontify b1 e1 t)))
3936 (forward-line)
3937 (setq i (point))
3938 (if end-of-here-doc
3939 (goto-char end-of-here-doc))
3940 (setq b (point))
3941 ;; We do not search to max, since we may be called from
3942 ;; some hook of fontification, and max is random
3943 (or (and (re-search-forward (concat "^" qtag "$")
3944 stop-point 'toend)
3945 ;;;(eq (following-char) ?\n) ; XXXX WHY???
3946 )
3947 (progn ; Pretend we matched at the end
3948 (goto-char (point-max))
3949 (re-search-forward "\\'")
3950 (message "End of here-document `%s' not found." tag)
3951 (or (car err-l) (setcar err-l b))))
3952 (if cperl-pod-here-fontify
3953 (progn
3954 ;; Highlight the ending delimiter
3955 (cperl-postpone-fontification
3956 (match-beginning 0) (match-end 0)
3957 'face my-cperl-delimiters-face)
3958 (cperl-put-do-not-fontify b (match-end 0) t)
3959 ;; Highlight the HERE-DOC
3960 (cperl-postpone-fontification b (match-beginning 0)
3961 'face here-face)))
3962 (setq e1 (cperl-1+ (match-end 0)))
3963 (put-text-property b (match-beginning 0)
3964 'syntax-type 'here-doc)
3965 (put-text-property (match-beginning 0) e1
3966 'syntax-type 'here-doc-delim)
3967 (put-text-property b e1 'here-doc-group t)
3968 ;; This makes insertion at the start of HERE-DOC update
3969 ;; the whole construct:
3970 (put-text-property b (cperl-1+ b) 'front-sticky '(syntax-type))
3971 (cperl-commentify b e1 nil)
3972 (cperl-put-do-not-fontify b (match-end 0) t)
3973 ;; Cache the syntax info...
3974 (setq cperl-syntax-state (cons state-point state))
3975 ;; ... and process the rest of the line...
3976 (setq overshoot
3977 (elt ; non-inter ignore-max
3978 (cperl-find-pods-heres c i t end t e1) 1))
3979 (if (and overshoot (> overshoot (point)))
3980 (goto-char overshoot)
3981 (setq overshoot e1))
3982 (if (> e1 max)
3983 (setq tmpend tb))))
3984 ;; format
3985 ((match-beginning 8)
3986 ;; 1+6=7 extra () before this:
3987 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$"
3988 (setq b (point)
3989 name (if (match-beginning 8) ; 7 + 1
3990 (buffer-substring (match-beginning 8) ; 7 + 1
3991 (match-end 8)) ; 7 + 1
3992 "")
3993 tb (match-beginning 0))
3994 (setq argument nil)
3995 (put-text-property (save-excursion
3996 (beginning-of-line)
3997 (point))
3998 b 'first-format-line 't)
3999 (if cperl-pod-here-fontify
4000 (while (and (eq (forward-line) 0)
4001 (not (looking-at "^[.;]$")))
4002 (cond
4003 ((looking-at "^#")) ; Skip comments
4004 ((and argument ; Skip argument multi-lines
4005 (looking-at "^[ \t]*{"))
4006 (forward-sexp 1)
4007 (setq argument nil))
4008 (argument ; Skip argument lines
4009 (setq argument nil))
4010 (t ; Format line
4011 (setq b1 (point))
4012 (setq argument (looking-at "^[^\n]*[@^]"))
4013 (end-of-line)
4014 ;; Highlight the format line
4015 (cperl-postpone-fontification b1 (point)
4016 'face font-lock-string-face)
4017 (cperl-commentify b1 (point) nil)
4018 (cperl-put-do-not-fontify b1 (point) t))))
4019 ;; We do not search to max, since we may be called from
4020 ;; some hook of fontification, and max is random
4021 (re-search-forward "^[.;]$" stop-point 'toend))
4022 (beginning-of-line)
4023 (if (looking-at "^\\.$") ; ";" is not supported yet
4024 (progn
4025 ;; Highlight the ending delimiter
4026 (cperl-postpone-fontification (point) (+ (point) 2)
4027 'face font-lock-string-face)
4028 (cperl-commentify (point) (+ (point) 2) nil)
4029 (cperl-put-do-not-fontify (point) (+ (point) 2) t))
4030 (message "End of format `%s' not found." name)
4031 (or (car err-l) (setcar err-l b)))
4032 (forward-line)
4033 (if (> (point) max)
4034 (setq tmpend tb))
4035 (put-text-property b (point) 'syntax-type 'format))
4036 ;; qq-like String or Regexp:
4037 ((or (match-beginning 10) (match-beginning 11))
4038 ;; 1+6+2=9 extra () before this:
4039 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>"
4040 ;; "\\|"
4041 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob>
4042 (setq b1 (if (match-beginning 10) 10 11)
4043 argument (buffer-substring
4044 (match-beginning b1) (match-end b1))
4045 b (point) ; end of qq etc
4046 i b
4047 c (char-after (match-beginning b1))
4048 bb (char-after (1- (match-beginning b1))) ; tmp holder
4049 ;; bb == "Not a stringy"
4050 bb (if (eq b1 10) ; user variables/whatever
4051 (and (memq bb (append "$@%*#_:-&>" nil)) ; $#y)
4052 (cond ((eq bb ?-) (eq c ?s)) ; -s file test
4053 ((eq bb ?\:) ; $opt::s
4054 (eq (char-after
4055 (- (match-beginning b1) 2))
4056 ?\:))
4057 ((eq bb ?\>) ; $foo->s
4058 (eq (char-after
4059 (- (match-beginning b1) 2))
4060 ?\-))
4061 ((eq bb ?\&)
4062 (not (eq (char-after ; &&m/blah/
4063 (- (match-beginning b1) 2))
4064 ?\&)))
4065 (t t)))
4066 ;; <file> or <$file>
4067 (and (eq c ?\<)
4068 ;; Do not stringify <FH>, <$fh> :
4069 (save-match-data
4070 (looking-at
4071 "\\$?\\([_a-zA-Z:][_a-zA-Z0-9:]*\\)?>"))))
4072 tb (match-beginning 0))
4073 (goto-char (match-beginning b1))
4074 (cperl-backward-to-noncomment (point-min))
4075 (or bb
4076 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo>
4077 (setq argument ""
4078 b1 nil
4079 bb ; Not a regexp?
4080 (not
4081 ;; What is below: regexp-p?
4082 (and
4083 (or (memq (preceding-char)
4084 (append (if (memq c '(?\? ?\<))
4085 ;; $a++ ? 1 : 2
4086 "~{(=|&*!,;:["
4087 "~{(=|&+-*!,;:[") nil))
4088 (and (eq (preceding-char) ?\})
4089 (cperl-after-block-p (point-min)))
4090 (and (eq (char-syntax (preceding-char)) ?w)
4091 (progn
4092 (forward-sexp -1)
4093 ;; After these keywords `/' starts a RE. One should add all the
4094 ;; functions/builtins which expect an argument, but ...
4095 (if (eq (preceding-char) ?-)
4096 ;; -d ?foo? is a RE
4097 (looking-at "[a-zA-Z]\\>")
4098 (and
4099 (not (memq (preceding-char)
4100 '(?$ ?@ ?& ?%)))
4101 (looking-at
4102 "\\(while\\|if\\|unless\\|until\\|and\\|or\\|not\\|xor\\|split\\|grep\\|map\\|print\\)\\>")))))
4103 (and (eq (preceding-char) ?.)
4104 (eq (char-after (- (point) 2)) ?.))
4105 (bobp))
4106 ;; m|blah| ? foo : bar;
4107 (not
4108 (and (eq c ?\?)
4109 cperl-use-syntax-table-text-property
4110 (not (bobp))
4111 (progn
4112 (forward-char -1)
4113 (looking-at "\\s|"))))))
4114 b (1- b))
4115 ;; s y tr m
4116 ;; Check for $a -> y
4117 (setq b1 (preceding-char)
4118 go (point))
4119 (if (and (eq b1 ?>)
4120 (eq (char-after (- go 2)) ?-))
4121 ;; Not a regexp
4122 (setq bb t))))
4123 (or bb
4124 (progn
4125 (goto-char b)
4126 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
4127 (goto-char (match-end 0))
4128 (skip-chars-forward " \t\n\f"))
4129 (cond ((and (eq (following-char) ?\})
4130 (eq b1 ?\{))
4131 ;; Check for $a[23]->{ s }, @{s} and *{s::foo}
4132 (goto-char (1- go))
4133 (skip-chars-backward " \t\n\f")
4134 (if (memq (preceding-char) (append "$@%&*" nil))
4135 (setq bb t) ; @{y}
4136 (condition-case nil
4137 (forward-sexp -1)
4138 (error nil)))
4139 (if (or bb
4140 (looking-at ; $foo -> {s}
4141 "[$@]\\$*\\([a-zA-Z0-9_:]+\\|[^{]\\)\\([ \t\n]*->\\)?[ \t\n]*{")
4142 (and ; $foo[12] -> {s}
4143 (memq (following-char) '(?\{ ?\[))
4144 (progn
4145 (forward-sexp 1)
4146 (looking-at "\\([ \t\n]*->\\)?[ \t\n]*{"))))
4147 (setq bb t)
4148 (goto-char b)))
4149 ((and (eq (following-char) ?=)
4150 (eq (char-after (1+ (point))) ?\>))
4151 ;; Check for { foo => 1, s => 2 }
4152 ;; Apparently s=> is never a substitution...
4153 (setq bb t))
4154 ((and (eq (following-char) ?:)
4155 (eq b1 ?\{) ; Check for $ { s::bar }
4156 (looking-at "::[a-zA-Z0-9_:]*[ \t\n\f]*}")
4157 (progn
4158 (goto-char (1- go))
4159 (skip-chars-backward " \t\n\f")
4160 (memq (preceding-char)
4161 (append "$@%&*" nil))))
4162 (setq bb t))
4163 ((eobp)
4164 (setq bb t)))))
4165 (if bb
4166 (goto-char i)
4167 ;; Skip whitespace and comments...
4168 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+")
4169 (goto-char (match-end 0))
4170 (skip-chars-forward " \t\n\f"))
4171 (if (> (point) b)
4172 (put-text-property b (point) 'syntax-type 'prestring))
4173 ;; qtag means two-arg matcher, may be reset to
4174 ;; 2 or 3 later if some special quoting is needed.
4175 ;; e1 means matching-char matcher.
4176 (setq b (point) ; before the first delimiter
4177 ;; has 2 args
4178 i2 (string-match "^\\([sy]\\|tr\\)$" argument)
4179 ;; We do not search to max, since we may be called from
4180 ;; some hook of fontification, and max is random
4181 i (cperl-forward-re stop-point end
4182 i2
4183 st-l err-l argument)
4184 ;; If `go', then it is considered as 1-arg, `b1' is nil
4185 ;; as in s/foo//x; the point is before final "slash"
4186 b1 (nth 1 i) ; start of the second part
4187 tag (nth 2 i) ; ender-char, true if second part
4188 ; is with matching chars []
4189 go (nth 4 i) ; There is a 1-char part after the end
4190 i (car i) ; intermediate point
4191 e1 (point) ; end
4192 ;; Before end of the second part if non-matching: ///
4193 tail (if (and i (not tag))
4194 (1- e1))
4195 e (if i i e1) ; end of the first part
4196 qtag nil ; need to preserve backslashitis
4197 is-x-REx nil is-o-REx nil); REx has //x //o modifiers
4198 ;; If s{} (), then b/b1 are at "{", "(", e1/i after ")", "}"
4199 ;; Commenting \\ is dangerous, what about ( ?
4200 (and i tail
4201 (eq (char-after i) ?\\)
4202 (setq qtag t))
4203 (and (if go (looking-at ".\\sw*x")
4204 (looking-at "\\sw*x")) ; qr//x
4205 (setq is-x-REx t))
4206 (and (if go (looking-at ".\\sw*o")
4207 (looking-at "\\sw*o")) ; //o
4208 (setq is-o-REx t))
4209 (if (null i)
4210 ;; Considered as 1arg form
4211 (progn
4212 (cperl-commentify b (point) t)
4213 (put-text-property b (point) 'syntax-type 'string)
4214 (if (or is-x-REx
4215 ;; ignore other text properties:
4216 (string-match "^qw$" argument))
4217 (put-text-property b (point) 'indentable t))
4218 (and go
4219 (setq e1 (cperl-1+ e1))
4220 (or (eobp)
4221 (forward-char 1))))
4222 (cperl-commentify b i t)
4223 (if (looking-at "\\sw*e") ; s///e
4224 (progn
4225 ;; Cache the syntax info...
4226 (setq cperl-syntax-state (cons state-point state))
4227 (and
4228 ;; silent:
4229 (car (cperl-find-pods-heres b1 (1- (point)) t end))
4230 ;; Error
4231 (goto-char (1+ max)))
4232 (if (and tag (eq (preceding-char) ?\>))
4233 (progn
4234 (cperl-modify-syntax-type (1- (point)) cperl-st-ket)
4235 (cperl-modify-syntax-type i cperl-st-bra)))
4236 (put-text-property b i 'syntax-type 'string)
4237 (put-text-property i (point) 'syntax-type 'multiline)
4238 (if is-x-REx
4239 (put-text-property b i 'indentable t)))
4240 (cperl-commentify b1 (point) t)
4241 (put-text-property b (point) 'syntax-type 'string)
4242 (if is-x-REx
4243 (put-text-property b i 'indentable t))
4244 (if qtag
4245 (cperl-modify-syntax-type (1+ i) cperl-st-punct))
4246 (setq tail nil)))
4247 ;; Now: tail: if the second part is non-matching without ///e
4248 (if (eq (char-syntax (following-char)) ?w)
4249 (progn
4250 (forward-word 1) ; skip modifiers s///s
4251 (if tail (cperl-commentify tail (point) t))
4252 (cperl-postpone-fontification
4253 e1 (point) 'face my-cperl-REx-modifiers-face)))
4254 ;; Check whether it is m// which means "previous match"
4255 ;; and highlight differently
4256 (setq is-REx
4257 (and (string-match "^\\([sm]?\\|qr\\)$" argument)
4258 (or (not (= (length argument) 0))
4259 (not (eq c ?\<)))))
4260 (if (and is-REx
4261 (eq e (+ 2 b))
4262 ;; split // *is* using zero-pattern
4263 (save-excursion
4264 (condition-case nil
4265 (progn
4266 (goto-char tb)
4267 (forward-sexp -1)
4268 (not (looking-at "split\\>")))
4269 (error t))))
4270 (cperl-postpone-fontification
4271 b e 'face font-lock-warning-face)
4272 (if (or i2 ; Has 2 args
4273 (and cperl-fontify-m-as-s
4274 (or
4275 (string-match "^\\(m\\|qr\\)$" argument)
4276 (and (eq 0 (length argument))
4277 (not (eq ?\< (char-after b)))))))
4278 (progn
4279 (cperl-postpone-fontification
4280 b (cperl-1+ b) 'face my-cperl-delimiters-face)
4281 (cperl-postpone-fontification
4282 (1- e) e 'face my-cperl-delimiters-face)))
4283 (if (and is-REx cperl-regexp-scan)
4284 ;; Process RExen: embedded comments, charclasses and ]
4285 ;;;/\3333\xFg\x{FFF}a\ppp\PPP\qqq\C\99f(?{ foo })(??{ foo })/;
4286 ;;;/a\.b[^a[:ff:]b]x$ab->$[|$,$ab->[cd]->[ef]|$ab[xy].|^${a,b}{c,d}/;
4287 ;;;/(?<=foo)(?<!bar)(x)(?:$ab|\$\/)$|\\\b\x888\776\[\:$/xxx;
4288 ;;;m?(\?\?{b,a})? + m/(??{aa})(?(?=xx)aa|bb)(?#aac)/;
4289 ;;;m$(^ab[c]\$)$ + m+(^ab[c]\$\+)+ + m](^ab[c\]$|.+)] + m)(^ab[c]$|.+\));
4290 ;;;m^a[\^b]c^ + m.a[^b]\.c.;
4291 (save-excursion
4292 (goto-char (1+ b))
4293 ;; First
4294 (cperl-look-at-leading-count is-x-REx e)
4295 (setq hairy-RE
4296 (concat
4297 (if is-x-REx
4298 (if (eq (char-after b) ?\#)
4299 "\\((\\?\\\\#\\)\\|\\(\\\\#\\)"
4300 "\\((\\?#\\)\\|\\(#\\)")
4301 ;; keep the same count: add a fake group
4302 (if (eq (char-after b) ?\#)
4303 "\\((\\?\\\\#\\)\\(\\)"
4304 "\\((\\?#\\)\\(\\)"))
4305 "\\|"
4306 "\\(\\[\\)" ; 3=[
4307 "\\|"
4308 "\\(]\\)" ; 4=]
4309 "\\|"
4310 ;; XXXX Will not be able to use it in s)))
4311 (if (eq (char-after b) ?\) )
4312 "\\())))\\)" ; Will never match
4313 (if (eq (char-after b) ?? )
4314 ;;"\\((\\\\\\?\\(\\\\\\?\\)?{\\)"
4315 "\\((\\\\\\?\\\\\\?{\\|()\\\\\\?{\\)"
4316 "\\((\\?\\??{\\)")) ; 5= (??{ (?{
4317 "\\|" ; 6= 0-length, 7: name, 8,9:code, 10:group
4318 "\\(" ;; XXXX 1-char variables, exc. |()\s
4319 "[$@]"
4320 "\\("
4321 "[_a-zA-Z:][_a-zA-Z0-9:]*"
4322 "\\|"
4323 "{[^{}]*}" ; only one-level allowed
4324 "\\|"
4325 "[^{(|) \t\r\n\f]"
4326 "\\)"
4327 "\\(" ;;8,9:code part of array/hash elt
4328 "\\(" "->" "\\)?"
4329 "\\[[^][]*\\]"
4330 "\\|"
4331 "{[^{}]*}"
4332 "\\)*"
4333 ;; XXXX: what if u is delim?
4334 "\\|"
4335 "[)^|$.*?+]"
4336 "\\|"
4337 "{[0-9]+}"
4338 "\\|"
4339 "{[0-9]+,[0-9]*}"
4340 "\\|"
4341 "\\\\[luLUEQbBAzZG]"
4342 "\\|"
4343 "(" ; Group opener
4344 "\\(" ; 10 group opener follower
4345 "\\?\\((\\?\\)" ; 11: in (?(?=C)A|B)
4346 "\\|"
4347 "\\?[:=!>?{]" ; "?" something
4348 "\\|"
4349 "\\?[-imsx]+[:)]" ; (?i) (?-s:.)
4350 "\\|"
4351 "\\?([0-9]+)" ; (?(1)foo|bar)
4352 "\\|"
4353 "\\?<[=!]"
4354 ;;;"\\|"
4355 ;;; "\\?"
4356 "\\)?"
4357 "\\)"
4358 "\\|"
4359 "\\\\\\(.\\)" ; 12=\SYMBOL
4360 ))
4361 (while
4362 (and (< (point) (1- e))
4363 (re-search-forward hairy-RE (1- e) 'to-end))
4364 (goto-char (match-beginning 0))
4365 (setq REx-subgr-start (point)
4366 was-subgr (following-char))
4367 (cond
4368 ((match-beginning 6) ; 0-length builtins, groups
4369 (goto-char (match-end 0))
4370 (if (match-beginning 11)
4371 (goto-char (match-beginning 11)))
4372 (if (>= (point) e)
4373 (goto-char (1- e)))
4374 (cperl-postpone-fontification
4375 (match-beginning 0) (point)
4376 'face
4377 (cond
4378 ((eq was-subgr ?\) )
4379 (condition-case nil
4380 (save-excursion
4381 (forward-sexp -1)
4382 (if (> (point) b)
4383 (if (if (eq (char-after b) ?? )
4384 (looking-at "(\\\\\\?")
4385 (eq (char-after (1+ (point))) ?\?))
4386 my-cperl-REx-0length-face
4387 my-cperl-REx-ctl-face)
4388 font-lock-warning-face))
4389 (error font-lock-warning-face)))
4390 ((eq was-subgr ?\| )
4391 my-cperl-REx-ctl-face)
4392 ((eq was-subgr ?\$ )
4393 (if (> (point) (1+ REx-subgr-start))
4394 (progn
4395 (put-text-property
4396 (match-beginning 0) (point)
4397 'REx-interpolated
4398 (if is-o-REx 0
4399 (if (and (eq (match-beginning 0)
4400 (1+ b))
4401 (eq (point)
4402 (1- e))) 1 t)))
4403 font-lock-variable-name-face)
4404 my-cperl-REx-spec-char-face))
4405 ((memq was-subgr (append "^." nil) )
4406 my-cperl-REx-spec-char-face)
4407 ((eq was-subgr ?\( )
4408 (if (not (match-beginning 10))
4409 my-cperl-REx-ctl-face
4410 my-cperl-REx-0length-face))
4411 (t my-cperl-REx-0length-face)))
4412 (if (and (memq was-subgr (append "(|" nil))
4413 (not (string-match "(\\?[-imsx]+)"
4414 (match-string 0))))
4415 (cperl-look-at-leading-count is-x-REx e))
4416 (setq was-subgr nil)) ; We do stuff here
4417 ((match-beginning 12) ; \SYMBOL
4418 (forward-char 2)
4419 (if (>= (point) e)
4420 (goto-char (1- e))
4421 ;; How many chars to not highlight:
4422 ;; 0-len special-alnums in other branch =>
4423 ;; Generic: \non-alnum (1), \alnum (1+face)
4424 ;; Is-delim: \non-alnum (1/spec-2) alnum-1 (=what hai)
4425 (setq REx-subgr-start (point)
4426 qtag (preceding-char))
4427 (cperl-postpone-fontification
4428 (- (point) 2) (- (point) 1) 'face
4429 (if (memq qtag
4430 (append "ghijkmoqvFHIJKMORTVY" nil))
4431 font-lock-warning-face
4432 my-cperl-REx-0length-face))
4433 (if (and (eq (char-after b) qtag)
4434 (memq qtag (append ".])^$|*?+" nil)))
4435 (progn
4436 (if (and cperl-use-syntax-table-text-property
4437 (eq qtag ?\) ))
4438 (put-text-property
4439 REx-subgr-start (1- (point))
4440 'syntax-table cperl-st-punct))
4441 (cperl-postpone-fontification
4442 (1- (point)) (point) 'face
4443 ; \] can't appear below
4444 (if (memq qtag (append ".]^$" nil))
4445 'my-cperl-REx-spec-char-face
4446 (if (memq qtag (append "*?+" nil))
4447 'my-cperl-REx-0length-face
4448 'my-cperl-REx-ctl-face))))) ; )|
4449 ;; Test for arguments:
4450 (cond
4451 ;; This is not pretty: the 5.8.7 logic:
4452 ;; \0numx -> octal (up to total 3 dig)
4453 ;; \DIGIT -> backref unless \0
4454 ;; \DIGITs -> backref if valid
4455 ;; otherwise up to 3 -> octal
4456 ;; Do not try to distinguish, we guess
4457 ((or (and (memq qtag (append "01234567" nil))
4458 (re-search-forward
4459 "\\=[01234567]?[01234567]?"
4460 (1- e) 'to-end))
4461 (and (memq qtag (append "89" nil))
4462 (re-search-forward
4463 "\\=[0123456789]*" (1- e) 'to-end))
4464 (and (eq qtag ?x)
4465 (re-search-forward
4466 "\\=[0-9a-fA-F][0-9a-fA-F]?\\|\\={[0-9a-fA-F]+}"
4467 (1- e) 'to-end))
4468 (and (memq qtag (append "pPN" nil))
4469 (re-search-forward "\\={[^{}]+}\\|."
4470 (1- e) 'to-end))
4471 (eq (char-syntax qtag) ?w))
4472 (cperl-postpone-fontification
4473 (1- REx-subgr-start) (point)
4474 'face my-cperl-REx-length1-face))))
4475 (setq was-subgr nil)) ; We do stuff here
4476 ((match-beginning 3) ; [charclass]
4477 (forward-char 1)
4478 (if (eq (char-after b) ?^ )
4479 (and (eq (following-char) ?\\ )
4480 (eq (char-after (cperl-1+ (point)))
4481 ?^ )
4482 (forward-char 2))
4483 (and (eq (following-char) ?^ )
4484 (forward-char 1)))
4485 (setq argument b ; continue?
4486 tag nil ; list of POSIX classes
4487 qtag (point))
4488 (if (eq (char-after b) ?\] )
4489 (and (eq (following-char) ?\\ )
4490 (eq (char-after (cperl-1+ (point)))
4491 ?\] )
4492 (setq qtag (1+ qtag))
4493 (forward-char 2))
4494 (and (eq (following-char) ?\] )
4495 (forward-char 1)))
4496 ;; Apparently, I can't put \] into a charclass
4497 ;; in m]]: m][\\\]\]] produces [\\]]
4498 ;;; POSIX? [:word:] [:^word:] only inside []
4499 ;;; "\\=\\(\\\\.\\|[^][\\\\]\\|\\[:\\^?\sw+:]\\|\\[[^:]\\)*]")
4500 (while
4501 (and argument
4502 (re-search-forward
4503 (if (eq (char-after b) ?\] )
4504 "\\=\\(\\\\[^]]\\|[^]\\\\]\\)*\\\\]"
4505 "\\=\\(\\\\.\\|[^]\\\\]\\)*]")
4506 (1- e) 'toend))
4507 ;; Is this ] an end of POSIX class?
4508 (if (save-excursion
4509 (and
4510 (search-backward "[" argument t)
4511 (< REx-subgr-start (point))
4512 (not
4513 (and ; Should work with delim = \
4514 (eq (preceding-char) ?\\ )
4515 (= (% (skip-chars-backward
4516 "\\\\") 2) 0)))
4517 (looking-at
4518 (cond
4519 ((eq (char-after b) ?\] )
4520 "\\\\*\\[:\\^?\\sw+:\\\\\\]")
4521 ((eq (char-after b) ?\: )
4522 "\\\\*\\[\\\\:\\^?\\sw+\\\\:]")
4523 ((eq (char-after b) ?^ )
4524 "\\\\*\\[:\\(\\\\\\^\\)?\\sw+:\]")
4525 ((eq (char-syntax (char-after b))
4526 ?w)
4527 (concat
4528 "\\\\*\\[:\\(\\\\\\^\\)?\\(\\\\"
4529 (char-to-string (char-after b))
4530 "\\|\\sw\\)+:\]"))
4531 (t "\\\\*\\[:\\^?\\sw*:]")))
4532 (setq argument (point))))
4533 (setq tag (cons (cons argument (point))
4534 tag)
4535 argument (point)) ; continue
4536 (setq argument nil)))
4537 (and argument
4538 (message "Couldn't find end of charclass in a REx, pos=%s"
4539 REx-subgr-start))
4540 (if (and cperl-use-syntax-table-text-property
4541 (> (- (point) 2) REx-subgr-start))
4542 (put-text-property
4543 (1+ REx-subgr-start) (1- (point))
4544 'syntax-table cperl-st-punct))
4545 (cperl-postpone-fontification
4546 REx-subgr-start qtag
4547 'face my-cperl-REx-spec-char-face)
4548 (cperl-postpone-fontification
4549 (1- (point)) (point) 'face
4550 my-cperl-REx-spec-char-face)
4551 (if (eq (char-after b) ?\] )
4552 (cperl-postpone-fontification
4553 (- (point) 2) (1- (point))
4554 'face my-cperl-REx-0length-face))
4555 (while tag
4556 (cperl-postpone-fontification
4557 (car (car tag)) (cdr (car tag))
4558 'face my-cperl-REx-length1-face)
4559 (setq tag (cdr tag)))
4560 (setq was-subgr nil)) ; did facing already
4561 ;; Now rare stuff:
4562 ((and (match-beginning 2) ; #-comment
4563 (/= (match-beginning 2) (match-end 2)))
4564 (beginning-of-line 2)
4565 (if (> (point) e)
4566 (goto-char (1- e))))
4567 ((match-beginning 4) ; character "]"
4568 (setq was-subgr nil) ; We do stuff here
4569 (goto-char (match-end 0))
4570 (if cperl-use-syntax-table-text-property
4571 (put-text-property
4572 (1- (point)) (point)
4573 'syntax-table cperl-st-punct))
4574 (cperl-postpone-fontification
4575 (1- (point)) (point)
4576 'face font-lock-warning-face))
4577 ((match-beginning 5) ; before (?{}) (??{})
4578 (setq tag (match-end 0))
4579 (if (or (setq qtag
4580 (cperl-forward-group-in-re st-l))
4581 (and (>= (point) e)
4582 (setq qtag "no matching `)' found"))
4583 (and (not (eq (char-after (- (point) 2))
4584 ?\} ))
4585 (setq qtag "Can't find })")))
4586 (progn
4587 (goto-char (1- e))
4588 (message "%s" qtag))
4589 (cperl-postpone-fontification
4590 (1- tag) (1- (point))
4591 'face font-lock-variable-name-face)
4592 (cperl-postpone-fontification
4593 REx-subgr-start (1- tag)
4594 'face my-cperl-REx-spec-char-face)
4595 (cperl-postpone-fontification
4596 (1- (point)) (point)
4597 'face my-cperl-REx-spec-char-face)
4598 (if cperl-use-syntax-table-text-property
4599 (progn
4600 (put-text-property
4601 (- (point) 2) (1- (point))
4602 'syntax-table cperl-st-cfence)
4603 (put-text-property
4604 (+ REx-subgr-start 2)
4605 (+ REx-subgr-start 3)
4606 'syntax-table cperl-st-cfence))))
4607 (setq was-subgr nil))
4608 (t ; (?#)-comment
4609 ;; Inside "(" and "\" arn't special in any way
4610 ;; Works also if the outside delimiters are ().
4611 (or;;(if (eq (char-after b) ?\) )
4612 ;;(re-search-forward
4613 ;; "[^\\\\]\\(\\\\\\\\\\)*\\\\)"
4614 ;; (1- e) 'toend)
4615 (search-forward ")" (1- e) 'toend)
4616 ;;)
4617 (message
4618 "Couldn't find end of (?#...)-comment in a REx, pos=%s"
4619 REx-subgr-start))))
4620 (if (>= (point) e)
4621 (goto-char (1- e)))
4622 (cond
4623 (was-subgr
4624 (setq REx-subgr-end (point))
4625 (cperl-commentify
4626 REx-subgr-start REx-subgr-end nil)
4627 (cperl-postpone-fontification
4628 REx-subgr-start REx-subgr-end
4629 'face font-lock-comment-face))))))
4630 (if (and is-REx is-x-REx)
4631 (put-text-property (1+ b) (1- e)
4632 'syntax-subtype 'x-REx)))
4633 (if (and i2 e1 b1 (> e1 b1))
4634 (progn ; No errors finding the second part...
4635 (cperl-postpone-fontification
4636 (1- e1) e1 'face my-cperl-delimiters-face)
4637 (if (and (not (eobp))
4638 (assoc (char-after b) cperl-starters))
4639 (progn
4640 (cperl-postpone-fontification
4641 b1 (1+ b1) 'face my-cperl-delimiters-face)
4642 (put-text-property b1 (1+ b1)
4643 'REx-part2 t)))))
4644 (if (> (point) max)
4645 (setq tmpend tb))))
4646 ((match-beginning 17) ; sub with prototype or attribute
4647 ;; 1+6+2+1+1=11 extra () before this (sub with proto/attr):
4648 ;;"\\<sub\\>\\(" ;12
4649 ;; cperl-white-and-comment-rex ;13
4650 ;; "\\([a-zA-Z_:'0-9]+\\)\\)?" ; name ;14
4651 ;;"\\(" cperl-maybe-white-and-comment-rex ;15,16
4652 ;; "\\(([^()]*)\\|:[^:]\\)\\)" ; 17:proto or attribute start
4653 (setq b1 (match-beginning 14) e1 (match-end 14))
4654 (if (memq (char-after (1- b))
4655 '(?\$ ?\@ ?\% ?\& ?\*))
4656 nil
4657 (goto-char b)
4658 (if (eq (char-after (match-beginning 17)) ?\( )
4659 (progn
4660 (cperl-commentify ; Prototypes; mark as string
4661 (match-beginning 17) (match-end 17) t)
4662 (goto-char (match-end 0))
4663 ;; Now look for attributes after prototype:
4664 (forward-comment (buffer-size))
4665 (and (looking-at ":[^:]")
4666 (cperl-find-sub-attrs st-l b1 e1 b)))
4667 ;; treat attributes without prototype
4668 (goto-char (match-beginning 17))
4669 (cperl-find-sub-attrs st-l b1 e1 b))))
4670 ;; 1+6+2+1+1+6+1=18 extra () before this:
4671 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'")
4672 ((match-beginning 19) ; old $abc'efg syntax
4673 (setq bb (match-end 0))
4674 ;;;(if (nth 3 state) nil ; in string
4675 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)
4676 (goto-char bb))
4677 ;; 1+6+2+1+1+6+1+1=19 extra () before this:
4678 ;; "__\\(END\\|DATA\\)__"
4679 ((match-beginning 20) ; __END__, __DATA__
4680 (setq bb (match-end 0))
4681 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat
4682 (cperl-commentify b bb nil)
4683 (setq end t))
4684 ;; "\\\\\\(['`\"($]\\)"
4685 ((match-beginning 21)
4686 ;; Trailing backslash; make non-quoting outside string/comment
4687 (setq bb (match-end 0))
4688 (goto-char b)
4689 (skip-chars-backward "\\\\")
4690 ;;;(setq i2 (= (% (skip-chars-backward "\\\\") 2) -1))
4691 (cperl-modify-syntax-type b cperl-st-punct)
4692 (goto-char bb))
4693 (t (error "Error in regexp of the sniffer")))
4694 (if (> (point) stop-point)
4695 (progn
4696 (if end
4697 (message "Garbage after __END__/__DATA__ ignored")
4698 (message "Unbalanced syntax found while scanning")
4699 (or (car err-l) (setcar err-l b)))
4700 (goto-char stop-point))))
4701 (setq cperl-syntax-state (cons state-point state)
4702 ;; Do not mark syntax as done past tmpend???
4703 cperl-syntax-done-to (or tmpend (max (point) max)))
4704 ;;(message "state-at=%s, done-to=%s" state-point cperl-syntax-done-to)
4705 )
4706 (if (car err-l) (goto-char (car err-l))
4707 (or non-inter
4708 (message "Scanning for \"hard\" Perl constructions... done"))))
4709 (and (buffer-modified-p)
4710 (not modified)
4711 (set-buffer-modified-p nil))
4712 ;; I do not understand what this is doing here. It breaks font-locking
4713 ;; because it resets the syntax-table from font-lock-syntax-table to
4714 ;; cperl-mode-syntax-table.
4715 ;; (set-syntax-table cperl-mode-syntax-table)
4716 )
4717 (list (car err-l) overshoot)))
4718
4719 (defun cperl-find-pods-heres-region (min max)
4720 (interactive "r")
4721 (cperl-find-pods-heres min max))
4722
4723 (defun cperl-backward-to-noncomment (lim)
4724 ;; Stops at lim or after non-whitespace that is not in comment
4725 ;; XXXX Wrongly understands end-of-multiline strings with # as comment
4726 (let (stop p pr)
4727 (while (and (not stop) (> (point) (or lim (point-min))))
4728 (skip-chars-backward " \t\n\f" lim)
4729 (setq p (point))
4730 (beginning-of-line)
4731 (if (memq (setq pr (get-text-property (point) 'syntax-type))
4732 '(pod here-doc here-doc-delim))
4733 (progn
4734 (cperl-unwind-to-safe nil)
4735 (setq pr (get-text-property (point) 'syntax-type))))
4736 (or (and (looking-at "^[ \t]*\\(#\\|$\\)")
4737 (not (memq pr '(string prestring))))
4738 (progn (cperl-to-comment-or-eol) (bolp))
4739 (progn
4740 (skip-chars-backward " \t")
4741 (if (< p (point)) (goto-char p))
4742 (setq stop t))))))
4743
4744 ;; Used only in `cperl-calculate-indent'...
4745 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" !
4746 ;; Positions is before ?\{. Checks whether it starts a block.
4747 ;; No save-excursion! This is more a distinguisher of a block/hash ref...
4748 (cperl-backward-to-noncomment (point-min))
4749 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp
4750 ; Label may be mixed up with `$blah :'
4751 (save-excursion (cperl-after-label))
4752 (get-text-property (cperl-1- (point)) 'attrib-group)
4753 (and (memq (char-syntax (preceding-char)) '(?w ?_))
4754 (progn
4755 (backward-sexp)
4756 ;; sub {BLK}, print {BLK} $data, but NOT `bless', `return', `tr'
4757 (or (and (looking-at "[a-zA-Z0-9_:]+[ \t\n\f]*[{#]") ; Method call syntax
4758 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>")))
4759 ;; sub bless::foo {}
4760 (progn
4761 (cperl-backward-to-noncomment (point-min))
4762 (and (eq (preceding-char) ?b)
4763 (progn
4764 (forward-sexp -1)
4765 (looking-at "sub[ \t\n\f#]")))))))))
4766
4767 ;;; What is the difference of (cperl-after-block-p lim t) and (cperl-block-p)?
4768 ;;; No save-excursion; condition-case ... In (cperl-block-p) the block
4769 ;;; may be a part of an in-statement construct, such as
4770 ;;; ${something()}, print {FH} $data.
4771 ;;; Moreover, one takes positive approach (looks for else,grep etc)
4772 ;;; another negative (looks for bless,tr etc)
4773 (defun cperl-after-block-p (lim &optional pre-block)
4774 "Return true if the preceeding } (if PRE-BLOCK, following {) delimits a block.
4775 Would not look before LIM. Assumes that LIM is a good place to begin a
4776 statement. The kind of block we treat here is one after which a new
4777 statement would start; thus the block in ${func()} does not count."
4778 (save-excursion
4779 (condition-case nil
4780 (progn
4781 (or pre-block (forward-sexp -1))
4782 (cperl-backward-to-noncomment lim)
4783 (or (eq (point) lim)
4784 ;; if () {} // sub f () {} // sub f :a(') {}
4785 (eq (preceding-char) ?\) )
4786 ;; label: {}
4787 (save-excursion (cperl-after-label))
4788 ;; sub :attr {}
4789 (get-text-property (cperl-1- (point)) 'attrib-group)
4790 (if (memq (char-syntax (preceding-char)) '(?w ?_)) ; else {}
4791 (save-excursion
4792 (forward-sexp -1)
4793 ;; else {} but not else::func {}
4794 (or (and (looking-at "\\(else\\|continue\\|grep\\|map\\|BEGIN\\|END\\|CHECK\\|INIT\\)\\>")
4795 (not (looking-at "\\(\\sw\\|_\\)+::")))
4796 ;; sub f {}
4797 (progn
4798 (cperl-backward-to-noncomment lim)
4799 (and (eq (preceding-char) ?b)
4800 (progn
4801 (forward-sexp -1)
4802 (looking-at "sub[ \t\n\f#]"))))))
4803 ;; What preceeds is not word... XXXX Last statement in sub???
4804 (cperl-after-expr-p lim))))
4805 (error nil))))
4806
4807 (defun cperl-after-expr-p (&optional lim chars test)
4808 "Return true if the position is good for start of expression.
4809 TEST is the expression to evaluate at the found position. If absent,
4810 CHARS is a string that contains good characters to have before us (however,
4811 `}' is treated \"smartly\" if it is not in the list)."
4812 (let ((lim (or lim (point-min)))
4813 stop p pr)
4814 (cperl-update-syntaxification (point) (point))
4815 (save-excursion
4816 (while (and (not stop) (> (point) lim))
4817 (skip-chars-backward " \t\n\f" lim)
4818 (setq p (point))
4819 (beginning-of-line)
4820 ;;(memq (setq pr (get-text-property (point) 'syntax-type))
4821 ;; '(pod here-doc here-doc-delim))
4822 (if (get-text-property (point) 'here-doc-group)
4823 (progn
4824 (goto-char
4825 (cperl-beginning-of-property (point) 'here-doc-group))
4826 (beginning-of-line 0)))
4827 (if (get-text-property (point) 'in-pod)
4828 (progn
4829 (goto-char
4830 (cperl-beginning-of-property (point) 'in-pod))
4831 (beginning-of-line 0)))
4832 (if (looking-at "^[ \t]*\\(#\\|$\\)") nil ; Only comment, skip
4833 ;; Else: last iteration, or a label
4834 (cperl-to-comment-or-eol) ; Will not move past "." after a format
4835 (skip-chars-backward " \t")
4836 (if (< p (point)) (goto-char p))
4837 (setq p (point))
4838 (if (and (eq (preceding-char) ?:)
4839 (progn
4840 (forward-char -1)
4841 (skip-chars-backward " \t\n\f" lim)
4842 (memq (char-syntax (preceding-char)) '(?w ?_))))
4843 (forward-sexp -1) ; Possibly label. Skip it
4844 (goto-char p)
4845 (setq stop t))))
4846 (or (bobp) ; ???? Needed
4847 (eq (point) lim)
4848 (looking-at "[ \t]*__\\(END\\|DATA\\)__") ; After this anything goes
4849 (progn
4850 (if test (eval test)
4851 (or (memq (preceding-char) (append (or chars "{;") nil))
4852 (and (eq (preceding-char) ?\})
4853 (cperl-after-block-p lim))
4854 (and (eq (following-char) ?.) ; in format: see comment above
4855 (eq (get-text-property (point) 'syntax-type)
4856 'format)))))))))
4857
4858 (defun cperl-backward-to-start-of-expr (&optional lim)
4859 (condition-case nil
4860 (progn
4861 (while (and (or (not lim)
4862 (> (point) lim))
4863 (not (cperl-after-expr-p lim)))
4864 (forward-sexp -1)
4865 ;; May be after $, @, $# etc of a variable
4866 (skip-chars-backward "$@%#")))
4867 (error nil)))
4868
4869 (defun cperl-at-end-of-expr (&optional lim)
4870 ;; Since the SEXP approach below is very fragile, do some overengineering
4871 (or (looking-at (concat cperl-maybe-white-and-comment-rex "[;}]"))
4872 (condition-case nil
4873 (save-excursion
4874 ;; If nothing interesting after, does as (forward-sexp -1);
4875 ;; otherwise fails, or ends at a start of following sexp.
4876 ;; XXXX PROBLEMS: if what follows (after ";") @FOO, or ${bar}
4877 ;; may be stuck after @ or $; just put some stupid workaround now:
4878 (let ((p (point)))
4879 (forward-sexp 1)
4880 (forward-sexp -1)
4881 (while (memq (preceding-char) (append "%&@$*" nil))
4882 (forward-char -1))
4883 (or (< (point) p)
4884 (cperl-after-expr-p lim))))
4885 (error t))))
4886
4887 (defun cperl-forward-to-end-of-expr (&optional lim)
4888 (let ((p (point))))
4889 (condition-case nil
4890 (progn
4891 (while (and (< (point) (or lim (point-max)))
4892 (not (cperl-at-end-of-expr)))
4893 (forward-sexp 1)))
4894 (error nil)))
4895
4896 (defun cperl-backward-to-start-of-continued-exp (lim)
4897 (if (memq (preceding-char) (append ")]}\"'`" nil))
4898 (forward-sexp -1))
4899 (beginning-of-line)
4900 (if (<= (point) lim)
4901 (goto-char (1+ lim)))
4902 (skip-chars-forward " \t"))
4903
4904 (defun cperl-after-block-and-statement-beg (lim)
4905 ;; We assume that we are after ?\}
4906 (and
4907 (cperl-after-block-p lim)
4908 (save-excursion
4909 (forward-sexp -1)
4910 (cperl-backward-to-noncomment (point-min))
4911 (or (bobp)
4912 (eq (point) lim)
4913 (not (= (char-syntax (preceding-char)) ?w))
4914 (progn
4915 (forward-sexp -1)
4916 (not
4917 (looking-at
4918 "\\(map\\|grep\\|printf?\\|system\\|exec\\|tr\\|s\\)\\>")))))))
4919
4920 \f
4921 (defun cperl-indent-exp ()
4922 "Simple variant of indentation of continued-sexp.
4923
4924 Will not indent comment if it starts at `comment-indent' or looks like
4925 continuation of the comment on the previous line.
4926
4927 If `cperl-indent-region-fix-constructs', will improve spacing on
4928 conditional/loop constructs."
4929 (interactive)
4930 (save-excursion
4931 (let ((tmp-end (progn (end-of-line) (point))) top done)
4932 (save-excursion
4933 (beginning-of-line)
4934 (while (null done)
4935 (setq top (point))
4936 ;; Plan A: if line has an unfinished paren-group, go to end-of-group
4937 (while (= -1 (nth 0 (parse-partial-sexp (point) tmp-end -1)))
4938 (setq top (point))) ; Get the outermost parenths in line
4939 (goto-char top)
4940 (while (< (point) tmp-end)
4941 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol
4942 (or (eolp) (forward-sexp 1)))
4943 (if (> (point) tmp-end) ; Yes, there an unfinished block
4944 nil
4945 (if (eq ?\) (preceding-char))
4946 (progn ;; Plan B: find by REGEXP block followup this line
4947 (setq top (point))
4948 (condition-case nil
4949 (progn
4950 (forward-sexp -2)
4951 (if (eq (following-char) ?$ ) ; for my $var (list)
4952 (progn
4953 (forward-sexp -1)
4954 (if (looking-at "\\(my\\|local\\|our\\)\\>")
4955 (forward-sexp -1))))
4956 (if (looking-at
4957 (concat "\\(\\elsif\\|if\\|unless\\|while\\|until"
4958 "\\|for\\(each\\)?\\>\\(\\("
4959 cperl-maybe-white-and-comment-rex
4960 "\\(my\\|local\\|our\\)\\)?"
4961 cperl-maybe-white-and-comment-rex
4962 "\\$[_a-zA-Z0-9]+\\)?\\)\\>"))
4963 (progn
4964 (goto-char top)
4965 (forward-sexp 1)
4966 (setq top (point)))))
4967 (error (setq done t)))
4968 (goto-char top))
4969 (if (looking-at ; Try Plan C: continuation block
4970 (concat cperl-maybe-white-and-comment-rex
4971 "\\<\\(else\\|elsif\|continue\\)\\>"))
4972 (progn
4973 (goto-char (match-end 0))
4974 (save-excursion
4975 (end-of-line)
4976 (setq tmp-end (point))))
4977 (setq done t))))
4978 (save-excursion
4979 (end-of-line)
4980 (setq tmp-end (point))))
4981 (goto-char tmp-end)
4982 (setq tmp-end (point-marker)))
4983 (if cperl-indent-region-fix-constructs
4984 (cperl-fix-line-spacing tmp-end))
4985 (cperl-indent-region (point) tmp-end))))
4986
4987 (defun cperl-fix-line-spacing (&optional end parse-data)
4988 "Improve whitespace in a conditional/loop construct.
4989 Returns some position at the last line."
4990 (interactive)
4991 (or end
4992 (setq end (point-max)))
4993 (let ((ee (save-excursion (end-of-line) (point)))
4994 (cperl-indent-region-fix-constructs
4995 (or cperl-indent-region-fix-constructs 1))
4996 p pp ml have-brace ret)
4997 (save-excursion
4998 (beginning-of-line)
4999 (setq ret (point))
5000 ;; }? continue
5001 ;; blah; }
5002 (if (not
5003 (or (looking-at "[ \t]*\\(els\\(e\\|if\\)\\|continue\\|if\\|while\\|for\\(each\\)?\\|until\\)")
5004 (setq have-brace (save-excursion (search-forward "}" ee t)))))
5005 nil ; Do not need to do anything
5006 ;; Looking at:
5007 ;; }
5008 ;; else
5009 (if cperl-merge-trailing-else
5010 (if (looking-at
5011 "[ \t]*}[ \t]*\n[ \t\n]*\\(els\\(e\\|if\\)\\|continue\\)\\>")
5012 (progn
5013 (search-forward "}")
5014 (setq p (point))
5015 (skip-chars-forward " \t\n")
5016 (delete-region p (point))
5017 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5018 (beginning-of-line)))
5019 (if (looking-at "[ \t]*}[ \t]*\\(els\\(e\\|if\\)\\|continue\\)\\>")
5020 (save-excursion
5021 (search-forward "}")
5022 (delete-horizontal-space)
5023 (insert "\n")
5024 (setq ret (point))
5025 (if (cperl-indent-line parse-data)
5026 (progn
5027 (cperl-fix-line-spacing end parse-data)
5028 (setq ret (point)))))))
5029 ;; Looking at:
5030 ;; } else
5031 (if (looking-at "[ \t]*}\\(\t*\\|[ \t][ \t]+\\)\\<\\(els\\(e\\|if\\)\\|continue\\)\\>")
5032 (progn
5033 (search-forward "}")
5034 (delete-horizontal-space)
5035 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5036 (beginning-of-line)))
5037 ;; Looking at:
5038 ;; else {
5039 (if (looking-at
5040 "[ \t]*}?[ \t]*\\<\\(\\els\\(e\\|if\\)\\|continue\\|unless\\|if\\|while\\|for\\(each\\)?\\|until\\)\\>\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
5041 (progn
5042 (forward-word 1)
5043 (delete-horizontal-space)
5044 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5045 (beginning-of-line)))
5046 ;; Looking at:
5047 ;; foreach my $var
5048 (if (looking-at
5049 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)\\(\t*\\|[ \t][ \t]+\\)[^ \t\n]")
5050 (progn
5051 (forward-word 2)
5052 (delete-horizontal-space)
5053 (insert (make-string cperl-indent-region-fix-constructs ?\s))
5054 (beginning-of-line)))
5055 ;; Looking at:
5056 ;; foreach my $var (
5057 (if (looking-at
5058 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)[ \t]*\\$[_a-zA-Z0-9]+\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
5059 (progn
5060 (forward-sexp 3)
5061 (delete-horizontal-space)
5062 (insert
5063 (make-string cperl-indent-region-fix-constructs ?\s))
5064 (beginning-of-line)))
5065 ;; Looking at (with or without "}" at start, ending after "({"):
5066 ;; } foreach my $var () OR {
5067 (if (looking-at
5068 "[ \t]*\\(}[ \t]*\\)?\\<\\(\\els\\(e\\|if\\)\\|continue\\|if\\|unless\\|while\\|for\\(each\\)?\\(\\([ \t]+\\(my\\|local\\|our\\)\\)?[ \t]*\\$[_a-zA-Z0-9]+\\)?\\|until\\)\\>\\([ \t]*(\\|[ \t\n]*{\\)\\|[ \t]*{")
5069 (progn
5070 (setq ml (match-beginning 8)) ; "(" or "{" after control word
5071 (re-search-forward "[({]")
5072 (forward-char -1)
5073 (setq p (point))
5074 (if (eq (following-char) ?\( )
5075 (progn
5076 (forward-sexp 1)
5077 (setq pp (point))) ; past parenth-group
5078 ;; after `else' or nothing
5079 (if ml ; after `else'
5080 (skip-chars-backward " \t\n")
5081 (beginning-of-line))
5082 (setq pp nil))
5083 ;; Now after the sexp before the brace
5084 ;; Multiline expr should be special
5085 (setq ml (and pp (save-excursion (goto-char p)
5086 (search-forward "\n" pp t))))
5087 (if (and (or (not pp) (< pp end)) ; Do not go too far...
5088 (looking-at "[ \t\n]*{"))
5089 (progn
5090 (cond
5091 ((bolp) ; Were before `{', no if/else/etc
5092 nil)
5093 ((looking-at "\\(\t*\\| [ \t]+\\){") ; Not exactly 1 SPACE
5094 (delete-horizontal-space)
5095 (if (if ml
5096 cperl-extra-newline-before-brace-multiline
5097 cperl-extra-newline-before-brace)
5098 (progn
5099 (delete-horizontal-space)
5100 (insert "\n")
5101 (setq ret (point))
5102 (if (cperl-indent-line parse-data)
5103 (progn
5104 (cperl-fix-line-spacing end parse-data)
5105 (setq ret (point)))))
5106 (insert
5107 (make-string cperl-indent-region-fix-constructs ?\s))))
5108 ((and (looking-at "[ \t]*\n")
5109 (not (if ml
5110 cperl-extra-newline-before-brace-multiline
5111 cperl-extra-newline-before-brace)))
5112 (setq pp (point))
5113 (skip-chars-forward " \t\n")
5114 (delete-region pp (point))
5115 (insert
5116 (make-string cperl-indent-region-fix-constructs ?\ )))
5117 ((and (looking-at "[\t ]*{")
5118 (if ml cperl-extra-newline-before-brace-multiline
5119 cperl-extra-newline-before-brace))
5120 (delete-horizontal-space)
5121 (insert "\n")
5122 (setq ret (point))
5123 (if (cperl-indent-line parse-data)
5124 (progn
5125 (cperl-fix-line-spacing end parse-data)
5126 (setq ret (point))))))
5127 ;; Now we are before `{'
5128 (if (looking-at "[ \t\n]*{[ \t]*[^ \t\n#]")
5129 (progn
5130 (skip-chars-forward " \t\n")
5131 (setq pp (point))
5132 (forward-sexp 1)
5133 (setq p (point))
5134 (goto-char pp)
5135 (setq ml (search-forward "\n" p t))
5136 (if (or cperl-break-one-line-blocks-when-indent ml)
5137 ;; not good: multi-line BLOCK
5138 (progn
5139 (goto-char (1+ pp))
5140 (delete-horizontal-space)
5141 (insert "\n")
5142 (setq ret (point))
5143 (if (cperl-indent-line parse-data)
5144 (setq ret (cperl-fix-line-spacing end parse-data)))))))))))
5145 (beginning-of-line)
5146 (setq p (point) pp (save-excursion (end-of-line) (point))) ; May be different from ee.
5147 ;; Now check whether there is a hanging `}'
5148 ;; Looking at:
5149 ;; } blah
5150 (if (and
5151 cperl-fix-hanging-brace-when-indent
5152 have-brace
5153 (not (looking-at "[ \t]*}[ \t]*\\(\\<\\(els\\(if\\|e\\)\\|continue\\|while\\|until\\)\\>\\|$\\|#\\)"))
5154 (condition-case nil
5155 (progn
5156 (up-list 1)
5157 (if (and (<= (point) pp)
5158 (eq (preceding-char) ?\} )
5159 (cperl-after-block-and-statement-beg (point-min)))
5160 t
5161 (goto-char p)
5162 nil))
5163 (error nil)))
5164 (progn
5165 (forward-char -1)
5166 (skip-chars-backward " \t")
5167 (if (bolp)
5168 ;; `}' was the first thing on the line, insert NL *after* it.
5169 (progn
5170 (cperl-indent-line parse-data)
5171 (search-forward "}")
5172 (delete-horizontal-space)
5173 (insert "\n"))
5174 (delete-horizontal-space)
5175 (or (eq (preceding-char) ?\;)
5176 (bolp)
5177 (and (eq (preceding-char) ?\} )
5178 (cperl-after-block-p (point-min)))
5179 (insert ";"))
5180 (insert "\n")
5181 (setq ret (point)))
5182 (if (cperl-indent-line parse-data)
5183 (setq ret (cperl-fix-line-spacing end parse-data)))
5184 (beginning-of-line)))))
5185 ret))
5186
5187 (defvar cperl-update-start) ; Do not need to make them local
5188 (defvar cperl-update-end)
5189 (defun cperl-delay-update-hook (beg end old-len)
5190 (setq cperl-update-start (min beg (or cperl-update-start (point-max))))
5191 (setq cperl-update-end (max end (or cperl-update-end (point-min)))))
5192
5193 (defun cperl-indent-region (start end)
5194 "Simple variant of indentation of region in CPerl mode.
5195 Should be slow. Will not indent comment if it starts at `comment-indent'
5196 or looks like continuation of the comment on the previous line.
5197 Indents all the lines whose first character is between START and END
5198 inclusive.
5199
5200 If `cperl-indent-region-fix-constructs', will improve spacing on
5201 conditional/loop constructs."
5202 (interactive "r")
5203 (cperl-update-syntaxification end end)
5204 (save-excursion
5205 (let (cperl-update-start cperl-update-end (h-a-c after-change-functions))
5206 (let ((indent-info (if cperl-emacs-can-parse
5207 (list nil nil nil) ; Cannot use '(), since will modify
5208 nil))
5209 (pm 0)
5210 after-change-functions ; Speed it up!
5211 st comm old-comm-indent new-comm-indent p pp i empty)
5212 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook))
5213 (goto-char start)
5214 (setq old-comm-indent (and (cperl-to-comment-or-eol)
5215 (current-column))
5216 new-comm-indent old-comm-indent)
5217 (goto-char start)
5218 (setq end (set-marker (make-marker) end)) ; indentation changes pos
5219 (or (bolp) (beginning-of-line 2))
5220 (while (and (<= (point) end) (not (eobp))) ; bol to check start
5221 (setq st (point))
5222 (if (or
5223 (setq empty (looking-at "[ \t]*\n"))
5224 (and (setq comm (looking-at "[ \t]*#"))
5225 (or (eq (current-indentation) (or old-comm-indent
5226 comment-column))
5227 (setq old-comm-indent nil))))
5228 (if (and old-comm-indent
5229 (not empty)
5230 (= (current-indentation) old-comm-indent)
5231 (not (eq (get-text-property (point) 'syntax-type) 'pod))
5232 (not (eq (get-text-property (point) 'syntax-table)
5233 cperl-st-cfence)))
5234 (let ((comment-column new-comm-indent))
5235 (indent-for-comment)))
5236 (progn
5237 (setq i (cperl-indent-line indent-info))
5238 (or comm
5239 (not i)
5240 (progn
5241 (if cperl-indent-region-fix-constructs
5242 (goto-char (cperl-fix-line-spacing end indent-info)))
5243 (if (setq old-comm-indent
5244 (and (cperl-to-comment-or-eol)
5245 (not (memq (get-text-property (point)
5246 'syntax-type)
5247 '(pod here-doc)))
5248 (not (eq (get-text-property (point)
5249 'syntax-table)
5250 cperl-st-cfence))
5251 (current-column)))
5252 (progn (indent-for-comment)
5253 (skip-chars-backward " \t")
5254 (skip-chars-backward "#")
5255 (setq new-comm-indent (current-column))))))))
5256 (beginning-of-line 2)))
5257 ;; Now run the update hooks
5258 (and after-change-functions
5259 cperl-update-end
5260 (save-excursion
5261 (goto-char cperl-update-end)
5262 (insert " ")
5263 (delete-char -1)
5264 (goto-char cperl-update-start)
5265 (insert " ")
5266 (delete-char -1))))))
5267
5268 ;; Stolen from lisp-mode with a lot of improvements
5269
5270 (defun cperl-fill-paragraph (&optional justify iteration)
5271 "Like `fill-paragraph', but handle CPerl comments.
5272 If any of the current line is a comment, fill the comment or the
5273 block of it that point is in, preserving the comment's initial
5274 indentation and initial hashes. Behaves usually outside of comment."
5275 ;; (interactive "P") ; Only works when called from fill-paragraph. -stef
5276 (let (;; Non-nil if the current line contains a comment.
5277 has-comment
5278 fill-paragraph-function ; do not recurse
5279 ;; If has-comment, the appropriate fill-prefix for the comment.
5280 comment-fill-prefix
5281 ;; Line that contains code and comment (or nil)
5282 start
5283 c spaces len dc (comment-column comment-column))
5284 ;; Figure out what kind of comment we are looking at.
5285 (save-excursion
5286 (beginning-of-line)
5287 (cond
5288
5289 ;; A line with nothing but a comment on it?
5290 ((looking-at "[ \t]*#[# \t]*")
5291 (setq has-comment t
5292 comment-fill-prefix (buffer-substring (match-beginning 0)
5293 (match-end 0))))
5294
5295 ;; A line with some code, followed by a comment? Remember that the
5296 ;; semi which starts the comment shouldn't be part of a string or
5297 ;; character.
5298 ((cperl-to-comment-or-eol)
5299 (setq has-comment t)
5300 (looking-at "#+[ \t]*")
5301 (setq start (point) c (current-column)
5302 comment-fill-prefix
5303 (concat (make-string (current-column) ?\s)
5304 (buffer-substring (match-beginning 0) (match-end 0)))
5305 spaces (progn (skip-chars-backward " \t")
5306 (buffer-substring (point) start))
5307 dc (- c (current-column)) len (- start (point))
5308 start (point-marker))
5309 (delete-char len)
5310 (insert (make-string dc ?-))))) ; Placeholder (to avoid splitting???)
5311 (if (not has-comment)
5312 (fill-paragraph justify) ; Do the usual thing outside of comment
5313 ;; Narrow to include only the comment, and then fill the region.
5314 (save-restriction
5315 (narrow-to-region
5316 ;; Find the first line we should include in the region to fill.
5317 (if start (progn (beginning-of-line) (point))
5318 (save-excursion
5319 (while (and (zerop (forward-line -1))
5320 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")))
5321 ;; We may have gone to far. Go forward again.
5322 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")
5323 (forward-line 1))
5324 (point)))
5325 ;; Find the beginning of the first line past the region to fill.
5326 (save-excursion
5327 (while (progn (forward-line 1)
5328 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]")))
5329 (point)))
5330 ;; Remove existing hashes
5331 (save-excursion
5332 (goto-char (point-min))
5333 (while (progn (forward-line 1) (< (point) (point-max)))
5334 (skip-chars-forward " \t")
5335 (if (looking-at "#+")
5336 (progn
5337 (if (and (eq (point) (match-beginning 0))
5338 (not (eq (point) (match-end 0)))) nil
5339 (error
5340 "Bug in Emacs: `looking-at' in `narrow-to-region': match-data is garbage"))
5341 (delete-char (- (match-end 0) (match-beginning 0)))))))
5342
5343 ;; Lines with only hashes on them can be paragraph boundaries.
5344 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$"))
5345 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$"))
5346 (fill-prefix comment-fill-prefix))
5347 (fill-paragraph justify)))
5348 (if (and start)
5349 (progn
5350 (goto-char start)
5351 (if (> dc 0)
5352 (progn (delete-char dc) (insert spaces)))
5353 (if (or (= (current-column) c) iteration) nil
5354 (setq comment-column c)
5355 (indent-for-comment)
5356 ;; Repeat once more, flagging as iteration
5357 (cperl-fill-paragraph justify t))))))
5358 t)
5359
5360 (defun cperl-do-auto-fill ()
5361 ;; Break out if the line is short enough
5362 (if (> (save-excursion
5363 (end-of-line)
5364 (current-column))
5365 fill-column)
5366 (let ((c (save-excursion (beginning-of-line)
5367 (cperl-to-comment-or-eol) (point)))
5368 (s (memq (following-char) '(?\s ?\t))) marker)
5369 (if (>= c (point))
5370 ;; Don't break line inside code: only inside comment.
5371 nil
5372 (setq marker (point-marker))
5373 (fill-paragraph nil)
5374 (goto-char marker)
5375 ;; Is not enough, sometimes marker is a start of line
5376 (if (bolp) (progn (re-search-forward "#+[ \t]*")
5377 (goto-char (match-end 0))))
5378 ;; Following space could have gone:
5379 (if (or (not s) (memq (following-char) '(?\s ?\t))) nil
5380 (insert " ")
5381 (backward-char 1))
5382 ;; Previous space could have gone:
5383 (or (memq (preceding-char) '(?\s ?\t)) (insert " "))))))
5384
5385 (defun cperl-imenu-addback (lst &optional isback name)
5386 ;; We suppose that the lst is a DAG, unless the first element only
5387 ;; loops back, and ISBACK is set. Thus this function cannot be
5388 ;; applied twice without ISBACK set.
5389 (cond ((not cperl-imenu-addback) lst)
5390 (t
5391 (or name
5392 (setq name "+++BACK+++"))
5393 (mapc (lambda (elt)
5394 (if (and (listp elt) (listp (cdr elt)))
5395 (progn
5396 ;; In the other order it goes up
5397 ;; one level only ;-(
5398 (setcdr elt (cons (cons name lst)
5399 (cdr elt)))
5400 (cperl-imenu-addback (cdr elt) t name))))
5401 (if isback (cdr lst) lst))
5402 lst)))
5403
5404 (defun cperl-imenu--create-perl-index (&optional regexp)
5405 (require 'imenu) ; May be called from TAGS creator
5406 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '())
5407 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function))
5408 (index-meth-alist '()) meth
5409 packages ends-ranges p marker is-proto
5410 (prev-pos 0) is-pack index index1 name (end-range 0) package)
5411 (goto-char (point-min))
5412 (cperl-update-syntaxification (point-max) (point-max))
5413 ;; Search for the function
5414 (progn ;;save-match-data
5415 (while (re-search-forward
5416 (or regexp cperl-imenu--function-name-regexp-perl)
5417 nil t)
5418 ;; 2=package-group, 5=package-name 8=sub-name
5419 (cond
5420 ((and ; Skip some noise if building tags
5421 (match-beginning 5) ; package name
5422 ;;(eq (char-after (match-beginning 2)) ?p) ; package
5423 (not (save-match-data
5424 (looking-at "[ \t\n]*;")))) ; Plain text word 'package'
5425 nil)
5426 ((and
5427 (or (match-beginning 2)
5428 (match-beginning 8)) ; package or sub
5429 ;; Skip if quoted (will not skip multi-line ''-strings :-():
5430 (null (get-text-property (match-beginning 1) 'syntax-table))
5431 (null (get-text-property (match-beginning 1) 'syntax-type))
5432 (null (get-text-property (match-beginning 1) 'in-pod)))
5433 (setq is-pack (match-beginning 2))
5434 ;; (if (looking-at "([^()]*)[ \t\n\f]*")
5435 ;; (goto-char (match-end 0))) ; Messes what follows
5436 (setq meth nil
5437 p (point))
5438 (while (and ends-ranges (>= p (car ends-ranges)))
5439 ;; delete obsolete entries
5440 (setq ends-ranges (cdr ends-ranges) packages (cdr packages)))
5441 (setq package (or (car packages) "")
5442 end-range (or (car ends-ranges) 0))
5443 (if is-pack ; doing "package"
5444 (progn
5445 (if (match-beginning 5) ; named package
5446 (setq name (buffer-substring (match-beginning 5)
5447 (match-end 5))
5448 name (progn
5449 (set-text-properties 0 (length name) nil name)
5450 name)
5451 package (concat name "::")
5452 name (concat "package " name))
5453 ;; Support nameless packages
5454 (setq name "package;" package ""))
5455 (setq end-range
5456 (save-excursion
5457 (parse-partial-sexp (point) (point-max) -1) (point))
5458 ends-ranges (cons end-range ends-ranges)
5459 packages (cons package packages)))
5460 (setq is-proto
5461 (or (eq (following-char) ?\;)
5462 (eq 0 (get-text-property (point) 'attrib-group)))))
5463 ;; Skip this function name if it is a prototype declaration.
5464 (if (and is-proto (not is-pack)) nil
5465 (or is-pack
5466 (setq name
5467 (buffer-substring (match-beginning 8) (match-end 8)))
5468 (set-text-properties 0 (length name) nil name))
5469 (setq marker (make-marker))
5470 (set-marker marker (match-end (if is-pack 2 8)))
5471 (cond (is-pack nil)
5472 ((string-match "[:']" name)
5473 (setq meth t))
5474 ((> p end-range) nil)
5475 (t
5476 (setq name (concat package name) meth t)))
5477 (setq index (cons name marker))
5478 (if is-pack
5479 (push index index-pack-alist)
5480 (push index index-alist))
5481 (if meth (push index index-meth-alist))
5482 (push index index-unsorted-alist)))
5483 ((match-beginning 16) ; POD section
5484 (setq name (buffer-substring (match-beginning 17) (match-end 17))
5485 marker (make-marker))
5486 (set-marker marker (match-beginning 17))
5487 (set-text-properties 0 (length name) nil name)
5488 (setq name (concat (make-string
5489 (* 3 (- (char-after (match-beginning 16)) ?1))
5490 ?\ )
5491 name)
5492 index (cons name marker))
5493 (setq index1 (cons (concat "=" name) (cdr index)))
5494 (push index index-pod-alist)
5495 (push index1 index-unsorted-alist)))))
5496 (setq index-alist
5497 (if (default-value 'imenu-sort-function)
5498 (sort index-alist (default-value 'imenu-sort-function))
5499 (nreverse index-alist)))
5500 (and index-pod-alist
5501 (push (cons "+POD headers+..."
5502 (nreverse index-pod-alist))
5503 index-alist))
5504 (and (or index-pack-alist index-meth-alist)
5505 (let ((lst index-pack-alist) hier-list pack elt group name)
5506 ;; Remove "package ", reverse and uniquify.
5507 (while lst
5508 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8))
5509 (if (assoc name hier-list) nil
5510 (setq hier-list (cons (cons name (cdr elt)) hier-list))))
5511 (setq lst index-meth-alist)
5512 (while lst
5513 (setq elt (car lst) lst (cdr lst))
5514 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt))
5515 (setq pack (substring (car elt) 0 (match-beginning 0)))
5516 (if (setq group (assoc pack hier-list))
5517 (if (listp (cdr group))
5518 ;; Have some functions already
5519 (setcdr group
5520 (cons (cons (substring
5521 (car elt)
5522 (+ 2 (match-beginning 0)))
5523 (cdr elt))
5524 (cdr group)))
5525 (setcdr group (list (cons (substring
5526 (car elt)
5527 (+ 2 (match-beginning 0)))
5528 (cdr elt)))))
5529 (setq hier-list
5530 (cons (cons pack
5531 (list (cons (substring
5532 (car elt)
5533 (+ 2 (match-beginning 0)))
5534 (cdr elt))))
5535 hier-list))))))
5536 (push (cons "+Hierarchy+..."
5537 hier-list)
5538 index-alist)))
5539 (and index-pack-alist
5540 (push (cons "+Packages+..."
5541 (nreverse index-pack-alist))
5542 index-alist))
5543 (and (or index-pack-alist index-pod-alist
5544 (default-value 'imenu-sort-function))
5545 index-unsorted-alist
5546 (push (cons "+Unsorted List+..."
5547 (nreverse index-unsorted-alist))
5548 index-alist))
5549 (cperl-imenu-addback index-alist)))
5550
5551 \f
5552 ;; Suggested by Mark A. Hershberger
5553 (defun cperl-outline-level ()
5554 (looking-at outline-regexp)
5555 (cond ((not (match-beginning 1)) 0) ; beginning-of-file
5556 ;;;; 2=package-group, 5=package-name 8=sub-name 16=head-level
5557 ((match-beginning 2) 0) ; package
5558 ((match-beginning 8) 1) ; sub
5559 ((match-beginning 16)
5560 (- (char-after (match-beginning 16)) ?0)) ; headN ==> N
5561 (t 5))) ; should not happen
5562
5563 \f
5564 (defun cperl-windowed-init ()
5565 "Initialization under windowed version."
5566 (cond ((featurep 'ps-print)
5567 (or cperl-faces-init
5568 (progn
5569 (and (boundp 'font-lock-multiline)
5570 (setq cperl-font-lock-multiline t))
5571 (cperl-init-faces))))
5572 ((not cperl-faces-init)
5573 (add-hook 'font-lock-mode-hook
5574 (function
5575 (lambda ()
5576 (if (memq major-mode '(perl-mode cperl-mode))
5577 (progn
5578 (or cperl-faces-init (cperl-init-faces)))))))
5579 (if (fboundp 'eval-after-load)
5580 (eval-after-load
5581 "ps-print"
5582 '(or cperl-faces-init (cperl-init-faces)))))))
5583
5584 (defvar cperl-font-lock-keywords-1 nil
5585 "Additional expressions to highlight in Perl mode. Minimal set.")
5586 (defvar cperl-font-lock-keywords nil
5587 "Additional expressions to highlight in Perl mode. Default set.")
5588 (defvar cperl-font-lock-keywords-2 nil
5589 "Additional expressions to highlight in Perl mode. Maximal set")
5590
5591 (defun cperl-load-font-lock-keywords ()
5592 (or cperl-faces-init (cperl-init-faces))
5593 cperl-font-lock-keywords)
5594
5595 (defun cperl-load-font-lock-keywords-1 ()
5596 (or cperl-faces-init (cperl-init-faces))
5597 cperl-font-lock-keywords-1)
5598
5599 (defun cperl-load-font-lock-keywords-2 ()
5600 (or cperl-faces-init (cperl-init-faces))
5601 cperl-font-lock-keywords-2)
5602
5603 (defun cperl-init-faces-weak ()
5604 ;; Allow `cperl-find-pods-heres' to run.
5605 (or (boundp 'font-lock-constant-face)
5606 (cperl-force-face font-lock-constant-face
5607 "Face for constant and label names"))
5608 (or (boundp 'font-lock-warning-face)
5609 (cperl-force-face font-lock-warning-face
5610 "Face for things which should stand out"))
5611 ;;(setq font-lock-constant-face 'font-lock-constant-face)
5612 )
5613
5614 (defun cperl-init-faces ()
5615 (condition-case errs
5616 (progn
5617 (require 'font-lock)
5618 (and (fboundp 'font-lock-fontify-anchored-keywords)
5619 (featurep 'font-lock-extra)
5620 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'."))
5621 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored)
5622 (if (fboundp 'font-lock-fontify-anchored-keywords)
5623 (setq font-lock-anchored t))
5624 (setq
5625 t-font-lock-keywords
5626 (list
5627 `("[ \t]+$" 0 ',cperl-invalid-face t)
5628 (cons
5629 (concat
5630 "\\(^\\|[^$@%&\\]\\)\\<\\("
5631 (mapconcat
5632 'identity
5633 '("if" "until" "while" "elsif" "else" "unless" "for"
5634 "foreach" "continue" "exit" "die" "last" "goto" "next"
5635 "redo" "return" "local" "exec" "sub" "do" "dump" "use" "our"
5636 "require" "package" "eval" "my" "BEGIN" "END" "CHECK" "INIT")
5637 "\\|") ; Flow control
5638 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]"
5639 ; In what follows we use `type' style
5640 ; for overwritable builtins
5641 (list
5642 (concat
5643 "\\(^\\|[^$@%&\\]\\)\\<\\("
5644 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm"
5645 ;; "and" "atan2" "bind" "binmode" "bless" "caller"
5646 ;; "chdir" "chmod" "chown" "chr" "chroot" "close"
5647 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt"
5648 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent"
5649 ;; "endhostent" "endnetent" "endprotoent" "endpwent"
5650 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl"
5651 ;; "fileno" "flock" "fork" "formline" "ge" "getc"
5652 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr"
5653 ;; "gethostbyname" "gethostent" "getlogin"
5654 ;; "getnetbyaddr" "getnetbyname" "getnetent"
5655 ;; "getpeername" "getpgrp" "getppid" "getpriority"
5656 ;; "getprotobyname" "getprotobynumber" "getprotoent"
5657 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname"
5658 ;; "getservbyport" "getservent" "getsockname"
5659 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int"
5660 ;; "ioctl" "join" "kill" "lc" "lcfirst" "le" "length"
5661 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt"
5662 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne"
5663 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe"
5664 ;; "quotemeta" "rand" "read" "readdir" "readline"
5665 ;; "readlink" "readpipe" "recv" "ref" "rename" "require"
5666 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek"
5667 ;; "seekdir" "select" "semctl" "semget" "semop" "send"
5668 ;; "setgrent" "sethostent" "setnetent" "setpgrp"
5669 ;; "setpriority" "setprotoent" "setpwent" "setservent"
5670 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite"
5671 ;; "shutdown" "sin" "sleep" "socket" "socketpair"
5672 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink"
5673 ;; "syscall" "sysopen" "sysread" "system" "syswrite" "tell"
5674 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst"
5675 ;; "umask" "unlink" "unpack" "utime" "values" "vec"
5676 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor"
5677 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|"
5678 "b\\(in\\(d\\|mode\\)\\|less\\)\\|"
5679 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|"
5680 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|"
5681 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|"
5682 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|"
5683 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|"
5684 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|"
5685 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|"
5686 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w"
5687 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|"
5688 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|"
5689 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|"
5690 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|"
5691 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|"
5692 "l\\(i\\(sten\\|nk\\)\\|stat\\|c\\(\\|first\\)\\|t\\|e"
5693 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|"
5694 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|"
5695 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|"
5696 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin"
5697 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name"
5698 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r"
5699 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|"
5700 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|"
5701 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|"
5702 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|open\\|tem\\|write\\)\\|"
5703 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|"
5704 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|"
5705 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|"
5706 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|"
5707 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)"
5708 "\\)\\>") 2 'font-lock-type-face)
5709 ;; In what follows we use `other' style
5710 ;; for nonoverwritable builtins
5711 ;; Somehow 's', 'm' are not auto-generated???
5712 (list
5713 (concat
5714 "\\(^\\|[^$@%&\\]\\)\\<\\("
5715 ;; "AUTOLOAD" "BEGIN" "CHECK" "DESTROY" "END" "INIT" "__END__" "chomp"
5716 ;; "chop" "defined" "delete" "do" "each" "else" "elsif"
5717 ;; "eval" "exists" "for" "foreach" "format" "goto"
5718 ;; "grep" "if" "keys" "last" "local" "map" "my" "next"
5719 ;; "no" "our" "package" "pop" "pos" "print" "printf" "push"
5720 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift"
5721 ;; "sort" "splice" "split" "study" "sub" "tie" "tr"
5722 ;; "undef" "unless" "unshift" "untie" "until" "use"
5723 ;; "while" "y"
5724 "AUTOLOAD\\|BEGIN\\|CHECK\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|"
5725 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|"
5726 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|INIT\\|if\\|keys\\|"
5727 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|our\\|"
5728 "p\\(ackage\\|rint\\(\\|f\\)\\|ush\\|o\\(p\\|s\\)\\)\\|"
5729 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|"
5730 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|"
5731 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|"
5732 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually
5733 "\\|[sm]" ; Added manually
5734 "\\)\\>") 2 'cperl-nonoverridable-face)
5735 ;; (mapconcat 'identity
5736 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if"
5737 ;; "#include" "#define" "#undef")
5738 ;; "\\|")
5739 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0
5740 font-lock-function-name-face keep) ; Not very good, triggers at "[a-z]"
5741 ;; This highlights declarations and definitions differenty.
5742 ;; We do not try to highlight in the case of attributes:
5743 ;; it is already done by `cperl-find-pods-heres'
5744 (list (concat "\\<sub"
5745 cperl-white-and-comment-rex ; whitespace/comments
5746 "\\([^ \n\t{;()]+\\)" ; 2=name (assume non-anonymous)
5747 "\\("
5748 cperl-maybe-white-and-comment-rex ;whitespace/comments?
5749 "([^()]*)\\)?" ; prototype
5750 cperl-maybe-white-and-comment-rex ; whitespace/comments?
5751 "[{;]")
5752 2 (if cperl-font-lock-multiline
5753 '(if (eq (char-after (cperl-1- (match-end 0))) ?\{ )
5754 'font-lock-function-name-face
5755 'font-lock-variable-name-face)
5756 ;; need to manually set 'multiline' for older font-locks
5757 '(progn
5758 (if (< 1 (count-lines (match-beginning 0)
5759 (match-end 0)))
5760 (put-text-property
5761 (+ 3 (match-beginning 0)) (match-end 0)
5762 'syntax-type 'multiline))
5763 (if (eq (char-after (cperl-1- (match-end 0))) ?\{ )
5764 'font-lock-function-name-face
5765 'font-lock-variable-name-face))))
5766 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B;
5767 2 font-lock-function-name-face)
5768 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$"
5769 1 font-lock-function-name-face)
5770 (cond ((featurep 'font-lock-extra)
5771 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5772 (2 font-lock-string-face t)
5773 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef}
5774 (font-lock-anchored
5775 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5776 (2 font-lock-string-face t)
5777 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5778 nil nil
5779 (1 font-lock-string-face t))))
5780 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
5781 2 font-lock-string-face t)))
5782 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1
5783 font-lock-string-face t)
5784 '("^[ \t]*\\([a-zA-Z0-9_]+[ \t]*:\\)[ \t]*\\($\\|{\\|\\<\\(until\\|while\\|for\\(each\\)?\\|do\\)\\>\\)" 1
5785 font-lock-constant-face) ; labels
5786 '("\\<\\(continue\\|next\\|last\\|redo\\|goto\\)\\>[ \t]+\\([a-zA-Z0-9_:]+\\)" ; labels as targets
5787 2 font-lock-constant-face)
5788 ;; Uncomment to get perl-mode-like vars
5789 ;;; '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face)
5790 ;;; '("\\([@%]\\|\\$#\\)\\(\\sw+\\)"
5791 ;;; (2 (cons font-lock-variable-name-face '(underline))))
5792 (cond ((featurep 'font-lock-extra)
5793 '("^[ \t]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
5794 (3 font-lock-variable-name-face)
5795 (4 '(another 4 nil
5796 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
5797 (1 font-lock-variable-name-face)
5798 (2 '(restart 2 nil) nil t)))
5799 nil t))) ; local variables, multiple
5800 (font-lock-anchored
5801 ;; 1=my_etc, 2=white? 3=(+white? 4=white? 5=var
5802 `(,(concat "\\<\\(my\\|local\\|our\\)"
5803 cperl-maybe-white-and-comment-rex
5804 "\\(("
5805 cperl-maybe-white-and-comment-rex
5806 "\\)?\\([$@%*]\\([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
5807 (5 ,(if cperl-font-lock-multiline
5808 'font-lock-variable-name-face
5809 '(progn (setq cperl-font-lock-multiline-start
5810 (match-beginning 0))
5811 'font-lock-variable-name-face)))
5812 (,(concat "\\="
5813 cperl-maybe-white-and-comment-rex
5814 ","
5815 cperl-maybe-white-and-comment-rex
5816 "\\([$@%*]\\([a-zA-Z0-9_:]+\\|[^a-zA-Z0-9_]\\)\\)")
5817 ;; Bug in font-lock: limit is used not only to limit
5818 ;; searches, but to set the "extend window for
5819 ;; facification" property. Thus we need to minimize.
5820 ,(if cperl-font-lock-multiline
5821 '(if (match-beginning 3)
5822 (save-excursion
5823 (goto-char (match-beginning 3))
5824 (condition-case nil
5825 (forward-sexp 1)
5826 (error
5827 (condition-case nil
5828 (forward-char 200)
5829 (error nil)))) ; typeahead
5830 (1- (point))) ; report limit
5831 (forward-char -2)) ; disable continued expr
5832 '(if (match-beginning 3)
5833 (point-max) ; No limit for continuation
5834 (forward-char -2))) ; disable continued expr
5835 ,(if cperl-font-lock-multiline
5836 nil
5837 '(progn ; Do at end
5838 ;; "my" may be already fontified (POD),
5839 ;; so cperl-font-lock-multiline-start is nil
5840 (if (or (not cperl-font-lock-multiline-start)
5841 (> 2 (count-lines
5842 cperl-font-lock-multiline-start
5843 (point))))
5844 nil
5845 (put-text-property
5846 (1+ cperl-font-lock-multiline-start) (point)
5847 'syntax-type 'multiline))
5848 (setq cperl-font-lock-multiline-start nil)))
5849 (3 font-lock-variable-name-face))))
5850 (t '("^[ \t{}]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)"
5851 3 font-lock-variable-name-face)))
5852 '("\\<for\\(each\\)?\\([ \t]+\\(my\\|local\\|our\\)\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*("
5853 4 font-lock-variable-name-face)
5854 ;; Avoid $!, and s!!, qq!! etc. when not fontifying syntaxically
5855 '("\\(?:^\\|[^smywqrx$]\\)\\(!\\)" 1 font-lock-negation-char-face)
5856 '("\\[\\(\\^\\)" 1 font-lock-negation-char-face prepend)))
5857 (setq
5858 t-font-lock-keywords-1
5859 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock
5860 ;; not yet as of XEmacs 19.12, works with 21.1.11
5861 (or
5862 (not (featurep 'xemacs))
5863 (string< "21.1.9" emacs-version)
5864 (and (string< "21.1.10" emacs-version)
5865 (string< emacs-version "21.1.2")))
5866 '(
5867 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1
5868 (if (eq (char-after (match-beginning 2)) ?%)
5869 'cperl-hash-face
5870 'cperl-array-face)
5871 t) ; arrays and hashes
5872 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)"
5873 1
5874 (if (= (- (match-end 2) (match-beginning 2)) 1)
5875 (if (eq (char-after (match-beginning 3)) ?{)
5876 'cperl-hash-face
5877 'cperl-array-face) ; arrays and hashes
5878 font-lock-variable-name-face) ; Just to put something
5879 t)
5880 ("\\(@\\|\\$#\\)\\(\\$+\\([a-zA-Z_:][a-zA-Z0-9_:]*\\|[^ \t\n]\\)\\)"
5881 (1 cperl-array-face)
5882 (2 font-lock-variable-name-face))
5883 ("\\(%\\)\\(\\$+\\([a-zA-Z_:][a-zA-Z0-9_:]*\\|[^ \t\n]\\)\\)"
5884 (1 cperl-hash-face)
5885 (2 font-lock-variable-name-face))
5886 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2")
5887 ;;; Too much noise from \s* @s[ and friends
5888 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)"
5889 ;;(3 font-lock-function-name-face t t)
5890 ;;(4
5891 ;; (if (cperl-slash-is-regexp)
5892 ;; font-lock-function-name-face 'default) nil t))
5893 )))
5894 (if cperl-highlight-variables-indiscriminately
5895 (setq t-font-lock-keywords-1
5896 (append t-font-lock-keywords-1
5897 (list '("\\([$*]{?\\sw+\\)" 1
5898 font-lock-variable-name-face)))))
5899 (setq cperl-font-lock-keywords-1
5900 (if cperl-syntaxify-by-font-lock
5901 (cons 'cperl-fontify-update
5902 t-font-lock-keywords)
5903 t-font-lock-keywords)
5904 cperl-font-lock-keywords cperl-font-lock-keywords-1
5905 cperl-font-lock-keywords-2 (append
5906 cperl-font-lock-keywords-1
5907 t-font-lock-keywords-1)))
5908 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init))
5909 (if (or (featurep 'choose-color) (featurep 'font-lock-extra))
5910 (eval ; Avoid a warning
5911 '(font-lock-require-faces
5912 (list
5913 ;; Color-light Color-dark Gray-light Gray-dark Mono
5914 (list 'font-lock-comment-face
5915 ["Firebrick" "OrangeRed" "DimGray" "Gray80"]
5916 nil
5917 [nil nil t t t]
5918 [nil nil t t t]
5919 nil)
5920 (list 'font-lock-string-face
5921 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"]
5922 nil
5923 nil
5924 [nil nil t t t]
5925 nil)
5926 (list 'font-lock-function-name-face
5927 (vector
5928 "Blue" "LightSkyBlue" "Gray50" "LightGray"
5929 (cdr (assq 'background-color ; if mono
5930 (frame-parameters))))
5931 (vector
5932 nil nil nil nil
5933 (cdr (assq 'foreground-color ; if mono
5934 (frame-parameters))))
5935 [nil nil t t t]
5936 nil
5937 nil)
5938 (list 'font-lock-variable-name-face
5939 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"]
5940 nil
5941 [nil nil t t t]
5942 [nil nil t t t]
5943 nil)
5944 (list 'font-lock-type-face
5945 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"]
5946 nil
5947 [nil nil t t t]
5948 nil
5949 [nil nil t t t])
5950 (list 'font-lock-warning-face
5951 ["Pink" "Red" "Gray50" "LightGray"]
5952 ["gray20" "gray90"
5953 "gray80" "gray20"]
5954 [nil nil t t t]
5955 nil
5956 [nil nil t t t]
5957 )
5958 (list 'font-lock-constant-face
5959 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"]
5960 nil
5961 [nil nil t t t]
5962 nil
5963 [nil nil t t t])
5964 (list 'cperl-nonoverridable-face
5965 ["chartreuse3" ("orchid1" "orange")
5966 nil "Gray80"]
5967 [nil nil "gray90"]
5968 [nil nil nil t t]
5969 [nil nil t t]
5970 [nil nil t t t])
5971 (list 'cperl-array-face
5972 ["blue" "yellow" nil "Gray80"]
5973 ["lightyellow2" ("navy" "os2blue" "darkgreen")
5974 "gray90"]
5975 t
5976 nil
5977 nil)
5978 (list 'cperl-hash-face
5979 ["red" "red" nil "Gray80"]
5980 ["lightyellow2" ("navy" "os2blue" "darkgreen")
5981 "gray90"]
5982 t
5983 t
5984 nil))))
5985 ;; Do it the dull way, without choose-color
5986 (defvar cperl-guessed-background nil
5987 "Display characteristics as guessed by cperl.")
5988 ;; (or (fboundp 'x-color-defined-p)
5989 ;; (defalias 'x-color-defined-p
5990 ;; (cond ((fboundp 'color-defined-p) 'color-defined-p)
5991 ;; ;; XEmacs >= 19.12
5992 ;; ((fboundp 'valid-color-name-p) 'valid-color-name-p)
5993 ;; ;; XEmacs 19.11
5994 ;; (t 'x-valid-color-name-p))))
5995 (cperl-force-face font-lock-constant-face
5996 "Face for constant and label names")
5997 (cperl-force-face font-lock-variable-name-face
5998 "Face for variable names")
5999 (cperl-force-face font-lock-type-face
6000 "Face for data types")
6001 (cperl-force-face cperl-nonoverridable-face
6002 "Face for data types from another group")
6003 (cperl-force-face font-lock-warning-face
6004 "Face for things which should stand out")
6005 (cperl-force-face font-lock-comment-face
6006 "Face for comments")
6007 (cperl-force-face font-lock-function-name-face
6008 "Face for function names")
6009 (cperl-force-face cperl-hash-face
6010 "Face for hashes")
6011 (cperl-force-face cperl-array-face
6012 "Face for arrays")
6013 ;;(defvar font-lock-constant-face 'font-lock-constant-face)
6014 ;;(defvar font-lock-variable-name-face 'font-lock-variable-name-face)
6015 ;;(or (boundp 'font-lock-type-face)
6016 ;; (defconst font-lock-type-face
6017 ;; 'font-lock-type-face
6018 ;; "Face to use for data types."))
6019 ;;(or (boundp 'cperl-nonoverridable-face)
6020 ;; (defconst cperl-nonoverridable-face
6021 ;; 'cperl-nonoverridable-face
6022 ;; "Face to use for data types from another group."))
6023 ;;(if (not (featurep 'xemacs)) nil
6024 ;; (or (boundp 'font-lock-comment-face)
6025 ;; (defconst font-lock-comment-face
6026 ;; 'font-lock-comment-face
6027 ;; "Face to use for comments."))
6028 ;; (or (boundp 'font-lock-keyword-face)
6029 ;; (defconst font-lock-keyword-face
6030 ;; 'font-lock-keyword-face
6031 ;; "Face to use for keywords."))
6032 ;; (or (boundp 'font-lock-function-name-face)
6033 ;; (defconst font-lock-function-name-face
6034 ;; 'font-lock-function-name-face
6035 ;; "Face to use for function names.")))
6036 (if (and
6037 (not (cperl-is-face 'cperl-array-face))
6038 (cperl-is-face 'font-lock-emphasized-face))
6039 (copy-face 'font-lock-emphasized-face 'cperl-array-face))
6040 (if (and
6041 (not (cperl-is-face 'cperl-hash-face))
6042 (cperl-is-face 'font-lock-other-emphasized-face))
6043 (copy-face 'font-lock-other-emphasized-face 'cperl-hash-face))
6044 (if (and
6045 (not (cperl-is-face 'cperl-nonoverridable-face))
6046 (cperl-is-face 'font-lock-other-type-face))
6047 (copy-face 'font-lock-other-type-face 'cperl-nonoverridable-face))
6048 ;;(or (boundp 'cperl-hash-face)
6049 ;; (defconst cperl-hash-face
6050 ;; 'cperl-hash-face
6051 ;; "Face to use for hashes."))
6052 ;;(or (boundp 'cperl-array-face)
6053 ;; (defconst cperl-array-face
6054 ;; 'cperl-array-face
6055 ;; "Face to use for arrays."))
6056 ;; Here we try to guess background
6057 (let ((background
6058 (if (boundp 'font-lock-background-mode)
6059 font-lock-background-mode
6060 'light))
6061 (face-list (and (fboundp 'face-list) (face-list))))
6062 ;;;; (fset 'cperl-is-face
6063 ;;;; (cond ((fboundp 'find-face)
6064 ;;;; (symbol-function 'find-face))
6065 ;;;; (face-list
6066 ;;;; (function (lambda (face) (member face face-list))))
6067 ;;;; (t
6068 ;;;; (function (lambda (face) (boundp face))))))
6069 (defvar cperl-guessed-background
6070 (if (and (boundp 'font-lock-display-type)
6071 (eq font-lock-display-type 'grayscale))
6072 'gray
6073 background)
6074 "Background as guessed by CPerl mode")
6075 (and (not (cperl-is-face 'font-lock-constant-face))
6076 (cperl-is-face 'font-lock-reference-face)
6077 (copy-face 'font-lock-reference-face 'font-lock-constant-face))
6078 (if (cperl-is-face 'font-lock-type-face) nil
6079 (copy-face 'default 'font-lock-type-face)
6080 (cond
6081 ((eq background 'light)
6082 (set-face-foreground 'font-lock-type-face
6083 (if (x-color-defined-p "seagreen")
6084 "seagreen"
6085 "sea green")))
6086 ((eq background 'dark)
6087 (set-face-foreground 'font-lock-type-face
6088 (if (x-color-defined-p "os2pink")
6089 "os2pink"
6090 "pink")))
6091 (t
6092 (set-face-background 'font-lock-type-face "gray90"))))
6093 (if (cperl-is-face 'cperl-nonoverridable-face)
6094 nil
6095 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face)
6096 (cond
6097 ((eq background 'light)
6098 (set-face-foreground 'cperl-nonoverridable-face
6099 (if (x-color-defined-p "chartreuse3")
6100 "chartreuse3"
6101 "chartreuse")))
6102 ((eq background 'dark)
6103 (set-face-foreground 'cperl-nonoverridable-face
6104 (if (x-color-defined-p "orchid1")
6105 "orchid1"
6106 "orange")))))
6107 ;;; (if (cperl-is-face 'font-lock-other-emphasized-face) nil
6108 ;;; (copy-face 'bold-italic 'font-lock-other-emphasized-face)
6109 ;;; (cond
6110 ;;; ((eq background 'light)
6111 ;;; (set-face-background 'font-lock-other-emphasized-face
6112 ;;; (if (x-color-defined-p "lightyellow2")
6113 ;;; "lightyellow2"
6114 ;;; (if (x-color-defined-p "lightyellow")
6115 ;;; "lightyellow"
6116 ;;; "light yellow"))))
6117 ;;; ((eq background 'dark)
6118 ;;; (set-face-background 'font-lock-other-emphasized-face
6119 ;;; (if (x-color-defined-p "navy")
6120 ;;; "navy"
6121 ;;; (if (x-color-defined-p "darkgreen")
6122 ;;; "darkgreen"
6123 ;;; "dark green"))))
6124 ;;; (t (set-face-background 'font-lock-other-emphasized-face "gray90"))))
6125 ;;; (if (cperl-is-face 'font-lock-emphasized-face) nil
6126 ;;; (copy-face 'bold 'font-lock-emphasized-face)
6127 ;;; (cond
6128 ;;; ((eq background 'light)
6129 ;;; (set-face-background 'font-lock-emphasized-face
6130 ;;; (if (x-color-defined-p "lightyellow2")
6131 ;;; "lightyellow2"
6132 ;;; "lightyellow")))
6133 ;;; ((eq background 'dark)
6134 ;;; (set-face-background 'font-lock-emphasized-face
6135 ;;; (if (x-color-defined-p "navy")
6136 ;;; "navy"
6137 ;;; (if (x-color-defined-p "darkgreen")
6138 ;;; "darkgreen"
6139 ;;; "dark green"))))
6140 ;;; (t (set-face-background 'font-lock-emphasized-face "gray90"))))
6141 (if (cperl-is-face 'font-lock-variable-name-face) nil
6142 (copy-face 'italic 'font-lock-variable-name-face))
6143 (if (cperl-is-face 'font-lock-constant-face) nil
6144 (copy-face 'italic 'font-lock-constant-face))))
6145 (setq cperl-faces-init t))
6146 (error (message "cperl-init-faces (ignored): %s" errs))))
6147
6148
6149 (defun cperl-ps-print-init ()
6150 "Initialization of `ps-print' components for faces used in CPerl."
6151 (eval-after-load "ps-print"
6152 '(setq ps-bold-faces
6153 ;; font-lock-variable-name-face
6154 ;; font-lock-constant-face
6155 (append '(cperl-array-face cperl-hash-face)
6156 ps-bold-faces)
6157 ps-italic-faces
6158 ;; font-lock-constant-face
6159 (append '(cperl-nonoverridable-face cperl-hash-face)
6160 ps-italic-faces)
6161 ps-underlined-faces
6162 ;; font-lock-type-face
6163 (append '(cperl-array-face cperl-hash-face underline cperl-nonoverridable-face)
6164 ps-underlined-faces))))
6165
6166 (defvar ps-print-face-extension-alist)
6167
6168 (defun cperl-ps-print (&optional file)
6169 "Pretty-print in CPerl style.
6170 If optional argument FILE is an empty string, prints to printer, otherwise
6171 to the file FILE. If FILE is nil, prompts for a file name.
6172
6173 Style of printout regulated by the variable `cperl-ps-print-face-properties'."
6174 (interactive)
6175 (or file
6176 (setq file (read-from-minibuffer
6177 "Print to file (if empty - to printer): "
6178 (concat (buffer-file-name) ".ps")
6179 nil nil 'file-name-history)))
6180 (or (> (length file) 0)
6181 (setq file nil))
6182 (require 'ps-print) ; To get ps-print-face-extension-alist
6183 (let ((ps-print-color-p t)
6184 (ps-print-face-extension-alist ps-print-face-extension-alist))
6185 (cperl-ps-extend-face-list cperl-ps-print-face-properties)
6186 (ps-print-buffer-with-faces file)))
6187
6188 ;;; (defun cperl-ps-print-init ()
6189 ;;; "Initialization of `ps-print' components for faces used in CPerl."
6190 ;;; ;; Guard against old versions
6191 ;;; (defvar ps-underlined-faces nil)
6192 ;;; (defvar ps-bold-faces nil)
6193 ;;; (defvar ps-italic-faces nil)
6194 ;;; (setq ps-bold-faces
6195 ;;; (append '(font-lock-emphasized-face
6196 ;;; cperl-array-face
6197 ;;; font-lock-keyword-face
6198 ;;; font-lock-variable-name-face
6199 ;;; font-lock-constant-face
6200 ;;; font-lock-reference-face
6201 ;;; font-lock-other-emphasized-face
6202 ;;; cperl-hash-face)
6203 ;;; ps-bold-faces))
6204 ;;; (setq ps-italic-faces
6205 ;;; (append '(cperl-nonoverridable-face
6206 ;;; font-lock-constant-face
6207 ;;; font-lock-reference-face
6208 ;;; font-lock-other-emphasized-face
6209 ;;; cperl-hash-face)
6210 ;;; ps-italic-faces))
6211 ;;; (setq ps-underlined-faces
6212 ;;; (append '(font-lock-emphasized-face
6213 ;;; cperl-array-face
6214 ;;; font-lock-other-emphasized-face
6215 ;;; cperl-hash-face
6216 ;;; cperl-nonoverridable-face font-lock-type-face)
6217 ;;; ps-underlined-faces))
6218 ;;; (cons 'font-lock-type-face ps-underlined-faces))
6219
6220
6221 (if (cperl-enable-font-lock) (cperl-windowed-init))
6222
6223 (defconst cperl-styles-entries
6224 '(cperl-indent-level cperl-brace-offset cperl-continued-brace-offset
6225 cperl-label-offset cperl-extra-newline-before-brace
6226 cperl-extra-newline-before-brace-multiline
6227 cperl-merge-trailing-else
6228 cperl-continued-statement-offset))
6229
6230 (defconst cperl-style-examples
6231 "##### Numbers etc are: cperl-indent-level cperl-brace-offset
6232 ##### cperl-continued-brace-offset cperl-label-offset
6233 ##### cperl-continued-statement-offset
6234 ##### cperl-merge-trailing-else cperl-extra-newline-before-brace
6235
6236 ########### (Do not forget cperl-extra-newline-before-brace-multiline)
6237
6238 ### CPerl (=GNU - extra-newline-before-brace + merge-trailing-else) 2/0/0/-2/2/t/nil
6239 if (foo) {
6240 bar
6241 baz;
6242 label:
6243 {
6244 boon;
6245 }
6246 } else {
6247 stop;
6248 }
6249
6250 ### PerlStyle (=CPerl with 4 as indent) 4/0/0/-4/4/t/nil
6251 if (foo) {
6252 bar
6253 baz;
6254 label:
6255 {
6256 boon;
6257 }
6258 } else {
6259 stop;
6260 }
6261
6262 ### GNU 2/0/0/-2/2/nil/t
6263 if (foo)
6264 {
6265 bar
6266 baz;
6267 label:
6268 {
6269 boon;
6270 }
6271 }
6272 else
6273 {
6274 stop;
6275 }
6276
6277 ### C++ (=PerlStyle with braces aligned with control words) 4/0/-4/-4/4/nil/t
6278 if (foo)
6279 {
6280 bar
6281 baz;
6282 label:
6283 {
6284 boon;
6285 }
6286 }
6287 else
6288 {
6289 stop;
6290 }
6291
6292 ### BSD (=C++, but will not change preexisting merge-trailing-else
6293 ### and extra-newline-before-brace ) 4/0/-4/-4/4
6294 if (foo)
6295 {
6296 bar
6297 baz;
6298 label:
6299 {
6300 boon;
6301 }
6302 }
6303 else
6304 {
6305 stop;
6306 }
6307
6308 ### K&R (=C++ with indent 5 - merge-trailing-else, but will not
6309 ### change preexisting extra-newline-before-brace) 5/0/-5/-5/5/nil
6310 if (foo)
6311 {
6312 bar
6313 baz;
6314 label:
6315 {
6316 boon;
6317 }
6318 }
6319 else
6320 {
6321 stop;
6322 }
6323
6324 ### Whitesmith (=PerlStyle, but will not change preexisting
6325 ### extra-newline-before-brace and merge-trailing-else) 4/0/0/-4/4
6326 if (foo)
6327 {
6328 bar
6329 baz;
6330 label:
6331 {
6332 boon;
6333 }
6334 }
6335 else
6336 {
6337 stop;
6338 }
6339 "
6340 "Examples of if/else with different indent styles (with v4.23).")
6341
6342 (defconst cperl-style-alist
6343 '(("CPerl" ;; =GNU - extra-newline-before-brace + cperl-merge-trailing-else
6344 (cperl-indent-level . 2)
6345 (cperl-brace-offset . 0)
6346 (cperl-continued-brace-offset . 0)
6347 (cperl-label-offset . -2)
6348 (cperl-continued-statement-offset . 2)
6349 (cperl-extra-newline-before-brace . nil)
6350 (cperl-extra-newline-before-brace-multiline . nil)
6351 (cperl-merge-trailing-else . t))
6352
6353 ("PerlStyle" ; CPerl with 4 as indent
6354 (cperl-indent-level . 4)
6355 (cperl-brace-offset . 0)
6356 (cperl-continued-brace-offset . 0)
6357 (cperl-label-offset . -4)
6358 (cperl-continued-statement-offset . 4)
6359 (cperl-extra-newline-before-brace . nil)
6360 (cperl-extra-newline-before-brace-multiline . nil)
6361 (cperl-merge-trailing-else . t))
6362
6363 ("GNU"
6364 (cperl-indent-level . 2)
6365 (cperl-brace-offset . 0)
6366 (cperl-continued-brace-offset . 0)
6367 (cperl-label-offset . -2)
6368 (cperl-continued-statement-offset . 2)
6369 (cperl-extra-newline-before-brace . t)
6370 (cperl-extra-newline-before-brace-multiline . t)
6371 (cperl-merge-trailing-else . nil))
6372
6373 ("K&R"
6374 (cperl-indent-level . 5)
6375 (cperl-brace-offset . 0)
6376 (cperl-continued-brace-offset . -5)
6377 (cperl-label-offset . -5)
6378 (cperl-continued-statement-offset . 5)
6379 ;;(cperl-extra-newline-before-brace . nil) ; ???
6380 ;;(cperl-extra-newline-before-brace-multiline . nil)
6381 (cperl-merge-trailing-else . nil))
6382
6383 ("BSD"
6384 (cperl-indent-level . 4)
6385 (cperl-brace-offset . 0)
6386 (cperl-continued-brace-offset . -4)
6387 (cperl-label-offset . -4)
6388 (cperl-continued-statement-offset . 4)
6389 ;;(cperl-extra-newline-before-brace . nil) ; ???
6390 ;;(cperl-extra-newline-before-brace-multiline . nil)
6391 ;;(cperl-merge-trailing-else . nil) ; ???
6392 )
6393
6394 ("C++"
6395 (cperl-indent-level . 4)
6396 (cperl-brace-offset . 0)
6397 (cperl-continued-brace-offset . -4)
6398 (cperl-label-offset . -4)
6399 (cperl-continued-statement-offset . 4)
6400 (cperl-extra-newline-before-brace . t)
6401 (cperl-extra-newline-before-brace-multiline . t)
6402 (cperl-merge-trailing-else . nil))
6403
6404 ("Whitesmith"
6405 (cperl-indent-level . 4)
6406 (cperl-brace-offset . 0)
6407 (cperl-continued-brace-offset . 0)
6408 (cperl-label-offset . -4)
6409 (cperl-continued-statement-offset . 4)
6410 ;;(cperl-extra-newline-before-brace . nil) ; ???
6411 ;;(cperl-extra-newline-before-brace-multiline . nil)
6412 ;;(cperl-merge-trailing-else . nil) ; ???
6413 )
6414 ("Current"))
6415 "List of variables to set to get a particular indentation style.
6416 Should be used via `cperl-set-style' or via Perl menu.
6417
6418 See examples in `cperl-style-examples'.")
6419
6420 (defun cperl-set-style (style)
6421 "Set CPerl mode variables to use one of several different indentation styles.
6422 The arguments are a string representing the desired style.
6423 The list of styles is in `cperl-style-alist', available styles
6424 are CPerl, PerlStyle, GNU, K&R, BSD, C++ and Whitesmith.
6425
6426 The current value of style is memorized (unless there is a memorized
6427 data already), may be restored by `cperl-set-style-back'.
6428
6429 Chosing \"Current\" style will not change style, so this may be used for
6430 side-effect of memorizing only. Examples in `cperl-style-examples'."
6431 (interactive
6432 (let ((list (mapcar (function (lambda (elt) (list (car elt))))
6433 cperl-style-alist)))
6434 (list (completing-read "Enter style: " list nil 'insist))))
6435 (or cperl-old-style
6436 (setq cperl-old-style
6437 (mapcar (function
6438 (lambda (name)
6439 (cons name (eval name))))
6440 cperl-styles-entries)))
6441 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym)
6442 (while style
6443 (setq setting (car style) style (cdr style))
6444 (set (car setting) (cdr setting)))))
6445
6446 (defun cperl-set-style-back ()
6447 "Restore a style memorized by `cperl-set-style'."
6448 (interactive)
6449 (or cperl-old-style (error "The style was not changed"))
6450 (let (setting)
6451 (while cperl-old-style
6452 (setq setting (car cperl-old-style)
6453 cperl-old-style (cdr cperl-old-style))
6454 (set (car setting) (cdr setting)))))
6455
6456 (defun cperl-check-syntax ()
6457 (interactive)
6458 (require 'mode-compile)
6459 (let ((perl-dbg-flags (concat cperl-extra-perl-args " -wc")))
6460 (eval '(mode-compile)))) ; Avoid a warning
6461
6462 (defun cperl-info-buffer (type)
6463 ;; Returns buffer with documentation. Creates if missing.
6464 ;; If TYPE, this vars buffer.
6465 ;; Special care is taken to not stomp over an existing info buffer
6466 (let* ((bname (if type "*info-perl-var*" "*info-perl*"))
6467 (info (get-buffer bname))
6468 (oldbuf (get-buffer "*info*")))
6469 (if info info
6470 (save-window-excursion
6471 ;; Get Info running
6472 (require 'info)
6473 (cond (oldbuf
6474 (set-buffer oldbuf)
6475 (rename-buffer "*info-perl-tmp*")))
6476 (save-window-excursion
6477 (info))
6478 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc"))
6479 (set-buffer "*info*")
6480 (rename-buffer bname)
6481 (cond (oldbuf
6482 (set-buffer "*info-perl-tmp*")
6483 (rename-buffer "*info*")
6484 (set-buffer bname)))
6485 (make-local-variable 'window-min-height)
6486 (setq window-min-height 2)
6487 (current-buffer)))))
6488
6489 (defun cperl-word-at-point (&optional p)
6490 "Return the word at point or at P."
6491 (save-excursion
6492 (if p (goto-char p))
6493 (or (cperl-word-at-point-hard)
6494 (progn
6495 (require 'etags)
6496 (funcall (or (and (boundp 'find-tag-default-function)
6497 find-tag-default-function)
6498 (get major-mode 'find-tag-default-function)
6499 ;; XEmacs 19.12 has `find-tag-default-hook'; it is
6500 ;; automatically used within `find-tag-default':
6501 'find-tag-default))))))
6502
6503 (defun cperl-info-on-command (command)
6504 "Show documentation for Perl command COMMAND in other window.
6505 If perl-info buffer is shown in some frame, uses this frame.
6506 Customized by setting variables `cperl-shrink-wrap-info-frame',
6507 `cperl-max-help-size'."
6508 (interactive
6509 (let* ((default (cperl-word-at-point))
6510 (read (read-string
6511 (format "Find doc for Perl function (default %s): "
6512 default))))
6513 (list (if (equal read "")
6514 default
6515 read))))
6516
6517 (let ((buffer (current-buffer))
6518 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///"
6519 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner
6520 max-height char-height buf-list)
6521 (if (string-match "^-[a-zA-Z]$" command)
6522 (setq cmd-desc "^-X[ \t\n]"))
6523 (setq isvar (string-match "^[$@%]" command)
6524 buf (cperl-info-buffer isvar)
6525 iniwin (selected-window)
6526 fr1 (window-frame iniwin))
6527 (set-buffer buf)
6528 (goto-char (point-min))
6529 (or isvar
6530 (progn (re-search-forward "^-X[ \t\n]")
6531 (forward-line -1)))
6532 (if (re-search-forward cmd-desc nil t)
6533 (progn
6534 ;; Go back to beginning of the group (ex, for qq)
6535 (if (re-search-backward "^[ \t\n\f]")
6536 (forward-line 1))
6537 (beginning-of-line)
6538 ;; Get some of
6539 (setq pos (point)
6540 buf-list (list buf "*info-perl-var*" "*info-perl*"))
6541 (while (and (not win) buf-list)
6542 (setq win (get-buffer-window (car buf-list) t))
6543 (setq buf-list (cdr buf-list)))
6544 (or (not win)
6545 (eq (window-buffer win) buf)
6546 (set-window-buffer win buf))
6547 (and win (setq fr2 (window-frame win)))
6548 (if (or (not fr2) (eq fr1 fr2))
6549 (pop-to-buffer buf)
6550 (special-display-popup-frame buf) ; Make it visible
6551 (select-window win))
6552 (goto-char pos) ; Needed (?!).
6553 ;; Resize
6554 (setq iniheight (window-height)
6555 frheight (frame-height)
6556 not-loner (< iniheight (1- frheight))) ; Are not alone
6557 (cond ((if not-loner cperl-max-help-size
6558 cperl-shrink-wrap-info-frame)
6559 (setq height
6560 (+ 2
6561 (count-lines
6562 pos
6563 (save-excursion
6564 (if (re-search-forward
6565 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t)
6566 (match-beginning 0) (point-max)))))
6567 max-height
6568 (if not-loner
6569 (/ (* (- frheight 3) cperl-max-help-size) 100)
6570 (setq char-height (frame-char-height))
6571 ;; Non-functioning under OS/2:
6572 (if (eq char-height 1) (setq char-height 18))
6573 ;; Title, menubar, + 2 for slack
6574 (- (/ (display-pixel-height) char-height) 4)))
6575 (if (> height max-height) (setq height max-height))
6576 ;;(message "was %s doing %s" iniheight height)
6577 (if not-loner
6578 (enlarge-window (- height iniheight))
6579 (set-frame-height (window-frame win) (1+ height)))))
6580 (set-window-start (selected-window) pos))
6581 (message "No entry for %s found." command))
6582 ;;(pop-to-buffer buffer)
6583 (select-window iniwin)))
6584
6585 (defun cperl-info-on-current-command ()
6586 "Show documentation for Perl command at point in other window."
6587 (interactive)
6588 (cperl-info-on-command (cperl-word-at-point)))
6589
6590 (defun cperl-imenu-info-imenu-search ()
6591 (if (looking-at "^-X[ \t\n]") nil
6592 (re-search-backward
6593 "^\n\\([-a-zA-Z_]+\\)[ \t\n]")
6594 (forward-line 1)))
6595
6596 (defun cperl-imenu-info-imenu-name ()
6597 (buffer-substring
6598 (match-beginning 1) (match-end 1)))
6599
6600 (defun cperl-imenu-on-info ()
6601 "Shows imenu for Perl Info Buffer.
6602 Opens Perl Info buffer if needed."
6603 (interactive)
6604 (let* ((buffer (current-buffer))
6605 imenu-create-index-function
6606 imenu-prev-index-position-function
6607 imenu-extract-index-name-function
6608 (index-item (save-restriction
6609 (save-window-excursion
6610 (set-buffer (cperl-info-buffer nil))
6611 (setq imenu-create-index-function
6612 'imenu-default-create-index-function
6613 imenu-prev-index-position-function
6614 'cperl-imenu-info-imenu-search
6615 imenu-extract-index-name-function
6616 'cperl-imenu-info-imenu-name)
6617 (imenu-choose-buffer-index)))))
6618 (and index-item
6619 (progn
6620 (push-mark)
6621 (pop-to-buffer "*info-perl*")
6622 (cond
6623 ((markerp (cdr index-item))
6624 (goto-char (marker-position (cdr index-item))))
6625 (t
6626 (goto-char (cdr index-item))))
6627 (set-window-start (selected-window) (point))
6628 (pop-to-buffer buffer)))))
6629
6630 (defun cperl-lineup (beg end &optional step minshift)
6631 "Lineup construction in a region.
6632 Beginning of region should be at the start of a construction.
6633 All first occurrences of this construction in the lines that are
6634 partially contained in the region are lined up at the same column.
6635
6636 MINSHIFT is the minimal amount of space to insert before the construction.
6637 STEP is the tabwidth to position constructions.
6638 If STEP is nil, `cperl-lineup-step' will be used
6639 \(or `cperl-indent-level', if `cperl-lineup-step' is nil).
6640 Will not move the position at the start to the left."
6641 (interactive "r")
6642 (let (search col tcol seen b)
6643 (save-excursion
6644 (goto-char end)
6645 (end-of-line)
6646 (setq end (point-marker))
6647 (goto-char beg)
6648 (skip-chars-forward " \t\f")
6649 (setq beg (point-marker))
6650 (indent-region beg end nil)
6651 (goto-char beg)
6652 (setq col (current-column))
6653 (if (looking-at "[a-zA-Z0-9_]")
6654 (if (looking-at "\\<[a-zA-Z0-9_]+\\>")
6655 (setq search
6656 (concat "\\<"
6657 (regexp-quote
6658 (buffer-substring (match-beginning 0)
6659 (match-end 0))) "\\>"))
6660 (error "Cannot line up in a middle of the word"))
6661 (if (looking-at "$")
6662 (error "Cannot line up end of line"))
6663 (setq search (regexp-quote (char-to-string (following-char)))))
6664 (setq step (or step cperl-lineup-step cperl-indent-level))
6665 (or minshift (setq minshift 1))
6666 (while (progn
6667 (beginning-of-line 2)
6668 (and (< (point) end)
6669 (re-search-forward search end t)
6670 (goto-char (match-beginning 0))))
6671 (setq tcol (current-column) seen t)
6672 (if (> tcol col) (setq col tcol)))
6673 (or seen
6674 (error "The construction to line up occurred only once"))
6675 (goto-char beg)
6676 (setq col (+ col minshift))
6677 (if (/= (% col step) 0) (setq step (* step (1+ (/ col step)))))
6678 (while
6679 (progn
6680 (cperl-make-indent col)
6681 (beginning-of-line 2)
6682 (and (< (point) end)
6683 (re-search-forward search end t)
6684 (goto-char (match-beginning 0)))))))) ; No body
6685
6686 (defun cperl-etags (&optional add all files) ;; NOT USED???
6687 "Run etags with appropriate options for Perl files.
6688 If optional argument ALL is `recursive', will process Perl files
6689 in subdirectories too."
6690 (interactive)
6691 (let ((cmd "etags")
6692 (args '("-l" "none" "-r"
6693 ;; 1=fullname 2=package? 3=name 4=proto? 5=attrs? (VERY APPROX!)
6694 "/\\<sub[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([ \t]*:[^#{;]*\\)?\\([{#]\\|$\\)/\\3/"
6695 "-r"
6696 "/\\<package[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)\\)[ \\t]*\\([#;]\\|$\\)/\\1/"
6697 "-r"
6698 "/\\<\\(package\\)[ \\t]*;/\\1;/"))
6699 res)
6700 (if add (setq args (cons "-a" args)))
6701 (or files (setq files (list buffer-file-name)))
6702 (cond
6703 ((eq all 'recursive)
6704 ;;(error "Not implemented: recursive")
6705 (setq args (append (list "-e"
6706 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/}
6707 use File::Find;
6708 find(\\&wanted, '.');
6709 exec @ARGV;"
6710 cmd) args)
6711 cmd "perl"))
6712 (all
6713 ;;(error "Not implemented: all")
6714 (setq args (append (list "-e"
6715 "push @ARGV, <*.PL *.pl *.pm>;
6716 exec @ARGV;"
6717 cmd) args)
6718 cmd "perl"))
6719 (t
6720 (setq args (append args files))))
6721 (setq res (apply 'call-process cmd nil nil nil args))
6722 (or (eq res 0)
6723 (message "etags returned \"%s\"" res))))
6724
6725 (defun cperl-toggle-auto-newline ()
6726 "Toggle the state of `cperl-auto-newline'."
6727 (interactive)
6728 (setq cperl-auto-newline (not cperl-auto-newline))
6729 (message "Newlines will %sbe auto-inserted now."
6730 (if cperl-auto-newline "" "not ")))
6731
6732 (defun cperl-toggle-abbrev ()
6733 "Toggle the state of automatic keyword expansion in CPerl mode."
6734 (interactive)
6735 (abbrev-mode (if abbrev-mode 0 1))
6736 (message "Perl control structure will %sbe auto-inserted now."
6737 (if abbrev-mode "" "not ")))
6738
6739
6740 (defun cperl-toggle-electric ()
6741 "Toggle the state of parentheses doubling in CPerl mode."
6742 (interactive)
6743 (setq cperl-electric-parens (if (cperl-val 'cperl-electric-parens) 'null t))
6744 (message "Parentheses will %sbe auto-doubled now."
6745 (if (cperl-val 'cperl-electric-parens) "" "not ")))
6746
6747 (defun cperl-toggle-autohelp ()
6748 "Toggle the state of Auto-Help on Perl constructs (put in the message area).
6749 Delay of auto-help controlled by `cperl-lazy-help-time'."
6750 (interactive)
6751 (if (fboundp 'run-with-idle-timer)
6752 (progn
6753 (if cperl-lazy-installed
6754 (cperl-lazy-unstall)
6755 (cperl-lazy-install))
6756 (message "Perl help messages will %sbe automatically shown now."
6757 (if cperl-lazy-installed "" "not ")))
6758 (message "Cannot automatically show Perl help messages - run-with-idle-timer missing.")))
6759
6760 (defun cperl-toggle-construct-fix ()
6761 "Toggle whether `indent-region'/`indent-sexp' fix whitespace too."
6762 (interactive)
6763 (setq cperl-indent-region-fix-constructs
6764 (if cperl-indent-region-fix-constructs
6765 nil
6766 1))
6767 (message "indent-region/indent-sexp will %sbe automatically fix whitespace."
6768 (if cperl-indent-region-fix-constructs "" "not ")))
6769
6770 (defun cperl-toggle-set-debug-unwind (arg &optional backtrace)
6771 "Toggle (or, with numeric argument, set) debugging state of syntaxification.
6772 Nonpositive numeric argument disables debugging messages. The message
6773 summarizes which regions it was decided to rescan for syntactic constructs.
6774
6775 The message looks like this:
6776
6777 Syxify req=123..138 actual=101..146 done-to: 112=>146 statepos: 73=>117
6778
6779 Numbers are character positions in the buffer. REQ provides the range to
6780 rescan requested by `font-lock'. ACTUAL is the range actually resyntaxified;
6781 for correct operation it should start and end outside any special syntactic
6782 construct. DONE-TO and STATEPOS indicate changes to internal caches maintained
6783 by CPerl."
6784 (interactive "P")
6785 (or arg
6786 (setq arg (if (eq cperl-syntaxify-by-font-lock
6787 (if backtrace 'backtrace 'message)) 0 1)))
6788 (setq arg (if (> arg 0) (if backtrace 'backtrace 'message) t))
6789 (setq cperl-syntaxify-by-font-lock arg)
6790 (message "Debugging messages of syntax unwind %sabled."
6791 (if (eq arg t) "dis" "en")))
6792
6793 ;;;; Tags file creation.
6794
6795 (defvar cperl-tmp-buffer " *cperl-tmp*")
6796
6797 (defun cperl-setup-tmp-buf ()
6798 (set-buffer (get-buffer-create cperl-tmp-buffer))
6799 (set-syntax-table cperl-mode-syntax-table)
6800 (buffer-disable-undo)
6801 (auto-fill-mode 0)
6802 (if cperl-use-syntax-table-text-property-for-tags
6803 (progn
6804 (make-local-variable 'parse-sexp-lookup-properties)
6805 ;; Do not introduce variable if not needed, we check it!
6806 (set 'parse-sexp-lookup-properties t))))
6807
6808 (defun cperl-xsub-scan ()
6809 (require 'imenu)
6810 (let ((index-alist '())
6811 (prev-pos 0) index index1 name package prefix)
6812 (goto-char (point-min))
6813 ;; Search for the function
6814 (progn ;;save-match-data
6815 (while (re-search-forward
6816 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)"
6817 nil t)
6818 (cond
6819 ((match-beginning 2) ; SECTION
6820 (setq package (buffer-substring (match-beginning 2) (match-end 2)))
6821 (goto-char (match-beginning 0))
6822 (skip-chars-forward " \t")
6823 (forward-char 1)
6824 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>")
6825 (setq prefix (buffer-substring (match-beginning 1) (match-end 1)))
6826 (setq prefix nil)))
6827 ((not package) nil) ; C language section
6828 ((match-beginning 3) ; XSUB
6829 (goto-char (1+ (match-beginning 3)))
6830 (setq index (imenu-example--name-and-position))
6831 (setq name (buffer-substring (match-beginning 3) (match-end 3)))
6832 (if (and prefix (string-match (concat "^" prefix) name))
6833 (setq name (substring name (length prefix))))
6834 (cond ((string-match "::" name) nil)
6835 (t
6836 (setq index1 (cons (concat package "::" name) (cdr index)))
6837 (push index1 index-alist)))
6838 (setcar index name)
6839 (push index index-alist))
6840 (t ; BOOT: section
6841 ;; (beginning-of-line)
6842 (setq index (imenu-example--name-and-position))
6843 (setcar index (concat package "::BOOT:"))
6844 (push index index-alist)))))
6845 index-alist))
6846
6847 (defvar cperl-unreadable-ok nil)
6848
6849 (defun cperl-find-tags (ifile xs topdir)
6850 (let ((b (get-buffer cperl-tmp-buffer)) ind lst elt pos ret rel
6851 (cperl-pod-here-fontify nil) f file)
6852 (save-excursion
6853 (if b (set-buffer b)
6854 (cperl-setup-tmp-buf))
6855 (erase-buffer)
6856 (condition-case err
6857 (setq file (car (insert-file-contents ifile)))
6858 (error (if cperl-unreadable-ok nil
6859 (if (y-or-n-p
6860 (format "File %s unreadable. Continue? " ifile))
6861 (setq cperl-unreadable-ok t)
6862 (error "Aborting: unreadable file %s" ifile)))))
6863 (if (not file)
6864 (message "Unreadable file %s" ifile)
6865 (message "Scanning file %s ..." file)
6866 (if (and cperl-use-syntax-table-text-property-for-tags
6867 (not xs))
6868 (condition-case err ; after __END__ may have garbage
6869 (cperl-find-pods-heres nil nil noninteractive)
6870 (error (message "While scanning for syntax: %s" err))))
6871 (if xs
6872 (setq lst (cperl-xsub-scan))
6873 (setq ind (cperl-imenu--create-perl-index))
6874 (setq lst (cdr (assoc "+Unsorted List+..." ind))))
6875 (setq lst
6876 (mapcar
6877 (function
6878 (lambda (elt)
6879 (cond ((string-match "^[_a-zA-Z]" (car elt))
6880 (goto-char (cdr elt))
6881 (beginning-of-line) ; pos should be of the start of the line
6882 (list (car elt)
6883 (point)
6884 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l
6885 (buffer-substring (progn
6886 (goto-char (cdr elt))
6887 ;; After name now...
6888 (or (eolp) (forward-char 1))
6889 (point))
6890 (progn
6891 (beginning-of-line)
6892 (point))))))))
6893 lst))
6894 (erase-buffer)
6895 (while lst
6896 (setq elt (car lst) lst (cdr lst))
6897 (if elt
6898 (progn
6899 (insert (elt elt 3)
6900 127
6901 (if (string-match "^package " (car elt))
6902 (substring (car elt) 8)
6903 (car elt) )
6904 1
6905 (number-to-string (elt elt 2)) ; Line
6906 ","
6907 (number-to-string (1- (elt elt 1))) ; Char pos 0-based
6908 "\n")
6909 (if (and (string-match "^[_a-zA-Z]+::" (car elt))
6910 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]"
6911 (elt elt 3)))
6912 ;; Need to insert the name without package as well
6913 (setq lst (cons (cons (substring (elt elt 3)
6914 (match-beginning 1)
6915 (match-end 1))
6916 (cdr elt))
6917 lst))))))
6918 (setq pos (point))
6919 (goto-char 1)
6920 (setq rel file)
6921 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties
6922 (set-text-properties 0 (length rel) nil rel)
6923 (and (equal topdir (substring rel 0 (length topdir)))
6924 (setq rel (substring file (length topdir))))
6925 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n")
6926 (setq ret (buffer-substring 1 (point-max)))
6927 (erase-buffer)
6928 (or noninteractive
6929 (message "Scanning file %s finished" file))
6930 ret))))
6931
6932 (defun cperl-add-tags-recurse-noxs ()
6933 "Add to TAGS data for \"pure\" Perl files in the current directory and kids.
6934 Use as
6935 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
6936 -f cperl-add-tags-recurse-noxs
6937 "
6938 (cperl-write-tags nil nil t t nil t))
6939
6940 (defun cperl-add-tags-recurse-noxs-fullpath ()
6941 "Add to TAGS data for \"pure\" Perl in the current directory and kids.
6942 Writes down fullpath, so TAGS is relocatable (but if the build directory
6943 is relocated, the file TAGS inside it breaks). Use as
6944 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
6945 -f cperl-add-tags-recurse-noxs-fullpath
6946 "
6947 (cperl-write-tags nil nil t t nil t ""))
6948
6949 (defun cperl-add-tags-recurse ()
6950 "Add to TAGS file data for Perl files in the current directory and kids.
6951 Use as
6952 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \
6953 -f cperl-add-tags-recurse
6954 "
6955 (cperl-write-tags nil nil t t))
6956
6957 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir)
6958 ;; If INBUFFER, do not select buffer, and do not save
6959 ;; If ERASE is `ignore', do not erase, and do not try to delete old info.
6960 (require 'etags)
6961 (if file nil
6962 (setq file (if dir default-directory (buffer-file-name)))
6963 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!")))
6964 (or topdir
6965 (setq topdir default-directory))
6966 (let ((tags-file-name "TAGS")
6967 (case-fold-search (eq system-type 'emx))
6968 xs rel tm)
6969 (save-excursion
6970 (cond (inbuffer nil) ; Already there
6971 ((file-exists-p tags-file-name)
6972 (if (featurep 'xemacs)
6973 (visit-tags-table-buffer)
6974 (visit-tags-table-buffer tags-file-name)))
6975 (t (set-buffer (find-file-noselect tags-file-name))))
6976 (cond
6977 (dir
6978 (cond ((eq erase 'ignore))
6979 (erase
6980 (erase-buffer)
6981 (setq erase 'ignore)))
6982 (let ((files
6983 (condition-case err
6984 (directory-files file t
6985 (if recurse nil cperl-scan-files-regexp)
6986 t)
6987 (error
6988 (if cperl-unreadable-ok nil
6989 (if (y-or-n-p
6990 (format "Directory %s unreadable. Continue? " file))
6991 (setq cperl-unreadable-ok t
6992 tm nil) ; Return empty list
6993 (error "Aborting: unreadable directory %s" file)))))))
6994 (mapc (function
6995 (lambda (file)
6996 (cond
6997 ((string-match cperl-noscan-files-regexp file)
6998 nil)
6999 ((not (file-directory-p file))
7000 (if (string-match cperl-scan-files-regexp file)
7001 (cperl-write-tags file erase recurse nil t noxs topdir)))
7002 ((not recurse) nil)
7003 (t (cperl-write-tags file erase recurse t t noxs topdir)))))
7004 files)))
7005 (t
7006 (setq xs (string-match "\\.xs$" file))
7007 (if (not (and xs noxs))
7008 (progn
7009 (cond ((eq erase 'ignore) (goto-char (point-max)))
7010 (erase (erase-buffer))
7011 (t
7012 (goto-char 1)
7013 (setq rel file)
7014 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties
7015 (set-text-properties 0 (length rel) nil rel)
7016 (and (equal topdir (substring rel 0 (length topdir)))
7017 (setq rel (substring file (length topdir))))
7018 (if (search-forward (concat "\f\n" rel ",") nil t)
7019 (progn
7020 (search-backward "\f\n")
7021 (delete-region (point)
7022 (save-excursion
7023 (forward-char 1)
7024 (if (search-forward "\f\n"
7025 nil 'toend)
7026 (- (point) 2)
7027 (point-max)))))
7028 (goto-char (point-max)))))
7029 (insert (cperl-find-tags file xs topdir))))))
7030 (if inbuffer nil ; Delegate to the caller
7031 (save-buffer 0) ; No backup
7032 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs?
7033 (initialize-new-tags-table))))))
7034
7035 (defvar cperl-tags-hier-regexp-list
7036 (concat
7037 "^\\("
7038 "\\(package\\)\\>"
7039 "\\|"
7040 "sub\\>[^\n]+::"
7041 "\\|"
7042 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB?
7043 "\\|"
7044 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section
7045 "\\)"))
7046
7047 (defvar cperl-hierarchy '(() ())
7048 "Global hierarchy of classes.")
7049
7050 (defun cperl-tags-hier-fill ()
7051 ;; Suppose we are in a tag table cooked by cperl.
7052 (goto-char 1)
7053 (let (type pack name pos line chunk ord cons1 file str info fileind)
7054 (while (re-search-forward cperl-tags-hier-regexp-list nil t)
7055 (setq pos (match-beginning 0)
7056 pack (match-beginning 2))
7057 (beginning-of-line)
7058 (if (looking-at (concat
7059 "\\([^\n]+\\)"
7060 "\C-?"
7061 "\\([^\n]+\\)"
7062 "\C-a"
7063 "\\([0-9]+\\)"
7064 ","
7065 "\\([0-9]+\\)"))
7066 (progn
7067 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1))
7068 name (buffer-substring (match-beginning 2) (match-end 2))
7069 ;;pos (buffer-substring (match-beginning 3) (match-end 3))
7070 line (buffer-substring (match-beginning 3) (match-end 3))
7071 ord (if pack 1 0)
7072 file (file-of-tag)
7073 fileind (format "%s:%s" file line)
7074 ;; Moves to beginning of the next line:
7075 info (cperl-etags-snarf-tag file line))
7076 ;; Move back
7077 (forward-char -1)
7078 ;; Make new member of hierarchy name ==> file ==> pos if needed
7079 (if (setq cons1 (assoc name (nth ord cperl-hierarchy)))
7080 ;; Name known
7081 (setcdr cons1 (cons (cons fileind (vector file info))
7082 (cdr cons1)))
7083 ;; First occurrence of the name, start alist
7084 (setq cons1 (cons name (list (cons fileind (vector file info)))))
7085 (if pack
7086 (setcar (cdr cperl-hierarchy)
7087 (cons cons1 (nth 1 cperl-hierarchy)))
7088 (setcar cperl-hierarchy
7089 (cons cons1 (car cperl-hierarchy)))))))
7090 (end-of-line))))
7091
7092 (declare-function x-popup-menu "xmenu.c" (position menu))
7093
7094 (defun cperl-tags-hier-init (&optional update)
7095 "Show hierarchical menu of classes and methods.
7096 Finds info about classes by a scan of loaded TAGS files.
7097 Supposes that the TAGS files contain fully qualified function names.
7098 One may build such TAGS files from CPerl mode menu."
7099 (interactive)
7100 (require 'etags)
7101 (require 'imenu)
7102 (if (or update (null (nth 2 cperl-hierarchy)))
7103 (let ((remover (function (lambda (elt) ; (name (file1...) (file2..))
7104 (or (nthcdr 2 elt)
7105 ;; Only in one file
7106 (setcdr elt (cdr (nth 1 elt)))))))
7107 pack name cons1 to l1 l2 l3 l4 b)
7108 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later!
7109 (setq cperl-hierarchy (list l1 l2 l3))
7110 (if (featurep 'xemacs) ; Not checked
7111 (progn
7112 (or tags-file-name
7113 ;; Does this work in XEmacs?
7114 (call-interactively 'visit-tags-table))
7115 (message "Updating list of classes...")
7116 (set-buffer (get-file-buffer tags-file-name))
7117 (cperl-tags-hier-fill))
7118 (or tags-table-list
7119 (call-interactively 'visit-tags-table))
7120 (mapc
7121 (function
7122 (lambda (tagsfile)
7123 (message "Updating list of classes... %s" tagsfile)
7124 (set-buffer (get-file-buffer tagsfile))
7125 (cperl-tags-hier-fill)))
7126 tags-table-list)
7127 (message "Updating list of classes... postprocessing..."))
7128 (mapc remover (car cperl-hierarchy))
7129 (mapc remover (nth 1 cperl-hierarchy))
7130 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy))
7131 (cons "Methods: " (car cperl-hierarchy))))
7132 (cperl-tags-treeify to 1)
7133 (setcar (nthcdr 2 cperl-hierarchy)
7134 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to))))
7135 (message "Updating list of classes: done, requesting display...")
7136 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy))
7137 ))
7138 (or (nth 2 cperl-hierarchy)
7139 (error "No items found"))
7140 (setq update
7141 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy))
7142 (if (if (fboundp 'display-popup-menus-p)
7143 (let ((f 'display-popup-menus-p))
7144 (funcall f))
7145 window-system)
7146 (x-popup-menu t (nth 2 cperl-hierarchy))
7147 (require 'tmm)
7148 (tmm-prompt (nth 2 cperl-hierarchy))))
7149 (if (and update (listp update))
7150 (progn (while (cdr update) (setq update (cdr update)))
7151 (setq update (car update)))) ; Get the last from the list
7152 (if (vectorp update)
7153 (progn
7154 (find-file (elt update 0))
7155 (cperl-etags-goto-tag-location (elt update 1))))
7156 (if (eq update -999) (cperl-tags-hier-init t)))
7157
7158 (defun cperl-tags-treeify (to level)
7159 ;; cadr of `to' is read-write. On start it is a cons
7160 (let* ((regexp (concat "^\\(" (mapconcat
7161 'identity
7162 (make-list level "[_a-zA-Z0-9]+")
7163 "::")
7164 "\\)\\(::\\)?"))
7165 (packages (cdr (nth 1 to)))
7166 (methods (cdr (nth 2 to)))
7167 l1 head tail cons1 cons2 ord writeto packs recurse
7168 root-packages root-functions ms many_ms same_name ps
7169 (move-deeper
7170 (function
7171 (lambda (elt)
7172 (cond ((and (string-match regexp (car elt))
7173 (or (eq ord 1) (match-end 2)))
7174 (setq head (substring (car elt) 0 (match-end 1))
7175 tail (if (match-end 2) (substring (car elt)
7176 (match-end 2)))
7177 recurse t)
7178 (if (setq cons1 (assoc head writeto)) nil
7179 ;; Need to init new head
7180 (setcdr writeto (cons (list head (list "Packages: ")
7181 (list "Methods: "))
7182 (cdr writeto)))
7183 (setq cons1 (nth 1 writeto)))
7184 (setq cons2 (nth ord cons1)) ; Either packs or meths
7185 (setcdr cons2 (cons elt (cdr cons2))))
7186 ((eq ord 2)
7187 (setq root-functions (cons elt root-functions)))
7188 (t
7189 (setq root-packages (cons elt root-packages))))))))
7190 (setcdr to l1) ; Init to dynamic space
7191 (setq writeto to)
7192 (setq ord 1)
7193 (mapc move-deeper packages)
7194 (setq ord 2)
7195 (mapc move-deeper methods)
7196 (if recurse
7197 (mapc (function (lambda (elt)
7198 (cperl-tags-treeify elt (1+ level))))
7199 (cdr to)))
7200 ;;Now clean up leaders with one child only
7201 (mapc (function (lambda (elt)
7202 (if (not (and (listp (cdr elt))
7203 (eq (length elt) 2))) nil
7204 (setcar elt (car (nth 1 elt)))
7205 (setcdr elt (cdr (nth 1 elt))))))
7206 (cdr to))
7207 ;; Sort the roots of subtrees
7208 (if (default-value 'imenu-sort-function)
7209 (setcdr to
7210 (sort (cdr to) (default-value 'imenu-sort-function))))
7211 ;; Now add back functions removed from display
7212 (mapc (function (lambda (elt)
7213 (setcdr to (cons elt (cdr to)))))
7214 (if (default-value 'imenu-sort-function)
7215 (nreverse
7216 (sort root-functions (default-value 'imenu-sort-function)))
7217 root-functions))
7218 ;; Now add back packages removed from display
7219 (mapc (function (lambda (elt)
7220 (setcdr to (cons (cons (concat "package " (car elt))
7221 (cdr elt))
7222 (cdr to)))))
7223 (if (default-value 'imenu-sort-function)
7224 (nreverse
7225 (sort root-packages (default-value 'imenu-sort-function)))
7226 root-packages))))
7227
7228 ;;;(x-popup-menu t
7229 ;;; '(keymap "Name1"
7230 ;;; ("Ret1" "aa")
7231 ;;; ("Head1" "ab"
7232 ;;; keymap "Name2"
7233 ;;; ("Tail1" "x") ("Tail2" "y"))))
7234
7235 (defun cperl-list-fold (list name limit)
7236 (let (list1 list2 elt1 (num 0))
7237 (if (<= (length list) limit) list
7238 (setq list1 nil list2 nil)
7239 (while list
7240 (setq num (1+ num)
7241 elt1 (car list)
7242 list (cdr list))
7243 (if (<= num imenu-max-items)
7244 (setq list2 (cons elt1 list2))
7245 (setq list1 (cons (cons name
7246 (nreverse list2))
7247 list1)
7248 list2 (list elt1)
7249 num 1)))
7250 (nreverse (cons (cons name
7251 (nreverse list2))
7252 list1)))))
7253
7254 (defun cperl-menu-to-keymap (menu &optional name)
7255 (let (list)
7256 (cons 'keymap
7257 (mapcar
7258 (function
7259 (lambda (elt)
7260 (cond ((listp (cdr elt))
7261 (setq list (cperl-list-fold
7262 (cdr elt) (car elt) imenu-max-items))
7263 (cons nil
7264 (cons (car elt)
7265 (cperl-menu-to-keymap list))))
7266 (t
7267 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34
7268 (cperl-list-fold menu "Root" imenu-max-items)))))
7269
7270 \f
7271 (defvar cperl-bad-style-regexp
7272 (mapconcat 'identity
7273 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign
7274 "[-<>=+^&|]+[^- \t\n=+<>~]") ; sign+ char
7275 "\\|")
7276 "Finds places such that insertion of a whitespace may help a lot.")
7277
7278 (defvar cperl-not-bad-style-regexp
7279 (mapconcat
7280 'identity
7281 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++
7282 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used.
7283 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field)
7284 "<\\$?\\sw+\\(\\.\\(\\sw\\|_\\)+\\)?>" ; <IN> <stdin.h>
7285 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN
7286 "-[0-9]" ; -5
7287 "\\+\\+" ; ++var
7288 "--" ; --var
7289 ".->" ; a->b
7290 "->" ; a SPACE ->b
7291 "\\[-" ; a[-1]
7292 "\\\\[&$@*\\\\]" ; \&func
7293 "^=" ; =head
7294 "\\$." ; $|
7295 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO'
7296 "||"
7297 "&&"
7298 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text>
7299 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value
7300 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below
7301 ;;"[*/+-|&<.]+="
7302 )
7303 "\\|")
7304 "If matches at the start of match found by `my-bad-c-style-regexp',
7305 insertion of a whitespace will not help.")
7306
7307 (defvar found-bad)
7308
7309 (defun cperl-find-bad-style ()
7310 "Find places in the buffer where insertion of a whitespace may help.
7311 Prompts user for insertion of spaces.
7312 Currently it is tuned to C and Perl syntax."
7313 (interactive)
7314 (let (found-bad (p (point)))
7315 (setq last-nonmenu-event 13) ; To disable popup
7316 (goto-char (point-min))
7317 (map-y-or-n-p "Insert space here? "
7318 (lambda (arg) (insert " "))
7319 'cperl-next-bad-style
7320 '("location" "locations" "insert a space into")
7321 '((?\C-r (lambda (arg)
7322 (let ((buffer-quit-function
7323 'exit-recursive-edit))
7324 (message "Exit with Esc Esc")
7325 (recursive-edit)
7326 t)) ; Consider acted upon
7327 "edit, exit with Esc Esc")
7328 (?e (lambda (arg)
7329 (let ((buffer-quit-function
7330 'exit-recursive-edit))
7331 (message "Exit with Esc Esc")
7332 (recursive-edit)
7333 t)) ; Consider acted upon
7334 "edit, exit with Esc Esc"))
7335 t)
7336 (if found-bad (goto-char found-bad)
7337 (goto-char p)
7338 (message "No appropriate place found"))))
7339
7340 (defun cperl-next-bad-style ()
7341 (let (p (not-found t) (point (point)) found)
7342 (while (and not-found
7343 (re-search-forward cperl-bad-style-regexp nil 'to-end))
7344 (setq p (point))
7345 (goto-char (match-beginning 0))
7346 (if (or
7347 (looking-at cperl-not-bad-style-regexp)
7348 ;; Check for a < -b and friends
7349 (and (eq (following-char) ?\-)
7350 (save-excursion
7351 (skip-chars-backward " \t\n")
7352 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\( ?\[ ?\{))))
7353 ;; Now check for syntax type
7354 (save-match-data
7355 (setq found (point))
7356 (beginning-of-defun)
7357 (let ((pps (parse-partial-sexp (point) found)))
7358 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))
7359 (goto-char (match-end 0))
7360 (goto-char (1- p))
7361 (setq not-found nil
7362 found-bad found)))
7363 (not not-found)))
7364
7365 \f
7366 ;;; Getting help
7367 (defvar cperl-have-help-regexp
7368 ;;(concat "\\("
7369 (mapconcat
7370 'identity
7371 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable
7372 "[$@]\\^[a-zA-Z]" ; Special variable
7373 "[$@][^ \n\t]" ; Special variable
7374 "-[a-zA-Z]" ; File test
7375 "\\\\[a-zA-Z0]" ; Special chars
7376 "^=[a-z][a-zA-Z0-9_]*" ; POD sections
7377 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator
7378 "[a-zA-Z_0-9:]+" ; symbol or number
7379 "x="
7380 "#!")
7381 ;;"\\)\\|\\("
7382 "\\|")
7383 ;;"\\)"
7384 ;;)
7385 "Matches places in the buffer we can find help for.")
7386
7387 (defvar cperl-message-on-help-error t)
7388 (defvar cperl-help-from-timer nil)
7389
7390 (defun cperl-word-at-point-hard ()
7391 ;; Does not save-excursion
7392 ;; Get to the something meaningful
7393 (or (eobp) (eolp) (forward-char 1))
7394 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]"
7395 (save-excursion (beginning-of-line) (point))
7396 'to-beg)
7397 ;; (cond
7398 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol
7399 ;; (skip-chars-backward " \n\t\r({[]});,")
7400 ;; (or (bobp) (backward-char 1))))
7401 ;; Try to backtrace
7402 (cond
7403 ((looking-at "[a-zA-Z0-9_:]") ; symbol
7404 (skip-chars-backward "a-zA-Z0-9_:")
7405 (cond
7406 ((and (eq (preceding-char) ?^) ; $^I
7407 (eq (char-after (- (point) 2)) ?\$))
7408 (forward-char -2))
7409 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob
7410 (forward-char -1))
7411 ((and (eq (preceding-char) ?\=)
7412 (eq (current-column) 1))
7413 (forward-char -1))) ; =head1
7414 (if (and (eq (preceding-char) ?\<)
7415 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH>
7416 (forward-char -1)))
7417 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x=
7418 (forward-char -1))
7419 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I
7420 (forward-char -1))
7421 ((looking-at "[-!&*+,-./<=>?\\\\^|~]")
7422 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~")
7423 (cond
7424 ((and (eq (preceding-char) ?\$)
7425 (not (eq (char-after (- (point) 2)) ?\$))) ; $-
7426 (forward-char -1))
7427 ((and (eq (following-char) ?\>)
7428 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char)))
7429 (save-excursion
7430 (forward-sexp -1)
7431 (and (eq (preceding-char) ?\<)
7432 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH>
7433 (search-backward "<"))))
7434 ((and (eq (following-char) ?\$)
7435 (eq (preceding-char) ?\<)
7436 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh>
7437 (forward-char -1)))
7438 (if (looking-at cperl-have-help-regexp)
7439 (buffer-substring (match-beginning 0) (match-end 0))))
7440
7441 (defun cperl-get-help ()
7442 "Get one-line docs on the symbol at the point.
7443 The data for these docs is a little bit obsolete and may be in fact longer
7444 than a line. Your contribution to update/shorten it is appreciated."
7445 (interactive)
7446 (save-match-data ; May be called "inside" query-replace
7447 (save-excursion
7448 (let ((word (cperl-word-at-point-hard)))
7449 (if word
7450 (if (and cperl-help-from-timer ; Bail out if not in mainland
7451 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings.
7452 (or (memq (get-text-property (point) 'face)
7453 '(font-lock-comment-face font-lock-string-face))
7454 (memq (get-text-property (point) 'syntax-type)
7455 '(pod here-doc format))))
7456 nil
7457 (cperl-describe-perl-symbol word))
7458 (if cperl-message-on-help-error
7459 (message "Nothing found for %s..."
7460 (buffer-substring (point) (min (+ 5 (point)) (point-max))))))))))
7461
7462 ;;; Stolen from perl-descr.el by Johan Vromans:
7463
7464 (defvar cperl-doc-buffer " *perl-doc*"
7465 "Where the documentation can be found.")
7466
7467 (defun cperl-describe-perl-symbol (val)
7468 "Display the documentation of symbol at point, a Perl operator."
7469 (let ((enable-recursive-minibuffers t)
7470 args-file regexp)
7471 (cond
7472 ((string-match "^[&*][a-zA-Z_]" val)
7473 (setq val (concat (substring val 0 1) "NAME")))
7474 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val)
7475 (setq val (concat "@" (substring val 1 (match-end 1)))))
7476 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val)
7477 (setq val (concat "%" (substring val 1 (match-end 1)))))
7478 ((and (string= val "x") (string-match "^x=" val))
7479 (setq val "x="))
7480 ((string-match "^\\$[\C-a-\C-z]" val)
7481 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1))))))
7482 ((string-match "^CORE::" val)
7483 (setq val "CORE::"))
7484 ((string-match "^SUPER::" val)
7485 (setq val "SUPER::"))
7486 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val))
7487 (setq val "<NAME>")))
7488 (setq regexp (concat "^"
7489 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?"
7490 (regexp-quote val)
7491 "\\([ \t([/]\\|$\\)"))
7492
7493 ;; get the buffer with the documentation text
7494 (cperl-switch-to-doc-buffer)
7495
7496 ;; lookup in the doc
7497 (goto-char (point-min))
7498 (let ((case-fold-search nil))
7499 (list
7500 (if (re-search-forward regexp (point-max) t)
7501 (save-excursion
7502 (beginning-of-line 1)
7503 (let ((lnstart (point)))
7504 (end-of-line)
7505 (message "%s" (buffer-substring lnstart (point)))))
7506 (if cperl-message-on-help-error
7507 (message "No definition for %s" val)))))))
7508
7509 (defvar cperl-short-docs 'please-ignore-this-line
7510 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl)
7511 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5]
7512 ... Range (list context); flip/flop [no flop when flip] (scalar context).
7513 ! ... Logical negation.
7514 ... != ... Numeric inequality.
7515 ... !~ ... Search pattern, substitution, or translation (negated).
7516 $! In numeric context: errno. In a string context: error string.
7517 $\" The separator which joins elements of arrays interpolated in strings.
7518 $# The output format for printed numbers. Default is %.15g or close.
7519 $$ Process number of this script. Changes in the fork()ed child process.
7520 $% The current page number of the currently selected output channel.
7521
7522 The following variables are always local to the current block:
7523
7524 $1 Match of the 1st set of parentheses in the last match (auto-local).
7525 $2 Match of the 2nd set of parentheses in the last match (auto-local).
7526 $3 Match of the 3rd set of parentheses in the last match (auto-local).
7527 $4 Match of the 4th set of parentheses in the last match (auto-local).
7528 $5 Match of the 5th set of parentheses in the last match (auto-local).
7529 $6 Match of the 6th set of parentheses in the last match (auto-local).
7530 $7 Match of the 7th set of parentheses in the last match (auto-local).
7531 $8 Match of the 8th set of parentheses in the last match (auto-local).
7532 $9 Match of the 9th set of parentheses in the last match (auto-local).
7533 $& The string matched by the last pattern match (auto-local).
7534 $' The string after what was matched by the last match (auto-local).
7535 $` The string before what was matched by the last match (auto-local).
7536
7537 $( The real gid of this process.
7538 $) The effective gid of this process.
7539 $* Deprecated: Set to 1 to do multiline matching within a string.
7540 $+ The last bracket matched by the last search pattern.
7541 $, The output field separator for the print operator.
7542 $- The number of lines left on the page.
7543 $. The current input line number of the last filehandle that was read.
7544 $/ The input record separator, newline by default.
7545 $0 Name of the file containing the current perl script (read/write).
7546 $: String may be broken after these characters to fill ^-lines in a format.
7547 $; Subscript separator for multi-dim array emulation. Default \"\\034\".
7548 $< The real uid of this process.
7549 $= The page length of the current output channel. Default is 60 lines.
7550 $> The effective uid of this process.
7551 $? The status returned by the last ``, pipe close or `system'.
7552 $@ The perl error message from the last eval or do @var{EXPR} command.
7553 $ARGV The name of the current file used with <> .
7554 $[ Deprecated: The index of the first element/char in an array/string.
7555 $\\ The output record separator for the print operator.
7556 $] The perl version string as displayed with perl -v.
7557 $^ The name of the current top-of-page format.
7558 $^A The current value of the write() accumulator for format() lines.
7559 $^D The value of the perl debug (-D) flags.
7560 $^E Information about the last system error other than that provided by $!.
7561 $^F The highest system file descriptor, ordinarily 2.
7562 $^H The current set of syntax checks enabled by `use strict'.
7563 $^I The value of the in-place edit extension (perl -i option).
7564 $^L What formats output to perform a formfeed. Default is \\f.
7565 $^M A buffer for emergency memory allocation when running out of memory.
7566 $^O The operating system name under which this copy of Perl was built.
7567 $^P Internal debugging flag.
7568 $^T The time the script was started. Used by -A/-M/-C file tests.
7569 $^W True if warnings are requested (perl -w flag).
7570 $^X The name under which perl was invoked (argv[0] in C-speech).
7571 $_ The default input and pattern-searching space.
7572 $| Auto-flush after write/print on current output channel? Default 0.
7573 $~ The name of the current report format.
7574 ... % ... Modulo division.
7575 ... %= ... Modulo division assignment.
7576 %ENV Contains the current environment.
7577 %INC List of files that have been require-d or do-ne.
7578 %SIG Used to set signal handlers for various signals.
7579 ... & ... Bitwise and.
7580 ... && ... Logical and.
7581 ... &&= ... Logical and assignment.
7582 ... &= ... Bitwise and assignment.
7583 ... * ... Multiplication.
7584 ... ** ... Exponentiation.
7585 *NAME Glob: all objects refered by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2.
7586 &NAME(arg0, ...) Subroutine call. Arguments go to @_.
7587 ... + ... Addition. +EXPR Makes EXPR into scalar context.
7588 ++ Auto-increment (magical on strings). ++EXPR EXPR++
7589 ... += ... Addition assignment.
7590 , Comma operator.
7591 ... - ... Subtraction.
7592 -- Auto-decrement (NOT magical on strings). --EXPR EXPR--
7593 ... -= ... Subtraction assignment.
7594 -A Access time in days since script started.
7595 -B File is a non-text (binary) file.
7596 -C Inode change time in days since script started.
7597 -M Age in days since script started.
7598 -O File is owned by real uid.
7599 -R File is readable by real uid.
7600 -S File is a socket .
7601 -T File is a text file.
7602 -W File is writable by real uid.
7603 -X File is executable by real uid.
7604 -b File is a block special file.
7605 -c File is a character special file.
7606 -d File is a directory.
7607 -e File exists .
7608 -f File is a plain file.
7609 -g File has setgid bit set.
7610 -k File has sticky bit set.
7611 -l File is a symbolic link.
7612 -o File is owned by effective uid.
7613 -p File is a named pipe (FIFO).
7614 -r File is readable by effective uid.
7615 -s File has non-zero size.
7616 -t Tests if filehandle (STDIN by default) is opened to a tty.
7617 -u File has setuid bit set.
7618 -w File is writable by effective uid.
7619 -x File is executable by effective uid.
7620 -z File has zero size.
7621 . Concatenate strings.
7622 .. Range (list context); flip/flop (scalar context) operator.
7623 .= Concatenate assignment strings
7624 ... / ... Division. /PATTERN/ioxsmg Pattern match
7625 ... /= ... Division assignment.
7626 /PATTERN/ioxsmg Pattern match.
7627 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well.
7628 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword).
7629 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>).
7630 <> Reads line from union of files in @ARGV (= command line) and STDIN.
7631 ... << ... Bitwise shift left. << start of HERE-DOCUMENT.
7632 ... <= ... Numeric less than or equal to.
7633 ... <=> ... Numeric compare.
7634 ... = ... Assignment.
7635 ... == ... Numeric equality.
7636 ... =~ ... Search pattern, substitution, or translation
7637 ... > ... Numeric greater than.
7638 ... >= ... Numeric greater than or equal to.
7639 ... >> ... Bitwise shift right.
7640 ... >>= ... Bitwise shift right assignment.
7641 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match.
7642 ?PATTERN? One-time pattern match.
7643 @ARGV Command line arguments (not including the command name - see $0).
7644 @INC List of places to look for perl scripts during do/include/use.
7645 @_ Parameter array for subroutines; result of split() unless in list context.
7646 \\ Creates reference to what follows, like \\$var, or quotes non-\\w in strings.
7647 \\0 Octal char, e.g. \\033.
7648 \\E Case modification terminator. See \\Q, \\L, and \\U.
7649 \\L Lowercase until \\E . See also \\l, lc.
7650 \\U Upcase until \\E . See also \\u, uc.
7651 \\Q Quote metacharacters until \\E . See also quotemeta.
7652 \\a Alarm character (octal 007).
7653 \\b Backspace character (octal 010).
7654 \\c Control character, e.g. \\c[ .
7655 \\e Escape character (octal 033).
7656 \\f Formfeed character (octal 014).
7657 \\l Lowercase the next character. See also \\L and \\u, lcfirst.
7658 \\n Newline character (octal 012 on most systems).
7659 \\r Return character (octal 015 on most systems).
7660 \\t Tab character (octal 011).
7661 \\u Upcase the next character. See also \\U and \\l, ucfirst.
7662 \\x Hex character, e.g. \\x1b.
7663 ... ^ ... Bitwise exclusive or.
7664 __END__ Ends program source.
7665 __DATA__ Ends program source.
7666 __FILE__ Current (source) filename.
7667 __LINE__ Current line in current source.
7668 __PACKAGE__ Current package.
7669 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>.
7670 ARGVOUT Output filehandle with -i flag.
7671 BEGIN { ... } Immediately executed (during compilation) piece of code.
7672 END { ... } Pseudo-subroutine executed after the script finishes.
7673 CHECK { ... } Pseudo-subroutine executed after the script is compiled.
7674 INIT { ... } Pseudo-subroutine executed before the script starts running.
7675 DATA Input filehandle for what follows after __END__ or __DATA__.
7676 accept(NEWSOCKET,GENERICSOCKET)
7677 alarm(SECONDS)
7678 atan2(X,Y)
7679 bind(SOCKET,NAME)
7680 binmode(FILEHANDLE)
7681 caller[(LEVEL)]
7682 chdir(EXPR)
7683 chmod(LIST)
7684 chop[(LIST|VAR)]
7685 chown(LIST)
7686 chroot(FILENAME)
7687 close(FILEHANDLE)
7688 closedir(DIRHANDLE)
7689 ... cmp ... String compare.
7690 connect(SOCKET,NAME)
7691 continue of { block } continue { block }. Is executed after `next' or at end.
7692 cos(EXPR)
7693 crypt(PLAINTEXT,SALT)
7694 dbmclose(%HASH)
7695 dbmopen(%HASH,DBNAME,MODE)
7696 defined(EXPR)
7697 delete($HASH{KEY})
7698 die(LIST)
7699 do { ... }|SUBR while|until EXPR executes at least once
7700 do(EXPR|SUBR([LIST])) (with while|until executes at least once)
7701 dump LABEL
7702 each(%HASH)
7703 endgrent
7704 endhostent
7705 endnetent
7706 endprotoent
7707 endpwent
7708 endservent
7709 eof[([FILEHANDLE])]
7710 ... eq ... String equality.
7711 eval(EXPR) or eval { BLOCK }
7712 exec([TRUENAME] ARGV0, ARGVs) or exec(SHELL_COMMAND_LINE)
7713 exit(EXPR)
7714 exp(EXPR)
7715 fcntl(FILEHANDLE,FUNCTION,SCALAR)
7716 fileno(FILEHANDLE)
7717 flock(FILEHANDLE,OPERATION)
7718 for (EXPR;EXPR;EXPR) { ... }
7719 foreach [VAR] (@ARRAY) { ... }
7720 fork
7721 ... ge ... String greater than or equal.
7722 getc[(FILEHANDLE)]
7723 getgrent
7724 getgrgid(GID)
7725 getgrnam(NAME)
7726 gethostbyaddr(ADDR,ADDRTYPE)
7727 gethostbyname(NAME)
7728 gethostent
7729 getlogin
7730 getnetbyaddr(ADDR,ADDRTYPE)
7731 getnetbyname(NAME)
7732 getnetent
7733 getpeername(SOCKET)
7734 getpgrp(PID)
7735 getppid
7736 getpriority(WHICH,WHO)
7737 getprotobyname(NAME)
7738 getprotobynumber(NUMBER)
7739 getprotoent
7740 getpwent
7741 getpwnam(NAME)
7742 getpwuid(UID)
7743 getservbyname(NAME,PROTO)
7744 getservbyport(PORT,PROTO)
7745 getservent
7746 getsockname(SOCKET)
7747 getsockopt(SOCKET,LEVEL,OPTNAME)
7748 gmtime(EXPR)
7749 goto LABEL
7750 ... gt ... String greater than.
7751 hex(EXPR)
7752 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR
7753 index(STR,SUBSTR[,OFFSET])
7754 int(EXPR)
7755 ioctl(FILEHANDLE,FUNCTION,SCALAR)
7756 join(EXPR,LIST)
7757 keys(%HASH)
7758 kill(LIST)
7759 last [LABEL]
7760 ... le ... String less than or equal.
7761 length(EXPR)
7762 link(OLDFILE,NEWFILE)
7763 listen(SOCKET,QUEUESIZE)
7764 local(LIST)
7765 localtime(EXPR)
7766 log(EXPR)
7767 lstat(EXPR|FILEHANDLE|VAR)
7768 ... lt ... String less than.
7769 m/PATTERN/iogsmx
7770 mkdir(FILENAME,MODE)
7771 msgctl(ID,CMD,ARG)
7772 msgget(KEY,FLAGS)
7773 msgrcv(ID,VAR,SIZE,TYPE.FLAGS)
7774 msgsnd(ID,MSG,FLAGS)
7775 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH).
7776 our VAR or our (VAR1,...) Lexically enable a global variable ($V, @A, or %H).
7777 ... ne ... String inequality.
7778 next [LABEL]
7779 oct(EXPR)
7780 open(FILEHANDLE[,EXPR])
7781 opendir(DIRHANDLE,EXPR)
7782 ord(EXPR) ASCII value of the first char of the string.
7783 pack(TEMPLATE,LIST)
7784 package NAME Introduces package context.
7785 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe.
7786 pop(ARRAY)
7787 print [FILEHANDLE] [(LIST)]
7788 printf [FILEHANDLE] (FORMAT,LIST)
7789 push(ARRAY,LIST)
7790 q/STRING/ Synonym for 'STRING'
7791 qq/STRING/ Synonym for \"STRING\"
7792 qx/STRING/ Synonym for `STRING`
7793 rand[(EXPR)]
7794 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7795 readdir(DIRHANDLE)
7796 readlink(EXPR)
7797 recv(SOCKET,SCALAR,LEN,FLAGS)
7798 redo [LABEL]
7799 rename(OLDNAME,NEWNAME)
7800 require [FILENAME | PERL_VERSION]
7801 reset[(EXPR)]
7802 return(LIST)
7803 reverse(LIST)
7804 rewinddir(DIRHANDLE)
7805 rindex(STR,SUBSTR[,OFFSET])
7806 rmdir(FILENAME)
7807 s/PATTERN/REPLACEMENT/gieoxsm
7808 scalar(EXPR)
7809 seek(FILEHANDLE,POSITION,WHENCE)
7810 seekdir(DIRHANDLE,POS)
7811 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT)
7812 semctl(ID,SEMNUM,CMD,ARG)
7813 semget(KEY,NSEMS,SIZE,FLAGS)
7814 semop(KEY,...)
7815 send(SOCKET,MSG,FLAGS[,TO])
7816 setgrent
7817 sethostent(STAYOPEN)
7818 setnetent(STAYOPEN)
7819 setpgrp(PID,PGRP)
7820 setpriority(WHICH,WHO,PRIORITY)
7821 setprotoent(STAYOPEN)
7822 setpwent
7823 setservent(STAYOPEN)
7824 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL)
7825 shift[(ARRAY)]
7826 shmctl(ID,CMD,ARG)
7827 shmget(KEY,SIZE,FLAGS)
7828 shmread(ID,VAR,POS,SIZE)
7829 shmwrite(ID,STRING,POS,SIZE)
7830 shutdown(SOCKET,HOW)
7831 sin(EXPR)
7832 sleep[(EXPR)]
7833 socket(SOCKET,DOMAIN,TYPE,PROTOCOL)
7834 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL)
7835 sort [SUBROUTINE] (LIST)
7836 splice(ARRAY,OFFSET[,LENGTH[,LIST]])
7837 split[(/PATTERN/[,EXPR[,LIMIT]])]
7838 sprintf(FORMAT,LIST)
7839 sqrt(EXPR)
7840 srand(EXPR)
7841 stat(EXPR|FILEHANDLE|VAR)
7842 study[(SCALAR)]
7843 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...}
7844 substr(EXPR,OFFSET[,LEN])
7845 symlink(OLDFILE,NEWFILE)
7846 syscall(LIST)
7847 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7848 system([TRUENAME] ARGV0 [,ARGV]) or system(SHELL_COMMAND_LINE)
7849 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET])
7850 tell[(FILEHANDLE)]
7851 telldir(DIRHANDLE)
7852 time
7853 times
7854 tr/SEARCHLIST/REPLACEMENTLIST/cds
7855 truncate(FILE|EXPR,LENGTH)
7856 umask[(EXPR)]
7857 undef[(EXPR)]
7858 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR
7859 unlink(LIST)
7860 unpack(TEMPLATE,EXPR)
7861 unshift(ARRAY,LIST)
7862 until (EXPR) { ... } EXPR until EXPR
7863 utime(LIST)
7864 values(%HASH)
7865 vec(EXPR,OFFSET,BITS)
7866 wait
7867 waitpid(PID,FLAGS)
7868 wantarray Returns true if the sub/eval is called in list context.
7869 warn(LIST)
7870 while (EXPR) { ... } EXPR while EXPR
7871 write[(EXPR|FILEHANDLE)]
7872 ... x ... Repeat string or array.
7873 x= ... Repetition assignment.
7874 y/SEARCHLIST/REPLACEMENTLIST/
7875 ... | ... Bitwise or.
7876 ... || ... Logical or.
7877 ~ ... Unary bitwise complement.
7878 #! OS interpreter indicator. If contains `perl', used for options, and -x.
7879 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'.
7880 CORE:: Prefix to access builtin function if imported sub obscures it.
7881 SUPER:: Prefix to lookup for a method in @ISA classes.
7882 DESTROY Shorthand for `sub DESTROY {...}'.
7883 ... EQ ... Obsolete synonym of `eq'.
7884 ... GE ... Obsolete synonym of `ge'.
7885 ... GT ... Obsolete synonym of `gt'.
7886 ... LE ... Obsolete synonym of `le'.
7887 ... LT ... Obsolete synonym of `lt'.
7888 ... NE ... Obsolete synonym of `ne'.
7889 abs [ EXPR ] absolute value
7890 ... and ... Low-precedence synonym for &&.
7891 bless REFERENCE [, PACKAGE] Makes reference into an object of a package.
7892 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''!
7893 chr Converts a number to char with the same ordinal.
7894 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}.
7895 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}.
7896 exists $HASH{KEY} True if the key exists.
7897 format [NAME] = Start of output format. Ended by a single dot (.) on a line.
7898 formline PICTURE, LIST Backdoor into \"format\" processing.
7899 glob EXPR Synonym of <EXPR>.
7900 lc [ EXPR ] Returns lowercased EXPR.
7901 lcfirst [ EXPR ] Returns EXPR with lower-cased first letter.
7902 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK.
7903 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST.
7904 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method.
7905 not ... Low-precedence synonym for ! - negation.
7906 ... or ... Low-precedence synonym for ||.
7907 pos STRING Set/Get end-position of the last match over this string, see \\G.
7908 quotemeta [ EXPR ] Quote regexp metacharacters.
7909 qw/WORD1 .../ Synonym of split('', 'WORD1 ...')
7910 readline FH Synonym of <FH>.
7911 readpipe CMD Synonym of `CMD`.
7912 ref [ EXPR ] Type of EXPR when dereferenced.
7913 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.)
7914 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable.
7915 tied Returns internal object for a tied data.
7916 uc [ EXPR ] Returns upcased EXPR.
7917 ucfirst [ EXPR ] Returns EXPR with upcased first letter.
7918 untie VAR Unlink an object from a simple Perl variable.
7919 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'.
7920 ... xor ... Low-precedence synonym for exclusive or.
7921 prototype \\&SUB Returns prototype of the function given a reference.
7922 =head1 Top-level heading.
7923 =head2 Second-level heading.
7924 =head3 Third-level heading (is there such?).
7925 =over [ NUMBER ] Start list.
7926 =item [ TITLE ] Start new item in the list.
7927 =back End list.
7928 =cut Switch from POD to Perl.
7929 =pod Switch from Perl to POD.
7930 ")
7931
7932 (defun cperl-switch-to-doc-buffer (&optional interactive)
7933 "Go to the perl documentation buffer and insert the documentation."
7934 (interactive "p")
7935 (let ((buf (get-buffer-create cperl-doc-buffer)))
7936 (if interactive
7937 (switch-to-buffer-other-window buf)
7938 (set-buffer buf))
7939 (if (= (buffer-size) 0)
7940 (progn
7941 (insert (documentation-property 'cperl-short-docs
7942 'variable-documentation))
7943 (setq buffer-read-only t)))))
7944
7945 (defun cperl-beautify-regexp-piece (b e embed level)
7946 ;; b is before the starting delimiter, e before the ending
7947 ;; e should be a marker, may be changed, but remains "correct".
7948 ;; EMBED is nil if we process the whole REx.
7949 ;; The REx is guaranteed to have //x
7950 ;; LEVEL shows how many levels deep to go
7951 ;; position at enter and at leave is not defined
7952 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code pos)
7953 (if (not embed)
7954 (goto-char (1+ b))
7955 (goto-char b)
7956 (cond ((looking-at "(\\?\\\\#") ; (?#) wrongly commented when //x-ing
7957 (forward-char 2)
7958 (delete-char 1)
7959 (forward-char 1))
7960 ((looking-at "(\\?[^a-zA-Z]")
7961 (forward-char 3))
7962 ((looking-at "(\\?") ; (?i)
7963 (forward-char 2))
7964 (t
7965 (forward-char 1))))
7966 (setq c (if embed (current-indentation) (1- (current-column)))
7967 c1 (+ c (or cperl-regexp-indent-step cperl-indent-level)))
7968 (or (looking-at "[ \t]*[\n#]")
7969 (progn
7970 (insert "\n")))
7971 (goto-char e)
7972 (beginning-of-line)
7973 (if (re-search-forward "[^ \t]" e t)
7974 (progn ; Something before the ending delimiter
7975 (goto-char e)
7976 (delete-horizontal-space)
7977 (insert "\n")
7978 (cperl-make-indent c)
7979 (set-marker e (point))))
7980 (goto-char b)
7981 (end-of-line 2)
7982 (while (< (point) (marker-position e))
7983 (beginning-of-line)
7984 (setq s (point)
7985 inline t)
7986 (skip-chars-forward " \t")
7987 (delete-region s (point))
7988 (cperl-make-indent c1)
7989 (while (and
7990 inline
7991 (looking-at
7992 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word
7993 "\\|" ; Embedded variable
7994 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3
7995 "\\|" ; $ ^
7996 "[$^]"
7997 "\\|" ; simple-code simple-code*?
7998 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5
7999 "\\|" ; Class
8000 "\\(\\[\\)" ; 6
8001 "\\|" ; Grouping
8002 "\\((\\(\\?\\)?\\)" ; 7 8
8003 "\\|" ; |
8004 "\\(|\\)"))) ; 9
8005 (goto-char (match-end 0))
8006 (setq spaces t)
8007 (cond ((match-beginning 1) ; Alphanum word + junk
8008 (forward-char -1))
8009 ((or (match-beginning 3) ; $ab[12]
8010 (and (match-beginning 5) ; X* X+ X{2,3}
8011 (eq (preceding-char) ?\{)))
8012 (forward-char -1)
8013 (forward-sexp 1))
8014 ((and ; [], already syntaxified
8015 (match-beginning 6)
8016 cperl-regexp-scan
8017 cperl-use-syntax-table-text-property)
8018 (forward-char -1)
8019 (forward-sexp 1)
8020 (or (eq (preceding-char) ?\])
8021 (error "[]-group not terminated"))
8022 (re-search-forward
8023 "\\=\\([*+?]\\|{[0-9]+\\(,[0-9]*\\)?}\\)\\??" e t))
8024 ((match-beginning 6) ; []
8025 (setq tmp (point))
8026 (if (looking-at "\\^?\\]")
8027 (goto-char (match-end 0)))
8028 ;; XXXX POSIX classes?!
8029 (while (and (not pos)
8030 (re-search-forward "\\[:\\|\\]" e t))
8031 (if (eq (preceding-char) ?:)
8032 (or (re-search-forward ":\\]" e t)
8033 (error "[:POSIX:]-group in []-group not terminated"))
8034 (setq pos t)))
8035 (or (eq (preceding-char) ?\])
8036 (error "[]-group not terminated"))
8037 (re-search-forward
8038 "\\=\\([*+?]\\|{[0-9]+\\(,[0-9]*\\)?}\\)\\??" e t))
8039 ((match-beginning 7) ; ()
8040 (goto-char (match-beginning 0))
8041 (setq pos (current-column))
8042 (or (eq pos c1)
8043 (progn
8044 (delete-horizontal-space)
8045 (insert "\n")
8046 (cperl-make-indent c1)))
8047 (setq tmp (point))
8048 (forward-sexp 1)
8049 ;; (or (forward-sexp 1)
8050 ;; (progn
8051 ;; (goto-char tmp)
8052 ;; (error "()-group not terminated")))
8053 (set-marker m (1- (point)))
8054 (set-marker m1 (point))
8055 (if (= level 1)
8056 (if (progn ; indent rigidly if multiline
8057 ;; In fact does not make a lot of sense, since
8058 ;; the starting position can be already lost due
8059 ;; to insertion of "\n" and " "
8060 (goto-char tmp)
8061 (search-forward "\n" m1 t))
8062 (indent-rigidly (point) m1 (- c1 pos)))
8063 (setq level (1- level))
8064 (cond
8065 ((not (match-beginning 8))
8066 (cperl-beautify-regexp-piece tmp m t level))
8067 ((eq (char-after (+ 2 tmp)) ?\{) ; Code
8068 t)
8069 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional
8070 (goto-char (+ 2 tmp))
8071 (forward-sexp 1)
8072 (cperl-beautify-regexp-piece (point) m t level))
8073 ((eq (char-after (+ 2 tmp)) ?<) ; Lookbehind
8074 (goto-char (+ 3 tmp))
8075 (cperl-beautify-regexp-piece (point) m t level))
8076 (t
8077 (cperl-beautify-regexp-piece tmp m t level))))
8078 (goto-char m1)
8079 (cond ((looking-at "[*+?]\\??")
8080 (goto-char (match-end 0)))
8081 ((eq (following-char) ?\{)
8082 (forward-sexp 1)
8083 (if (eq (following-char) ?\?)
8084 (forward-char))))
8085 (skip-chars-forward " \t")
8086 (setq spaces nil)
8087 (if (looking-at "[#\n]")
8088 (progn
8089 (or (eolp) (indent-for-comment))
8090 (beginning-of-line 2))
8091 (delete-horizontal-space)
8092 (insert "\n"))
8093 (end-of-line)
8094 (setq inline nil))
8095 ((match-beginning 9) ; |
8096 (forward-char -1)
8097 (setq tmp (point))
8098 (beginning-of-line)
8099 (if (re-search-forward "[^ \t]" tmp t)
8100 (progn
8101 (goto-char tmp)
8102 (delete-horizontal-space)
8103 (insert "\n"))
8104 ;; first at line
8105 (delete-region (point) tmp))
8106 (cperl-make-indent c)
8107 (forward-char 1)
8108 (skip-chars-forward " \t")
8109 (setq spaces nil)
8110 (if (looking-at "[#\n]")
8111 (beginning-of-line 2)
8112 (delete-horizontal-space)
8113 (insert "\n"))
8114 (end-of-line)
8115 (setq inline nil)))
8116 (or (looking-at "[ \t\n]")
8117 (not spaces)
8118 (insert " "))
8119 (skip-chars-forward " \t"))
8120 (or (looking-at "[#\n]")
8121 (error "Unknown code `%s' in a regexp"
8122 (buffer-substring (point) (1+ (point)))))
8123 (and inline (end-of-line 2)))
8124 ;; Special-case the last line of group
8125 (if (and (>= (point) (marker-position e))
8126 (/= (current-indentation) c))
8127 (progn
8128 (beginning-of-line)
8129 (cperl-make-indent c)))))
8130
8131 (defun cperl-make-regexp-x ()
8132 ;; Returns position of the start
8133 ;; XXX this is called too often! Need to cache the result!
8134 (save-excursion
8135 (or cperl-use-syntax-table-text-property
8136 (error "I need to have a regexp marked!"))
8137 ;; Find the start
8138 (if (looking-at "\\s|")
8139 nil ; good already
8140 (if (looking-at "\\([smy]\\|qr\\)\\s|")
8141 (forward-char 1)
8142 (re-search-backward "\\s|"))) ; Assume it is scanned already.
8143 ;;(forward-char 1)
8144 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column))
8145 (sub-p (eq (preceding-char) ?s)) s)
8146 (forward-sexp 1)
8147 (set-marker e (1- (point)))
8148 (setq delim (preceding-char))
8149 (if (and sub-p (eq delim (char-after (- (point) 2))))
8150 (error "Possible s/blah// - do not know how to deal with"))
8151 (if sub-p (forward-sexp 1))
8152 (if (looking-at "\\sw*x")
8153 (setq have-x t)
8154 (insert "x"))
8155 ;; Protect fragile " ", "#"
8156 (if have-x nil
8157 (goto-char (1+ b))
8158 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too?
8159 (forward-char -1)
8160 (insert "\\")
8161 (forward-char 1)))
8162 b)))
8163
8164 (defun cperl-beautify-regexp (&optional deep)
8165 "Do it. (Experimental, may change semantics, recheck the result.)
8166 We suppose that the regexp is scanned already."
8167 (interactive "P")
8168 (setq deep (if deep (prefix-numeric-value deep) -1))
8169 (save-excursion
8170 (goto-char (cperl-make-regexp-x))
8171 (let ((b (point)) (e (make-marker)))
8172 (forward-sexp 1)
8173 (set-marker e (1- (point)))
8174 (cperl-beautify-regexp-piece b e nil deep))))
8175
8176 (defun cperl-regext-to-level-start ()
8177 "Goto start of an enclosing group in regexp.
8178 We suppose that the regexp is scanned already."
8179 (interactive)
8180 (let ((limit (cperl-make-regexp-x)) done)
8181 (while (not done)
8182 (or (eq (following-char) ?\()
8183 (search-backward "(" (1+ limit) t)
8184 (error "Cannot find `(' which starts a group"))
8185 (setq done
8186 (save-excursion
8187 (skip-chars-backward "\\")
8188 (looking-at "\\(\\\\\\\\\\)*(")))
8189 (or done (forward-char -1)))))
8190
8191 (defun cperl-contract-level ()
8192 "Find an enclosing group in regexp and contract it.
8193 \(Experimental, may change semantics, recheck the result.)
8194 We suppose that the regexp is scanned already."
8195 (interactive)
8196 ;; (save-excursion ; Can't, breaks `cperl-contract-levels'
8197 (cperl-regext-to-level-start)
8198 (let ((b (point)) (e (make-marker)) c)
8199 (forward-sexp 1)
8200 (set-marker e (1- (point)))
8201 (goto-char b)
8202 (while (re-search-forward "\\(#\\)\\|\n" e 'to-end)
8203 (cond
8204 ((match-beginning 1) ; #-comment
8205 (or c (setq c (current-indentation)))
8206 (beginning-of-line 2) ; Skip
8207 (cperl-make-indent c))
8208 (t
8209 (delete-char -1)
8210 (just-one-space))))))
8211
8212 (defun cperl-contract-levels ()
8213 "Find an enclosing group in regexp and contract all the kids.
8214 \(Experimental, may change semantics, recheck the result.)
8215 We suppose that the regexp is scanned already."
8216 (interactive)
8217 (save-excursion
8218 (condition-case nil
8219 (cperl-regext-to-level-start)
8220 (error ; We are outside outermost group
8221 (goto-char (cperl-make-regexp-x))))
8222 (let ((b (point)) (e (make-marker)) s c)
8223 (forward-sexp 1)
8224 (set-marker e (1- (point)))
8225 (goto-char (1+ b))
8226 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t)
8227 (cond
8228 ((match-beginning 1) ; Skip
8229 nil)
8230 (t ; Group
8231 (cperl-contract-level)))))))
8232
8233 (defun cperl-beautify-level (&optional deep)
8234 "Find an enclosing group in regexp and beautify it.
8235 \(Experimental, may change semantics, recheck the result.)
8236 We suppose that the regexp is scanned already."
8237 (interactive "P")
8238 (setq deep (if deep (prefix-numeric-value deep) -1))
8239 (save-excursion
8240 (cperl-regext-to-level-start)
8241 (let ((b (point)) (e (make-marker)))
8242 (forward-sexp 1)
8243 (set-marker e (1- (point)))
8244 (cperl-beautify-regexp-piece b e nil deep))))
8245
8246 (defun cperl-invert-if-unless-modifiers ()
8247 "Change `B if A;' into `if (A) {B}' etc if possible.
8248 \(Unfinished.)"
8249 (interactive) ;
8250 (let (A B pre-B post-B pre-if post-if pre-A post-A if-string
8251 (w-rex "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>"))
8252 (and (= (char-syntax (preceding-char)) ?w)
8253 (forward-sexp -1))
8254 (setq pre-if (point))
8255 (cperl-backward-to-start-of-expr)
8256 (setq pre-B (point))
8257 (forward-sexp 1) ; otherwise forward-to-end-of-expr is NOP
8258 (cperl-forward-to-end-of-expr)
8259 (setq post-A (point))
8260 (goto-char pre-if)
8261 (or (looking-at w-rex)
8262 ;; Find the position
8263 (progn (goto-char post-A)
8264 (while (and
8265 (not (looking-at w-rex))
8266 (> (point) pre-B))
8267 (forward-sexp -1))
8268 (setq pre-if (point))))
8269 (or (looking-at w-rex)
8270 (error "Can't find `if', `unless', `while', `until', `for' or `foreach'"))
8271 ;; 1 B 2 ... 3 B-com ... 4 if 5 ... if-com 6 ... 7 A 8
8272 (setq if-string (buffer-substring (match-beginning 0) (match-end 0)))
8273 ;; First, simple part: find code boundaries
8274 (forward-sexp 1)
8275 (setq post-if (point))
8276 (forward-sexp -2)
8277 (forward-sexp 1)
8278 (setq post-B (point))
8279 (cperl-backward-to-start-of-expr)
8280 (setq pre-B (point))
8281 (setq B (buffer-substring pre-B post-B))
8282 (goto-char pre-if)
8283 (forward-sexp 2)
8284 (forward-sexp -1)
8285 ;; May be after $, @, $# etc of a variable
8286 (skip-chars-backward "$@%#")
8287 (setq pre-A (point))
8288 (cperl-forward-to-end-of-expr)
8289 (setq post-A (point))
8290 (setq A (buffer-substring pre-A post-A))
8291 ;; Now modify (from end, to not break the stuff)
8292 (skip-chars-forward " \t;")
8293 (delete-region pre-A (point)) ; we move to pre-A
8294 (insert "\n" B ";\n}")
8295 (and (looking-at "[ \t]*#") (cperl-indent-for-comment))
8296 (delete-region pre-if post-if)
8297 (delete-region pre-B post-B)
8298 (goto-char pre-B)
8299 (insert if-string " (" A ") {")
8300 (setq post-B (point))
8301 (if (looking-at "[ \t]+$")
8302 (delete-horizontal-space)
8303 (if (looking-at "[ \t]*#")
8304 (cperl-indent-for-comment)
8305 (just-one-space)))
8306 (forward-line 1)
8307 (if (looking-at "[ \t]*$")
8308 (progn ; delete line
8309 (delete-horizontal-space)
8310 (delete-region (point) (1+ (point)))))
8311 (cperl-indent-line)
8312 (goto-char (1- post-B))
8313 (forward-sexp 1)
8314 (cperl-indent-line)
8315 (goto-char pre-B)))
8316
8317 (defun cperl-invert-if-unless ()
8318 "Change `if (A) {B}' into `B if A;' etc (or visa versa) if possible.
8319 If the cursor is not on the leading keyword of the BLOCK flavor of
8320 construct, will assume it is the STATEMENT flavor, so will try to find
8321 the appropriate statement modifier."
8322 (interactive)
8323 (and (= (char-syntax (preceding-char)) ?w)
8324 (forward-sexp -1))
8325 (if (looking-at "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>")
8326 (let ((pre-if (point))
8327 pre-A post-A pre-B post-B A B state p end-B-code is-block B-comment
8328 (if-string (buffer-substring (match-beginning 0) (match-end 0))))
8329 (forward-sexp 2)
8330 (setq post-A (point))
8331 (forward-sexp -1)
8332 (setq pre-A (point))
8333 (setq is-block (and (eq (following-char) ?\( )
8334 (save-excursion
8335 (condition-case nil
8336 (progn
8337 (forward-sexp 2)
8338 (forward-sexp -1)
8339 (eq (following-char) ?\{ ))
8340 (error nil)))))
8341 (if is-block
8342 (progn
8343 (goto-char post-A)
8344 (forward-sexp 1)
8345 (setq post-B (point))
8346 (forward-sexp -1)
8347 (setq pre-B (point))
8348 (if (and (eq (following-char) ?\{ )
8349 (progn
8350 (cperl-backward-to-noncomment post-A)
8351 (eq (preceding-char) ?\) )))
8352 (if (condition-case nil
8353 (progn
8354 (goto-char post-B)
8355 (forward-sexp 1)
8356 (forward-sexp -1)
8357 (looking-at "\\<els\\(e\\|if\\)\\>"))
8358 (error nil))
8359 (error
8360 "`%s' (EXPR) {BLOCK} with `else'/`elsif'" if-string)
8361 (goto-char (1- post-B))
8362 (cperl-backward-to-noncomment pre-B)
8363 (if (eq (preceding-char) ?\;)
8364 (forward-char -1))
8365 (setq end-B-code (point))
8366 (goto-char pre-B)
8367 (while (re-search-forward "\\<\\(for\\|foreach\\|if\\|unless\\|while\\|until\\)\\>\\|;" end-B-code t)
8368 (setq p (match-beginning 0)
8369 A (buffer-substring p (match-end 0))
8370 state (parse-partial-sexp pre-B p))
8371 (or (nth 3 state)
8372 (nth 4 state)
8373 (nth 5 state)
8374 (error "`%s' inside `%s' BLOCK" A if-string))
8375 (goto-char (match-end 0)))
8376 ;; Finally got it
8377 (goto-char (1+ pre-B))
8378 (skip-chars-forward " \t\n")
8379 (setq B (buffer-substring (point) end-B-code))
8380 (goto-char end-B-code)
8381 (or (looking-at ";?[ \t\n]*}")
8382 (progn
8383 (skip-chars-forward "; \t\n")
8384 (setq B-comment
8385 (buffer-substring (point) (1- post-B)))))
8386 (and (equal B "")
8387 (setq B "1"))
8388 (goto-char (1- post-A))
8389 (cperl-backward-to-noncomment pre-A)
8390 (or (looking-at "[ \t\n]*)")
8391 (goto-char (1- post-A)))
8392 (setq p (point))
8393 (goto-char (1+ pre-A))
8394 (skip-chars-forward " \t\n")
8395 (setq A (buffer-substring (point) p))
8396 (delete-region pre-B post-B)
8397 (delete-region pre-A post-A)
8398 (goto-char pre-if)
8399 (insert B " ")
8400 (and B-comment (insert B-comment " "))
8401 (just-one-space)
8402 (forward-word 1)
8403 (setq pre-A (point))
8404 (insert " " A ";")
8405 (delete-horizontal-space)
8406 (setq post-B (point))
8407 (if (looking-at "#")
8408 (indent-for-comment))
8409 (goto-char post-B)
8410 (forward-char -1)
8411 (delete-horizontal-space)
8412 (goto-char pre-A)
8413 (just-one-space)
8414 (goto-char pre-if)
8415 (setq pre-A (set-marker (make-marker) pre-A))
8416 (while (<= (point) (marker-position pre-A))
8417 (cperl-indent-line)
8418 (forward-line 1))
8419 (goto-char (marker-position pre-A))
8420 (if B-comment
8421 (progn
8422 (forward-line -1)
8423 (indent-for-comment)
8424 (goto-char (marker-position pre-A)))))
8425 (error "`%s' (EXPR) not with an {BLOCK}" if-string)))
8426 ;; (error "`%s' not with an (EXPR)" if-string)
8427 (forward-sexp -1)
8428 (cperl-invert-if-unless-modifiers)))
8429 ;;(error "Not at `if', `unless', `while', `until', `for' or `foreach'")
8430 (cperl-invert-if-unless-modifiers)))
8431
8432 ;;; By Anthony Foiani <afoiani@uswest.com>
8433 ;;; Getting help on modules in C-h f ?
8434 ;;; This is a modified version of `man'.
8435 ;;; Need to teach it how to lookup functions
8436 ;;;###autoload
8437 (defun cperl-perldoc (word)
8438 "Run `perldoc' on WORD."
8439 (interactive
8440 (list (let* ((default-entry (cperl-word-at-point))
8441 (input (read-string
8442 (format "perldoc entry%s: "
8443 (if (string= default-entry "")
8444 ""
8445 (format " (default %s)" default-entry))))))
8446 (if (string= input "")
8447 (if (string= default-entry "")
8448 (error "No perldoc args given")
8449 default-entry)
8450 input))))
8451 (require 'man)
8452 (let* ((case-fold-search nil)
8453 (is-func (and
8454 (string-match "^[a-z]+$" word)
8455 (string-match (concat "^" word "\\>")
8456 (documentation-property
8457 'cperl-short-docs
8458 'variable-documentation))))
8459 (manual-program (if is-func "perldoc -f" "perldoc")))
8460 (cond
8461 ((featurep 'xemacs)
8462 (let ((Manual-program "perldoc")
8463 (Manual-switches (if is-func (list "-f"))))
8464 (manual-entry word)))
8465 (t
8466 (Man-getpage-in-background word)))))
8467
8468 ;;;###autoload
8469 (defun cperl-perldoc-at-point ()
8470 "Run a `perldoc' on the word around point."
8471 (interactive)
8472 (cperl-perldoc (cperl-word-at-point)))
8473
8474 (defcustom pod2man-program "pod2man"
8475 "*File name for `pod2man'."
8476 :type 'file
8477 :group 'cperl)
8478
8479 ;;; By Nick Roberts <Nick.Roberts@src.bae.co.uk> (with changes)
8480 (defun cperl-pod-to-manpage ()
8481 "Create a virtual manpage in Emacs from the Perl Online Documentation."
8482 (interactive)
8483 (require 'man)
8484 (let* ((pod2man-args (concat buffer-file-name " | nroff -man "))
8485 (bufname (concat "Man " buffer-file-name))
8486 (buffer (generate-new-buffer bufname)))
8487 (save-excursion
8488 (set-buffer buffer)
8489 (let ((process-environment (copy-sequence process-environment)))
8490 ;; Prevent any attempt to use display terminal fanciness.
8491 (setenv "TERM" "dumb")
8492 (set-process-sentinel
8493 (start-process pod2man-program buffer "sh" "-c"
8494 (format (cperl-pod2man-build-command) pod2man-args))
8495 'Man-bgproc-sentinel)))))
8496
8497 ;;; Updated version by him too
8498 (defun cperl-build-manpage ()
8499 "Create a virtual manpage in Emacs from the POD in the file."
8500 (interactive)
8501 (require 'man)
8502 (cond
8503 ((featurep 'xemacs)
8504 (let ((Manual-program "perldoc"))
8505 (manual-entry buffer-file-name)))
8506 (t
8507 (let* ((manual-program "perldoc"))
8508 (Man-getpage-in-background buffer-file-name)))))
8509
8510 (defun cperl-pod2man-build-command ()
8511 "Builds the entire background manpage and cleaning command."
8512 (let ((command (concat pod2man-program " %s 2>/dev/null"))
8513 (flist (and (boundp 'Man-filter-list) Man-filter-list)))
8514 (while (and flist (car flist))
8515 (let ((pcom (car (car flist)))
8516 (pargs (cdr (car flist))))
8517 (setq command
8518 (concat command " | " pcom " "
8519 (mapconcat '(lambda (phrase)
8520 (if (not (stringp phrase))
8521 (error "Malformed Man-filter-list"))
8522 phrase)
8523 pargs " ")))
8524 (setq flist (cdr flist))))
8525 command))
8526
8527
8528 (defun cperl-next-interpolated-REx-1 ()
8529 "Move point to next REx which has interpolated parts without //o.
8530 Skips RExes consisting of one interpolated variable.
8531
8532 Note that skipped RExen are not performance hits."
8533 (interactive "")
8534 (cperl-next-interpolated-REx 1))
8535
8536 (defun cperl-next-interpolated-REx-0 ()
8537 "Move point to next REx which has interpolated parts without //o."
8538 (interactive "")
8539 (cperl-next-interpolated-REx 0))
8540
8541 (defun cperl-next-interpolated-REx (&optional skip beg limit)
8542 "Move point to next REx which has interpolated parts.
8543 SKIP is a list of possible types to skip, BEG and LIMIT are the starting
8544 point and the limit of search (default to point and end of buffer).
8545
8546 SKIP may be a number, then it behaves as list of numbers up to SKIP; this
8547 semantic may be used as a numeric argument.
8548
8549 Types are 0 for / $rex /o (interpolated once), 1 for /$rex/ (if $rex is
8550 a result of qr//, this is not a performance hit), t for the rest."
8551 (interactive "P")
8552 (if (numberp skip) (setq skip (list 0 skip)))
8553 (or beg (setq beg (point)))
8554 (or limit (setq limit (point-max))) ; needed for n-s-p-c
8555 (let (pp)
8556 (and (eq (get-text-property beg 'syntax-type) 'string)
8557 (setq beg (next-single-property-change beg 'syntax-type nil limit)))
8558 (cperl-map-pods-heres
8559 (function (lambda (s e p)
8560 (if (memq (get-text-property s 'REx-interpolated) skip)
8561 t
8562 (setq pp s)
8563 nil))) ; nil stops
8564 'REx-interpolated beg limit)
8565 (if pp (goto-char pp)
8566 (message "No more interpolated REx"))))
8567
8568 ;;; Initial version contributed by Trey Belew
8569 (defun cperl-here-doc-spell (&optional beg end)
8570 "Spell-check HERE-documents in the Perl buffer.
8571 If a region is highlighted, restricts to the region."
8572 (interactive "")
8573 (cperl-pod-spell t beg end))
8574
8575 (defun cperl-pod-spell (&optional do-heres beg end)
8576 "Spell-check POD documentation.
8577 If invoked with prefix argument, will do HERE-DOCs instead.
8578 If a region is highlighted, restricts to the region."
8579 (interactive "P")
8580 (save-excursion
8581 (let (beg end)
8582 (if (cperl-mark-active)
8583 (setq beg (min (mark) (point))
8584 end (max (mark) (point)))
8585 (setq beg (point-min)
8586 end (point-max)))
8587 (cperl-map-pods-heres (function
8588 (lambda (s e p)
8589 (if do-heres
8590 (setq e (save-excursion
8591 (goto-char e)
8592 (forward-line -1)
8593 (point))))
8594 (ispell-region s e)
8595 t))
8596 (if do-heres 'here-doc-group 'in-pod)
8597 beg end))))
8598
8599 (defun cperl-map-pods-heres (func &optional prop s end)
8600 "Executes a function over regions of pods or here-documents.
8601 PROP is the text-property to search for; default to `in-pod'. Stop when
8602 function returns nil."
8603 (let (pos posend has-prop (cont t))
8604 (or prop (setq prop 'in-pod))
8605 (or s (setq s (point-min)))
8606 (or end (setq end (point-max)))
8607 (cperl-update-syntaxification end end)
8608 (save-excursion
8609 (goto-char (setq pos s))
8610 (while (and cont (< pos end))
8611 (setq has-prop (get-text-property pos prop))
8612 (setq posend (next-single-property-change pos prop nil end))
8613 (and has-prop
8614 (setq cont (funcall func pos posend prop)))
8615 (setq pos posend)))))
8616
8617 ;;; Based on code by Masatake YAMATO:
8618 (defun cperl-get-here-doc-region (&optional pos pod)
8619 "Return HERE document region around the point.
8620 Return nil if the point is not in a HERE document region. If POD is non-nil,
8621 will return a POD section if point is in a POD section."
8622 (or pos (setq pos (point)))
8623 (cperl-update-syntaxification pos pos)
8624 (if (or (eq 'here-doc (get-text-property pos 'syntax-type))
8625 (and pod
8626 (eq 'pod (get-text-property pos 'syntax-type))))
8627 (let ((b (cperl-beginning-of-property pos 'syntax-type))
8628 (e (next-single-property-change pos 'syntax-type)))
8629 (cons b (or e (point-max))))))
8630
8631 (defun cperl-narrow-to-here-doc (&optional pos)
8632 "Narrows editing region to the HERE-DOC at POS.
8633 POS defaults to the point."
8634 (interactive "d")
8635 (or pos (setq pos (point)))
8636 (let ((p (cperl-get-here-doc-region pos)))
8637 (or p (error "Not inside a HERE document"))
8638 (narrow-to-region (car p) (cdr p))
8639 (message
8640 "When you are finished with narrow editing, type C-x n w")))
8641
8642 (defun cperl-select-this-pod-or-here-doc (&optional pos)
8643 "Select the HERE-DOC (or POD section) at POS.
8644 POS defaults to the point."
8645 (interactive "d")
8646 (let ((p (cperl-get-here-doc-region pos t)))
8647 (if p
8648 (progn
8649 (goto-char (car p))
8650 (push-mark (cdr p) nil t)) ; Message, activate in transient-mode
8651 (message "I do not think POS is in POD or a HERE-doc..."))))
8652
8653 (defun cperl-facemenu-add-face-function (face end)
8654 "A callback to process user-initiated font-change requests.
8655 Translates `bold', `italic', and `bold-italic' requests to insertion of
8656 corresponding POD directives, and `underline' to C<> POD directive.
8657
8658 Such requests are usually bound to M-o LETTER."
8659 (or (get-text-property (point) 'in-pod)
8660 (error "Faces can only be set within POD"))
8661 (setq facemenu-end-add-face (if (eq face 'bold-italic) ">>" ">"))
8662 (cdr (or (assq face '((bold . "B<")
8663 (italic . "I<")
8664 (bold-italic . "B<I<")
8665 (underline . "C<")))
8666 (error "Face %s not configured for cperl-mode"
8667 face))))
8668 \f
8669 (defun cperl-time-fontification (&optional l step lim)
8670 "Times how long it takes to do incremental fontification in a region.
8671 L is the line to start at, STEP is the number of lines to skip when
8672 doing next incremental fontification, LIM is the maximal number of
8673 incremental fontification to perform. Messages are accumulated in
8674 *Messages* buffer.
8675
8676 May be used for pinpointing which construct slows down buffer fontification:
8677 start with default arguments, then refine the slowdown regions."
8678 (interactive "nLine to start at: \nnStep to do incremental fontification: ")
8679 (or l (setq l 1))
8680 (or step (setq step 500))
8681 (or lim (setq lim 40))
8682 (let* ((timems (function (lambda ()
8683 (let ((tt (current-time)))
8684 (+ (* 1000 (nth 1 tt)) (/ (nth 2 tt) 1000))))))
8685 (tt (funcall timems)) (c 0) delta tot)
8686 (goto-line l)
8687 (cperl-mode)
8688 (setq tot (- (- tt (setq tt (funcall timems)))))
8689 (message "cperl-mode at %s: %s" l tot)
8690 (while (and (< c lim) (not (eobp)))
8691 (forward-line step)
8692 (setq l (+ l step))
8693 (setq c (1+ c))
8694 (cperl-update-syntaxification (point) (point))
8695 (setq delta (- (- tt (setq tt (funcall timems)))) tot (+ tot delta))
8696 (message "to %s:%6s,%7s" l delta tot))
8697 tot))
8698
8699 (defvar font-lock-cache-position)
8700
8701 (defun cperl-emulate-lazy-lock (&optional window-size)
8702 "Emulate `lazy-lock' without `condition-case', so `debug-on-error' works.
8703 Start fontifying the buffer from the start (or end) using the given
8704 WINDOW-SIZE (units is lines). Negative WINDOW-SIZE starts at end, and
8705 goes backwards; default is -50. This function is not CPerl-specific; it
8706 may be used to debug problems with delayed incremental fontification."
8707 (interactive
8708 "nSize of window for incremental fontification, negative goes backwards: ")
8709 (or window-size (setq window-size -50))
8710 (let ((pos (if (> window-size 0)
8711 (point-min)
8712 (point-max)))
8713 p)
8714 (goto-char pos)
8715 (normal-mode)
8716 ;; Why needed??? With older font-locks???
8717 (set (make-local-variable 'font-lock-cache-position) (make-marker))
8718 (while (if (> window-size 0)
8719 (< pos (point-max))
8720 (> pos (point-min)))
8721 (setq p (progn
8722 (forward-line window-size)
8723 (point)))
8724 (font-lock-fontify-region (min p pos) (max p pos))
8725 (setq pos p))))
8726
8727 \f
8728 (defun cperl-lazy-install ()) ; Avoid a warning
8729 (defun cperl-lazy-unstall ()) ; Avoid a warning
8730
8731 (if (fboundp 'run-with-idle-timer)
8732 (progn
8733 (defvar cperl-help-shown nil
8734 "Non-nil means that the help was already shown now.")
8735
8736 (defvar cperl-lazy-installed nil
8737 "Non-nil means that the lazy-help handlers are installed now.")
8738
8739 (defun cperl-lazy-install ()
8740 "Switches on Auto-Help on Perl constructs (put in the message area).
8741 Delay of auto-help controlled by `cperl-lazy-help-time'."
8742 (interactive)
8743 (make-local-variable 'cperl-help-shown)
8744 (if (and (cperl-val 'cperl-lazy-help-time)
8745 (not cperl-lazy-installed))
8746 (progn
8747 (add-hook 'post-command-hook 'cperl-lazy-hook)
8748 (run-with-idle-timer
8749 (cperl-val 'cperl-lazy-help-time 1000000 5)
8750 t
8751 'cperl-get-help-defer)
8752 (setq cperl-lazy-installed t))))
8753
8754 (defun cperl-lazy-unstall ()
8755 "Switches off Auto-Help on Perl constructs (put in the message area).
8756 Delay of auto-help controlled by `cperl-lazy-help-time'."
8757 (interactive)
8758 (remove-hook 'post-command-hook 'cperl-lazy-hook)
8759 (cancel-function-timers 'cperl-get-help-defer)
8760 (setq cperl-lazy-installed nil))
8761
8762 (defun cperl-lazy-hook ()
8763 (setq cperl-help-shown nil))
8764
8765 (defun cperl-get-help-defer ()
8766 (if (not (memq major-mode '(perl-mode cperl-mode))) nil
8767 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t))
8768 (cperl-get-help)
8769 (setq cperl-help-shown t))))
8770 (cperl-lazy-install)))
8771
8772
8773 ;;; Plug for wrong font-lock:
8774
8775 (defun cperl-font-lock-unfontify-region-function (beg end)
8776 (let* ((modified (buffer-modified-p)) (buffer-undo-list t)
8777 (inhibit-read-only t) (inhibit-point-motion-hooks t)
8778 before-change-functions after-change-functions
8779 deactivate-mark buffer-file-name buffer-file-truename)
8780 (remove-text-properties beg end '(face nil))
8781 (if (and (not modified) (buffer-modified-p))
8782 (set-buffer-modified-p nil))))
8783
8784 (defun cperl-font-lock-fontify-region-function (beg end loudly)
8785 "Extends the region to safe positions, then calls the default function.
8786 Newer `font-lock's can do it themselves.
8787 We unwind only as far as needed for fontification. Syntaxification may
8788 do extra unwind via `cperl-unwind-to-safe'."
8789 (save-excursion
8790 (goto-char beg)
8791 (while (and beg
8792 (progn
8793 (beginning-of-line)
8794 (eq (get-text-property (setq beg (point)) 'syntax-type)
8795 'multiline)))
8796 (if (setq beg (cperl-beginning-of-property beg 'syntax-type))
8797 (goto-char beg)))
8798 (setq beg (point))
8799 (goto-char end)
8800 (while (and end
8801 (progn
8802 (or (bolp) (condition-case nil
8803 (forward-line 1)
8804 (error nil)))
8805 (eq (get-text-property (setq end (point)) 'syntax-type)
8806 'multiline)))
8807 (setq end (next-single-property-change end 'syntax-type nil (point-max)))
8808 (goto-char end))
8809 (setq end (point)))
8810 (font-lock-default-fontify-region beg end loudly))
8811
8812 (defvar cperl-d-l nil)
8813 (defun cperl-fontify-syntaxically (end)
8814 ;; Some vars for debugging only
8815 ;; (message "Syntaxifying...")
8816 (let ((dbg (point)) (iend end) (idone cperl-syntax-done-to)
8817 (istate (car cperl-syntax-state))
8818 start from-start edebug-backtrace-buffer)
8819 (if (eq cperl-syntaxify-by-font-lock 'backtrace)
8820 (progn
8821 (require 'edebug)
8822 (let ((f 'edebug-backtrace))
8823 (funcall f)))) ; Avoid compile-time warning
8824 (or cperl-syntax-done-to
8825 (setq cperl-syntax-done-to (point-min)
8826 from-start t))
8827 (setq start (if (and cperl-hook-after-change
8828 (not from-start))
8829 cperl-syntax-done-to ; Fontify without change; ignore start
8830 ;; Need to forget what is after `start'
8831 (min cperl-syntax-done-to (point))))
8832 (goto-char start)
8833 (beginning-of-line)
8834 (setq start (point))
8835 (and cperl-syntaxify-unwind
8836 (setq end (cperl-unwind-to-safe t end)
8837 start (point)))
8838 (and (> end start)
8839 (setq cperl-syntax-done-to start) ; In case what follows fails
8840 (cperl-find-pods-heres start end t nil t))
8841 (if (memq cperl-syntaxify-by-font-lock '(backtrace message))
8842 (message "Syxify req=%s..%s actual=%s..%s done-to: %s=>%s statepos: %s=>%s"
8843 dbg iend start end idone cperl-syntax-done-to
8844 istate (car cperl-syntax-state))) ; For debugging
8845 nil)) ; Do not iterate
8846
8847 (defun cperl-fontify-update (end)
8848 (let ((pos (point-min)) prop posend)
8849 (setq end (point-max))
8850 (while (< pos end)
8851 (setq prop (get-text-property pos 'cperl-postpone)
8852 posend (next-single-property-change pos 'cperl-postpone nil end))
8853 (and prop (put-text-property pos posend (car prop) (cdr prop)))
8854 (setq pos posend)))
8855 nil) ; Do not iterate
8856
8857 (defun cperl-fontify-update-bad (end)
8858 ;; Since fontification happens with different region than syntaxification,
8859 ;; do to the end of buffer, not to END;;; likewise, start earlier if needed
8860 (let* ((pos (point)) (prop (get-text-property pos 'cperl-postpone)) posend)
8861 (if prop
8862 (setq pos (or (cperl-beginning-of-property
8863 (cperl-1+ pos) 'cperl-postpone)
8864 (point-min))))
8865 (while (< pos end)
8866 (setq posend (next-single-property-change pos 'cperl-postpone))
8867 (and prop (put-text-property pos posend (car prop) (cdr prop)))
8868 (setq pos posend)
8869 (setq prop (get-text-property pos 'cperl-postpone))))
8870 nil) ; Do not iterate
8871
8872 ;; Called when any modification is made to buffer text.
8873 (defun cperl-after-change-function (beg end old-len)
8874 ;; We should have been informed about changes by `font-lock'. Since it
8875 ;; does not inform as which calls are defered, do it ourselves
8876 (if cperl-syntax-done-to
8877 (setq cperl-syntax-done-to (min cperl-syntax-done-to beg))))
8878
8879 (defun cperl-update-syntaxification (from to)
8880 (if (and cperl-use-syntax-table-text-property
8881 cperl-syntaxify-by-font-lock
8882 (or (null cperl-syntax-done-to)
8883 (< cperl-syntax-done-to to)))
8884 (progn
8885 (save-excursion
8886 (goto-char from)
8887 (cperl-fontify-syntaxically to)))))
8888
8889 (defvar cperl-version
8890 (let ((v "Revision: 5.23"))
8891 (string-match ":\\s *\\([0-9.]+\\)" v)
8892 (substring v (match-beginning 1) (match-end 1)))
8893 "Version of IZ-supported CPerl package this file is based on.")
8894
8895 (provide 'cperl-mode)
8896
8897 ;; arch-tag: 42e5b19b-e187-4537-929f-1a7408980ce6
8898 ;;; cperl-mode.el ends here