-
Notifications
You must be signed in to change notification settings - Fork 0
/
cperl-mode.el
10647 lines (9953 loc) · 393 KB
/
cperl-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; cperl-mode.el --- Perl code editing commands for Emacs
;; Copyright (C) 1985, 86, 87, 91, 92, 93, 94, 95, 96, 97, 98, 99,
;; 2000, 2003, 2005, 2006
;; Free Software Foundation, Inc.
;; Author: Ilya Zakharevich and Bob Olson
;; Maintainer: Ilya Zakharevich <ilyaz@cpan.org>
;; Keywords: languages, Perl
;; This file is part of GNU Emacs.
;;; This code started from the following message of long time ago
;;; (IZ), but Bob does not maintain this mode any more:
;;; From: olson@mcs.anl.gov (Bob Olson)
;;; Newsgroups: comp.lang.perl
;;; Subject: cperl-mode: Another perl mode for Gnuemacs
;;; Date: 14 Aug 91 15:20:01 GMT
;; Copyright (C) Ilya Zakharevich and Bob Olson
;; This file may be distributed
;; either under the same terms as GNU Emacs, or under the same terms
;; as Perl. You should have received a copy of Perl Artistic license
;; along with the Perl distribution.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Corrections made by Ilya Zakharevich ilyaz@cpan.org
;;; XEmacs changes by Peter Arius arius@informatik.uni-erlangen.de
;;; XEmacs 'delete key behavior handling added for XEmacs 20.x by
;;; Gary D. Foster <Gary.Foster@corp.sun.com>
;;; Karl M. Hegbloom <karlheg@inetarena.com>
;;; Commentary:
;; $Id: cperl-mode.el,v 6.2 2008/04/14 23:14:52 vera Exp vera $
;;; If your Emacs does not default to `cperl-mode' on Perl files:
;;; To use this mode put the following into
;;; your .emacs file:
;; (autoload 'perl-mode "cperl-mode" "alternate mode for editing Perl programs" t)
;; You can either fine-tune the bells and whistles of this mode or
;; bulk enable them by putting
;; (setq cperl-hairy t)
;; in your .emacs file. (Emacs rulers do not consider it politically
;; correct to make whistles enabled by default.)
;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<<
;; or as help on variables `cperl-tips', `cperl-problems', <<<<<<
;; `cperl-non-problems', `cperl-praise', `cperl-speed'. <<<<<<
;;; Note also that there are "authoritative" version of this file <<<<<<
;;; (available on http://ilyaz.org/software/emacs/), and versions <<<<<<
;;; "customized" for a particular Emacs distribution by Emacs <<<<<<
;;; maintainers themselves. As expected, the "authoritative" <<<<<<
;;; version is known to be much less buggy. Usually the <<<<<<
;;; maintainers add a verbiage after numbers in `cperl-version'. <<<<<<
;; Additional useful commands to put into your .emacs file (before
;; RMS Emacs 20.3):
;; (setq auto-mode-alist
;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist ))
;; (setq interpreter-mode-alist (append interpreter-mode-alist
;; '(("miniperl" . perl-mode))))
;; The mode information (on C-h m) provides some customization help.
;; If you use font-lock feature of this mode, it is advisable to use
;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock.
;; Faces used now: three faces for first-class and second-class keywords
;; and control flow words, one for each: comments, string, labels,
;; functions definitions and packages, arrays, hashes, and variable
;; definitions. If you do not see all these faces, your font-lock does
;; not define them, so you need to define them manually.
;; Maybe you have an obsolete font-lock from 19.28 or earlier. Upgrade.
;; If you have a grayscale monitor, and do not have the variable
;; font-lock-display-type bound to 'grayscale, insert
;; (setq font-lock-display-type 'grayscale)
;; into your .emacs file (this is relevant before RMS Emacs 20).
;; This mode supports font-lock, imenu and mode-compile. In the
;; hairy version font-lock is on, but you should activate imenu
;; yourself (note that mode-compile is not standard yet). Well, you
;; can use imenu from keyboard anyway (M-x imenu), but it is better
;; to bind it like that:
;; (define-key global-map [M-S-down-mouse-3] 'imenu)
;;; Font lock bugs as of v4.32:
;; The following kinds of Perl code erroneously start strings:
;; \$` \$' \$"
;; $opt::s $opt_s $opt{s} (s => ...) /\s+.../
;; likewise with m, tr, y, q, qX instead of s
;;; In fact the version of font-lock that this version supports can be
;;; much newer than the version you actually have. This means that a
;;; lot of faces can be set up, but are not visible on your screen
;;; since the coloring rules for this faces are not defined.
;;; Updates: ========================================
;;; Made less hairy by default: parentheses not electric,
;;; linefeed not magic. Bug with abbrev-mode corrected.
;;;; After 1.4:
;;; Better indentation:
;;; subs inside braces should work now,
;;; Toplevel braces obey customization.
;;; indent-for-comment knows about bad cases, cperl-indent-for-comment
;;; moves cursor to a correct place.
;;; cperl-indent-exp written from the scratch! Slow... (quadratic!) :-(
;;; (50 secs on DB::DB (sub of 430 lines), 486/66)
;;; Minor documentation fixes.
;;; Imenu understands packages as prefixes (including nested).
;;; Hairy options can be switched off one-by-one by setting to null.
;;; Names of functions and variables changed to conform to `cperl-' style.
;;;; After 1.5:
;;; Some bugs with indentation of labels (and embedded subs) corrected.
;;; `cperl-indent-region' done (slow :-()).
;;; `cperl-fill-paragraph' done.
;;; Better package support for `imenu'.
;;; Progress indicator for indentation (with `imenu' loaded).
;;; `Cperl-set' was busted, now setting the individual hairy option
;;; should be better.
;;;; After 1.6:
;;; `cperl-set-style' done.
;;; `cperl-check-syntax' done.
;;; Menu done.
;;; New config variables `cperl-close-paren-offset' and `cperl-comment-column'.
;;; Bugs with `cperl-auto-newline' corrected.
;;; `cperl-electric-lbrace' can work with `cperl-auto-newline' in situation
;;; like $hash{.
;;;; 1.7 XEmacs (arius@informatik.uni-erlangen.de):
;;; - use `next-command-event', if `next-command-events' does not exist
;;; - use `find-face' as def. of `is-face'
;;; - corrected def. of `x-color-defined-p'
;;; - added const defs for font-lock-comment-face,
;;; font-lock-keyword-face and font-lock-function-name-face
;;; - added def. of font-lock-variable-name-face
;;; - added (require 'easymenu) inside an `eval-when-compile'
;;; - replaced 4-argument `substitute-key-definition' with ordinary
;;; `define-key's
;;; - replaced `mark-active' in menu definition by `cperl-use-region-p'.
;;; Todo (at least):
;;; - use emacs-vers.el (http://www.cs.utah.edu/~eeide/emacs/emacs-vers.el.gz)
;;; for portable code?
;;; - should `cperl-mode' do a
;;; (if (featurep 'easymenu) (easy-menu-add cperl-menu))
;;; or should this be left to the user's `cperl-mode-hook'?
;;; Some bugs introduced by the above fix corrected (IZ ;-).
;;; Some bugs under XEmacs introduced by the correction corrected.
;;; Some more can remain since there are two many different variants.
;;; Please feedback!
;;; We do not support fontification of arrays and hashes under
;;; obsolete font-lock any more. Upgrade.
;;;; after 1.8 Minor bug with parentheses.
;;;; after 1.9 Improvements from Joe Marzot.
;;;; after 1.10
;;; Does not need easymenu to compile under XEmacs.
;;; `vc-insert-headers' should work better.
;;; Should work with 19.29 and 19.12.
;;; Small improvements to fontification.
;;; Expansion of keywords does not depend on C-? being backspace.
;;; after 1.10+
;;; 19.29 and 19.12 supported.
;;; `cperl-font-lock-enhanced' deprecated. Use font-lock-extra.el.
;;; Support for font-lock-extra.el.
;;;; After 1.11:
;;; Tools submenu.
;;; Support for perl5-info.
;;; `imenu-go-find-at-position' in Tools requires imenu-go.el (see hints above)
;;; Imenu entries do not work with stock imenu.el. Patch sent to maintainers.
;;; Fontifies `require a if b;', __DATA__.
;;; Arglist for auto-fill-mode was incorrect.
;;;; After 1.12:
;;; `cperl-lineup-step' and `cperl-lineup' added: lineup constructions
;;; vertically.
;;; `cperl-do-auto-fill' updated for 19.29 style.
;;; `cperl-info-on-command' now has a default.
;;; Workaround for broken C-h on XEmacs.
;;; VC strings escaped.
;;; C-h f now may prompt for function name instead of going on,
;;; controlled by `cperl-info-on-command-no-prompt'.
;;;; After 1.13:
;;; Msb buffer list includes perl files
;;; Indent-for-comment uses indent-to
;;; Can write tag files using etags.
;;;; After 1.14:
;;; Recognizes (tries to ;-) {...} which are not blocks during indentation.
;;; `cperl-close-paren-offset' affects ?\] too (and ?\} if not block)
;;; Bug with auto-filling comments started with "##" corrected.
;;;; Very slow now: on DB::DB 0.91, 486/66:
;;;Function Name Call Count Elapsed Time Average Time
;;;======================================== ========== ============ ============
;;;cperl-block-p 469 3.7799999999 0.0080597014
;;;cperl-get-state 505 163.39000000 0.3235445544
;;;cperl-comment-indent 12 0.0299999999 0.0024999999
;;;cperl-backward-to-noncomment 939 4.4599999999 0.0047497337
;;;cperl-calculate-indent 505 172.22000000 0.3410297029
;;;cperl-indent-line 505 172.88000000 0.3423366336
;;;cperl-use-region-p 40 0.0299999999 0.0007499999
;;;cperl-indent-exp 1 177.97000000 177.97000000
;;;cperl-to-comment-or-eol 1453 3.9800000000 0.0027391603
;;;cperl-backward-to-start-of-continued-exp 9 0.0300000000 0.0033333333
;;;cperl-indent-region 1 177.94000000 177.94000000
;;;; After 1.15:
;;; Takes into account white space after opening parentheses during indent.
;;; May highlight pods and here-documents: see `cperl-pod-here-scan',
;;; `cperl-pod-here-fontify', `cperl-pod-face'. Does not use this info
;;; for indentation so far.
;;; Fontification updated to 19.30 style.
;;; The change 19.29->30 did not add all the required functionality,
;;; but broke "font-lock-extra.el". Get "choose-color.el" from
;;; http://ilyaz.org/software/emacs
;;;; After 1.16:
;;; else # comment
;;; recognized as a start of a block.
;;; Two different font-lock-levels provided.
;;; `cperl-pod-head-face' introduced. Used for highlighting.
;;; `imenu' marks pods, +Packages moved to the head.
;;;; After 1.17:
;;; Scan for pods highlights here-docs too.
;;; Note that the tag of here-doc may be rehighlighted later by lazy-lock.
;;; Only one here-doc-tag per line is supported, and one in comment
;;; or a string may break fontification.
;;; POD headers were supposed to fill one line only.
;;;; After 1.18:
;;; `font-lock-keywords' were set in 19.30 style _always_. Current scheme
;;; may break under XEmacs.
;;; `cperl-calculate-indent' dis suppose that `parse-start' was defined.
;;; `fontified' tag is added to fontified text as well as `lazy-lock' (for
;;; compatibility with older lazy-lock.el) (older one overfontifies
;;; something nevertheless :-().
;;; Will not indent something inside pod and here-documents.
;;; Fontifies the package name after import/no/bootstrap.
;;; Added new entry to menu with meta-info about the mode.
;;;; After 1.19:
;;; Prefontification works much better with 19.29. Should be checked
;;; with 19.30 as well.
;;; Some misprints in docs corrected.
;;; Now $a{-text} and -text => "blah" are fontified as strings too.
;;; Now the pod search is much stricter, so it can help you to find
;;; pod sections which are broken because of whitespace before =blah
;;; - just observe the fontification.
;;;; After 1.20
;;; Anonymous subs are indented with respect to the level of
;;; indentation of `sub' now.
;;; {} is recognized as hash after `bless' and `return'.
;;; Anonymous subs are split by `cperl-linefeed' as well.
;;; Electric parens embrace a region if present.
;;; To make `cperl-auto-newline' useful,
;;; `cperl-auto-newline-after-colon' is introduced.
;;; `cperl-electric-parens' is now t or nul. The old meaning is moved to
;;; `cperl-electric-parens-string'.
;;; `cperl-toggle-auto-newline' introduced, put on C-c C-a.
;;; `cperl-toggle-abbrev' introduced, put on C-c C-k.
;;; `cperl-toggle-electric' introduced, put on C-c C-e.
;;; Beginning-of-defun-regexp was not anchored.
;;;; After 1.21
;;; Auto-newline grants `cperl-extra-newline-before-brace' if "{" is typed
;;; after ")".
;;; {} is recognized as expression after `tr' and friends.
;;;; After 1.22
;;; Entry Hierarchy added to imenu. Very primitive so far.
;;; One needs newer `imenu-go'.el. A patch to `imenu' is needed as well.
;;; Writes its own TAGS files.
;;; Class viewer based on TAGS files. Does not trace @ISA so far.
;;; 19.31: Problems with scan for PODs corrected.
;;; First POD header correctly fontified.
;;; I needed (setq imenu-use-keymap-menu t) to get good imenu in 19.31.
;;; Apparently it makes a lot of hierarchy code obsolete...
;;;; After 1.23
;;; Tags filler now scans *.xs as well.
;;; The info from *.xs scan is used by the hierarchy viewer.
;;; Hierarchy viewer documented.
;;; Bug in 19.31 imenu documented.
;;;; After 1.24
;;; New location for info-files mentioned,
;;; Electric-; should work better.
;;; Minor bugs with POD marking.
;;;; After 1.25 (probably not...)
;;; `cperl-info-page' introduced.
;;; To make `uncomment-region' working, `comment-region' would
;;; not insert extra space.
;;; Here documents delimiters better recognized
;;; (empty one, and non-alphanums in quotes handled). May be wrong with 1<<14?
;;; `cperl-db' added, used in menu.
;;; imenu scan removes text-properties, for better debugging
;;; - but the bug is in 19.31 imenu.
;;; formats highlighted by font-lock and prescan, embedded comments
;;; are not treated.
;;; POD/friends scan merged in one pass.
;;; Syntax class is not used for analyzing the code, only char-syntax
;;; may be checked against _ or'ed with w.
;;; Syntax class of `:' changed to be _.
;;; `cperl-find-bad-style' added.
;;;; After 1.25
;;; When search for here-documents, we ignore commented << in simplest cases.
;;; `cperl-get-help' added, available on C-h v and from menu.
;;; Auto-help added. Default with `cperl-hairy', switchable on/off
;;; with startup variable `cperl-lazy-help-time' and from
;;; menu. Requires `run-with-idle-timer'.
;;; Highlighting of @abc{@efg} was wrong - interchanged two regexps.
;;;; After 1.27
;;; Indentation: At toplevel after a label - fixed.
;;; 1.27 was put to archives in binary mode ===> DOSish :-(
;;;; After 1.28
;;; Thanks to Martin Buchholz <mrb@Eng.Sun.COM>: misprints in
;;; comments and docstrings corrected, XEmacs support cleaned up.
;;; The closing parenths would enclose the region into matching
;;; parens under the same conditions as the opening ones.
;;; Minor updates to `cperl-short-docs'.
;;; Will not consider <<= as start of here-doc.
;;;; After 1.29
;;; Added an extra advice to look into Micro-docs. ;-).
;;; Enclosing of region when you press a closing parenth is regulated by
;;; `cperl-electric-parens-string'.
;;; Minor updates to `cperl-short-docs'.
;;; `initialize-new-tags-table' called only if present (Does this help
;;; with generation of tags under XEmacs?).
;;; When creating/updating tag files, new info is written at the old place,
;;; or at the end (is this a wanted behaviour? I need this in perl build directory).
;;;; After 1.30
;;; All the keywords from keywords.pl included (maybe with dummy explanation).
;;; No auto-help inside strings, comment, here-docs, formats, and pods.
;;; Shrinkwrapping of info, regulated by `cperl-max-help-size',
;;; `cperl-shrink-wrap-info-frame'.
;;; Info on variables as well.
;;; Recognision of HERE-DOCS improved yet more.
;;; Autonewline works on `}' without warnings.
;;; Autohelp works again on $_[0].
;;;; After 1.31
;;; perl-descr.el found its author - hi, Johan!
;;; Some support for correct indent after here-docs and friends (may
;;; be superseeded by eminent change to Emacs internals).
;;; Should work with older Emaxen as well ( `-style stuff removed).
;;;; After 1.32
;;; Started to add support for `syntax-table' property (should work
;;; with patched Emaxen), controlled by
;;; `cperl-use-syntax-table-text-property'. Currently recognized:
;;; All quote-like operators: m, s, y, tr, qq, qw, qx, q,
;;; // in most frequent context:
;;; after block or
;;; ~ { ( = | & + - * ! , ;
;;; or
;;; while if unless until and or not xor split grep map
;;; Here-documents, formats, PODs,
;;; ${...}
;;; 'abc$'
;;; sub a ($); sub a ($) {}
;;; (provide 'cperl-mode) was missing!
;;; `cperl-after-expr-p' is now much smarter after `}'.
;;; `cperl-praise' added to mini-docs.
;;; Utilities try to support subs-with-prototypes.
;;;; After 1.32.1
;;; `cperl-after-expr-p' is now much smarter after "() {}" and "word {}":
;;; if word is "else, map, grep".
;;; Updated for new values of syntax-table constants.
;;; Uses `help-char' (at last!) (disabled, does not work?!)
;;; A couple of regexps where missing _ in character classes.
;;; -s could be considered as start of regexp, 1../blah/ was not,
;;; as was not /blah/ at start of file.
;;;; After 1.32.2
;;; "\C-hv" was wrongly "\C-hf"
;;; C-hv was not working on `[index()]' because of [] in skip-chars-*.
;;; `__PACKAGE__' supported.
;;; Thanks for Greg Badros: `cperl-lazy-unstall' is more complete,
;;; `cperl-get-help' is made compatible with `query-replace'.
;;;; As of Apr 15, development version of 19.34 supports
;;;; `syntax-table' text properties. Try setting
;;;; `cperl-use-syntax-table-text-property'.
;;;; After 1.32.3
;;; We scan for s{}[] as well (in simplest situations).
;;; We scan for $blah'foo as well.
;;; The default is to use `syntax-table' text property if Emacs is good enough.
;;; `cperl-lineup' is put on C-M-| (=C-M-S-\\).
;;; Start of `cperl-beautify-regexp'.
;;;; After 1.32.4
;;; `cperl-tags-hier-init' did not work in text-mode.
;;; `cperl-noscan-files-regexp' had a misprint.
;;; Generation of Class Hierarchy was broken due to a bug in `x-popup-menu'
;;; in 19.34.
;;;; After 1.33:
;;; my,local highlight vars after {} too.
;;; TAGS could not be created before imenu was loaded.
;;; `cperl-indent-left-aligned-comments' created.
;;; Logic of `cperl-indent-exp' changed a little bit, should be more
;;; robust w.r.t. multiline strings.
;;; Recognition of blah'foo takes into account strings.
;;; Added '.al' to the list of Perl extensions.
;;; Class hierarchy is "mostly" sorted (need to rethink algorthm
;;; of pruning one-root-branch subtrees to get yet better sorting.)
;;; Regeneration of TAGS was busted.
;;; Can use `syntax-table' property when generating TAGS
;;; (governed by `cperl-use-syntax-table-text-property-for-tags').
;;;; After 1.35:
;;; Can process several =pod/=cut sections one after another.
;;; Knows of `extproc' when under `emx', indents with `__END__' and `__DATA__'.
;;; `cperl-under-as-char' implemented (XEmacs people like broken behaviour).
;;; Beautifier for regexps fixed.
;;; `cperl-beautify-level', `cperl-contract-level' coded
;;;
;;;; Emacs's 20.2 problems:
;;; `imenu.el' has bugs, `imenu-add-to-menubar' does not work.
;;; Couple of others problems with 20.2 were reported, my ability to check/fix
;;; them is very reduced now.
;;;; After 1.36:
;;; 'C-M-|' in XEmacs fixed
;;;; After 1.37:
;;; &&s was not recognized as start of regular expression;
;;; Will "preprocess" the contents of //e part of s///e too;
;;; What to do with s# blah # foo #e ?
;;; Should handle s;blah;foo;; better.
;;; Now the only known problems with regular expression recognition:
;;;;;;; s<foo>/bar/ - different delimiters (end ignored)
;;;;;;; s/foo/\\bar/ - backslash at start of subst (made into one chunk)
;;;;;;; s/foo// - empty subst (made into one chunk + '/')
;;;;;;; s/foo/(bar)/ - start-group at start of subst (internal group will not match backwards)
;;;; After 1.38:
;;; We highlight closing / of s/blah/foo/e;
;;; This handles s# blah # foo #e too;
;;; s//blah/, s///, s/blah// works again, and s#blah## too, the algorithm
;;; is much simpler now;
;;; Next round of changes: s\\\ works, s<blah>/foo/,
;;; comments between the first and the second part allowed
;;; Another problem discovered:
;;;;;;; s[foo] <blah>e - e part delimited by different <> (will not match)
;;; `cperl-find-pods-heres' somehow maybe called when string-face is undefined
;;; - put a stupid workaround for 20.1
;;;; After 1.39:
;;; Could indent here-docs for comments;
;;; These problems fixed:
;;;;;;; s/foo/\\bar/ - backslash at start of subst (made into two chunk)
;;;;;;; s[foo] <blah>e - "e" part delimited by "different" <> (will match)
;;; Matching brackets honor prefices, may expand abbreviations;
;;; When expanding abbrevs, will remove last char only after
;;; self-inserted whitespace;
;;; More convenient "Refress hard constructs" in menu;
;;; `cperl-add-tags-recurse', `cperl-add-tags-recurse-noxs'
;;; added (for -batch mode);
;;; Better handling of errors when scanning for Perl constructs;
;;;;;;; Possible "problem" with class hierarchy in Perl distribution
;;;;;;; directory: ./ext duplicates ./lib;
;;; Write relative paths for generated TAGS;
;;;; After 1.40:
;;; s /// may be separated by "\n\f" too;
;;; `s #blah' recognized as a comment;
;;; Would highlight s/abc//s wrong;
;;; Debugging code in `cperl-electric-keywords' was leaking a message;
;;;; After 1.41:
;;; RMS changes for 20.3 merged
;;;; 2.0.1.0: RMS mode (has 3 misprints)
;;;; After 2.0:
;;; RMS whitespace changes for 20.3 merged
;;;; After 2.1:
;;; History updated
;;;; After 2.2:
;;; Merge `c-style-alist' since `c-mode' is no more. (Somebody who
;;; uses the styles should check that they work OK!)
;;; All the variable warnings go away, some undef functions too.
;;;; After 2.3:
;;; Added `cperl-perldoc' (thanks to Anthony Foiani <afoiani@uswest.com>)
;;; Added `cperl-pod-to-manpage' (thanks to Nick Roberts <Nick.Roberts@src.bae.co.uk>)
;;; All the function warnings go away.
;;;; After 2.4:
;;; `Perl doc', `Regexp' submenus created (latter to allow short displays).
;;; `cperl-clobber-lisp-bindings' added.
;;; $a->y() is not y///.
;;; `cperl-after-block-p' was missing a `save-excursion' => wrong results.
;;; `cperl-val' was defined too late.
;;; `cperl-init-faces' was failing.
;;; Init faces when loading `ps-print'.
;;;; After 2.4:
;;; `cperl-toggle-autohelp' implemented.
;;; `while SPACE LESS' was buggy.
;;; `-text' in `[-text => 1]' was not highlighted.
;;; `cperl-after-block-p' was FALSE after `sub f {}'.
;;;; After 2.5:
;;; `foreachmy', `formy' expanded too.
;;; Expand `=pod-directive'.
;;; `cperl-linefeed' behaves reasonable in POD-directive lines.
;;; `cperl-electric-keyword' prints a message, governed by
;;; `cperl-message-electric-keyword'.
;;;; After 2.6:
;;; Typing `}' was not checking for being block or not.
;;; Beautifying levels in RE: Did not know about lookbehind;
;;; finding *which* level was not intuitive;
;;; `cperl-beautify-levels' added.
;;; Allow here-docs contain `=head1' and friends (at least for keywords).
;;;; After 2.7:
;;; Fix for broken `font-lock-unfontify-region-function'. Should
;;; preserve `syntax-table' properties even with `lazy-lock'.
;;;; After 2.8:
;;; Some more compile time warnings crept in.
;;; `cperl-indent-region-fix-else' implemented.
;;; `cperl-fix-line-spacing' implemented.
;;; `cperl-invert-if-unless' implemented (C-c C-t and in Menu).
;;; Upgraded hints to mention 20.2's goods/bads.
;;; Started to use `cperl-extra-newline-before-brace-multiline',
;;; `cperl-break-one-line-blocks-when-indent',
;;; `cperl-fix-hanging-brace-when-indent', `cperl-merge-trailing-else'.
;;;; After 2.9:
;;; Workaround for another `font-lock's `syntax-table' text-property bug.
;;; `zerop' could be applied to nil.
;;; At last, may work with `font-lock' without setting `cperl-font-lock'.
;;; (We expect that starting from 19.33, `font-lock' supports keywords
;;; being a function - what is a correct version?)
;;; Rename `cperl-indent-region-fix-else' to
;;; `cperl-indent-region-fix-constructs'.
;;; `cperl-fix-line-spacing' could be triggered inside strings, would not
;;; know what to do with BLOCKs of map/printf/etc.
;;; `cperl-merge-trailing-else' and `cperl-fix-line-spacing' handle
;;; `continue' too.
;;; Indentation after {BLOCK} knows about map/printf/etc.
;;; Finally: treat after-comma lines as continuation lines.
;;;; After 2.10:
;;; `continue' made electric.
;;; Electric `do' inserts `do/while'.
;;; Some extra compile-time warnings crept in.
;;; `font-lock' of 19.33 could not handle font-lock-keywords being a function
;;; returning a symbol.
;;;; After 2.11:
;;; Changes to make syntaxification to be autoredone via `font-lock'.
;;; Switched on by `cperl-syntaxify-by-font-lock', off by default so far.
;;;; After 2.12:
;;; Remove some commented out chunks.
;;; Styles are slightly updated (a lot of work is needed, especially
;;; with new `cperl-fix-line-spacing').
;;;; After 2.13:
;;; Old value of style is memorized when choosing a new style, may be
;;; restored from the same menu.
;;; Mode-documentation added to micro-docs.
;;; `cperl-praise' updated.
;;; `cperl-toggle-construct-fix' added on C-c C-w and menu.
;;; `auto-fill-mode' added on C-c C-f and menu.
;;; `PerlStyle' style added.
;;; Message for termination of scan corrected.
;;;; After 2.14:
;;; Did not work with -q
;;;; After 2.15:
;;; `cperl-speed' hints added.
;;; Minor style fixes.
;;;; After 2.15:
;;; Make backspace electric after expansion of `else/continue' too.
;;;; After 2.16:
;;; Starting to merge changes to RMS emacs version.
;;;; After 2.17:
;;; Merged custom stuff and darn `font-lock-constant-face'.
;;;; After 2.18:
;;; Bumped the version to 3.1
;;;; After 3.1:
;;; Fixed customization to honor cperl-hairy.
;;; Created customization groups. Sent to RMS to include into 2.3.
;;;; After 3.2:
;;; Interaction of `font-lock-hot-pass' and `cperl-syntaxify-by-font-lock'.
;;; (`cperl-after-block-and-statement-beg'):
;;; (`cperl-after-block-p'):
;;; (`cperl-after-expr-p'): It is BLOCK if we reach lim when backup sexp.
;;; (`cperl-indent-region'): Make a marker for END - text added/removed.
;;; (`cperl-style-alist', `cperl-styles-entries')
;;; Include `cperl-merge-trailing-else' where the value is clear.
;;;; After 3.3:
;;; (`cperl-tips'):
;;; (`cperl-problems'): Improvements to docs.
;;;; After 3.4:
;;; (`cperl-mode'): Make lazy syntaxification possible.
;;; (`cperl-find-pods-heres'): Safe a position in buffer where it is safe to
;;; restart syntaxification.
;;; (`cperl-syntaxify-by-font-lock'): Set to t, should be safe now.
;;;; After 3.5:
;;; (`cperl-syntaxify-by-font-lock'): Better default, customizes to
;;; `message' too.
;;;; After 3.6:
;;; (`cperl-find-pods-heres'): changed so that -d ?foo? is a RE.
;;; (`cperl-array-face'): changed name from `font-lock-emphasized-face'.
;;; (`cperl-hash-face'): changed name from `font-lock-other-emphasized-face'.
;;; Use `defface' to define these two extra faces.
;;;; After 3.7:
;;; Can use linear algorithm for indentation if Emacs supports it:
;;; indenting DB::DB (800+ lines) improved from 69 sec to 11 sec
;;; (73 vs 15 with imenu).
;;; (`cperl-emacs-can-parse'): New state.
;;; (`cperl-indent-line'): Corrected to use global state.
;;; (`cperl-calculate-indent'): Likewise.
;;; (`cperl-fix-line-spacing'): Likewise (not used yet).
;;;; After 3.8:
;;; (`cperl-choose-color'): Converted to a function (to be compilable in text-mode).
;;;; After 3.9:
;;; (`cperl-dark-background '): Disable without window-system.
;;;; After 3.10:
;;; Do `defface' only if window-system.
;;;; After 3.11:
;;; (`cperl-fix-line-spacing'): sped up to bail out early.
;;; (`cperl-indent-region'): Disable hooks during the call (how to call them later?).
;;; Now indents 820-line-long function in 6.5 sec (including syntaxification) the first time
;;; (when buffer has few properties), 7.1 sec the second time.
;;;Function Name Call Count Elapsed Time Average Time
;;;========================================= ========== ============ ============
;;;cperl-indent-exp 1 10.039999999 10.039999999
;;;cperl-indent-region 1 10.0 10.0
;;;cperl-indent-line 821 6.2100000000 0.0075639464
;;;cperl-calculate-indent 821 5.0199999999 0.0061144945
;;;cperl-backward-to-noncomment 2856 2.0500000000 0.0007177871
;;;cperl-fontify-syntaxically 2 1.78 0.8900000000
;;;cperl-find-pods-heres 2 1.78 0.8900000000
;;;cperl-update-syntaxification 1 1.78 1.78
;;;cperl-fix-line-spacing 769 1.4800000000 0.0019245773
;;;cperl-after-block-and-statement-beg 163 1.4100000000 0.0086503067
;;;cperl-block-p 775 1.1800000000 0.0015225806
;;;cperl-to-comment-or-eol 3652 1.1200000000 0.0003066812
;;;cperl-after-block-p 165 1.0500000000 0.0063636363
;;;cperl-commentify 141 0.22 0.0015602836
;;;cperl-get-state 813 0.16 0.0001968019
;;;cperl-backward-to-start-of-continued-exp 26 0.12 0.0046153846
;;;cperl-delay-update-hook 2107 0.0899999999 4.271...e-05
;;;cperl-protect-defun-start 141 0.0700000000 0.0004964539
;;;cperl-after-label 407 0.0599999999 0.0001474201
;;;cperl-forward-re 139 0.0299999999 0.0002158273
;;;cperl-comment-indent 26 0.0299999999 0.0011538461
;;;cperl-use-region-p 8 0.0 0.0
;;;cperl-lazy-hook 15 0.0 0.0
;;;cperl-after-expr-p 8 0.0 0.0
;;;cperl-font-lock-unfontify-region-function 1 0.0 0.0
;;;Function Name Call Count Elapsed Time Average Time
;;;========================================= ========== ============ ============
;;;cperl-fix-line-spacing 769 1.4500000000 0.0018855656
;;;cperl-indent-line 13 0.3100000000 0.0238461538
;;;cperl-after-block-and-statement-beg 69 0.2700000000 0.0039130434
;;;cperl-after-block-p 69 0.2099999999 0.0030434782
;;;cperl-calculate-indent 13 0.1000000000 0.0076923076
;;;cperl-backward-to-noncomment 177 0.0700000000 0.0003954802
;;;cperl-get-state 13 0.0 0.0
;;;cperl-to-comment-or-eol 179 0.0 0.0
;;;cperl-get-help-defer 1 0.0 0.0
;;;cperl-lazy-hook 11 0.0 0.0
;;;cperl-after-expr-p 2 0.0 0.0
;;;cperl-block-p 13 0.0 0.0
;;;cperl-after-label 5 0.0 0.0
;;;; After 3.12:
;;; (`cperl-find-pods-heres'): do not warn on `=cut' if doing a chunk only.
;;;; After 3.13:
;;; (`cperl-mode'): load pseudo-faces on `cperl-find-pods-heres' (for 19.30).
;;; (`x-color-defined-p'): was not compiling on XEmacs
;;; (`cperl-find-pods-heres'): 1 << 6 was OK, but 1<<6 was considered as HERE
;;; <file/glob> made into a string.
;;;; After 3.14:
;;; (`cperl-find-pods-heres'): Postpone addition of faces after syntactic step
;;; Recognition of <FH> was wrong.
;;; (`cperl-clobber-lisp-bindings'): if set, C-c variants are the old ones
;;; (`cperl-unwind-to-safe'): New function.
;;; (`cperl-fontify-syntaxically'): Use `cperl-unwind-to-safe' to start at reasonable position.
;;;; After 3.15:
;;; (`cperl-forward-re'): Highlight the trailing / in s/foo// as string.
;;; Highlight the starting // in s//foo/ as function-name.
;;;; After 3.16:
;;; (`cperl-find-pods-heres'): Highlight `gem' in s///gem as a keyword.
;;;; After 4.0:
;;; (`cperl-find-pods-heres'): `qr' added
;;; (`cperl-electric-keyword'): Likewise
;;; (`cperl-electric-else'): Likewise
;;; (`cperl-to-comment-or-eol'): Likewise
;;; (`cperl-make-regexp-x'): Likewise
;;; (`cperl-init-faces'): Likewise, and `lock' (as overridable?).
;;; (`cperl-find-pods-heres'): Knows that split// is null-RE.
;;; Highlights separators in 3-parts expressions
;;; as labels.
;;;; After 4.1:
;;; (`cperl-find-pods-heres'): <> was considered as a glob
;;; (`cperl-syntaxify-unwind'): New configuration variable
;;; (`cperl-fontify-m-as-s'): New configuration variable
;;;; After 4.2:
;;; (`cperl-find-pods-heres'): of the last line being `=head1' fixed.
;;; Handling of a long construct is still buggy if only the part of
;;; construct touches the updated region (we unwind to the start of
;;; long construct, but the end may have residual properties).
;;; (`cperl-unwind-to-safe'): would not go to beginning of buffer.
;;; (`cperl-electric-pod'): check for after-expr was performed
;;; inside of POD too.
;;;; After 4.3:
;;; (`cperl-backward-to-noncomment'): better treatment of PODs and HEREs.
;;; Indent-line works good, but indent-region does not - at toplevel...
;;; (`cperl-unwind-to-safe'): Signature changed.
;;; (`x-color-defined-p'): was defmacro'ed with a tick. Remove another def.
;;; (`cperl-clobber-mode-lists'): New configuration variable.
;;; (`cperl-array-face'): One of definitions was garbled.
;;;; After 4.4:
;;; (`cperl-not-bad-style-regexp'): Updated.
;;; (`cperl-make-regexp-x'): Misprint in a message.
;;; (`cperl-find-pods-heres'): $a-1 ? foo : bar; was a regexp.
;;; `<< (' was considered a start of POD.
;;; Init: `cperl-is-face' was busted.
;;; (`cperl-make-face'): New macros.
;;; (`cperl-force-face'): New macros.
;;; (`cperl-init-faces'): Corrected to use new macros;
;;; `if' for copying `reference-face' to
;;; `constant-face' was backward.
;;; (`font-lock-other-type-face'): Done via `defface' too.
;;;; After 4.5:
;;; (`cperl-init-faces-weak'): use `cperl-force-face'.
;;; (`cperl-after-block-p'): After END/BEGIN we are a block.
;;; (`cperl-mode'): `font-lock-unfontify-region-function'
;;; was set to a wrong function.
;;; (`cperl-comment-indent'): Commenting __END__ was not working.
;;; (`cperl-indent-for-comment'): Likewise.
;;; (Indenting is still misbehaving at toplevel.)
;;;; After 4.5:
;;; (`cperl-unwind-to-safe'): Signature changed, unwinds end too.
;;; (`cperl-find-pods-heres'): mark qq[]-etc sections as syntax-type=string
;;; (`cperl-fontify-syntaxically'): Unwinds start and end to go out of
;;; long strings (not very successful).
;;; >>>> CPerl should be usable in write mode too now <<<<
;;; (`cperl-syntaxify-by-font-lock'): Better default - off in text-mode.
;;; (`cperl-tips'): Updated docs.
;;; (`cperl-problems'): Updated docs.
;;;; After 4.6:
;;; (`cperl-calculate-indent'): Did not consider `,' as continuation mark for statements.
;;; (`cperl-write-tags'): Correct for XEmacs's `visit-tags-table-buffer'.
;;;; After 4.7:
;;; (`cperl-calculate-indent'): Avoid parse-data optimization at toplevel.
;;; Should indent correctly at toplevel too.
;;; (`cperl-tags-hier-init'): Gross hack to pretend we work (are we?).
;;; (`cperl-find-pods-heres'): Was not processing sub protos after a comment ine.
;;; Was treating $a++ <= 5 as a glob.
;;;; After 4.8:
;;; (toplevel): require custom unprotected => failure on 19.28.
;;; (`cperl-xemacs-p') defined when compile too
;;; (`cperl-tags-hier-init'): Another try to work around XEmacs problems
;;; Better progress messages.
;;; (`cperl-find-tags'): Was writing line/pos in a wrong order,
;;; pos off by 1 and not at beg-of-line.
;;; (`cperl-etags-snarf-tag'): New macro
;;; (`cperl-etags-goto-tag-location'): New macro
;;; (`cperl-write-tags'): When removing old TAGS info was not
;;; relativizing filename
;;;; After 4.9:
;;; (`cperl-version'): New variable. New menu entry
;;;; After 4.10:
;;; (`cperl-tips'): Updated.
;;; (`cperl-non-problems'): Updated.
;;; random: References to future 20.3 removed.
;;;; After 4.11:
;;; (`perl-font-lock-keywords'): Would not highlight `sub foo($$);'.
;;; Docstrings: Menu was described as `CPerl' instead of `Perl'
;;;; After 4.12:
;;; (`cperl-toggle-construct-fix'): Was toggling to t instead of 1.
;;; (`cperl-ps-print-init'): Associate `cperl-array-face', `cperl-hash-face'
;;; remove `font-lock-emphasized-face'.
;;; remove `font-lock-other-emphasized-face'.
;;; remove `font-lock-reference-face'.
;;; remove `font-lock-keyword-face'.
;;; Use `eval-after-load'.
;;; (`cperl-init-faces'): remove init `font-lock-other-emphasized-face'.
;;; remove init `font-lock-emphasized-face'.
;;; remove init `font-lock-keyword-face'.
;;; (`cperl-tips-faces'): New variable and an entry into Mini-docs.
;;; (`cperl-indent-region'): Do not indent whitespace lines
;;; (`cperl-indent-exp'): Was not processing else-blocks.
;;; (`cperl-calculate-indent'): Remove another parse-data optimization
;;; at toplevel: would indent correctly.
;;; (`cperl-get-state'): NOP line removed.
;;;; After 4.13:
;;; (`cperl-ps-print-init'): Remove not-CPerl-related faces.
;;; (`cperl-ps-print'): New function and menu entry.
;;; (`cperl-ps-print-face-properties'): New configuration variable.
;;; (`cperl-invalid-face'): New configuration variable.
;;; (`cperl-nonoverridable-face'): New face. Renamed from
;;; `font-lock-other-type-face'.
;;; (`perl-font-lock-keywords'): Highlight trailing whitespace
;;; (`cperl-contract-levels'): Documentation corrected.
;;; (`cperl-contract-level'): Likewise.
;;;; After 4.14:
;;; (`cperl-ps-print'): `ps-print-face-extension-alist' was not in old Emaxen,
;;; same with `ps-extend-face-list'
;;; (`cperl-ps-extend-face-list'): New macro.
;;;; After 4.15:
;;; (`cperl-init-faces'): Interpolate `cperl-invalid-face'.
;;; (`cperl-forward-re'): Emit a meaningful error instead of a cryptic
;;; one for uncomplete REx near end-of-buffer.
;;; (`cperl-find-pods-heres'): Tolerate unfinished REx at end-of-buffer.
;;;; After 4.16:
;;; (`cperl-find-pods-heres'): `unwind-protect' was left commented.
;;;; After 4.17:
;;; (`cperl-invalid-face'): Change to ''underline.
;;;; After 4.18:
;;; (`cperl-find-pods-heres'): / and ? after : start a REx.
;;; (`cperl-after-expr-p'): Skip labels when checking
;;; (`cperl-calculate-indent'): Correct for labels when calculating
;;; indentation of continuations.
;;; Docstring updated.
;;;; After 4.19:
;;; Minor (mostly spelling) corrections from 20.3.3 merged.
;;;; After 4.20:
;;; (`cperl-tips'): Another workaround added. Sent to RMS for 20.4.
;;;; After 4.21:
;;; (`cperl-praise'): Mention linear-time indent.
;;; (`cperl-find-pods-heres'): @if ? a : b was considered a REx.
;;;; After 4.22:
;;; (`cperl-after-expr-p'): Make true after __END__.
;;; (`cperl-electric-pod'): "SYNOPSIS" was misspelled.
;;;; After 4.23:
;;; (`cperl-beautify-regexp-piece'): Was not allowing for *? after a class.
;;; Allow for POSIX char-classes.
;;; Remove trailing whitespace when
;;; adding new linebreak.
;;; Add a level counter to stop shallow.
;;; Indents unprocessed groups rigidly.
;;; (`cperl-beautify-regexp'): Add an optional count argument to go that
;;; many levels deep.
;;; (`cperl-beautify-level'): Likewise
;;; Menu: Add new entries to Regexp menu to do one level
;;; (`cperl-contract-level'): Was entering an infinite loop
;;; (`cperl-find-pods-heres'): Typo (double quoting).
;;; Was detecting < $file > as FH instead of glob.
;;; Support for comments in RExen (except
;;; for m#\#comment#x), governed by
;;; `cperl-regexp-scan'.
;;; (`cperl-regexp-scan'): New customization variable.
;;; (`cperl-forward-re'): Improve logic of resetting syntax table.
;;;; After 4.23 and: After 4.24:
;;; (`cperl-contract-levels'): Restore position.
;;; (`cperl-beautify-level'): Likewise.
;;; (`cperl-beautify-regexp'): Likewise.
;;; (`cperl-commentify'): Rudimental support for length=1 runs
;;; (`cperl-find-pods-heres'): Process 1-char long REx comments too /a#/x
;;; Processes REx-comments in #-delimited RExen.
;;; MAJOR BUG CORRECTED: after a misparse
;;; a body of a subroutine could be corrupted!!!
;;; One might need to reeval the function body
;;; to fix things. (A similar bug was
;;; present in `cperl-indent-region' eons ago.)
;;; To reproduce:
;; (defun foo () (let ((a '(t))) (insert (format "%s" a)) (setcar a 'BUG) t))
;; (foo)
;; (foo)
;;; C-x C-e the above three lines (at end-of-line). First evaluation
;;; of `foo' inserts (t), second one inserts (BUG) ?!
;;;
;;; In CPerl it was triggered by inserting then deleting `/' at start of
;;; / a (?# asdf {[(}asdf )ef,/;
;;;; After 4.25:
;;; (`cperl-commentify'): Was recognizing length=2 "strings" as length=1.
;;; (`imenu-example--create-perl-index'):
;;; Was not enforcing syntaxification-to-the-end.
;;; (`cperl-invert-if-unless'): Allow `for', `foreach'.
;;; (`cperl-find-pods-heres'): Quote `cperl-nonoverridable-face'.
;;; Mark qw(), m()x as indentable.
;;; (`cperl-init-faces'): Highlight `sysopen' too.
;;; Highlight $var in `for my $var' too.
;;; (`cperl-invert-if-unless'): Was leaving whitespace at end.
;;; (`cperl-linefeed'): Was splitting $var{$foo} if point after `{'.
;;; (`cperl-calculate-indent'): Remove old commented out code.
;;; Support (primitive) indentation of qw(), m()x.
;;;; After 4.26: