Mercurial > emacs
annotate lisp/progmodes/cperl-mode.el @ 62927:bb23fe0bf1d3
(thumbs-mode): Fix misuse of make-variable-buffer-local.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 31 May 2005 13:27:27 +0000 |
parents | 25f639ed2b2d |
children | b870276d9ea5 5b029ff3b08d |
rev | line source |
---|---|
20323 | 1 ;;; cperl-mode.el --- Perl code editing commands for Emacs |
2 | |
60925
a9c571ede913
* progmodes/cperl-mode.el, progmodes/idlw-shell.el,
Werner LEMBERG <wl@gnu.org>
parents:
59242
diff
changeset
|
3 ;; Copyright (C) 1985,86,87,91,92,93,94,95,96,97,98,99,2000,03,2004,2005 |
20323 | 4 ;; Free Software Foundation, Inc. |
5 | |
6 ;; Author: Ilya Zakharevich and Bob Olson | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7 ;; Maintainer: Ilya Zakharevich <cperl@ilyaz.org> |
20323 | 8 ;; Keywords: languages, Perl |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
27 ;;; Corrections made by Ilya Zakharevich cperl@ilyaz.org |
20323 | 28 |
29 ;;; Commentary: | |
30 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
31 ;; You can either fine-tune the bells and whistles of this mode or |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
32 ;; bulk enable them by putting |
20323 | 33 |
34 ;; (setq cperl-hairy t) | |
35 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
36 ;; in your .emacs file. (Emacs rulers do not consider it politically |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
37 ;; correct to make whistles enabled by default.) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
38 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
39 ;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<< |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
40 ;; or as help on variables `cperl-tips', `cperl-problems', <<<<<< |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
41 ;; `cperl-praise', `cperl-speed'. <<<<<< |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
42 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
43 ;; The mode information (on C-h m) provides some customization help. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
44 ;; If you use font-lock feature of this mode, it is advisable to use |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
45 ;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
46 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
47 ;; Faces used now: three faces for first-class and second-class keywords |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
48 ;; and control flow words, one for each: comments, string, labels, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
49 ;; functions definitions and packages, arrays, hashes, and variable |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
50 ;; definitions. If you do not see all these faces, your font-lock does |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
51 ;; not define them, so you need to define them manually. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
52 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
53 ;; This mode supports font-lock, imenu and mode-compile. In the |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
54 ;; hairy version font-lock is on, but you should activate imenu |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
55 ;; yourself (note that mode-compile is not standard yet). Well, you |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
56 ;; can use imenu from keyboard anyway (M-x imenu), but it is better |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
57 ;; to bind it like that: |
20323 | 58 |
59 ;; (define-key global-map [M-S-down-mouse-3] 'imenu) | |
60 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
61 ;;; Font lock bugs as of v4.32: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
62 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
63 ;; The following kinds of Perl code erroneously start strings: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
64 ;; \$` \$' \$" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
65 ;; $opt::s $opt_s $opt{s} (s => ...) /\s+.../ |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
66 ;; likewise with m, tr, y, q, qX instead of s |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
67 |
20323 | 68 ;;; Code: |
69 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
70 ;; Some macros are needed for `defcustom' |
31821 | 71 (eval-when-compile |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
72 (condition-case nil |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
73 (require 'man) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
74 (error nil)) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
75 (defconst cperl-xemacs-p (string-match "XEmacs\\|Lucid" emacs-version)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
76 (defvar cperl-can-font-lock |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
77 (or cperl-xemacs-p |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
78 (and (boundp 'emacs-major-version) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
79 (or window-system |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
80 (> emacs-major-version 20))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
81 (if cperl-can-font-lock |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
82 (require 'font-lock)) |
31821 | 83 (defvar msb-menu-cond) |
84 (defvar gud-perldb-history) | |
85 (defvar font-lock-background-mode) ; not in Emacs | |
86 (defvar font-lock-display-type) ; ditto | |
87 (defmacro cperl-is-face (arg) ; Takes quoted arg | |
88 (cond ((fboundp 'find-face) | |
89 `(find-face ,arg)) | |
90 (;;(and (fboundp 'face-list) | |
91 ;; (face-list)) | |
92 (fboundp 'face-list) | |
93 `(member ,arg (and (fboundp 'face-list) | |
94 (face-list)))) | |
95 (t | |
96 `(boundp ,arg)))) | |
97 (defmacro cperl-make-face (arg descr) ; Takes unquoted arg | |
98 (cond ((fboundp 'make-face) | |
99 `(make-face (quote ,arg))) | |
100 (t | |
44446
9b08deb1030e
(cperl-make-face, cperl-force-face):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43943
diff
changeset
|
101 `(defvar ,arg (quote ,arg) ,descr)))) |
31821 | 102 (defmacro cperl-force-face (arg descr) ; Takes unquoted arg |
103 `(progn | |
104 (or (cperl-is-face (quote ,arg)) | |
105 (cperl-make-face ,arg ,descr)) | |
106 (or (boundp (quote ,arg)) ; We use unquoted variants too | |
44446
9b08deb1030e
(cperl-make-face, cperl-force-face):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43943
diff
changeset
|
107 (defvar ,arg (quote ,arg) ,descr)))) |
31821 | 108 (if cperl-xemacs-p |
109 (defmacro cperl-etags-snarf-tag (file line) | |
26455 | 110 `(progn |
31821 | 111 (beginning-of-line 2) |
112 (list ,file ,line))) | |
113 (defmacro cperl-etags-snarf-tag (file line) | |
114 `(etags-snarf-tag))) | |
115 (if cperl-xemacs-p | |
116 (defmacro cperl-etags-goto-tag-location (elt) | |
117 ;;(progn | |
118 ;; (switch-to-buffer (get-file-buffer (elt (, elt) 0))) | |
119 ;; (set-buffer (get-file-buffer (elt (, elt) 0))) | |
120 ;; Probably will not work due to some save-excursion??? | |
121 ;; Or save-file-position? | |
122 ;; (message "Did I get to line %s?" (elt (, elt) 1)) | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62085
diff
changeset
|
123 `(goto-line (string-to-number (elt ,elt 1)))) |
31821 | 124 ;;) |
125 (defmacro cperl-etags-goto-tag-location (elt) | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
126 `(etags-goto-tag-location ,elt)))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
127 |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
128 (defconst cperl-xemacs-p (string-match "XEmacs\\|Lucid" emacs-version)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
129 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
130 (defvar cperl-can-font-lock |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
131 (or cperl-xemacs-p |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
132 (and (boundp 'emacs-major-version) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
133 (or window-system |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
134 (> emacs-major-version 20))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
135 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
136 (defun cperl-choose-color (&rest list) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
137 (let (answer) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
138 (while list |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
139 (or answer |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
140 (if (or (x-color-defined-p (car list)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
141 (null (cdr list))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
142 (setq answer (car list)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
143 (setq list (cdr list))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
144 answer)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
145 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
146 (defgroup cperl nil |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
147 "Major mode for editing Perl code." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
148 :prefix "cperl-" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
149 :group 'languages |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
150 :version "20.3") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
151 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
152 (defgroup cperl-indentation-details nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
153 "Indentation." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
154 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
155 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
156 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
157 (defgroup cperl-affected-by-hairy nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
158 "Variables affected by `cperl-hairy'." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
159 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
160 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
161 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
162 (defgroup cperl-autoinsert-details nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
163 "Auto-insert tuneup." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
164 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
165 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
166 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
167 (defgroup cperl-faces nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
168 "Fontification colors." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
169 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
170 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
171 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
172 (defgroup cperl-speed nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
173 "Speed vs. validity tuneup." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
174 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
175 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
176 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
177 (defgroup cperl-help-system nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
178 "Help system tuneup." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
179 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
180 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
181 |
20323 | 182 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
183 (defcustom cperl-extra-newline-before-brace nil |
20323 | 184 "*Non-nil means that if, elsif, while, until, else, for, foreach |
185 and do constructs look like: | |
186 | |
187 if () | |
188 { | |
189 } | |
190 | |
191 instead of: | |
192 | |
193 if () { | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
194 }" |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
195 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
196 :group 'cperl-autoinsert-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
197 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
198 (defcustom cperl-extra-newline-before-brace-multiline |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
199 cperl-extra-newline-before-brace |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
200 "*Non-nil means the same as `cperl-extra-newline-before-brace', but |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
201 for constructs with multiline if/unless/while/until/for/foreach condition." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
202 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
203 :group 'cperl-autoinsert-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
204 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
205 (defcustom cperl-indent-level 2 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
206 "*Indentation of CPerl statements with respect to containing block." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
207 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
208 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
209 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
210 (defcustom cperl-lineup-step nil |
20323 | 211 "*`cperl-lineup' will always lineup at multiple of this number. |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
212 If nil, the value of `cperl-indent-level' will be used." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
213 :type '(choice (const nil) integer) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
214 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
215 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
216 (defcustom cperl-brace-imaginary-offset 0 |
20323 | 217 "*Imagined indentation of a Perl open brace that actually follows a statement. |
218 An open brace following other text is treated as if it were this far | |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
219 to the right of the start of its line." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
220 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
221 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
222 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
223 (defcustom cperl-brace-offset 0 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
224 "*Extra indentation for braces, compared with other text in same context." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
225 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
226 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
227 (defcustom cperl-label-offset -2 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
228 "*Offset of CPerl label lines relative to usual indentation." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
229 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
230 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
231 (defcustom cperl-min-label-indent 1 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
232 "*Minimal offset of CPerl label lines." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
233 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
234 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
235 (defcustom cperl-continued-statement-offset 2 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
236 "*Extra indent for lines not starting new statements." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
237 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
238 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
239 (defcustom cperl-continued-brace-offset 0 |
20323 | 240 "*Extra indent for substatements that start with open-braces. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
241 This is in addition to cperl-continued-statement-offset." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
242 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
243 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
244 (defcustom cperl-close-paren-offset -1 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
245 "*Extra indent for substatements that start with close-parenthesis." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
246 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
247 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
248 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
249 (defcustom cperl-auto-newline nil |
20323 | 250 "*Non-nil means automatically newline before and after braces, |
251 and after colons and semicolons, inserted in CPerl code. The following | |
252 \\[cperl-electric-backspace] will remove the inserted whitespace. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
253 Insertion after colons requires both this variable and |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
254 `cperl-auto-newline-after-colon' set." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
255 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
256 :group 'cperl-autoinsert-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
257 |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
258 (defcustom cperl-autoindent-on-semi nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
259 "*Non-nil means automatically indent after insertion of (semi)colon. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
260 Active if `cperl-auto-newline' is false." |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
261 :type 'boolean |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
262 :group 'cperl-autoinsert-details) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
263 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
264 (defcustom cperl-auto-newline-after-colon nil |
20323 | 265 "*Non-nil means automatically newline even after colons. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
266 Subject to `cperl-auto-newline' setting." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
267 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
268 :group 'cperl-autoinsert-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
269 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
270 (defcustom cperl-tab-always-indent t |
20323 | 271 "*Non-nil means TAB in CPerl mode should always reindent the current line, |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
272 regardless of where in the line point is when the TAB command is used." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
273 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
274 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
275 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
276 (defcustom cperl-font-lock nil |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
277 "*Non-nil (and non-null) means CPerl buffers will use `font-lock-mode'. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
278 Can be overwritten by `cperl-hairy' if nil." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
279 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
280 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
281 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
282 (defcustom cperl-electric-lbrace-space nil |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
283 "*Non-nil (and non-null) means { after $ should be preceded by ` '. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
284 Can be overwritten by `cperl-hairy' if nil." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
285 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
286 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
287 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
288 (defcustom cperl-electric-parens-string "({[]})<" |
20323 | 289 "*String of parentheses that should be electric in CPerl. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
290 Closing ones are electric only if the region is highlighted." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
291 :type 'string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
292 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
293 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
294 (defcustom cperl-electric-parens nil |
20323 | 295 "*Non-nil (and non-null) means parentheses should be electric in CPerl. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
296 Can be overwritten by `cperl-hairy' if nil." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
297 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
298 :group 'cperl-affected-by-hairy) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
299 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
300 (defvar zmacs-regions) ; Avoid warning |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
301 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
302 (defcustom cperl-electric-parens-mark |
20323 | 303 (and window-system |
304 (or (and (boundp 'transient-mark-mode) ; For Emacs | |
305 transient-mark-mode) | |
306 (and (boundp 'zmacs-regions) ; For XEmacs | |
307 zmacs-regions))) | |
308 "*Not-nil means that electric parens look for active mark. | |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
309 Default is yes if there is visual feedback on mark." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
310 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
311 :group 'cperl-autoinsert-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
312 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
313 (defcustom cperl-electric-linefeed nil |
20323 | 314 "*If true, LFD should be hairy in CPerl, otherwise C-c LFD is hairy. |
315 In any case these two mean plain and hairy linefeeds together. | |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
316 Can be overwritten by `cperl-hairy' if nil." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
317 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
318 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
319 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
320 (defcustom cperl-electric-keywords nil |
20323 | 321 "*Not-nil (and non-null) means keywords are electric in CPerl. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
322 Can be overwritten by `cperl-hairy' if nil." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
323 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
324 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
325 |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
326 (defcustom cperl-electric-backspace-untabify t |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
327 "*Not-nil means electric-backspace will untabify in CPerl." |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
328 :type 'boolean |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
329 :group 'cperl-autoinsert-details) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
330 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
331 (defcustom cperl-hairy nil |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
332 "*Not-nil means most of the bells and whistles are enabled in CPerl. |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
333 Affects: `cperl-font-lock', `cperl-electric-lbrace-space', |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
334 `cperl-electric-parens', `cperl-electric-linefeed', `cperl-electric-keywords', |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
335 `cperl-info-on-command-no-prompt', `cperl-clobber-lisp-bindings', |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
336 `cperl-lazy-help-time'." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
337 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
338 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
339 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
340 (defcustom cperl-comment-column 32 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
341 "*Column to put comments in CPerl (use \\[cperl-indent] to lineup with code)." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
342 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
343 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
344 |
62686
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
345 (defvar cperl-vc-header-alist nil) |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
346 (make-obsolete-variable |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
347 'cperl-vc-header-alist |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
348 "use cperl-vc-rcs-header or cperl-vc-sccs-header instead.") |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
349 |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
350 (defcustom cperl-vc-sccs-header '("($sccs) = ('%W\%' =~ /(\\d+(\\.\\d+)+)/) ;") |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
351 "*Special version of `vc-sccs-header' that is used in CPerl mode buffers." |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
352 :type '(repeat string) |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
353 :group 'cperl) |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
354 |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
355 (defcustom cperl-vc-rcs-header '("($rcs) = (' $Id\$ ' =~ /(\\d+(\\.\\d+)+)/) ;") |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
356 "*Special version of `vc-rcs-header' that is used in CPerl mode buffers." |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
357 :type '(repeat string) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
358 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
359 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
360 (defcustom cperl-clobber-mode-lists |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
361 (not |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
362 (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
363 (boundp 'interpreter-mode-alist) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
364 (assoc "miniperl" interpreter-mode-alist) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
365 (assoc "\\.\\([pP][Llm]\\|al\\)$" auto-mode-alist))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
366 "*Whether to install us into `interpreter-' and `extension' mode lists." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
367 :type 'boolean |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
368 :group 'cperl) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
369 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
370 (defcustom cperl-info-on-command-no-prompt nil |
20323 | 371 "*Not-nil (and non-null) means not to prompt on C-h f. |
372 The opposite behaviour is always available if prefixed with C-c. | |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
373 Can be overwritten by `cperl-hairy' if nil." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
374 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
375 :group 'cperl-affected-by-hairy) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
376 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
377 (defcustom cperl-clobber-lisp-bindings nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
378 "*Not-nil (and non-null) means not overwrite C-h f. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
379 The function is available on \\[cperl-info-on-command], \\[cperl-get-help]. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
380 Can be overwritten by `cperl-hairy' if nil." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
381 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
382 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
383 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
384 (defcustom cperl-lazy-help-time nil |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
385 "*Not-nil (and non-null) means to show lazy help after given idle time. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
386 Can be overwritten by `cperl-hairy' to be 5 sec if nil." |
23270
fe5ca8d66639
(cperl-lazy-help-time): Fix customize
Andreas Schwab <schwab@suse.de>
parents:
22409
diff
changeset
|
387 :type '(choice (const null) (const nil) integer) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
388 :group 'cperl-affected-by-hairy) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
389 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
390 (defcustom cperl-pod-face 'font-lock-comment-face |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
391 "*Face for POD highlighting." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
392 :type 'face |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
393 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
394 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
395 (defcustom cperl-pod-head-face 'font-lock-variable-name-face |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
396 "*Face for POD highlighting. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
397 Font for POD headers." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
398 :type 'face |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
399 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
400 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
401 (defcustom cperl-here-face 'font-lock-string-face |
31821 | 402 "*Face for here-docs highlighting." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
403 :type 'face |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
404 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
405 |
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
406 (defcustom cperl-invalid-face 'underline |
31821 | 407 "*Face for highlighting trailing whitespace." |
408 :type 'face | |
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
409 :version "21.1" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
410 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
411 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
412 (defcustom cperl-pod-here-fontify '(featurep 'font-lock) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
413 "*Not-nil after evaluation means to highlight POD and here-docs sections." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
414 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
415 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
416 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
417 (defcustom cperl-fontify-m-as-s t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
418 "*Not-nil means highlight 1arg regular expressions operators same as 2arg." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
419 :type 'boolean |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
420 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
421 |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
422 (defcustom cperl-highlight-variables-indiscriminately nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
423 "*Non-nil means perform additional highlighting on variables. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
424 Currently only changes how scalar variables are highlighted. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
425 Note that that variable is only read at initialization time for |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
426 the variable `cperl-font-lock-keywords-2', so changing it after you've |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
427 entered CPerl mode the first time will have no effect." |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
428 :type 'boolean |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
429 :group 'cperl) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
430 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
431 (defcustom cperl-pod-here-scan t |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
432 "*Not-nil means look for POD and here-docs sections during startup. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
433 You can always make lookup from menu or using \\[cperl-find-pods-heres]." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
434 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
435 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
436 |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
437 (defcustom cperl-regexp-scan t |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
438 "*Not-nil means make marking of regular expression more thorough. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
439 Effective only with `cperl-pod-here-scan'. Not implemented yet." |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
440 :type 'boolean |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
441 :group 'cperl-speed) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
442 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
443 (defcustom cperl-imenu-addback nil |
20323 | 444 "*Not-nil means add backreferences to generated `imenu's. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
445 May require patched `imenu' and `imenu-go'. Obsolete." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
446 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
447 :group 'cperl-help-system) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
448 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
449 (defcustom cperl-max-help-size 66 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
450 "*Non-nil means shrink-wrapping of info-buffer allowed up to these percents." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
451 :type '(choice integer (const nil)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
452 :group 'cperl-help-system) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
453 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
454 (defcustom cperl-shrink-wrap-info-frame t |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
455 "*Non-nil means shrink-wrapping of info-buffer-frame allowed." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
456 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
457 :group 'cperl-help-system) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
458 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
459 (defcustom cperl-info-page "perl" |
20323 | 460 "*Name of the info page containing perl docs. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
461 Older version of this page was called `perl5', newer `perl'." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
462 :type 'string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
463 :group 'cperl-help-system) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
464 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
465 (defcustom cperl-use-syntax-table-text-property |
20323 | 466 (boundp 'parse-sexp-lookup-properties) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
467 "*Non-nil means CPerl sets up and uses `syntax-table' text property." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
468 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
469 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
470 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
471 (defcustom cperl-use-syntax-table-text-property-for-tags |
20323 | 472 cperl-use-syntax-table-text-property |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
473 "*Non-nil means: set up and use `syntax-table' text property generating TAGS." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
474 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
475 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
476 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
477 (defcustom cperl-scan-files-regexp "\\.\\([pP][Llm]\\|xs\\)$" |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
478 "*Regexp to match files to scan when generating TAGS." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
479 :type 'regexp |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
480 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
481 |
47334
e3cfc5df817a
(cperl-noscan-files-regexp): In addition to RCS, exclude CVS directories.
Richard M. Stallman <rms@gnu.org>
parents:
46132
diff
changeset
|
482 (defcustom cperl-noscan-files-regexp |
e3cfc5df817a
(cperl-noscan-files-regexp): In addition to RCS, exclude CVS directories.
Richard M. Stallman <rms@gnu.org>
parents:
46132
diff
changeset
|
483 "/\\(\\.\\.?\\|SCCS\\|RCS\\|CVS\\|blib\\)$" |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
484 "*Regexp to match files/dirs to skip when generating TAGS." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
485 :type 'regexp |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
486 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
487 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
488 (defcustom cperl-regexp-indent-step nil |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
489 "*Indentation used when beautifying regexps. |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
490 If nil, the value of `cperl-indent-level' will be used." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
491 :type '(choice integer (const nil)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
492 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
493 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
494 (defcustom cperl-indent-left-aligned-comments t |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
495 "*Non-nil means that the comment starting in leftmost column should indent." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
496 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
497 :group 'cperl-indentation-details) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
498 |
26667
a11929b241ab
(cperl-under-as-char): Make nil the default value.
Richard M. Stallman <rms@gnu.org>
parents:
26455
diff
changeset
|
499 (defcustom cperl-under-as-char nil |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
500 "*Non-nil means that the _ (underline) should be treated as word char." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
501 :type 'boolean |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
502 :group 'cperl) |
20323 | 503 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
504 (defcustom cperl-extra-perl-args "" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
505 "*Extra arguments to use when starting Perl. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
506 Currently used with `cperl-check-syntax' only." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
507 :type 'string |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
508 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
509 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
510 (defcustom cperl-message-electric-keyword t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
511 "*Non-nil means that the `cperl-electric-keyword' prints a help message." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
512 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
513 :group 'cperl-help-system) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
514 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
515 (defcustom cperl-indent-region-fix-constructs 1 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
516 "*Amount of space to insert between `}' and `else' or `elsif' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
517 in `cperl-indent-region'. Set to nil to leave as is. Values other |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
518 than 1 and nil will probably not work." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
519 :type '(choice (const nil) (const 1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
520 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
521 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
522 (defcustom cperl-break-one-line-blocks-when-indent t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
523 "*Non-nil means that one-line if/unless/while/until/for/foreach BLOCKs |
46132
4d83b6d5d27a
(cperl-break-one-line-blocks-when-indent): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
46024
diff
changeset
|
524 need to be reformatted into multiline ones when indenting a region." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
525 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
526 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
527 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
528 (defcustom cperl-fix-hanging-brace-when-indent t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
529 "*Non-nil means that BLOCK-end `}' may be put on a separate line |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
530 when indenting a region. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
531 Braces followed by else/elsif/while/until are excepted." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
532 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
533 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
534 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
535 (defcustom cperl-merge-trailing-else t |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
536 "*Non-nil means that BLOCK-end `}' followed by else/elsif/continue |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
537 may be merged to be on the same line when indenting a region." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
538 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
539 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
540 |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
541 (defcustom cperl-indent-parens-as-block nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
542 "*Non-nil means that non-block ()-, {}- and []-groups are indented as blocks, |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
543 but for trailing \",\" inside the group, which won't increase indentation. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
544 One should tune up `cperl-close-paren-offset' as well." |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
545 :type 'boolean |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
546 :group 'cperl-indentation-details) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
547 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
548 (defcustom cperl-syntaxify-by-font-lock |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
549 (and cperl-can-font-lock |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
550 (boundp 'parse-sexp-lookup-properties)) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
551 "*Non-nil means that CPerl uses `font-lock's routines for syntaxification." |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
552 :type '(choice (const message) boolean) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
553 :group 'cperl-speed) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
554 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
555 (defcustom cperl-syntaxify-unwind |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
556 t |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
557 "*Non-nil means that CPerl unwinds to a start of a long construction |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
558 when syntaxifying a chunk of buffer." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
559 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
560 :group 'cperl-speed) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
561 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
562 (defcustom cperl-ps-print-face-properties |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
563 '((font-lock-keyword-face nil nil bold shadow) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
564 (font-lock-variable-name-face nil nil bold) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
565 (font-lock-function-name-face nil nil bold italic box) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
566 (font-lock-constant-face nil "LightGray" bold) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
567 (cperl-array-face nil "LightGray" bold underline) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
568 (cperl-hash-face nil "LightGray" bold italic underline) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
569 (font-lock-comment-face nil "LightGray" italic) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
570 (font-lock-string-face nil nil italic underline) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
571 (cperl-nonoverridable-face nil nil italic underline) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
572 (font-lock-type-face nil nil underline) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
573 (underline nil "LightGray" strikeout)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
574 "List given as an argument to `ps-extend-face-list' in `cperl-ps-print'." |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
575 :type '(repeat (cons symbol |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
576 (cons (choice (const nil) string) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
577 (cons (choice (const nil) string) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
578 (repeat symbol))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
579 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
580 |
49304
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
581 (defvar cperl-dark-background |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
582 (cperl-choose-color "navy" "os2blue" "darkgreen")) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
583 (defvar cperl-dark-foreground |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
584 (cperl-choose-color "orchid1" "orange")) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
585 |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
586 (defface cperl-nonoverridable-face |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
587 `((((class grayscale) (background light)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
588 (:background "Gray90" :slant italic :underline t)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
589 (((class grayscale) (background dark)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
590 (:foreground "Gray80" :slant italic :underline t :weight bold)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
591 (((class color) (background light)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
592 (:foreground "chartreuse3")) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
593 (((class color) (background dark)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
594 (:foreground ,cperl-dark-foreground)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
595 (t (:weight bold :underline t))) |
50788
2a3bf1afbe82
(cperl-nonoverridable-face): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50255
diff
changeset
|
596 "Font Lock mode face used non-overridable keywords and modifiers of regexps." |
49304
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
597 :group 'cperl-faces) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
598 |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
599 (defface cperl-array-face |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
600 `((((class grayscale) (background light)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
601 (:background "Gray90" :weight bold)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
602 (((class grayscale) (background dark)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
603 (:foreground "Gray80" :weight bold)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
604 (((class color) (background light)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
605 (:foreground "Blue" :background "lightyellow2" :weight bold)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
606 (((class color) (background dark)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
607 (:foreground "yellow" :background ,cperl-dark-background :weight bold)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
608 (t (:weight bold))) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
609 "Font Lock mode face used to highlight array names." |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
610 :group 'cperl-faces) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
611 |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
612 (defface cperl-hash-face |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
613 `((((class grayscale) (background light)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
614 (:background "Gray90" :weight bold :slant italic)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
615 (((class grayscale) (background dark)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
616 (:foreground "Gray80" :weight bold :slant italic)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
617 (((class color) (background light)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
618 (:foreground "Red" :background "lightyellow2" :weight bold :slant italic)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
619 (((class color) (background dark)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
620 (:foreground "Red" :background ,cperl-dark-background :weight bold :slant italic)) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
621 (t (:weight bold :slant italic))) |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
622 "Font Lock mode face used to highlight hash names." |
a9d24051c803
Don't make faces depend on window-system.
Juanma Barranquero <lekktu@gmail.com>
parents:
47334
diff
changeset
|
623 :group 'cperl-faces) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
624 |
20323 | 625 |
626 | |
627 ;;; Short extra-docs. | |
628 | |
629 (defvar cperl-tips 'please-ignore-this-line | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
630 "Get maybe newer version of this package from |
20323 | 631 ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs |
632 and/or | |
633 ftp://ftp.math.ohio-state.edu/pub/users/ilya/perl | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
634 Subdirectory `cperl-mode' may contain yet newer development releases and/or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
635 patches to related files. |
20323 | 636 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
637 For best results apply to an older Emacs the patches from |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
638 ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode/patches |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
639 \(this upgrades syntax-parsing abilities of Emacsen v19.34 and |
41351
d103d22e5b4f
(cperl-problems, cperl-tips, cperl-non-problems, cperl-praise): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
41309
diff
changeset
|
640 v20.2 up to the level of Emacs v20.3 - a must for a good Perl |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
641 mode.) As of beginning of 2003, XEmacs may provide a similar ability. |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
642 |
20323 | 643 Get support packages choose-color.el (or font-lock-extra.el before |
644 19.30), imenu-go.el from the same place. \(Look for other files there | |
645 too... ;-). Get a patch for imenu.el in 19.29. Note that for 19.30 and | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
646 later you should use choose-color.el *instead* of font-lock-extra.el |
20323 | 647 \(and you will not get smart highlighting in C :-(). |
648 | |
649 Note that to enable Compile choices in the menu you need to install | |
650 mode-compile.el. | |
651 | |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
652 If your Emacs does not default to `cperl-mode' on Perl files, and you |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
653 want it to: put the following into your .emacs file: |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
654 |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
655 (defalias 'perl-mode 'cperl-mode) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
656 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
657 Get perl5-info from |
20323 | 658 $CPAN/doc/manual/info/perl-info.tar.gz |
659 older version was on | |
660 http://www.metronet.com:70/9/perlinfo/perl5/manual/perl5-info.tar.gz | |
661 | |
662 If you use imenu-go, run imenu on perl5-info buffer (you can do it | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
663 from Perl menu). If many files are related, generate TAGS files from |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
664 Tools/Tags submenu in Perl menu. |
20323 | 665 |
666 If some class structure is too complicated, use Tools/Hierarchy-view | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
667 from Perl menu, or hierarchic view of imenu. The second one uses the |
20323 | 668 current buffer only, the first one requires generation of TAGS from |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
669 Perl/Tools/Tags menu beforehand. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
670 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
671 Run Perl/Tools/Insert-spaces-if-needed to fix your lazy typing. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
672 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
673 Switch auto-help on/off with Perl/Tools/Auto-help. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
674 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
675 Though with contemporary Emaxen CPerl mode should maintain the correct |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
676 parsing of Perl even when editing, sometimes it may be lost. Fix this by |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
677 |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
678 \\[normal-mode] |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
679 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
680 In cases of more severe confusion sometimes it is helpful to do |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
681 |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
682 \\[load-library] cperl-mode RET |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
683 \\[normal-mode] |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
684 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
685 Before reporting (non-)problems look in the problem section of online |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
686 micro-docs on what I know about CPerl problems.") |
20323 | 687 |
688 (defvar cperl-problems 'please-ignore-this-line | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
689 "Description of problems in CPerl mode. |
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
690 Some faces will not be shown on some versions of Emacs unless you |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
691 install choose-color.el, available from |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
692 ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs/ |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
693 |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
694 `fill-paragraph' on a comment may leave the point behind the |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
695 paragraph. Parsing of lines with several <<EOF is not implemented |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
696 yet. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
697 |
41351
d103d22e5b4f
(cperl-problems, cperl-tips, cperl-non-problems, cperl-praise): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
41309
diff
changeset
|
698 Emacs had a _very_ restricted syntax parsing engine until version |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
699 20.1. Most problems below are corrected starting from this version of |
41351
d103d22e5b4f
(cperl-problems, cperl-tips, cperl-non-problems, cperl-praise): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
41309
diff
changeset
|
700 Emacs, and all of them should be fixed in version 20.3. (Or apply |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
701 patches to Emacs 19.33/34 - see tips.) XEmacs was very backward in |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
702 this respect (until 2003). |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
703 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
704 Note that even with newer Emacsen in some very rare cases the details |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
705 of interaction of `font-lock' and syntaxification may be not cleaned |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
706 up yet. You may get slightly different colors basing on the order of |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
707 fontification and syntaxification. Say, the initial faces is correct, |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
708 but editing the buffer breaks this. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
709 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
710 Even with older Emacsen CPerl mode tries to corrects some Emacs |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
711 misunderstandings, however, for efficiency reasons the degree of |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
712 correction is different for different operations. The partially |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
713 corrected problems are: POD sections, here-documents, regexps. The |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
714 operations are: highlighting, indentation, electric keywords, electric |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
715 braces. |
20323 | 716 |
717 This may be confusing, since the regexp s#//#/#\; may be highlighted | |
718 as a comment, but it will be recognized as a regexp by the indentation | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
719 code. Or the opposite case, when a POD section is highlighted, but |
20323 | 720 may break the indentation of the following code (though indentation |
721 should work if the balance of delimiters is not broken by POD). | |
722 | |
723 The main trick (to make $ a \"backslash\") makes constructions like | |
724 ${aaa} look like unbalanced braces. The only trick I can think of is | |
60925
a9c571ede913
* progmodes/cperl-mode.el, progmodes/idlw-shell.el,
Werner LEMBERG <wl@gnu.org>
parents:
59242
diff
changeset
|
725 to insert it as $ {aaa} (valid in perl5, not in perl4). |
20323 | 726 |
727 Similar problems arise in regexps, when /(\\s|$)/ should be rewritten | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
728 as /($|\\s)/. Note that such a transposition is not always possible. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
729 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
730 The solution is to upgrade your Emacs or patch an older one. Note |
41351
d103d22e5b4f
(cperl-problems, cperl-tips, cperl-non-problems, cperl-praise): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
41309
diff
changeset
|
731 that Emacs 20.2 has some bugs related to `syntax-table' text |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
732 properties. Patches are available on the main CPerl download site, |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
733 and on CPAN. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
734 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
735 If these bugs cannot be fixed on your machine (say, you have an inferior |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
736 environment and cannot recompile), you may still disable all the fancy stuff |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
737 via `cperl-use-syntax-table-text-property'.") |
20323 | 738 |
739 (defvar cperl-praise 'please-ignore-this-line | |
41351
d103d22e5b4f
(cperl-problems, cperl-tips, cperl-non-problems, cperl-praise): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
41309
diff
changeset
|
740 "Advantages of CPerl mode. |
20323 | 741 |
742 0) It uses the newest `syntax-table' property ;-); | |
743 | |
744 1) It does 99% of Perl syntax correct (as opposed to 80-90% in Perl | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
745 mode - but the latter number may have improved too in last years) even |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
746 with old Emaxen which do not support `syntax-table' property. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
747 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
748 When using `syntax-table' property for syntax assist hints, it should |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
749 handle 99.995% of lines correct - or somesuch. It automatically |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
750 updates syntax assist hints when you edit your script. |
20323 | 751 |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
752 2) It is generally believed to be \"the most user-friendly Emacs |
20323 | 753 package\" whatever it may mean (I doubt that the people who say similar |
754 things tried _all_ the rest of Emacs ;-), but this was not a lonely | |
755 voice); | |
756 | |
757 3) Everything is customizable, one-by-one or in a big sweep; | |
758 | |
759 4) It has many easily-accessable \"tools\": | |
760 a) Can run program, check syntax, start debugger; | |
761 b) Can lineup vertically \"middles\" of rows, like `=' in | |
762 a = b; | |
763 cc = d; | |
764 c) Can insert spaces where this impoves readability (in one | |
765 interactive sweep over the buffer); | |
766 d) Has support for imenu, including: | |
767 1) Separate unordered list of \"interesting places\"; | |
768 2) Separate TOC of POD sections; | |
769 3) Separate list of packages; | |
770 4) Hierarchical view of methods in (sub)packages; | |
771 5) and functions (by the full name - with package); | |
772 e) Has an interface to INFO docs for Perl; The interface is | |
773 very flexible, including shrink-wrapping of | |
774 documentation buffer/frame; | |
775 f) Has a builtin list of one-line explanations for perl constructs. | |
776 g) Can show these explanations if you stay long enough at the | |
777 corresponding place (or on demand); | |
778 h) Has an enhanced fontification (using 3 or 4 additional faces | |
779 comparing to font-lock - basically, different | |
780 namespaces in Perl have different colors); | |
781 i) Can construct TAGS basing on its knowledge of Perl syntax, | |
782 the standard menu has 6 different way to generate | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
783 TAGS (if \"by directory\", .xs files - with C-language |
20323 | 784 bindings - are included in the scan); |
785 j) Can build a hierarchical view of classes (via imenu) basing | |
786 on generated TAGS file; | |
787 k) Has electric parentheses, electric newlines, uses Abbrev | |
788 for electric logical constructs | |
789 while () {} | |
790 with different styles of expansion (context sensitive | |
791 to be not so bothering). Electric parentheses behave | |
792 \"as they should\" in a presence of a visible region. | |
793 l) Changes msb.el \"on the fly\" to insert a group \"Perl files\"; | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
794 m) Can convert from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
795 if (A) { B } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
796 to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
797 B if A; |
20323 | 798 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
799 n) Highlights (by user-choice) either 3-delimiters constructs |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
800 (such as tr/a/b/), or regular expressions and `y/tr'; |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
801 o) Highlights trailing whitespace; |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
802 p) Is able to manipulate Perl Regular Expressions to ease |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
803 conversion to a more readable form. |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
804 |
20323 | 805 5) The indentation engine was very smart, but most of tricks may be |
806 not needed anymore with the support for `syntax-table' property. Has | |
807 progress indicator for indentation (with `imenu' loaded). | |
808 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
809 6) Indent-region improves inline-comments as well; also corrects |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
810 whitespace *inside* the conditional/loop constructs. |
20323 | 811 |
812 7) Fill-paragraph correctly handles multi-line comments; | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
813 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
814 8) Can switch to different indentation styles by one command, and restore |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
815 the settings present before the switch. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
816 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
817 9) When doing indentation of control constructs, may correct |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
818 line-breaks/spacing between elements of the construct. |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
819 |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
820 10) Uses a linear-time algorith for indentation of regions (on Emaxen with |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
821 capable syntax engines).") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
822 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
823 (defvar cperl-speed 'please-ignore-this-line |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
824 "This is an incomplete compendium of what is available in other parts |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
825 of CPerl documentation. (Please inform me if I skept anything.) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
826 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
827 There is a perception that CPerl is slower than alternatives. This part |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
828 of documentation is designed to overcome this misconception. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
829 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
830 *By default* CPerl tries to enable the most comfortable settings. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
831 From most points of view, correctly working package is infinitely more |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
832 comfortable than a non-correctly working one, thus by default CPerl |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
833 prefers correctness over speed. Below is the guide how to change |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
834 settings if your preferences are different. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
835 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
836 A) Speed of loading the file. When loading file, CPerl may perform a |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
837 scan which indicates places which cannot be parsed by primitive Emacs |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
838 syntax-parsing routines, and marks them up so that either |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
839 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
840 A1) CPerl may work around these deficiencies (for big chunks, mostly |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
841 PODs and HERE-documents), or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
842 A2) On capable Emaxen CPerl will use improved syntax-handlings |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
843 which reads mark-up hints directly. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
844 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
845 The scan in case A2 is much more comprehensive, thus may be slower. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
846 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
847 User can disable syntax-engine-helping scan of A2 by setting |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
848 `cperl-use-syntax-table-text-property' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
849 variable to nil (if it is set to t). |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
850 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
851 One can disable the scan altogether (both A1 and A2) by setting |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
852 `cperl-pod-here-scan' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
853 to nil. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
854 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
855 B) Speed of editing operations. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
856 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
857 One can add a (minor) speedup to editing operations by setting |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
858 `cperl-use-syntax-table-text-property' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
859 variable to nil (if it is set to t). This will disable |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
860 syntax-engine-helping scan, thus will make many more Perl |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
861 constructs be wrongly recognized by CPerl, thus may lead to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
862 wrongly matched parentheses, wrong indentation, etc. |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
863 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
864 One can unset `cperl-syntaxify-unwind'. This might speed up editing |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
865 of, say, long POD sections.") |
20323 | 866 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
867 (defvar cperl-tips-faces 'please-ignore-this-line |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
868 "CPerl mode uses following faces for highlighting: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
869 |
32422 | 870 `cperl-array-face' Array names |
871 `cperl-hash-face' Hash names | |
872 `font-lock-comment-face' Comments, PODs and whatever is considered | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
873 syntaxically to be not code |
32422 | 874 `font-lock-constant-face' HERE-doc delimiters, labels, delimiters of |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
875 2-arg operators s/y/tr/ or of RExen, |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
876 `font-lock-function-name-face' Special-cased m// and s//foo/, _ as |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
877 a target of a file tests, file tests, |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
878 subroutine names at the moment of definition |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
879 (except those conflicting with Perl operators), |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
880 package names (when recognized), format names |
32422 | 881 `font-lock-keyword-face' Control flow switch constructs, declarators |
882 `cperl-nonoverridable-face' Non-overridable keywords, modifiers of RExen | |
883 `font-lock-string-face' Strings, qw() constructs, RExen, POD sections, | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
884 literal parts and the terminator of formats |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
885 and whatever is syntaxically considered |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
886 as string literals |
32422 | 887 `font-lock-type-face' Overridable keywords |
888 `font-lock-variable-name-face' Variable declarations, indirect array and | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
889 hash names, POD headers/item names |
32422 | 890 `cperl-invalid-face' Trailing whitespace |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
891 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
892 Note that in several situations the highlighting tries to inform about |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
893 possible confusion, such as different colors for function names in |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
894 declarations depending on what they (do not) override, or special cases |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
895 m// and s/// which do not do what one would expect them to do. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
896 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
897 Help with best setup of these faces for printout requested (for each of |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
898 the faces: please specify bold, italic, underline, shadow and box.) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
899 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
900 \(Not finished.)") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
901 |
20323 | 902 |
903 | |
904 ;;; Portability stuff: | |
905 | |
906 (defmacro cperl-define-key (emacs-key definition &optional xemacs-key) | |
26455 | 907 `(define-key cperl-mode-map |
908 ,(if xemacs-key | |
909 `(if cperl-xemacs-p ,xemacs-key ,emacs-key) | |
910 emacs-key) | |
911 ,definition)) | |
20323 | 912 |
913 (defvar cperl-del-back-ch | |
914 (car (append (where-is-internal 'delete-backward-char) | |
915 (where-is-internal 'backward-delete-char-untabify))) | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
916 "Character generated by key bound to `delete-backward-char'.") |
20323 | 917 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
918 (and (vectorp cperl-del-back-ch) (= (length cperl-del-back-ch) 1) |
20323 | 919 (setq cperl-del-back-ch (aref cperl-del-back-ch 0))) |
920 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
921 (defun cperl-mark-active () (mark)) ; Avoid undefined warning |
20323 | 922 (if cperl-xemacs-p |
923 (progn | |
924 ;; "Active regions" are on: use region only if active | |
925 ;; "Active regions" are off: use region unconditionally | |
926 (defun cperl-use-region-p () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
927 (if zmacs-regions (mark) t))) |
20323 | 928 (defun cperl-use-region-p () |
929 (if transient-mark-mode mark-active t)) | |
930 (defun cperl-mark-active () mark-active)) | |
931 | |
932 (defsubst cperl-enable-font-lock () | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
933 cperl-can-font-lock) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
934 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
935 (defun cperl-putback-char (c) ; Emacs 19 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
936 (set 'unread-command-events (list c))) ; Avoid undefined warning |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
937 |
55049
20627b978043
(cperl-putback-char): Delete Emacs 18 definition.
Richard M. Stallman <rms@gnu.org>
parents:
54556
diff
changeset
|
938 (if cperl-xemacs-p |
20627b978043
(cperl-putback-char): Delete Emacs 18 definition.
Richard M. Stallman <rms@gnu.org>
parents:
54556
diff
changeset
|
939 (defun cperl-putback-char (c) ; XEmacs >= 19.12 |
20627b978043
(cperl-putback-char): Delete Emacs 18 definition.
Richard M. Stallman <rms@gnu.org>
parents:
54556
diff
changeset
|
940 (setq unread-command-events (list (eval '(character-to-event c)))))) |
20323 | 941 |
942 (or (fboundp 'uncomment-region) | |
943 (defun uncomment-region (beg end) | |
944 (interactive "r") | |
945 (comment-region beg end -1))) | |
946 | |
947 (defvar cperl-do-not-fontify | |
948 (if (string< emacs-version "19.30") | |
949 'fontified | |
950 'lazy-lock) | |
951 "Text property which inhibits refontification.") | |
952 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
953 (defsubst cperl-put-do-not-fontify (from to &optional post) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
954 ;; If POST, do not do it with postponed fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
955 (if (and post cperl-syntaxify-by-font-lock) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
956 nil |
20323 | 957 (put-text-property (max (point-min) (1- from)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
958 to cperl-do-not-fontify t))) |
20323 | 959 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
960 (defcustom cperl-mode-hook nil |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
961 "Hook run by CPerl mode." |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
962 :type 'hook |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
963 :group 'cperl) |
20323 | 964 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
965 (defvar cperl-syntax-state nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
966 (defvar cperl-syntax-done-to nil) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
967 (defvar cperl-emacs-can-parse (> (length (save-excursion |
44446
9b08deb1030e
(cperl-make-face, cperl-force-face):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43943
diff
changeset
|
968 (parse-partial-sexp (point) (point)))) 9)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
969 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
970 ;; Make customization possible "in reverse" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
971 (defsubst cperl-val (symbol &optional default hairy) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
972 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
973 ((eq (symbol-value symbol) 'null) default) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
974 (cperl-hairy (or hairy t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
975 (t (symbol-value symbol)))) |
20323 | 976 |
977 ;;; Probably it is too late to set these guys already, but it can help later: | |
978 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
979 ;;;(and cperl-clobber-mode-lists |
20323 | 980 ;;;(setq auto-mode-alist |
981 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist )) | |
982 ;;;(and (boundp 'interpreter-mode-alist) | |
983 ;;; (setq interpreter-mode-alist (append interpreter-mode-alist | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
984 ;;; '(("miniperl" . perl-mode)))))) |
31821 | 985 (eval-when-compile |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
986 (mapcar (lambda (p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
987 (condition-case nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
988 (require p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
989 (error nil))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
990 '(imenu easymenu etags timer man info)) |
31821 | 991 (if (fboundp 'ps-extend-face-list) |
992 (defmacro cperl-ps-extend-face-list (arg) | |
993 `(ps-extend-face-list ,arg)) | |
994 (defmacro cperl-ps-extend-face-list (arg) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37569
diff
changeset
|
995 `(error "This version of Emacs has no `ps-extend-face-list'"))) |
31821 | 996 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs, |
997 ;; macros instead of defsubsts don't work on Emacs, so we do the | |
998 ;; expansion manually. Any other suggestions? | |
999 (require 'cl)) | |
20323 | 1000 |
1001 (defvar cperl-mode-abbrev-table nil | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
1002 "Abbrev table in use in CPerl mode buffers.") |
20323 | 1003 |
1004 (add-hook 'edit-var-mode-alist '(perl-mode (regexp . "^cperl-"))) | |
1005 | |
1006 (defvar cperl-mode-map () "Keymap used in CPerl mode.") | |
1007 | |
1008 (if cperl-mode-map nil | |
1009 (setq cperl-mode-map (make-sparse-keymap)) | |
1010 (cperl-define-key "{" 'cperl-electric-lbrace) | |
1011 (cperl-define-key "[" 'cperl-electric-paren) | |
1012 (cperl-define-key "(" 'cperl-electric-paren) | |
1013 (cperl-define-key "<" 'cperl-electric-paren) | |
1014 (cperl-define-key "}" 'cperl-electric-brace) | |
1015 (cperl-define-key "]" 'cperl-electric-rparen) | |
1016 (cperl-define-key ")" 'cperl-electric-rparen) | |
1017 (cperl-define-key ";" 'cperl-electric-semi) | |
1018 (cperl-define-key ":" 'cperl-electric-terminator) | |
1019 (cperl-define-key "\C-j" 'newline-and-indent) | |
1020 (cperl-define-key "\C-c\C-j" 'cperl-linefeed) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1021 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless) |
20323 | 1022 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline) |
1023 (cperl-define-key "\C-c\C-k" 'cperl-toggle-abbrev) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1024 (cperl-define-key "\C-c\C-w" 'cperl-toggle-construct-fix) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1025 (cperl-define-key "\C-c\C-f" 'auto-fill-mode) |
20323 | 1026 (cperl-define-key "\C-c\C-e" 'cperl-toggle-electric) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1027 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp) |
20323 | 1028 (cperl-define-key "\e\C-q" 'cperl-indent-exp) ; Usually not bound |
1029 (cperl-define-key [?\C-\M-\|] 'cperl-lineup | |
1030 [(control meta |)]) | |
1031 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
1032 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment) | |
1033 (cperl-define-key "\177" 'cperl-electric-backspace) | |
1034 (cperl-define-key "\t" 'cperl-indent-command) | |
1035 ;; don't clobber the backspace binding: | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1036 (cperl-define-key "\C-c\C-hF" 'cperl-info-on-command |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1037 [(control c) (control h) F]) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1038 (if (cperl-val 'cperl-clobber-lisp-bindings) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1039 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1040 (cperl-define-key "\C-hf" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1041 ;;(concat (char-to-string help-char) "f") ; does not work |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1042 'cperl-info-on-command |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1043 [(control h) f]) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1044 (cperl-define-key "\C-hv" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1045 ;;(concat (char-to-string help-char) "v") ; does not work |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1046 'cperl-get-help |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1047 [(control h) v]) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1048 (cperl-define-key "\C-c\C-hf" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1049 ;;(concat (char-to-string help-char) "f") ; does not work |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1050 (key-binding "\C-hf") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1051 [(control c) (control h) f]) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1052 (cperl-define-key "\C-c\C-hv" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1053 ;;(concat (char-to-string help-char) "v") ; does not work |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1054 (key-binding "\C-hv") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1055 [(control c) (control h) v])) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1056 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-current-command |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1057 [(control c) (control h) f]) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1058 (cperl-define-key "\C-c\C-hv" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1059 ;;(concat (char-to-string help-char) "v") ; does not work |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1060 'cperl-get-help |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1061 [(control c) (control h) v])) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1062 (if (and cperl-xemacs-p |
20323 | 1063 (<= emacs-minor-version 11) (<= emacs-major-version 19)) |
1064 (progn | |
1065 ;; substitute-key-definition is usefulness-deenhanced... | |
1066 (cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
1067 (cperl-define-key "\e;" 'cperl-indent-for-comment) | |
1068 (cperl-define-key "\e\C-\\" 'cperl-indent-region)) | |
1069 (substitute-key-definition | |
1070 'indent-sexp 'cperl-indent-exp | |
1071 cperl-mode-map global-map) | |
1072 (substitute-key-definition | |
1073 'indent-region 'cperl-indent-region | |
1074 cperl-mode-map global-map) | |
1075 (substitute-key-definition | |
1076 'indent-for-comment 'cperl-indent-for-comment | |
1077 cperl-mode-map global-map))) | |
1078 | |
1079 (defvar cperl-menu) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1080 (defvar cperl-lazy-installed) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1081 (defvar cperl-old-style nil) |
20323 | 1082 (condition-case nil |
1083 (progn | |
1084 (require 'easymenu) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1085 (easy-menu-define |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1086 cperl-menu cperl-mode-map "Menu for CPerl mode" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1087 '("Perl" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1088 ["Beginning of function" beginning-of-defun t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1089 ["End of function" end-of-defun t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1090 ["Mark function" mark-defun t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1091 ["Indent expression" cperl-indent-exp t] |
53779
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1092 ["Fill paragraph/comment" fill-paragraph t] |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1093 "----" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1094 ["Line up a construction" cperl-lineup (cperl-use-region-p)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1095 ["Invert if/unless/while etc" cperl-invert-if-unless t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1096 ("Regexp" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1097 ["Beautify" cperl-beautify-regexp |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1098 cperl-use-syntax-table-text-property] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1099 ["Beautify one level deep" (cperl-beautify-regexp 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1100 cperl-use-syntax-table-text-property] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1101 ["Beautify a group" cperl-beautify-level |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1102 cperl-use-syntax-table-text-property] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1103 ["Beautify a group one level deep" (cperl-beautify-level 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1104 cperl-use-syntax-table-text-property] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1105 ["Contract a group" cperl-contract-level |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1106 cperl-use-syntax-table-text-property] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1107 ["Contract groups" cperl-contract-levels |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1108 cperl-use-syntax-table-text-property]) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1109 ["Refresh \"hard\" constructions" cperl-find-pods-heres t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1110 "----" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1111 ["Indent region" cperl-indent-region (cperl-use-region-p)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1112 ["Comment region" cperl-comment-region (cperl-use-region-p)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1113 ["Uncomment region" cperl-uncomment-region (cperl-use-region-p)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1114 "----" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1115 ["Run" mode-compile (fboundp 'mode-compile)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1116 ["Kill" mode-compile-kill (and (fboundp 'mode-compile-kill) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1117 (get-buffer "*compilation*"))] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1118 ["Next error" next-error (get-buffer "*compilation*")] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1119 ["Check syntax" cperl-check-syntax (fboundp 'mode-compile)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1120 "----" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1121 ["Debugger" cperl-db t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1122 "----" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1123 ("Tools" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1124 ["Imenu" imenu (fboundp 'imenu)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1125 ["Insert spaces if needed" cperl-find-bad-style t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1126 ["Class Hierarchy from TAGS" cperl-tags-hier-init t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1127 ;;["Update classes" (cperl-tags-hier-init t) tags-table-list] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1128 ["CPerl pretty print (exprmntl)" cperl-ps-print |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1129 (fboundp 'ps-extend-face-list)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1130 ["Imenu on info" cperl-imenu-on-info (featurep 'imenu)] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1131 ("Tags" |
20323 | 1132 ;;; ["Create tags for current file" cperl-etags t] |
1133 ;;; ["Add tags for current file" (cperl-etags t) t] | |
1134 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t] | |
1135 ;;; ["Add tags for Perl files in directory" (cperl-etags t t) t] | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1136 ;;; ["Create tags for Perl files in (sub)directories" |
20323 | 1137 ;;; (cperl-etags nil 'recursive) t] |
1138 ;;; ["Add tags for Perl files in (sub)directories" | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1139 ;;; (cperl-etags t 'recursive) t]) |
20323 | 1140 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1141 ["Create tags for current file" (cperl-write-tags nil t) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1142 ["Add tags for current file" (cperl-write-tags) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1143 ["Create tags for Perl files in directory" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1144 (cperl-write-tags nil t nil t) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1145 ["Add tags for Perl files in directory" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1146 (cperl-write-tags nil nil nil t) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1147 ["Create tags for Perl files in (sub)directories" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1148 (cperl-write-tags nil t t t) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1149 ["Add tags for Perl files in (sub)directories" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1150 (cperl-write-tags nil nil t t) t])) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1151 ("Perl docs" |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
1152 ["Define word at point" imenu-go-find-at-position |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1153 (fboundp 'imenu-go-find-at-position)] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1154 ["Help on function" cperl-info-on-command t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1155 ["Help on function at point" cperl-info-on-current-command t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1156 ["Help on symbol at point" cperl-get-help t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1157 ["Perldoc" cperl-perldoc t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1158 ["Perldoc on word at point" cperl-perldoc-at-point t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1159 ["View manpage of POD in this file" cperl-build-manpage t] |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
1160 ["Auto-help on" cperl-lazy-install |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1161 (and (fboundp 'run-with-idle-timer) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1162 (not cperl-lazy-installed))] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1163 ["Auto-help off" cperl-lazy-unstall |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1164 (and (fboundp 'run-with-idle-timer) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1165 cperl-lazy-installed)]) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1166 ("Toggle..." |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1167 ["Auto newline" cperl-toggle-auto-newline t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1168 ["Electric parens" cperl-toggle-electric t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1169 ["Electric keywords" cperl-toggle-abbrev t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1170 ["Fix whitespace on indent" cperl-toggle-construct-fix t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1171 ["Auto-help on Perl constructs" cperl-toggle-autohelp t] |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
1172 ["Auto fill" auto-fill-mode t]) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1173 ("Indent styles..." |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1174 ["CPerl" (cperl-set-style "CPerl") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1175 ["PerlStyle" (cperl-set-style "PerlStyle") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1176 ["GNU" (cperl-set-style "GNU") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1177 ["C++" (cperl-set-style "C++") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1178 ["FSF" (cperl-set-style "FSF") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1179 ["BSD" (cperl-set-style "BSD") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1180 ["Whitesmith" (cperl-set-style "Whitesmith") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1181 ["Current" (cperl-set-style "Current") t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1182 ["Memorized" (cperl-set-style-back) cperl-old-style]) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1183 ("Micro-docs" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1184 ["Tips" (describe-variable 'cperl-tips) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1185 ["Problems" (describe-variable 'cperl-problems) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1186 ["Speed" (describe-variable 'cperl-speed) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1187 ["Praise" (describe-variable 'cperl-praise) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1188 ["Faces" (describe-variable 'cperl-tips-faces) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1189 ["CPerl mode" (describe-function 'cperl-mode) t] |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1190 ["CPerl version" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1191 (message "The version of master-file for this CPerl is %s-Emacs" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1192 cperl-version) t])))) |
20323 | 1193 (error nil)) |
1194 | |
1195 (autoload 'c-macro-expand "cmacexp" | |
1196 "Display the result of expanding all C macros occurring in the region. | |
1197 The expansion is entirely correct because it uses the C preprocessor." | |
1198 t) | |
1199 | |
43943
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1200 (defvar cperl-imenu--function-name-regexp-perl |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1201 (concat |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1202 "^\\(" |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1203 "[ \t]*\\(sub\\|package\\)[ \t\n]+\\([a-zA-Z_0-9:']+\\)[ \t]*\\(([^()]*)[ \t]*\\)?" |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1204 "\\|" |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1205 "=head\\([12]\\)[ \t]+\\([^\n]+\\)$" |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1206 "\\)")) |
5ef08437e801
(cperl-imenu--function-name-regexp-perl):
Richard M. Stallman <rms@gnu.org>
parents:
43899
diff
changeset
|
1207 |
43899
2b9c79cd9ecb
(cperl-outline-regexp): Move definition up.
Richard M. Stallman <rms@gnu.org>
parents:
43688
diff
changeset
|
1208 (defvar cperl-outline-regexp |
2b9c79cd9ecb
(cperl-outline-regexp): Move definition up.
Richard M. Stallman <rms@gnu.org>
parents:
43688
diff
changeset
|
1209 (concat cperl-imenu--function-name-regexp-perl "\\|" "\\`")) |
2b9c79cd9ecb
(cperl-outline-regexp): Move definition up.
Richard M. Stallman <rms@gnu.org>
parents:
43688
diff
changeset
|
1210 |
20323 | 1211 (defvar cperl-mode-syntax-table nil |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
1212 "Syntax table in use in CPerl mode buffers.") |
20323 | 1213 |
1214 (defvar cperl-string-syntax-table nil | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
1215 "Syntax table in use in CPerl mode string-like chunks.") |
20323 | 1216 |
1217 (if cperl-mode-syntax-table | |
1218 () | |
1219 (setq cperl-mode-syntax-table (make-syntax-table)) | |
1220 (modify-syntax-entry ?\\ "\\" cperl-mode-syntax-table) | |
1221 (modify-syntax-entry ?/ "." cperl-mode-syntax-table) | |
1222 (modify-syntax-entry ?* "." cperl-mode-syntax-table) | |
1223 (modify-syntax-entry ?+ "." cperl-mode-syntax-table) | |
1224 (modify-syntax-entry ?- "." cperl-mode-syntax-table) | |
1225 (modify-syntax-entry ?= "." cperl-mode-syntax-table) | |
1226 (modify-syntax-entry ?% "." cperl-mode-syntax-table) | |
1227 (modify-syntax-entry ?< "." cperl-mode-syntax-table) | |
1228 (modify-syntax-entry ?> "." cperl-mode-syntax-table) | |
1229 (modify-syntax-entry ?& "." cperl-mode-syntax-table) | |
1230 (modify-syntax-entry ?$ "\\" cperl-mode-syntax-table) | |
1231 (modify-syntax-entry ?\n ">" cperl-mode-syntax-table) | |
1232 (modify-syntax-entry ?# "<" cperl-mode-syntax-table) | |
1233 (modify-syntax-entry ?' "\"" cperl-mode-syntax-table) | |
1234 (modify-syntax-entry ?` "\"" cperl-mode-syntax-table) | |
1235 (if cperl-under-as-char | |
1236 (modify-syntax-entry ?_ "w" cperl-mode-syntax-table)) | |
1237 (modify-syntax-entry ?: "_" cperl-mode-syntax-table) | |
1238 (modify-syntax-entry ?| "." cperl-mode-syntax-table) | |
1239 (setq cperl-string-syntax-table (copy-syntax-table cperl-mode-syntax-table)) | |
1240 (modify-syntax-entry ?$ "." cperl-string-syntax-table) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1241 (modify-syntax-entry ?# "." cperl-string-syntax-table)) ; (?# comment ) |
20323 | 1242 |
1243 | |
1244 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1245 (defvar cperl-faces-init nil) |
20323 | 1246 ;; Fix for msb.el |
1247 (defvar cperl-msb-fixed nil) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1248 (defvar cperl-use-major-mode 'cperl-mode) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1249 |
20323 | 1250 ;;;###autoload |
1251 (defun cperl-mode () | |
1252 "Major mode for editing Perl code. | |
1253 Expression and list commands understand all C brackets. | |
1254 Tab indents for Perl code. | |
1255 Paragraphs are separated by blank lines only. | |
1256 Delete converts tabs to spaces as it moves back. | |
1257 | |
1258 Various characters in Perl almost always come in pairs: {}, (), [], | |
1259 sometimes <>. When the user types the first, she gets the second as | |
1260 well, with optional special formatting done on {}. (Disabled by | |
1261 default.) You can always quote (with \\[quoted-insert]) the left | |
1262 \"paren\" to avoid the expansion. The processing of < is special, | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
1263 since most the time you mean \"less\". CPerl mode tries to guess |
20323 | 1264 whether you want to type pair <>, and inserts is if it |
1265 appropriate. You can set `cperl-electric-parens-string' to the string that | |
1266 contains the parenths from the above list you want to be electrical. | |
1267 Electricity of parenths is controlled by `cperl-electric-parens'. | |
1268 You may also set `cperl-electric-parens-mark' to have electric parens | |
1269 look for active mark and \"embrace\" a region if possible.' | |
1270 | |
1271 CPerl mode provides expansion of the Perl control constructs: | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1272 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1273 if, else, elsif, unless, while, until, continue, do, |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1274 for, foreach, formy and foreachmy. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1275 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1276 and POD directives (Disabled by default, see `cperl-electric-keywords'.) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1277 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1278 The user types the keyword immediately followed by a space, which |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1279 causes the construct to be expanded, and the point is positioned where |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1280 she is most likely to want to be. eg. when the user types a space |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1281 following \"if\" the following appears in the buffer: if () { or if () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1282 } { } and the cursor is between the parentheses. The user can then |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1283 type some boolean expression within the parens. Having done that, |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1284 typing \\[cperl-linefeed] places you - appropriately indented - on a |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1285 new line between the braces (if you typed \\[cperl-linefeed] in a POD |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1286 directive line, then appropriate number of new lines is inserted). |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1287 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1288 If CPerl decides that you want to insert \"English\" style construct like |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1289 |
20323 | 1290 bite if angry; |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1291 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1292 it will not do any expansion. See also help on variable |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1293 `cperl-extra-newline-before-brace'. (Note that one can switch the |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1294 help message on expansion by setting `cperl-message-electric-keyword' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1295 to nil.) |
20323 | 1296 |
1297 \\[cperl-linefeed] is a convenience replacement for typing carriage | |
1298 return. It places you in the next line with proper indentation, or if | |
1299 you type it inside the inline block of control construct, like | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1300 |
20323 | 1301 foreach (@lines) {print; print} |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1302 |
20323 | 1303 and you are on a boundary of a statement inside braces, it will |
1304 transform the construct into a multiline and will place you into an | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1305 appropriately indented blank line. If you need a usual |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1306 `newline-and-indent' behaviour, it is on \\[newline-and-indent], |
20323 | 1307 see documentation on `cperl-electric-linefeed'. |
1308 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1309 Use \\[cperl-invert-if-unless] to change a construction of the form |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1310 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1311 if (A) { B } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1312 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1313 into |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1314 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1315 B if A; |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1316 |
20323 | 1317 \\{cperl-mode-map} |
1318 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1319 Setting the variable `cperl-font-lock' to t switches on font-lock-mode |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1320 \(even with older Emacsen), `cperl-electric-lbrace-space' to t switches |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1321 on electric space between $ and {, `cperl-electric-parens-string' is |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1322 the string that contains parentheses that should be electric in CPerl |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1323 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'), |
20323 | 1324 setting `cperl-electric-keywords' enables electric expansion of |
1325 control structures in CPerl. `cperl-electric-linefeed' governs which | |
1326 one of two linefeed behavior is preferable. You can enable all these | |
1327 options simultaneously (recommended mode of use) by setting | |
1328 `cperl-hairy' to t. In this case you can switch separate options off | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1329 by setting them to `null'. Note that one may undo the extra |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1330 whitespace inserted by semis and braces in `auto-newline'-mode by |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1331 consequent \\[cperl-electric-backspace]. |
20323 | 1332 |
1333 If your site has perl5 documentation in info format, you can use commands | |
1334 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it. | |
1335 These keys run commands `cperl-info-on-current-command' and | |
1336 `cperl-info-on-command', which one is which is controlled by variable | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1337 `cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings' |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1338 \(in turn affected by `cperl-hairy'). |
20323 | 1339 |
1340 Even if you have no info-format documentation, short one-liner-style | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1341 help is available on \\[cperl-get-help], and one can run perldoc or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1342 man via menu. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1343 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1344 It is possible to show this help automatically after some idle time. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1345 This is regulated by variable `cperl-lazy-help-time'. Default with |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1346 `cperl-hairy' (if the value of `cperl-lazy-help-time' is nil) is 5 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1347 secs idle time . It is also possible to switch this on/off from the |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1348 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'. |
20323 | 1349 |
1350 Use \\[cperl-lineup] to vertically lineup some construction - put the | |
1351 beginning of the region at the start of construction, and make region | |
1352 span the needed amount of lines. | |
1353 | |
1354 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify', | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1355 `cperl-pod-face', `cperl-pod-head-face' control processing of POD and |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1356 here-docs sections. With capable Emaxen results of scan are used |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1357 for indentation too, otherwise they are used for highlighting only. |
20323 | 1358 |
1359 Variables controlling indentation style: | |
1360 `cperl-tab-always-indent' | |
1361 Non-nil means TAB in CPerl mode should always reindent the current line, | |
1362 regardless of where in the line point is when the TAB command is used. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1363 `cperl-indent-left-aligned-comments' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1364 Non-nil means that the comment starting in leftmost column should indent. |
20323 | 1365 `cperl-auto-newline' |
1366 Non-nil means automatically newline before and after braces, | |
1367 and after colons and semicolons, inserted in Perl code. The following | |
1368 \\[cperl-electric-backspace] will remove the inserted whitespace. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1369 Insertion after colons requires both this variable and |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1370 `cperl-auto-newline-after-colon' set. |
20323 | 1371 `cperl-auto-newline-after-colon' |
1372 Non-nil means automatically newline even after colons. | |
1373 Subject to `cperl-auto-newline' setting. | |
1374 `cperl-indent-level' | |
1375 Indentation of Perl statements within surrounding block. | |
1376 The surrounding block's indentation is the indentation | |
1377 of the line on which the open-brace appears. | |
1378 `cperl-continued-statement-offset' | |
1379 Extra indentation given to a substatement, such as the | |
1380 then-clause of an if, or body of a while, or just a statement continuation. | |
1381 `cperl-continued-brace-offset' | |
1382 Extra indentation given to a brace that starts a substatement. | |
1383 This is in addition to `cperl-continued-statement-offset'. | |
1384 `cperl-brace-offset' | |
1385 Extra indentation for line if it starts with an open brace. | |
1386 `cperl-brace-imaginary-offset' | |
1387 An open brace following other text is treated as if it the line started | |
1388 this far to the right of the actual line indentation. | |
1389 `cperl-label-offset' | |
1390 Extra indentation for line that is a label. | |
1391 `cperl-min-label-indent' | |
1392 Minimal indentation for line that is a label. | |
1393 | |
1394 Settings for K&R and BSD indentation styles are | |
1395 `cperl-indent-level' 5 8 | |
1396 `cperl-continued-statement-offset' 5 8 | |
1397 `cperl-brace-offset' -5 -8 | |
1398 `cperl-label-offset' -5 -8 | |
1399 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1400 CPerl knows several indentation styles, and may bulk set the |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1401 corresponding variables. Use \\[cperl-set-style] to do this. Use |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1402 \\[cperl-set-style-back] to restore the memorized preexisting values |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1403 \(both available from menu). |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1404 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1405 If `cperl-indent-level' is 0, the statement after opening brace in |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1406 column 0 is indented on |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1407 `cperl-brace-offset'+`cperl-continued-statement-offset'. |
20323 | 1408 |
1409 Turning on CPerl mode calls the hooks in the variable `cperl-mode-hook' | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1410 with no args. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1411 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1412 DO NOT FORGET to read micro-docs (available from `Perl' menu) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1413 or as help on variables `cperl-tips', `cperl-problems', |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
1414 `cperl-praise', `cperl-speed'." |
20323 | 1415 (interactive) |
1416 (kill-all-local-variables) | |
1417 (use-local-map cperl-mode-map) | |
1418 (if (cperl-val 'cperl-electric-linefeed) | |
1419 (progn | |
1420 (local-set-key "\C-J" 'cperl-linefeed) | |
1421 (local-set-key "\C-C\C-J" 'newline-and-indent))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1422 (if (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1423 (cperl-val 'cperl-clobber-lisp-bindings) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1424 (cperl-val 'cperl-info-on-command-no-prompt)) |
20323 | 1425 (progn |
1426 ;; don't clobber the backspace binding: | |
1427 (cperl-define-key "\C-hf" 'cperl-info-on-current-command [(control h) f]) | |
1428 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command | |
1429 [(control c) (control h) f]))) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1430 (setq major-mode cperl-use-major-mode) |
20323 | 1431 (setq mode-name "CPerl") |
1432 (if (not cperl-mode-abbrev-table) | |
1433 (let ((prev-a-c abbrevs-changed)) | |
1434 (define-abbrev-table 'cperl-mode-abbrev-table '( | |
1435 ("if" "if" cperl-electric-keyword 0) | |
1436 ("elsif" "elsif" cperl-electric-keyword 0) | |
1437 ("while" "while" cperl-electric-keyword 0) | |
1438 ("until" "until" cperl-electric-keyword 0) | |
1439 ("unless" "unless" cperl-electric-keyword 0) | |
1440 ("else" "else" cperl-electric-else 0) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1441 ("continue" "continue" cperl-electric-else 0) |
20323 | 1442 ("for" "for" cperl-electric-keyword 0) |
1443 ("foreach" "foreach" cperl-electric-keyword 0) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1444 ("formy" "formy" cperl-electric-keyword 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1445 ("foreachmy" "foreachmy" cperl-electric-keyword 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1446 ("do" "do" cperl-electric-keyword 0) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1447 ("=pod" "=pod" cperl-electric-pod 0) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1448 ("=over" "=over" cperl-electric-pod 0) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1449 ("=head1" "=head1" cperl-electric-pod 0) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1450 ("=head2" "=head2" cperl-electric-pod 0) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1451 ("pod" "pod" cperl-electric-pod 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1452 ("over" "over" cperl-electric-pod 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1453 ("head1" "head1" cperl-electric-pod 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1454 ("head2" "head2" cperl-electric-pod 0))) |
20323 | 1455 (setq abbrevs-changed prev-a-c))) |
1456 (setq local-abbrev-table cperl-mode-abbrev-table) | |
1457 (abbrev-mode (if (cperl-val 'cperl-electric-keywords) 1 0)) | |
1458 (set-syntax-table cperl-mode-syntax-table) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1459 (make-local-variable 'outline-regexp) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1460 ;; (setq outline-regexp imenu-example--function-name-regexp-perl) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1461 (setq outline-regexp cperl-outline-regexp) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1462 (make-local-variable 'outline-level) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1463 (setq outline-level 'cperl-outline-level) |
20323 | 1464 (make-local-variable 'paragraph-start) |
1465 (setq paragraph-start (concat "^$\\|" page-delimiter)) | |
1466 (make-local-variable 'paragraph-separate) | |
1467 (setq paragraph-separate paragraph-start) | |
1468 (make-local-variable 'paragraph-ignore-fill-prefix) | |
1469 (setq paragraph-ignore-fill-prefix t) | |
53779
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1470 (set (make-local-variable 'fill-paragraph-function) 'cperl-fill-paragraph) |
20323 | 1471 (make-local-variable 'indent-line-function) |
1472 (setq indent-line-function 'cperl-indent-line) | |
1473 (make-local-variable 'require-final-newline) | |
59242
520077017d32
(cperl-mode): Use mode-require-final-newline.
Richard M. Stallman <rms@gnu.org>
parents:
59103
diff
changeset
|
1474 (setq require-final-newline mode-require-final-newline) |
20323 | 1475 (make-local-variable 'comment-start) |
1476 (setq comment-start "# ") | |
1477 (make-local-variable 'comment-end) | |
1478 (setq comment-end "") | |
1479 (make-local-variable 'comment-column) | |
1480 (setq comment-column cperl-comment-column) | |
1481 (make-local-variable 'comment-start-skip) | |
1482 (setq comment-start-skip "#+ *") | |
1483 (make-local-variable 'defun-prompt-regexp) | |
56377
2dc937a6a0e1
*** empty log message ***
Mark A. Hershberger <mah@everybody.org>
parents:
55049
diff
changeset
|
1484 (setq defun-prompt-regexp "^[ \t]*sub[ \t\n]+\\([^ \t\n{(;]+\\)\\([ \t\n]*([^()]*)[ \t\n]*\\)?[ \t\n]*)") |
20323 | 1485 (make-local-variable 'comment-indent-function) |
1486 (setq comment-indent-function 'cperl-comment-indent) | |
1487 (make-local-variable 'parse-sexp-ignore-comments) | |
1488 (setq parse-sexp-ignore-comments t) | |
1489 (make-local-variable 'indent-region-function) | |
1490 (setq indent-region-function 'cperl-indent-region) | |
1491 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off! | |
1492 (make-local-variable 'imenu-create-index-function) | |
1493 (setq imenu-create-index-function | |
31821 | 1494 (function cperl-imenu--create-perl-index)) |
20323 | 1495 (make-local-variable 'imenu-sort-function) |
1496 (setq imenu-sort-function nil) | |
62686
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
1497 (make-local-variable 'vc-rcs-header) |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
1498 (set 'vc-rcs-header cperl-vc-rcs-header) |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
1499 (make-local-variable 'vc-sccs-header) |
25f639ed2b2d
(cperl-vc-header-alist): Obsoleted.
André Spiegel <spiegel@gnu.org>
parents:
62402
diff
changeset
|
1500 (set 'vc-sccs-header cperl-vc-sccs-header) |
20323 | 1501 (make-local-variable 'font-lock-defaults) |
1502 (setq font-lock-defaults | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1503 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1504 ((string< emacs-version "19.30") |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1505 '(cperl-font-lock-keywords-2)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1506 ((string< emacs-version "19.33") ; Which one to use? |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1507 '((cperl-font-lock-keywords |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1508 cperl-font-lock-keywords-1 |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1509 cperl-font-lock-keywords-2))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1510 (t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1511 '((cperl-load-font-lock-keywords |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1512 cperl-load-font-lock-keywords-1 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1513 cperl-load-font-lock-keywords-2))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1514 (make-local-variable 'cperl-syntax-state) |
20323 | 1515 (if cperl-use-syntax-table-text-property |
1516 (progn | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1517 (make-local-variable 'parse-sexp-lookup-properties) |
20323 | 1518 ;; Do not introduce variable if not needed, we check it! |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1519 (set 'parse-sexp-lookup-properties t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1520 ;; Fix broken font-lock: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1521 (or (boundp 'font-lock-unfontify-region-function) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1522 (set 'font-lock-unfontify-region-function |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1523 'font-lock-default-unfontify-region)) |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1524 (make-local-variable 'font-lock-unfontify-region-function) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1525 (set 'font-lock-unfontify-region-function ; not present with old Emacs |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1526 'cperl-font-lock-unfontify-region-function) |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1527 (make-local-variable 'cperl-syntax-done-to) |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1528 (make-local-variable 'font-lock-syntactic-keywords) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1529 (setq font-lock-syntactic-keywords |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1530 (if cperl-syntaxify-by-font-lock |
61892
6acaa6301fd7
(cperl-mode): Don't precompile the font-lock-fontify-syntactic-keywords.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60925
diff
changeset
|
1531 '((cperl-fontify-syntaxically)) |
6acaa6301fd7
(cperl-mode): Don't precompile the font-lock-fontify-syntactic-keywords.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60925
diff
changeset
|
1532 ;; unless font-lock-syntactic-keywords, font-lock (pre-22.1) |
6acaa6301fd7
(cperl-mode): Don't precompile the font-lock-fontify-syntactic-keywords.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60925
diff
changeset
|
1533 ;; used to ignore syntax-table text-properties. (t) is a hack |
6acaa6301fd7
(cperl-mode): Don't precompile the font-lock-fontify-syntactic-keywords.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60925
diff
changeset
|
1534 ;; to make font-lock think that font-lock-syntactic-keywords |
6acaa6301fd7
(cperl-mode): Don't precompile the font-lock-fontify-syntactic-keywords.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60925
diff
changeset
|
1535 ;; are defined. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1536 '(t))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1537 (make-local-variable 'cperl-old-style) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1538 (if (boundp 'normal-auto-fill-function) ; 19.33 and later |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1539 (set (make-local-variable 'normal-auto-fill-function) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1540 'cperl-do-auto-fill) ; RMS has it as #'cperl-do-auto-fill ??? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1541 (or (fboundp 'cperl-old-auto-fill-mode) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1542 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1543 (fset 'cperl-old-auto-fill-mode (symbol-function 'auto-fill-mode)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1544 (defun auto-fill-mode (&optional arg) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1545 (interactive "P") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1546 (eval '(cperl-old-auto-fill-mode arg)) ; Avoid a warning |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1547 (and auto-fill-function (memq major-mode '(perl-mode cperl-mode)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1548 (setq auto-fill-function 'cperl-do-auto-fill)))))) |
20323 | 1549 (if (cperl-enable-font-lock) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1550 (if (cperl-val 'cperl-font-lock) |
20323 | 1551 (progn (or cperl-faces-init (cperl-init-faces)) |
1552 (font-lock-mode 1)))) | |
1553 (and (boundp 'msb-menu-cond) | |
1554 (not cperl-msb-fixed) | |
1555 (cperl-msb-fix)) | |
1556 (if (featurep 'easymenu) | |
22392
7300e6ab99d2
(cperl-problems): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22391
diff
changeset
|
1557 (easy-menu-add cperl-menu)) ; A NOP in Emacs. |
58190
71f3f7fc6fcd
run-mode-hooks instead of run-hooks
Daniel Pfeiffer <occitan@esperanto.org>
parents:
58003
diff
changeset
|
1558 (run-mode-hooks 'cperl-mode-hook) |
20323 | 1559 ;; After hooks since fontification will break this |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1560 (if cperl-pod-here-scan |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1561 (or cperl-syntaxify-by-font-lock |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1562 (progn (or cperl-faces-init (cperl-init-faces-weak)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1563 (cperl-find-pods-heres))))) |
20323 | 1564 |
1565 ;; Fix for perldb - make default reasonable | |
1566 (defun cperl-db () | |
1567 (interactive) | |
1568 (require 'gud) | |
1569 (perldb (read-from-minibuffer "Run perldb (like this): " | |
1570 (if (consp gud-perldb-history) | |
1571 (car gud-perldb-history) | |
1572 (concat "perl " ;;(file-name-nondirectory | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1573 ;; I have problems |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1574 ;; in OS/2 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1575 ;; otherwise |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1576 (buffer-file-name))) |
20323 | 1577 nil nil |
1578 '(gud-perldb-history . 1)))) | |
1579 | |
1580 (defun cperl-msb-fix () | |
1581 ;; Adds perl files to msb menu, supposes that msb is already loaded | |
1582 (setq cperl-msb-fixed t) | |
1583 (let* ((l (length msb-menu-cond)) | |
1584 (last (nth (1- l) msb-menu-cond)) | |
1585 (precdr (nthcdr (- l 2) msb-menu-cond)) ; cdr of this is last | |
1586 (handle (1- (nth 1 last)))) | |
1587 (setcdr precdr (list | |
1588 (list | |
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
1589 '(memq major-mode '(cperl-mode perl-mode)) |
20323 | 1590 handle |
1591 "Perl Files (%d)") | |
1592 last)))) | |
1593 | |
1594 ;; This is used by indent-for-comment | |
1595 ;; to decide how much to indent a comment in CPerl code | |
1596 ;; based on its context. Do fallback if comment is found wrong. | |
1597 | |
1598 (defvar cperl-wrong-comment) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1599 (defvar cperl-st-cfence '(14)) ; Comment-fence |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1600 (defvar cperl-st-sfence '(15)) ; String-fence |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1601 (defvar cperl-st-punct '(1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1602 (defvar cperl-st-word '(2)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1603 (defvar cperl-st-bra '(4 . ?\>)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1604 (defvar cperl-st-ket '(5 . ?\<)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1605 |
20323 | 1606 |
1607 (defun cperl-comment-indent () | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1608 (let ((p (point)) (c (current-column)) was phony) |
20323 | 1609 (if (looking-at "^#") 0 ; Existing comment at bol stays there. |
1610 ;; Wrong comment found | |
1611 (save-excursion | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1612 (setq was (cperl-to-comment-or-eol) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1613 phony (eq (get-text-property (point) 'syntax-table) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1614 cperl-st-cfence)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1615 (if phony |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1616 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1617 (re-search-forward "#\\|$") ; Hmm, what about embedded #? |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1618 (if (eq (preceding-char) ?\#) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1619 (forward-char -1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1620 (setq was nil))) |
20323 | 1621 (if (= (point) p) |
1622 (progn | |
1623 (skip-chars-backward " \t") | |
1624 (max (1+ (current-column)) ; Else indent at comment column | |
1625 comment-column)) | |
1626 (if was nil | |
1627 (insert comment-start) | |
1628 (backward-char (length comment-start))) | |
1629 (setq cperl-wrong-comment t) | |
1630 (indent-to comment-column 1) ; Indent minimum 1 | |
1631 c))))) ; except leave at least one space. | |
1632 | |
1633 ;;;(defun cperl-comment-indent-fallback () | |
1634 ;;; "Is called if the standard comment-search procedure fails. | |
1635 ;;;Point is at start of real comment." | |
1636 ;;; (let ((c (current-column)) target cnt prevc) | |
1637 ;;; (if (= c comment-column) nil | |
1638 ;;; (setq cnt (skip-chars-backward "[ \t]")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1639 ;;; (setq target (max (1+ (setq prevc |
20323 | 1640 ;;; (current-column))) ; Else indent at comment column |
1641 ;;; comment-column)) | |
1642 ;;; (if (= c comment-column) nil | |
1643 ;;; (delete-backward-char cnt) | |
1644 ;;; (while (< prevc target) | |
1645 ;;; (insert "\t") | |
1646 ;;; (setq prevc (current-column))) | |
1647 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column)))) | |
1648 ;;; (while (< prevc target) | |
1649 ;;; (insert " ") | |
1650 ;;; (setq prevc (current-column))))))) | |
1651 | |
1652 (defun cperl-indent-for-comment () | |
1653 "Substitute for `indent-for-comment' in CPerl." | |
1654 (interactive) | |
1655 (let (cperl-wrong-comment) | |
1656 (indent-for-comment) | |
1657 (if cperl-wrong-comment | |
1658 (progn (cperl-to-comment-or-eol) | |
1659 (forward-char (length comment-start)))))) | |
1660 | |
1661 (defun cperl-comment-region (b e arg) | |
1662 "Comment or uncomment each line in the region in CPerl mode. | |
1663 See `comment-region'." | |
1664 (interactive "r\np") | |
1665 (let ((comment-start "#")) | |
1666 (comment-region b e arg))) | |
1667 | |
1668 (defun cperl-uncomment-region (b e arg) | |
1669 "Uncomment or comment each line in the region in CPerl mode. | |
1670 See `comment-region'." | |
1671 (interactive "r\np") | |
1672 (let ((comment-start "#")) | |
1673 (comment-region b e (- arg)))) | |
1674 | |
1675 (defvar cperl-brace-recursing nil) | |
1676 | |
1677 (defun cperl-electric-brace (arg &optional only-before) | |
1678 "Insert character and correct line's indentation. | |
1679 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the | |
1680 place (even in empty line), but not after. If after \")\" and the inserted | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1681 char is \"{\", insert extra newline before only if |
20323 | 1682 `cperl-extra-newline-before-brace'." |
1683 (interactive "P") | |
1684 (let (insertpos | |
1685 (other-end (if (and cperl-electric-parens-mark | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1686 (cperl-mark-active) |
20323 | 1687 (< (mark) (point))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1688 (mark) |
20323 | 1689 nil))) |
1690 (if (and other-end | |
1691 (not cperl-brace-recursing) | |
1692 (cperl-val 'cperl-electric-parens) | |
1693 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))) | |
1694 ;; Need to insert a matching pair | |
1695 (progn | |
1696 (save-excursion | |
1697 (setq insertpos (point-marker)) | |
1698 (goto-char other-end) | |
1699 (setq last-command-char ?\{) | |
1700 (cperl-electric-lbrace arg insertpos)) | |
1701 (forward-char 1)) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1702 ;; Check whether we close something "usual" with `}' |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1703 (if (and (eq last-command-char ?\}) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1704 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1705 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1706 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1707 (up-list (- (prefix-numeric-value arg))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1708 ;;(cperl-after-block-p (point-min)) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1709 (or (cperl-after-expr-p nil "{;)") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1710 ;; after sub, else, continue |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1711 (cperl-after-block-p nil 'pre))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1712 (error nil)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1713 ;; Just insert the guy |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1714 (self-insert-command (prefix-numeric-value arg)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1715 (if (and (not arg) ; No args, end (of empty line or auto) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1716 (eolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1717 (or (and (null only-before) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1718 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1719 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1720 (bolp))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1721 (and (eq last-command-char ?\{) ; Do not insert newline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1722 ;; if after ")" and `cperl-extra-newline-before-brace' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1723 ;; is nil, do not insert extra newline. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1724 (not cperl-extra-newline-before-brace) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1725 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1726 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1727 (eq (preceding-char) ?\)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1728 (if cperl-auto-newline |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1729 (progn (cperl-indent-line) (newline) t) nil))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1730 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1731 (self-insert-command (prefix-numeric-value arg)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1732 (cperl-indent-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1733 (if cperl-auto-newline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1734 (setq insertpos (1- (point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1735 (if (and cperl-auto-newline (null only-before)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1736 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1737 (newline) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1738 (cperl-indent-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1739 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1740 (if insertpos (progn (goto-char insertpos) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1741 (search-forward (make-string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1742 1 last-command-char)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1743 (setq insertpos (1- (point))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1744 (delete-char -1)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1745 (if insertpos |
20323 | 1746 (save-excursion |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1747 (goto-char insertpos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1748 (self-insert-command (prefix-numeric-value arg))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1749 (self-insert-command (prefix-numeric-value arg))))))) |
20323 | 1750 |
1751 (defun cperl-electric-lbrace (arg &optional end) | |
1752 "Insert character, correct line's indentation, correct quoting by space." | |
1753 (interactive "P") | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1754 (let ((cperl-brace-recursing t) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1755 (cperl-auto-newline cperl-auto-newline) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1756 (other-end (or end |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1757 (if (and cperl-electric-parens-mark |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1758 (cperl-mark-active) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1759 (> (mark) (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1760 (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1761 (goto-char (mark)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1762 (point-marker)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1763 nil))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1764 pos after) |
20323 | 1765 (and (cperl-val 'cperl-electric-lbrace-space) |
1766 (eq (preceding-char) ?$) | |
1767 (save-excursion | |
1768 (skip-chars-backward "$") | |
1769 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)")) | |
1770 (insert ?\ )) | |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1771 ;; Check whether we are in comment |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1772 (if (and |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1773 (save-excursion |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1774 (beginning-of-line) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1775 (not (looking-at "[ \t]*#"))) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1776 (cperl-after-expr-p nil "{;)")) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1777 nil |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1778 (setq cperl-auto-newline nil)) |
20323 | 1779 (cperl-electric-brace arg) |
1780 (and (cperl-val 'cperl-electric-parens) | |
1781 (eq last-command-char ?{) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1782 (memq last-command-char |
20323 | 1783 (append cperl-electric-parens-string nil)) |
1784 (or (if other-end (goto-char (marker-position other-end))) | |
1785 t) | |
1786 (setq last-command-char ?} pos (point)) | |
1787 (progn (cperl-electric-brace arg t) | |
1788 (goto-char pos))))) | |
1789 | |
1790 (defun cperl-electric-paren (arg) | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1791 "Insert an opening parenthesis or a matching pair of parentheses. |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1792 See `cperl-electric-parens'." |
20323 | 1793 (interactive "P") |
1794 (let ((beg (save-excursion (beginning-of-line) (point))) | |
1795 (other-end (if (and cperl-electric-parens-mark | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1796 (cperl-mark-active) |
20323 | 1797 (> (mark) (point))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1798 (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1799 (goto-char (mark)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1800 (point-marker)) |
20323 | 1801 nil))) |
1802 (if (and (cperl-val 'cperl-electric-parens) | |
1803 (memq last-command-char | |
1804 (append cperl-electric-parens-string nil)) | |
1805 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
1806 ;;(not (save-excursion (search-backward "#" beg t))) | |
1807 (if (eq last-command-char ?<) | |
1808 (progn | |
1809 (and abbrev-mode ; later it is too late, may be after `for' | |
1810 (expand-abbrev)) | |
1811 (cperl-after-expr-p nil "{;(,:=")) | |
1812 1)) | |
1813 (progn | |
1814 (self-insert-command (prefix-numeric-value arg)) | |
1815 (if other-end (goto-char (marker-position other-end))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1816 (insert (make-string |
20323 | 1817 (prefix-numeric-value arg) |
1818 (cdr (assoc last-command-char '((?{ .?}) | |
1819 (?[ . ?]) | |
1820 (?( . ?)) | |
1821 (?< . ?>)))))) | |
1822 (forward-char (- (prefix-numeric-value arg)))) | |
1823 (self-insert-command (prefix-numeric-value arg))))) | |
1824 | |
1825 (defun cperl-electric-rparen (arg) | |
1826 "Insert a matching pair of parentheses if marking is active. | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1827 If not, or if we are not at the end of marking range, would self-insert. |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1828 Affected by `cperl-electric-parens'." |
20323 | 1829 (interactive "P") |
1830 (let ((beg (save-excursion (beginning-of-line) (point))) | |
1831 (other-end (if (and cperl-electric-parens-mark | |
1832 (cperl-val 'cperl-electric-parens) | |
1833 (memq last-command-char | |
1834 (append cperl-electric-parens-string nil)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1835 (cperl-mark-active) |
20323 | 1836 (< (mark) (point))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1837 (mark) |
20323 | 1838 nil)) |
1839 p) | |
1840 (if (and other-end | |
1841 (cperl-val 'cperl-electric-parens) | |
1842 (memq last-command-char '( ?\) ?\] ?\} ?\> )) | |
1843 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
1844 ;;(not (save-excursion (search-backward "#" beg t))) | |
1845 ) | |
1846 (progn | |
1847 (self-insert-command (prefix-numeric-value arg)) | |
1848 (setq p (point)) | |
1849 (if other-end (goto-char other-end)) | |
1850 (insert (make-string | |
1851 (prefix-numeric-value arg) | |
1852 (cdr (assoc last-command-char '((?\} . ?\{) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1853 (?\] . ?\[) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1854 (?\) . ?\() |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1855 (?\> . ?\<)))))) |
20323 | 1856 (goto-char (1+ p))) |
1857 (self-insert-command (prefix-numeric-value arg))))) | |
1858 | |
1859 (defun cperl-electric-keyword () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1860 "Insert a construction appropriate after a keyword. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1861 Help message may be switched off by setting `cperl-message-electric-keyword' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1862 to nil." |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1863 (let ((beg (save-excursion (beginning-of-line) (point))) |
20323 | 1864 (dollar (and (eq last-command-char ?$) |
1865 (eq this-command 'self-insert-command))) | |
49850
0bdcd08034e1
(cperl-electric-keyword, cperl-electric-pod, cperl-do-auto-fill): Fix character
Juanma Barranquero <lekktu@gmail.com>
parents:
49789
diff
changeset
|
1866 (delete (and (memq last-command-char '(?\ ?\n ?\t ?\f)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1867 (memq this-command '(self-insert-command newline)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1868 my do) |
20323 | 1869 (and (save-excursion |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1870 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1871 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1872 (backward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1873 (setq do (looking-at "do\\>"))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1874 (error nil)) |
20323 | 1875 (cperl-after-expr-p nil "{;:")) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1876 (save-excursion |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1877 (not |
20323 | 1878 (re-search-backward |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1879 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
20323 | 1880 beg t))) |
1881 (save-excursion (or (not (re-search-backward "^=" nil t)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1882 (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1883 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1884 (and cperl-use-syntax-table-text-property |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1885 (not (eq (get-text-property (point) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1886 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1887 'pod)))))) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1888 (save-excursion (forward-sexp -1) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1889 (not (memq (following-char) (append "$@%&*" nil)))) |
20323 | 1890 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1891 (and (eq (preceding-char) ?y) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1892 (progn ; "foreachmy" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1893 (forward-char -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1894 (insert " ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1895 (forward-char 2) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1896 (setq my t dollar t |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1897 delete |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1898 (memq this-command '(self-insert-command newline))))) |
20323 | 1899 (and dollar (insert " $")) |
1900 (cperl-indent-line) | |
1901 ;;(insert " () {\n}") | |
1902 (cond | |
1903 (cperl-extra-newline-before-brace | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1904 (insert (if do "\n" " ()\n")) |
20323 | 1905 (insert "{") |
1906 (cperl-indent-line) | |
1907 (insert "\n") | |
1908 (cperl-indent-line) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1909 (insert "\n}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1910 (and do (insert " while ();"))) |
20323 | 1911 (t |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1912 (insert (if do " {\n} while ();" " () {\n}")))) |
20323 | 1913 (or (looking-at "[ \t]\\|$") (insert " ")) |
1914 (cperl-indent-line) | |
1915 (if dollar (progn (search-backward "$") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1916 (if my |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1917 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1918 (delete-char 1))) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1919 (search-backward ")") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1920 (if (eq last-command-char ?\() |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1921 (progn ; Avoid "if (())" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1922 (delete-backward-char 1) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
1923 (delete-backward-char -1)))) |
20323 | 1924 (if delete |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1925 (cperl-putback-char cperl-del-back-ch)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1926 (if cperl-message-electric-keyword |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1927 (message "Precede char by C-q to avoid expansion")))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1928 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1929 (defun cperl-ensure-newlines (n &optional pos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1930 "Make sure there are N newlines after the point." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1931 (or pos (setq pos (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1932 (if (looking-at "\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1933 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1934 (insert "\n")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1935 (if (> n 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1936 (cperl-ensure-newlines (1- n) pos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1937 (goto-char pos))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1938 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1939 (defun cperl-electric-pod () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1940 "Insert a POD chunk appropriate after a =POD directive." |
49850
0bdcd08034e1
(cperl-electric-keyword, cperl-electric-pod, cperl-do-auto-fill): Fix character
Juanma Barranquero <lekktu@gmail.com>
parents:
49789
diff
changeset
|
1941 (let ((delete (and (memq last-command-char '(?\ ?\n ?\t ?\f)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1942 (memq this-command '(self-insert-command newline)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1943 head1 notlast name p really-delete over) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1944 (and (save-excursion |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1945 (forward-word -1) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
1946 (and |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1947 (eq (preceding-char) ?=) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1948 (progn |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1949 (setq head1 (looking-at "head1\\>[ \t]*$")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1950 (setq over (and (looking-at "over\\>[ \t]*$") |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1951 (not (looking-at "over[ \t]*\n\n\n*=item\\>")))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1952 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1953 (bolp)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1954 (or |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1955 (get-text-property (point) 'in-pod) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1956 (cperl-after-expr-p nil "{;:") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1957 (and (re-search-backward |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
1958 ;; "\\(\\`\n?\\|\n\n\\)=\\sw+" |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
1959 "\\(\\`\n?\\|^\n\\)=\\sw+" |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1960 (point-min) t) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1961 (not (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1962 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1963 (and cperl-use-syntax-table-text-property |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1964 (not (eq (get-text-property (point) 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1965 'pod))))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1966 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1967 (save-excursion |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1968 (setq notlast (re-search-forward "^\n=" nil t))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1969 (or notlast |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1970 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1971 (insert "\n\n=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1972 (cperl-ensure-newlines 2) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1973 (forward-word -2) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
1974 (if (and head1 |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
1975 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1976 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1977 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1978 (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\>" |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
1979 nil t)))) ; Only one |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
1980 (progn |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1981 (forward-word 1) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1982 (setq name (file-name-sans-extension |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1983 (file-name-nondirectory (buffer-file-name))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1984 p (point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1985 (insert " NAME\n\n" name |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1986 " - \n\n=head1 SYNOPSIS\n\n\n\n" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1987 "=head1 DESCRIPTION") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1988 (cperl-ensure-newlines 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1989 (goto-char p) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1990 (forward-word 2) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1991 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1992 (setq really-delete t)) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
1993 (forward-word 1)))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1994 (if over |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1995 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1996 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1997 (insert "\n\n=item \n\n\n\n" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1998 "=back") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1999 (cperl-ensure-newlines 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2000 (goto-char p) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2001 (forward-word 1) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2002 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2003 (setq really-delete t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2004 (if (and delete really-delete) |
20323 | 2005 (cperl-putback-char cperl-del-back-ch)))))) |
2006 | |
2007 (defun cperl-electric-else () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2008 "Insert a construction appropriate after a keyword. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2009 Help message may be switched off by setting `cperl-message-electric-keyword' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2010 to nil." |
20323 | 2011 (let ((beg (save-excursion (beginning-of-line) (point)))) |
2012 (and (save-excursion | |
2013 (backward-sexp 1) | |
2014 (cperl-after-expr-p nil "{;:")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2015 (save-excursion |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2016 (not |
20323 | 2017 (re-search-backward |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2018 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
20323 | 2019 beg t))) |
2020 (save-excursion (or (not (re-search-backward "^=" nil t)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2021 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2022 (and cperl-use-syntax-table-text-property |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2023 (not (eq (get-text-property (point) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2024 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2025 'pod))))) |
20323 | 2026 (progn |
2027 (cperl-indent-line) | |
2028 ;;(insert " {\n\n}") | |
2029 (cond | |
2030 (cperl-extra-newline-before-brace | |
2031 (insert "\n") | |
2032 (insert "{") | |
2033 (cperl-indent-line) | |
2034 (insert "\n\n}")) | |
2035 (t | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2036 (insert " {\n\n}"))) |
20323 | 2037 (or (looking-at "[ \t]\\|$") (insert " ")) |
2038 (cperl-indent-line) | |
2039 (forward-line -1) | |
2040 (cperl-indent-line) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2041 (cperl-putback-char cperl-del-back-ch) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2042 (setq this-command 'cperl-electric-else) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2043 (if cperl-message-electric-keyword |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2044 (message "Precede char by C-q to avoid expansion")))))) |
20323 | 2045 |
2046 (defun cperl-linefeed () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2047 "Go to end of line, open a new line and indent appropriately. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2048 If in POD, insert appropriate lines." |
20323 | 2049 (interactive) |
2050 (let ((beg (save-excursion (beginning-of-line) (point))) | |
2051 (end (save-excursion (end-of-line) (point))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2052 (pos (point)) start over cut res) |
20323 | 2053 (if (and ; Check if we need to split: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2054 ; i.e., on a boundary and inside "{...}" |
20323 | 2055 (save-excursion (cperl-to-comment-or-eol) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2056 (>= (point) pos)) ; Not in a comment |
20323 | 2057 (or (save-excursion |
2058 (skip-chars-backward " \t" beg) | |
2059 (forward-char -1) | |
2060 (looking-at "[;{]")) ; After { or ; + spaces | |
2061 (looking-at "[ \t]*}") ; Before } | |
2062 (re-search-forward "\\=[ \t]*;" end t)) ; Before spaces + ; | |
2063 (save-excursion | |
2064 (and | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2065 (eq (car (parse-partial-sexp pos end -1)) -1) |
20323 | 2066 ; Leave the level of parens |
2067 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr | |
2068 ; Are at end | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2069 (cperl-after-block-p (point-min)) |
20323 | 2070 (progn |
2071 (backward-sexp 1) | |
2072 (setq start (point-marker)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2073 (<= start pos))))) ; Redundant? Are after the |
20323 | 2074 ; start of parens group. |
2075 (progn | |
2076 (skip-chars-backward " \t") | |
2077 (or (memq (preceding-char) (append ";{" nil)) | |
2078 (insert ";")) | |
2079 (insert "\n") | |
2080 (forward-line -1) | |
2081 (cperl-indent-line) | |
2082 (goto-char start) | |
2083 (or (looking-at "{[ \t]*$") ; If there is a statement | |
2084 ; before, move it to separate line | |
2085 (progn | |
2086 (forward-char 1) | |
2087 (insert "\n") | |
2088 (cperl-indent-line))) | |
2089 (forward-line 1) ; We are on the target line | |
2090 (cperl-indent-line) | |
2091 (beginning-of-line) | |
2092 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2093 ; after, move it to separate line |
20323 | 2094 (progn |
2095 (end-of-line) | |
2096 (search-backward "}" beg) | |
2097 (skip-chars-backward " \t") | |
2098 (or (memq (preceding-char) (append ";{" nil)) | |
2099 (insert ";")) | |
2100 (insert "\n") | |
2101 (cperl-indent-line) | |
2102 (forward-line -1))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2103 (forward-line -1) ; We are on the line before target |
20323 | 2104 (end-of-line) |
2105 (newline-and-indent)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2106 (end-of-line) ; else - no splitting |
20323 | 2107 (cond |
2108 ((and (looking-at "\n[ \t]*{$") | |
2109 (save-excursion | |
2110 (skip-chars-backward " \t") | |
2111 (eq (preceding-char) ?\)))) ; Probably if () {} group | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2112 ; with an extra newline. |
20323 | 2113 (forward-line 2) |
2114 (cperl-indent-line)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2115 ((save-excursion ; In POD header |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2116 (forward-paragraph -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2117 ;; (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\b") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2118 ;; We are after \n now, so look for the rest |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2119 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2120 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2121 (setq cut (looking-at "\\(\\`\n?\\|\n\\)=cut\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2122 (setq over (looking-at "\\(\\`\n?\\|\n\\)=over\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2123 t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2124 (if (and over |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2125 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2126 (forward-paragraph -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2127 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2128 (setq pos (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2129 (setq cut (buffer-substring (point) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2130 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2131 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2132 (point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2133 (delete-char (- (save-excursion (end-of-line) (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2134 (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2135 (setq res (expand-abbrev)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2136 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2137 (goto-char pos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2138 (insert cut)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2139 res)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2140 nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2141 (cperl-ensure-newlines (if cut 2 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2142 (forward-line 2))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2143 ((get-text-property (point) 'in-pod) ; In POD section |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2144 (cperl-ensure-newlines 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2145 (forward-line 2)) |
20323 | 2146 ((looking-at "\n[ \t]*$") ; Next line is empty - use it. |
2147 (forward-line 1) | |
2148 (cperl-indent-line)) | |
2149 (t | |
2150 (newline-and-indent)))))) | |
2151 | |
2152 (defun cperl-electric-semi (arg) | |
2153 "Insert character and correct line's indentation." | |
2154 (interactive "P") | |
2155 (if cperl-auto-newline | |
2156 (cperl-electric-terminator arg) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2157 (self-insert-command (prefix-numeric-value arg)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2158 (if cperl-autoindent-on-semi |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2159 (cperl-indent-line)))) |
20323 | 2160 |
2161 (defun cperl-electric-terminator (arg) | |
2162 "Insert character and correct line's indentation." | |
2163 (interactive "P") | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2164 (let ((end (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2165 (auto (and cperl-auto-newline |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2166 (or (not (eq last-command-char ?:)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2167 cperl-auto-newline-after-colon))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2168 insertpos) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2169 (if (and ;;(not arg) |
20323 | 2170 (eolp) |
2171 (not (save-excursion | |
2172 (beginning-of-line) | |
2173 (skip-chars-forward " \t") | |
2174 (or | |
2175 ;; Ignore in comment lines | |
2176 (= (following-char) ?#) | |
2177 ;; Colon is special only after a label | |
2178 ;; So quickly rule out most other uses of colon | |
2179 ;; and do no indentation for them. | |
2180 (and (eq last-command-char ?:) | |
2181 (save-excursion | |
2182 (forward-word 1) | |
2183 (skip-chars-forward " \t") | |
2184 (and (< (point) end) | |
2185 (progn (goto-char (- end 1)) | |
2186 (not (looking-at ":")))))) | |
2187 (progn | |
2188 (beginning-of-defun) | |
2189 (let ((pps (parse-partial-sexp (point) end))) | |
2190 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))))) | |
2191 (progn | |
2192 (self-insert-command (prefix-numeric-value arg)) | |
2193 ;;(forward-char -1) | |
2194 (if auto (setq insertpos (point-marker))) | |
2195 ;;(forward-char 1) | |
2196 (cperl-indent-line) | |
2197 (if auto | |
2198 (progn | |
2199 (newline) | |
2200 (cperl-indent-line))) | |
2201 (save-excursion | |
2202 (if insertpos (goto-char (1- (marker-position insertpos))) | |
2203 (forward-char -1)) | |
2204 (delete-char 1)))) | |
2205 (if insertpos | |
2206 (save-excursion | |
2207 (goto-char insertpos) | |
2208 (self-insert-command (prefix-numeric-value arg))) | |
2209 (self-insert-command (prefix-numeric-value arg))))) | |
2210 | |
2211 (defun cperl-electric-backspace (arg) | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2212 "Backspace, or remove the whitespace around the point inserted by an electric |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2213 key. Will untabify if `cperl-electric-backspace-untabify' is non-nil." |
20323 | 2214 (interactive "p") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2215 (if (and cperl-auto-newline |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2216 (memq last-command '(cperl-electric-semi |
20323 | 2217 cperl-electric-terminator |
2218 cperl-electric-lbrace)) | |
2219 (memq (preceding-char) '(?\ ?\t ?\n))) | |
2220 (let (p) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2221 (if (eq last-command 'cperl-electric-lbrace) |
20323 | 2222 (skip-chars-forward " \t\n")) |
2223 (setq p (point)) | |
2224 (skip-chars-backward " \t\n") | |
2225 (delete-region (point) p)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2226 (and (eq last-command 'cperl-electric-else) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2227 ;; We are removing the whitespace *inside* cperl-electric-else |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2228 (setq this-command 'cperl-electric-else-really)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2229 (if (and cperl-auto-newline |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2230 (eq last-command 'cperl-electric-else-really) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2231 (memq (preceding-char) '(?\ ?\t ?\n))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2232 (let (p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2233 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2234 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2235 (skip-chars-backward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2236 (delete-region (point) p)) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2237 (if cperl-electric-backspace-untabify |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2238 (backward-delete-char-untabify arg) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2239 (delete-backward-char arg))))) |
20323 | 2240 |
50255
a716a67fdf9d
(cperl-electric-backspace): Add delete-selection property.
Kim F. Storm <storm@cua.dk>
parents:
49919
diff
changeset
|
2241 (put 'cperl-electric-backspace 'delete-selection 'supersede) |
a716a67fdf9d
(cperl-electric-backspace): Add delete-selection property.
Kim F. Storm <storm@cua.dk>
parents:
49919
diff
changeset
|
2242 |
20323 | 2243 (defun cperl-inside-parens-p () |
2244 (condition-case () | |
2245 (save-excursion | |
2246 (save-restriction | |
2247 (narrow-to-region (point) | |
2248 (progn (beginning-of-defun) (point))) | |
2249 (goto-char (point-max)) | |
2250 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
2251 (error nil))) | |
2252 | |
2253 (defun cperl-indent-command (&optional whole-exp) | |
2254 "Indent current line as Perl code, or in some cases insert a tab character. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2255 If `cperl-tab-always-indent' is non-nil (the default), always indent current |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2256 line. Otherwise, indent the current line only if point is at the left margin |
20323 | 2257 or in the line's indentation; otherwise insert a tab. |
2258 | |
2259 A numeric argument, regardless of its value, | |
2260 means indent rigidly all the lines of the expression starting after point | |
2261 so that this line becomes properly indented. | |
2262 The relative indentation among the lines of the expression are preserved." | |
2263 (interactive "P") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2264 (cperl-update-syntaxification (point) (point)) |
20323 | 2265 (if whole-exp |
2266 ;; If arg, always indent this line as Perl | |
2267 ;; and shift remaining lines of expression the same amount. | |
2268 (let ((shift-amt (cperl-indent-line)) | |
2269 beg end) | |
2270 (save-excursion | |
2271 (if cperl-tab-always-indent | |
2272 (beginning-of-line)) | |
2273 (setq beg (point)) | |
2274 (forward-sexp 1) | |
2275 (setq end (point)) | |
2276 (goto-char beg) | |
2277 (forward-line 1) | |
2278 (setq beg (point))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2279 (if (and shift-amt (> end beg)) |
20323 | 2280 (indent-code-rigidly beg end shift-amt "#"))) |
2281 (if (and (not cperl-tab-always-indent) | |
2282 (save-excursion | |
2283 (skip-chars-backward " \t") | |
2284 (not (bolp)))) | |
2285 (insert-tab) | |
2286 (cperl-indent-line)))) | |
2287 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2288 (defun cperl-indent-line (&optional parse-data) |
20323 | 2289 "Indent current line as Perl code. |
2290 Return the amount the indentation changed by." | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2291 (let ((case-fold-search nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2292 (pos (- (point-max) (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2293 indent i beg shift-amt) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2294 (setq indent (cperl-calculate-indent parse-data) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2295 i indent) |
20323 | 2296 (beginning-of-line) |
2297 (setq beg (point)) | |
2298 (cond ((or (eq indent nil) (eq indent t)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2299 (setq indent (current-indentation) i nil)) |
20323 | 2300 ;;((eq indent t) ; Never? |
2301 ;; (setq indent (cperl-calculate-indent-within-comment))) | |
2302 ;;((looking-at "[ \t]*#") | |
2303 ;; (setq indent 0)) | |
2304 (t | |
2305 (skip-chars-forward " \t") | |
2306 (if (listp indent) (setq indent (car indent))) | |
2307 (cond ((looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]") | |
2308 (and (> indent 0) | |
2309 (setq indent (max cperl-min-label-indent | |
2310 (+ indent cperl-label-offset))))) | |
2311 ((= (following-char) ?}) | |
2312 (setq indent (- indent cperl-indent-level))) | |
2313 ((memq (following-char) '(?\) ?\])) ; To line up with opening paren. | |
2314 (setq indent (+ indent cperl-close-paren-offset))) | |
2315 ((= (following-char) ?{) | |
2316 (setq indent (+ indent cperl-brace-offset)))))) | |
2317 (skip-chars-forward " \t") | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2318 (setq shift-amt (and i (- indent (current-column)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2319 (if (or (not shift-amt) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2320 (zerop shift-amt)) |
20323 | 2321 (if (> (- (point-max) pos) (point)) |
2322 (goto-char (- (point-max) pos))) | |
2323 (delete-region beg (point)) | |
2324 (indent-to indent) | |
2325 ;; If initial point was within line's indentation, | |
2326 ;; position after the indentation. Else stay at same point in text. | |
2327 (if (> (- (point-max) pos) (point)) | |
2328 (goto-char (- (point-max) pos)))) | |
2329 shift-amt)) | |
2330 | |
2331 (defun cperl-after-label () | |
2332 ;; Returns true if the point is after label. Does not do save-excursion. | |
2333 (and (eq (preceding-char) ?:) | |
2334 (memq (char-syntax (char-after (- (point) 2))) | |
2335 '(?w ?_)) | |
2336 (progn | |
2337 (backward-sexp) | |
2338 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]")))) | |
2339 | |
2340 (defun cperl-get-state (&optional parse-start start-state) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2341 ;; returns list (START STATE DEPTH PRESTART), |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2342 ;; START is a good place to start parsing, or equal to |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2343 ;; PARSE-START if preset, |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2344 ;; STATE is what is returned by `parse-partial-sexp'. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2345 ;; DEPTH is true is we are immediately after end of block |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2346 ;; which contains START. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2347 ;; PRESTART is the position basing on which START was found. |
20323 | 2348 (save-excursion |
2349 (let ((start-point (point)) depth state start prestart) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2350 (if (and parse-start |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2351 (<= parse-start start-point)) |
20323 | 2352 (goto-char parse-start) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2353 (beginning-of-defun) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2354 (setq start-state nil)) |
20323 | 2355 (setq prestart (point)) |
2356 (if start-state nil | |
2357 ;; Try to go out, if sub is not on the outermost level | |
2358 (while (< (point) start-point) | |
2359 (setq start (point) parse-start start depth nil | |
2360 state (parse-partial-sexp start start-point -1)) | |
2361 (if (> (car state) -1) nil | |
2362 ;; The current line could start like }}}, so the indentation | |
2363 ;; corresponds to a different level than what we reached | |
2364 (setq depth t) | |
2365 (beginning-of-line 2))) ; Go to the next line. | |
2366 (if start (goto-char start))) ; Not at the start of file | |
2367 (setq start (point)) | |
2368 (or state (setq state (parse-partial-sexp start start-point -1 nil start-state))) | |
2369 (list start state depth prestart)))) | |
2370 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2371 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" ! |
20323 | 2372 ;; Positions is before ?\{. Checks whether it starts a block. |
2373 ;; No save-excursion! | |
2374 (cperl-backward-to-noncomment (point-min)) | |
2375 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp | |
2376 ; Label may be mixed up with `$blah :' | |
2377 (save-excursion (cperl-after-label)) | |
2378 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
2379 (progn | |
2380 (backward-sexp) | |
2381 ;; Need take into account `bless', `return', `tr',... | |
2382 (or (and (looking-at "[a-zA-Z0-9_:]+[ \t\n\f]*[{#]") ; Method call syntax | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2383 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>"))) |
20323 | 2384 (progn |
2385 (skip-chars-backward " \t\n\f") | |
2386 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
2387 (progn | |
2388 (backward-sexp) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2389 (looking-at |
20323 | 2390 "sub[ \t]+[a-zA-Z0-9_:]+[ \t\n\f]*\\(([^()]*)[ \t\n\f]*\\)?[#{]"))))))))) |
2391 | |
2392 (defvar cperl-look-for-prop '((pod in-pod) (here-doc-delim here-doc-group))) | |
2393 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2394 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start |
20323 | 2395 "Return appropriate indentation for current line as Perl code. |
2396 In usual case returns an integer: the column to indent to. | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2397 Returns nil if line starts inside a string, t if in a comment. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2398 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2399 Will not correct the indentation for labels, but will correct it for braces |
49516
774eed0b5c78
(cperl-beautify-level, cperl-beautify-regexp): Fix use of
Juanma Barranquero <lekktu@gmail.com>
parents:
49304
diff
changeset
|
2400 and closing parentheses and brackets." |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2401 (cperl-update-syntaxification (point) (point)) |
20323 | 2402 (save-excursion |
2403 (if (or | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2404 (and (memq (get-text-property (point) 'syntax-type) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2405 '(pod here-doc here-doc-delim format)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2406 (not (get-text-property (point) 'indentable))) |
20323 | 2407 ;; before start of POD - whitespace found since do not have 'pod! |
2408 (and (looking-at "[ \t]*\n=") | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2409 (error "Spaces before POD section!")) |
20323 | 2410 (and (not cperl-indent-left-aligned-comments) |
2411 (looking-at "^#"))) | |
2412 nil | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2413 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2414 (let ((indent-point (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2415 (char-after (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2416 (skip-chars-forward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2417 (following-char))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2418 (in-pod (get-text-property (point) 'in-pod)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2419 (pre-indent-point (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2420 p prop look-prop is-block delim) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2421 (cond |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2422 (in-pod |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2423 ;; In the verbatim part, probably code example. What to do??? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2424 ) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2425 (t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2426 (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2427 ;; Not in POD |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2428 (cperl-backward-to-noncomment nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2429 (setq p (max (point-min) (1- (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2430 prop (get-text-property p 'syntax-type) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2431 look-prop (or (nth 1 (assoc prop cperl-look-for-prop)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2432 'syntax-type)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2433 (if (memq prop '(pod here-doc format here-doc-delim)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2434 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2435 (goto-char (or (previous-single-property-change p look-prop) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2436 (point-min))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2437 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2438 (setq pre-indent-point (point))))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2439 (goto-char pre-indent-point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2440 (let* ((case-fold-search nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2441 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2442 (start (or (nth 2 parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2443 (nth 0 s-s))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2444 (state (nth 1 s-s)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2445 (containing-sexp (car (cdr state))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2446 old-indent) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2447 (if (and |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2448 ;;containing-sexp ;; We are buggy at toplevel :-( |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2449 parse-data) |
20323 | 2450 (progn |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2451 (setcar parse-data pre-indent-point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2452 (setcar (cdr parse-data) state) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2453 (or (nth 2 parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2454 (setcar (cddr parse-data) start)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2455 ;; Before this point: end of statement |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2456 (setq old-indent (nth 3 parse-data)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2457 (cond ((get-text-property (point) 'indentable) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2458 ;; indent to just after the surrounding open, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2459 ;; skip blanks if we do not close the expression. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2460 (goto-char (1+ (previous-single-property-change (point) 'indentable))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2461 (or (memq char-after (append ")]}" nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2462 (looking-at "[ \t]*\\(#\\|$\\)") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2463 (skip-chars-forward " \t")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2464 (current-column)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2465 ((or (nth 3 state) (nth 4 state)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2466 ;; return nil or t if should not change this line |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2467 (nth 4 state)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2468 ;; XXXX Do we need to special-case this? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2469 ((null containing-sexp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2470 ;; Line is at top level. May be data or function definition, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2471 ;; or may be function argument declaration. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2472 ;; Indent like the previous top level line |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2473 ;; unless that ends in a closeparen without semicolon, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2474 ;; in which case this line is the first argument decl. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2475 (skip-chars-forward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2476 (+ (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2477 (goto-char start) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2478 (- (current-indentation) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2479 (if (nth 2 s-s) cperl-indent-level 0))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2480 (if (= char-after ?{) cperl-continued-brace-offset 0) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2481 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2482 (cperl-backward-to-noncomment (or old-indent (point-min))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2483 ;; Look at previous line that's at column 0 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2484 ;; to determine whether we are in top-level decls |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2485 ;; or function's arg decls. Set basic-indent accordingly. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2486 ;; Now add a little if this is a continuation line. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2487 (if (or (bobp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2488 (eq (point) old-indent) ; old-indent was at comment |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2489 (eq (preceding-char) ?\;) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2490 ;; Had ?\) too |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2491 (and (eq (preceding-char) ?\}) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2492 (cperl-after-block-and-statement-beg |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2493 (point-min))) ; Was start - too close |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2494 (memq char-after (append ")]}" nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2495 (and (eq (preceding-char) ?\:) ; label |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2496 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2497 (forward-sexp -1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2498 (skip-chars-backward " \t") |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2499 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:"))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2500 (get-text-property (point) 'first-format-line)) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2501 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2502 (if (and parse-data |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2503 (not (eq char-after ?\C-j))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2504 (setcdr (cddr parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2505 (list pre-indent-point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2506 0) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2507 cperl-continued-statement-offset)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2508 ((not |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2509 (or (setq is-block |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2510 (and (setq delim (= (char-after containing-sexp) ?{)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2511 (save-excursion ; Is it a hash? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2512 (goto-char containing-sexp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2513 (cperl-block-p)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2514 cperl-indent-parens-as-block)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2515 ;; group is an expression, not a block: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2516 ;; indent to just after the surrounding open parens, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2517 ;; skip blanks if we do not close the expression. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2518 (goto-char (1+ containing-sexp)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2519 (or (memq char-after |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2520 (append (if delim "}" ")]}") nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2521 (looking-at "[ \t]*\\(#\\|$\\)") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2522 (skip-chars-forward " \t")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2523 (+ (current-column) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2524 (if (and delim |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2525 (eq char-after ?\})) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2526 ;; Correct indentation of trailing ?\} |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2527 (+ cperl-indent-level cperl-close-paren-offset) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2528 0))) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2529 ;;; ((and (/= (char-after containing-sexp) ?{) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2530 ;;; (not cperl-indent-parens-as-block)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2531 ;;; ;; line is expression, not statement: |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2532 ;;; ;; indent to just after the surrounding open, |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2533 ;;; ;; skip blanks if we do not close the expression. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2534 ;;; (goto-char (1+ containing-sexp)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2535 ;;; (or (memq char-after (append ")]}" nil)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2536 ;;; (looking-at "[ \t]*\\(#\\|$\\)") |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2537 ;;; (skip-chars-forward " \t")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2538 ;;; (current-column)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2539 ;;; ((progn |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2540 ;;; ;; Containing-expr starts with \{. Check whether it is a hash. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2541 ;;; (goto-char containing-sexp) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2542 ;;; (and (not (cperl-block-p)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2543 ;;; (not cperl-indent-parens-as-block))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2544 ;;; (goto-char (1+ containing-sexp)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2545 ;;; (or (eq char-after ?\}) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2546 ;;; (looking-at "[ \t]*\\(#\\|$\\)") |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2547 ;;; (skip-chars-forward " \t")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2548 ;;; (+ (current-column) ; Correct indentation of trailing ?\} |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2549 ;;; (if (eq char-after ?\}) (+ cperl-indent-level |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
2550 ;;; cperl-close-paren-offset) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2551 ;;; 0))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2552 (t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2553 ;; Statement level. Is it a continuation or a new statement? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2554 ;; Find previous non-comment character. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2555 (goto-char pre-indent-point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2556 (cperl-backward-to-noncomment containing-sexp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2557 ;; Back up over label lines, since they don't |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2558 ;; affect whether our line is a continuation. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2559 ;; (Had \, too) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2560 (while ;;(or (eq (preceding-char) ?\,) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2561 (and (eq (preceding-char) ?:) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2562 (or ;;(eq (char-after (- (point) 2)) ?\') ; ???? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2563 (memq (char-syntax (char-after (- (point) 2))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2564 '(?w ?_)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2565 ;;) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2566 (if (eq (preceding-char) ?\,) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2567 ;; Will go to beginning of line, essentially. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2568 ;; Will ignore embedded sexpr XXXX. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2569 (cperl-backward-to-start-of-continued-exp containing-sexp)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2570 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2571 (cperl-backward-to-noncomment containing-sexp)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2572 ;; Now we get the answer. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2573 (if (not (or (eq (1- (point)) containing-sexp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2574 (memq (preceding-char) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2575 (append (if is-block " ;{" " ,;{") '(nil))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2576 (and (eq (preceding-char) ?\}) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2577 (cperl-after-block-and-statement-beg |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2578 containing-sexp)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2579 (get-text-property (point) 'first-format-line))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2580 ;; This line is continuation of preceding line's statement; |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2581 ;; indent `cperl-continued-statement-offset' more than the |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2582 ;; previous line of the statement. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2583 ;; |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2584 ;; There might be a label on this line, just |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2585 ;; consider it bad style and ignore it. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2586 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2587 (cperl-backward-to-start-of-continued-exp containing-sexp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2588 (+ (if (memq char-after (append "}])" nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2589 0 ; Closing parenth |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2590 cperl-continued-statement-offset) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2591 (if (or is-block |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2592 (not delim) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2593 (not (eq char-after ?\}))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2594 0 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2595 ;; Now it is a hash reference |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2596 (+ cperl-indent-level cperl-close-paren-offset)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2597 (if (looking-at "\\w+[ \t]*:") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2598 (if (> (current-indentation) cperl-min-label-indent) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2599 (- (current-indentation) cperl-label-offset) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2600 ;; Do not move `parse-data', this should |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2601 ;; be quick anyway (this comment comes |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2602 ;; from different location): |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2603 (cperl-calculate-indent)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2604 (current-column)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2605 (if (eq char-after ?\{) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2606 cperl-continued-brace-offset 0))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2607 ;; This line starts a new statement. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2608 ;; Position following last unclosed open. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2609 (goto-char containing-sexp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2610 ;; Is line first statement after an open-brace? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2611 (or |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2612 ;; If no, find that first statement and indent like |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2613 ;; it. If the first statement begins with label, do |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2614 ;; not believe when the indentation of the label is too |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2615 ;; small. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2616 (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2617 (forward-char 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2618 (setq old-indent (current-indentation)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2619 (let ((colon-line-end 0)) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2620 (while |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2621 (progn (skip-chars-forward " \t\n") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2622 (looking-at "#\\|[a-zA-Z0-9_$]*:[^:]\\|=[a-zA-Z]")) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2623 ;; Skip over comments and labels following openbrace. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2624 (cond ((= (following-char) ?\#) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2625 (forward-line 1)) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2626 ((= (following-char) ?\=) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2627 (goto-char |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2628 (or (next-single-property-change (point) 'in-pod) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
2629 (point-max)))) ; do not loop if no syntaxification |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2630 ;; label: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2631 (t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2632 (save-excursion (end-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2633 (setq colon-line-end (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2634 (search-forward ":")))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2635 ;; The first following code counts |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2636 ;; if it is before the line we want to indent. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2637 (and (< (point) indent-point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2638 (if (> colon-line-end (point)) ; After label |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2639 (if (> (current-indentation) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2640 cperl-min-label-indent) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2641 (- (current-indentation) cperl-label-offset) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2642 ;; Do not believe: `max' is involved |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2643 (+ old-indent cperl-indent-level)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2644 (current-column))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2645 ;; If no previous statement, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2646 ;; indent it relative to line brace is on. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2647 ;; For open brace in column zero, don't let statement |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2648 ;; start there too. If cperl-indent-level is zero, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2649 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2650 ;; For open-braces not the first thing in a line, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2651 ;; add in cperl-brace-imaginary-offset. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2652 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2653 ;; If first thing on a line: ????? |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2654 (+ (if (and (bolp) (zerop cperl-indent-level)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2655 (+ cperl-brace-offset cperl-continued-statement-offset) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2656 cperl-indent-level) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2657 (if (or is-block |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2658 (not delim) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2659 (not (eq char-after ?\}))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2660 0 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2661 ;; Now it is a hash reference |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2662 (+ cperl-indent-level cperl-close-paren-offset)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2663 ;; Move back over whitespace before the openbrace. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2664 ;; If openbrace is not first nonwhite thing on the line, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2665 ;; add the cperl-brace-imaginary-offset. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2666 (progn (skip-chars-backward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2667 (if (bolp) 0 cperl-brace-imaginary-offset)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2668 ;; If the openbrace is preceded by a parenthesized exp, |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2669 ;; move to the beginning of that; |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2670 ;; possibly a different line |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2671 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2672 (if (eq (preceding-char) ?\)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2673 (forward-sexp -1)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2674 ;; In the case it starts a subroutine, indent with |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2675 ;; respect to `sub', not with respect to the |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2676 ;; first thing on the line, say in the case of |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2677 ;; anonymous sub in a hash. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2678 ;; |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2679 (skip-chars-backward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2680 (if (and (eq (preceding-char) ?b) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2681 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2682 (forward-sexp -1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2683 (looking-at "sub\\>")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2684 (setq old-indent |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2685 (nth 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2686 (parse-partial-sexp |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2687 (save-excursion (beginning-of-line) (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2688 (point))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2689 (progn (goto-char (1+ old-indent)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2690 (skip-chars-forward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2691 (current-column)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2692 ;; Get initial indentation of the line we are on. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2693 ;; If line starts with label, calculate label indentation |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2694 (if (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2695 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2696 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2697 (if (> (current-indentation) cperl-min-label-indent) |
20323 | 2698 (- (current-indentation) cperl-label-offset) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2699 ;; Do not move `parse-data', this should |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2700 ;; be quick anyway: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2701 (cperl-calculate-indent)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2702 (current-indentation)))))))))))))) |
20323 | 2703 |
54556
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2704 ;; (defvar cperl-indent-alist |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2705 ;; '((string nil) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2706 ;; (comment nil) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2707 ;; (toplevel 0) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2708 ;; (toplevel-after-parenth 2) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2709 ;; (toplevel-continued 2) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2710 ;; (expression 1)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2711 ;; "Alist of indentation rules for CPerl mode. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2712 ;; The values mean: |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2713 ;; nil: do not indent; |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2714 ;; number: add this amount of indentation. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2715 |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2716 ;; Not finished, not used.") |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2717 |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2718 ;; (defun cperl-where-am-i (&optional parse-start start-state) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2719 ;; ;; Unfinished |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2720 ;; "Return a list of lists ((TYPE POS)...) of good points before the point. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2721 ;; ;; POS may be nil if it is hard to find, say, when TYPE is `string' or `comment'. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2722 |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2723 ;; ;; Not finished, not used." |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2724 ;; (save-excursion |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2725 ;; (let* ((start-point (point)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2726 ;; (s-s (cperl-get-state)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2727 ;; (start (nth 0 s-s)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2728 ;; (state (nth 1 s-s)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2729 ;; (prestart (nth 3 s-s)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2730 ;; (containing-sexp (car (cdr state))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2731 ;; (case-fold-search nil) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2732 ;; (res (list (list 'parse-start start) (list 'parse-prestart prestart)))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2733 ;; (cond ((nth 3 state) ; In string |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2734 ;; (setq res (cons (list 'string nil (nth 3 state)) res))) ; What started string |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2735 ;; ((nth 4 state) ; In comment |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2736 ;; (setq res (cons '(comment) res))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2737 ;; ((null containing-sexp) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2738 ;; ;; Line is at top level. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2739 ;; ;; Indent like the previous top level line |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2740 ;; ;; unless that ends in a closeparen without semicolon, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2741 ;; ;; in which case this line is the first argument decl. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2742 ;; (cperl-backward-to-noncomment (or parse-start (point-min))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2743 ;; ;;(skip-chars-backward " \t\f\n") |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2744 ;; (cond |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2745 ;; ((or (bobp) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2746 ;; (memq (preceding-char) (append ";}" nil))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2747 ;; (setq res (cons (list 'toplevel start) res))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2748 ;; ((eq (preceding-char) ?\) ) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2749 ;; (setq res (cons (list 'toplevel-after-parenth start) res))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2750 ;; (t |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2751 ;; (setq res (cons (list 'toplevel-continued start) res))))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2752 ;; ((/= (char-after containing-sexp) ?{) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2753 ;; ;; line is expression, not statement: |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2754 ;; ;; indent to just after the surrounding open. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2755 ;; ;; skip blanks if we do not close the expression. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2756 ;; (setq res (cons (list 'expression-blanks |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2757 ;; (progn |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2758 ;; (goto-char (1+ containing-sexp)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2759 ;; (or (looking-at "[ \t]*\\(#\\|$\\)") |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2760 ;; (skip-chars-forward " \t")) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2761 ;; (point))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2762 ;; (cons (list 'expression containing-sexp) res)))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2763 ;; ((progn |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2764 ;; ;; Containing-expr starts with \{. Check whether it is a hash. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2765 ;; (goto-char containing-sexp) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2766 ;; (not (cperl-block-p))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2767 ;; (setq res (cons (list 'expression-blanks |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2768 ;; (progn |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2769 ;; (goto-char (1+ containing-sexp)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2770 ;; (or (looking-at "[ \t]*\\(#\\|$\\)") |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2771 ;; (skip-chars-forward " \t")) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2772 ;; (point))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2773 ;; (cons (list 'expression containing-sexp) res)))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2774 ;; (t |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2775 ;; ;; Statement level. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2776 ;; (setq res (cons (list 'in-block containing-sexp) res)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2777 ;; ;; Is it a continuation or a new statement? |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2778 ;; ;; Find previous non-comment character. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2779 ;; (cperl-backward-to-noncomment containing-sexp) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2780 ;; ;; Back up over label lines, since they don't |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2781 ;; ;; affect whether our line is a continuation. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2782 ;; ;; Back up comma-delimited lines too ????? |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2783 ;; (while (or (eq (preceding-char) ?\,) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2784 ;; (save-excursion (cperl-after-label))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2785 ;; (if (eq (preceding-char) ?\,) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2786 ;; ;; Will go to beginning of line, essentially |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2787 ;; ;; Will ignore embedded sexpr XXXX. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2788 ;; (cperl-backward-to-start-of-continued-exp containing-sexp)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2789 ;; (beginning-of-line) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2790 ;; (cperl-backward-to-noncomment containing-sexp)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2791 ;; ;; Now we get the answer. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2792 ;; (if (not (memq (preceding-char) (append ";}{" '(nil)))) ; Was ?\, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2793 ;; ;; This line is continuation of preceding line's statement. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2794 ;; (list (list 'statement-continued containing-sexp)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2795 ;; ;; This line starts a new statement. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2796 ;; ;; Position following last unclosed open. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2797 ;; (goto-char containing-sexp) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2798 ;; ;; Is line first statement after an open-brace? |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2799 ;; (or |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2800 ;; ;; If no, find that first statement and indent like |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2801 ;; ;; it. If the first statement begins with label, do |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2802 ;; ;; not believe when the indentation of the label is too |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2803 ;; ;; small. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2804 ;; (save-excursion |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2805 ;; (forward-char 1) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2806 ;; (let ((colon-line-end 0)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2807 ;; (while (progn (skip-chars-forward " \t\n" start-point) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2808 ;; (and (< (point) start-point) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2809 ;; (looking-at |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2810 ;; "#\\|[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2811 ;; ;; Skip over comments and labels following openbrace. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2812 ;; (cond ((= (following-char) ?\#) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2813 ;; ;;(forward-line 1) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2814 ;; (end-of-line)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2815 ;; ;; label: |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2816 ;; (t |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2817 ;; (save-excursion (end-of-line) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2818 ;; (setq colon-line-end (point))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2819 ;; (search-forward ":")))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2820 ;; ;; Now at the point, after label, or at start |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2821 ;; ;; of first statement in the block. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2822 ;; (and (< (point) start-point) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2823 ;; (if (> colon-line-end (point)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2824 ;; ;; Before statement after label |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2825 ;; (if (> (current-indentation) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2826 ;; cperl-min-label-indent) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2827 ;; (list (list 'label-in-block (point))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2828 ;; ;; Do not believe: `max' is involved |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2829 ;; (list |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2830 ;; (list 'label-in-block-min-indent (point)))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2831 ;; ;; Before statement |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2832 ;; (list 'statement-in-block (point)))))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2833 ;; ;; If no previous statement, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2834 ;; ;; indent it relative to line brace is on. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2835 ;; ;; For open brace in column zero, don't let statement |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2836 ;; ;; start there too. If cperl-indent-level is zero, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2837 ;; ;; use cperl-brace-offset + cperl-continued-statement-offset instead. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2838 ;; ;; For open-braces not the first thing in a line, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2839 ;; ;; add in cperl-brace-imaginary-offset. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2840 |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2841 ;; ;; If first thing on a line: ????? |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2842 ;; (+ (if (and (bolp) (zerop cperl-indent-level)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2843 ;; (+ cperl-brace-offset cperl-continued-statement-offset) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2844 ;; cperl-indent-level) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2845 ;; ;; Move back over whitespace before the openbrace. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2846 ;; ;; If openbrace is not first nonwhite thing on the line, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2847 ;; ;; add the cperl-brace-imaginary-offset. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2848 ;; (progn (skip-chars-backward " \t") |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2849 ;; (if (bolp) 0 cperl-brace-imaginary-offset)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2850 ;; ;; If the openbrace is preceded by a parenthesized exp, |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2851 ;; ;; move to the beginning of that; |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2852 ;; ;; possibly a different line |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2853 ;; (progn |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2854 ;; (if (eq (preceding-char) ?\)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2855 ;; (forward-sexp -1)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2856 ;; ;; Get initial indentation of the line we are on. |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2857 ;; ;; If line starts with label, calculate label indentation |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2858 ;; (if (save-excursion |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2859 ;; (beginning-of-line) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2860 ;; (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2861 ;; (if (> (current-indentation) cperl-min-label-indent) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2862 ;; (- (current-indentation) cperl-label-offset) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2863 ;; (cperl-calculate-indent)) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2864 ;; (current-indentation)))))))) |
96f4b4c88092
(cperl-indent-alist, cperl-where-am-i): Comment out (it's unused and
Juanma Barranquero <lekktu@gmail.com>
parents:
53812
diff
changeset
|
2865 ;; res))) |
20323 | 2866 |
2867 (defun cperl-calculate-indent-within-comment () | |
2868 "Return the indentation amount for line, assuming that | |
2869 the current line is to be regarded as part of a block comment." | |
2870 (let (end star-start) | |
2871 (save-excursion | |
2872 (beginning-of-line) | |
2873 (skip-chars-forward " \t") | |
2874 (setq end (point)) | |
2875 (and (= (following-char) ?#) | |
2876 (forward-line -1) | |
2877 (cperl-to-comment-or-eol) | |
2878 (setq end (point))) | |
2879 (goto-char end) | |
2880 (current-column)))) | |
2881 | |
2882 | |
2883 (defun cperl-to-comment-or-eol () | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
2884 "Go to position before comment on the current line, or to end of line. |
20323 | 2885 Returns true if comment is found." |
2886 (let (state stop-in cpoint (lim (progn (end-of-line) (point)))) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2887 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2888 (if (or |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2889 (eq (get-text-property (point) 'syntax-type) 'pod) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2890 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2891 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2892 ;; Else |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2893 (while (not stop-in) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2894 (setq state (parse-partial-sexp (point) lim nil nil nil t)) |
20323 | 2895 ; stop at comment |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2896 ;; If fails (beginning-of-line inside sexp), then contains not-comment |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2897 (if (nth 4 state) ; After `#'; |
20323 | 2898 ; (nth 2 state) can be |
2899 ; beginning of m,s,qq and so | |
2900 ; on | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2901 (if (nth 2 state) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2902 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2903 (setq cpoint (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2904 (goto-char (nth 2 state)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2905 (cond |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2906 ((looking-at "\\(s\\|tr\\)\\>") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2907 (or (re-search-forward |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2908 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2909 lim 'move) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2910 (setq stop-in t))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2911 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2912 (or (re-search-forward |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2913 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2914 lim 'move) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2915 (setq stop-in t))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2916 (t ; It was fair comment |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2917 (setq stop-in t) ; Finish |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2918 (goto-char (1- cpoint))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2919 (setq stop-in t) ; Finish |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2920 (forward-char -1)) |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
2921 (setq stop-in t))) ; Finish |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
2922 (nth 4 state)))) |
20323 | 2923 |
2924 (defsubst cperl-1- (p) | |
2925 (max (point-min) (1- p))) | |
2926 | |
2927 (defsubst cperl-1+ (p) | |
2928 (min (point-max) (1+ p))) | |
2929 | |
2930 (defsubst cperl-modify-syntax-type (at how) | |
2931 (if (< at (point-max)) | |
2932 (progn | |
2933 (put-text-property at (1+ at) 'syntax-table how) | |
2934 (put-text-property at (1+ at) 'rear-nonsticky t)))) | |
2935 | |
2936 (defun cperl-protect-defun-start (s e) | |
2937 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations | |
2938 (save-excursion | |
2939 (goto-char s) | |
2940 (while (re-search-forward "^\\s(" e 'to-end) | |
2941 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct)))) | |
2942 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2943 (defun cperl-commentify (bb e string &optional noface) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2944 (if cperl-use-syntax-table-text-property |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2945 (if (eq noface 'n) ; Only immediate |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2946 nil |
20323 | 2947 ;; We suppose that e is _after_ the end of construction, as after eol. |
2948 (setq string (if string cperl-st-sfence cperl-st-cfence)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2949 (if (> bb (- e 2)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2950 ;; one-char string/comment?! |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2951 (cperl-modify-syntax-type bb cperl-st-punct) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2952 (cperl-modify-syntax-type bb string) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2953 (cperl-modify-syntax-type (1- e) string)) |
20323 | 2954 (if (and (eq string cperl-st-sfence) (> (- e 2) bb)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2955 (put-text-property (1+ bb) (1- e) |
20323 | 2956 'syntax-table cperl-string-syntax-table)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2957 (cperl-protect-defun-start bb e)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2958 ;; Fontify |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2959 (or noface |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2960 (not cperl-pod-here-fontify) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2961 (put-text-property bb e 'face (if string 'font-lock-string-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2962 'font-lock-comment-face))))) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2963 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2964 (defvar cperl-starters '(( ?\( . ?\) ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2965 ( ?\[ . ?\] ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2966 ( ?\{ . ?\} ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2967 ( ?\< . ?\> ))) |
20323 | 2968 |
2969 (defun cperl-forward-re (lim end is-2arg set-st st-l err-l argument | |
2970 &optional ostart oend) | |
2971 ;; Works *before* syntax recognition is done | |
2972 ;; May modify syntax-type text property if the situation is too hard | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
2973 (let (b starter ender st i i2 go-forward reset-st) |
20323 | 2974 (skip-chars-forward " \t") |
2975 ;; ender means matching-char matcher. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2976 (setq b (point) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2977 starter (if (eobp) 0 (char-after b)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2978 ender (cdr (assoc starter cperl-starters))) |
20323 | 2979 ;; What if starter == ?\\ ???? |
2980 (if set-st | |
2981 (if (car st-l) | |
2982 (setq st (car st-l)) | |
2983 (setcar st-l (make-syntax-table)) | |
2984 (setq i 0 st (car st-l)) | |
2985 (while (< i 256) | |
2986 (modify-syntax-entry i "." st) | |
2987 (setq i (1+ i))) | |
2988 (modify-syntax-entry ?\\ "\\" st))) | |
2989 (setq set-st t) | |
2990 ;; Whether we have an intermediate point | |
2991 (setq i nil) | |
2992 ;; Prepare the syntax table: | |
2993 (and set-st | |
2994 (if (not ender) ; m/blah/, s/x//, s/x/y/ | |
2995 (modify-syntax-entry starter "$" st) | |
2996 (modify-syntax-entry starter (concat "(" (list ender)) st) | |
2997 (modify-syntax-entry ender (concat ")" (list starter)) st))) | |
2998 (condition-case bb | |
2999 (progn | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3000 ;; We use `$' syntax class to find matching stuff, but $$ |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3001 ;; is recognized the same as $, so we need to check this manually. |
20323 | 3002 (if (and (eq starter (char-after (cperl-1+ b))) |
3003 (not ender)) | |
3004 ;; $ has TeXish matching rules, so $$ equiv $... | |
3005 (forward-char 2) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3006 (setq reset-st (syntax-table)) |
20323 | 3007 (set-syntax-table st) |
3008 (forward-sexp 1) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3009 (if (<= (point) (1+ b)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3010 (error "Unfinished regular expression")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3011 (set-syntax-table reset-st) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3012 (setq reset-st nil) |
20323 | 3013 ;; Now the problem is with m;blah;; |
3014 (and (not ender) | |
3015 (eq (preceding-char) | |
3016 (char-after (- (point) 2))) | |
3017 (save-excursion | |
3018 (forward-char -2) | |
3019 (= 0 (% (skip-chars-backward "\\\\") 2))) | |
3020 (forward-char -1))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3021 ;; Now we are after the first part. |
20323 | 3022 (and is-2arg ; Have trailing part |
3023 (not ender) | |
3024 (eq (following-char) starter) ; Empty trailing part | |
3025 (progn | |
3026 (or (eq (char-syntax (following-char)) ?.) | |
3027 ;; Make trailing letter into punctuation | |
3028 (cperl-modify-syntax-type (point) cperl-st-punct)) | |
3029 (setq is-2arg nil go-forward t))) ; Ignore the tail | |
3030 (if is-2arg ; Not number => have second part | |
3031 (progn | |
3032 (setq i (point) i2 i) | |
3033 (if ender | |
3034 (if (memq (following-char) '(?\ ?\t ?\n ?\f)) | |
3035 (progn | |
3036 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
3037 (goto-char (match-end 0)) | |
3038 (skip-chars-forward " \t\n\f")) | |
3039 (setq i2 (point)))) | |
3040 (forward-char -1)) | |
3041 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3042 (if ender (modify-syntax-entry ender "." st)) |
20323 | 3043 (setq set-st nil) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3044 (setq ender (cperl-forward-re lim end nil t st-l err-l |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3045 argument starter ender) |
20323 | 3046 ender (nth 2 ender))))) |
3047 (error (goto-char lim) | |
3048 (setq set-st nil) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3049 (if reset-st |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3050 (set-syntax-table reset-st)) |
20323 | 3051 (or end |
3052 (message | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3053 "End of `%s%s%c ... %c' string/RE not found: %s" |
20323 | 3054 argument |
3055 (if ostart (format "%c ... %c" ostart (or oend ostart)) "") | |
3056 starter (or ender starter) bb) | |
3057 (or (car err-l) (setcar err-l b))))) | |
3058 (if set-st | |
3059 (progn | |
3060 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
3061 (if ender (modify-syntax-entry ender "." st)))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3062 ;; i: have 2 args, after end of the first arg |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3063 ;; i2: start of the second arg, if any (before delim iff `ender'). |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3064 ;; ender: the last arg bounded by parens-like chars, the second one of them |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3065 ;; starter: the starting delimiter of the first arg |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3066 ;; go-forward: has 2 args, and the second part is empty |
20323 | 3067 (list i i2 ender starter go-forward))) |
3068 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3069 (defvar font-lock-string-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3070 ;;(defvar font-lock-reference-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3071 (defvar font-lock-constant-face) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3072 (defsubst cperl-postpone-fontification (b e type val &optional now) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3073 ;; Do after syntactic fontification? |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3074 (if cperl-syntaxify-by-font-lock |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3075 (or now (put-text-property b e 'cperl-postpone (cons type val))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3076 (put-text-property b e type val))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3077 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3078 ;;; Here is how the global structures (those which cannot be |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3079 ;;; recognized locally) are marked: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3080 ;; a) PODs: |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3081 ;; Start-to-end is marked `in-pod' ==> t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3082 ;; Each non-literal part is marked `syntax-type' ==> `pod' |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3083 ;; Each literal part is marked `syntax-type' ==> `in-pod' |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3084 ;; b) HEREs: |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3085 ;; Start-to-end is marked `here-doc-group' ==> t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3086 ;; The body is marked `syntax-type' ==> `here-doc' |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3087 ;; The delimiter is marked `syntax-type' ==> `here-doc-delim' |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3088 ;; c) FORMATs: |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3089 ;; First line (to =) marked `first-format-line' ==> t |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3090 ;; After-this--to-end is marked `syntax-type' ==> `format' |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3091 ;; d) 'Q'uoted string: |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3092 ;; part between markers inclusive is marked `syntax-type' ==> `string' |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3093 ;; part between `q' and the first marker is marked `syntax-type' ==> `prestring' |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3094 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3095 (defun cperl-unwind-to-safe (before &optional end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3096 ;; if BEFORE, go to the previous start-of-line on each step of unwinding |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3097 (let ((pos (point)) opos) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3098 (setq opos pos) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3099 (while (and pos (get-text-property pos 'syntax-type)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3100 (setq pos (previous-single-property-change pos 'syntax-type)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3101 (if pos |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3102 (if before |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3103 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3104 (goto-char (cperl-1- pos)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3105 (beginning-of-line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3106 (setq pos (point))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3107 (goto-char (setq pos (cperl-1- pos)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3108 ;; Up to the start |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3109 (goto-char (point-min)))) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3110 ;; Skip empty lines |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3111 (and (looking-at "\n*=") |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3112 (/= 0 (skip-chars-backward "\n")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3113 (forward-char)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3114 (setq pos (point)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3115 (if end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3116 ;; Do the same for end, going small steps |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3117 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3118 (while (and end (get-text-property end 'syntax-type)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3119 (setq pos end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3120 end (next-single-property-change end 'syntax-type))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3121 (or end pos))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3122 |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3123 (defvar cperl-nonoverridable-face) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3124 (defvar font-lock-function-name-face) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3125 (defvar font-lock-comment-face) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3126 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3127 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max) |
20323 | 3128 "Scans the buffer for hard-to-parse Perl constructions. |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3129 If `cperl-pod-here-fontify' is not-nil after evaluation, will fontify |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3130 the sections using `cperl-pod-head-face', `cperl-pod-face', |
20323 | 3131 `cperl-here-face'." |
3132 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3133 (or min (setq min (point-min) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3134 cperl-syntax-state nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3135 cperl-syntax-done-to min)) |
20323 | 3136 (or max (setq max (point-max))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3137 (let* ((cperl-pod-here-fontify (eval cperl-pod-here-fontify)) go tmpend |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3138 face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3139 is-REx is-x-REx REx-comment-start REx-comment-end was-comment i2 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3140 (case-fold-search nil) (inhibit-read-only t) (buffer-undo-list t) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3141 (modified (buffer-modified-p)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3142 (after-change-functions nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3143 (use-syntax-state (and cperl-syntax-state |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3144 (>= min (car cperl-syntax-state)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3145 (state-point (if use-syntax-state |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3146 (car cperl-syntax-state) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3147 (point-min))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3148 (state (if use-syntax-state |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3149 (cdr cperl-syntax-state))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3150 ;; (st-l '(nil)) (err-l '(nil)) ; Would overwrite - propagates from a function call to a function call! |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3151 (st-l (list nil)) (err-l (list nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3152 ;; Somehow font-lock may be not loaded yet... |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3153 (font-lock-string-face (if (boundp 'font-lock-string-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3154 font-lock-string-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3155 'font-lock-string-face)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3156 (font-lock-constant-face (if (boundp 'font-lock-constant-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3157 font-lock-constant-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3158 'font-lock-constant-face)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3159 (font-lock-function-name-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3160 (if (boundp 'font-lock-function-name-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3161 font-lock-function-name-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3162 'font-lock-function-name-face)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3163 (font-lock-comment-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3164 (if (boundp 'font-lock-comment-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3165 font-lock-comment-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3166 'font-lock-comment-face)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3167 (cperl-nonoverridable-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3168 (if (boundp 'cperl-nonoverridable-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3169 cperl-nonoverridable-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3170 'cperl-nonoverridable-face)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3171 (stop-point (if ignore-max |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3172 (point-max) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3173 max)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3174 (search |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3175 (concat |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3176 "\\(\\`\n?\\|^\n\\)=" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3177 "\\|" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3178 ;; One extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3179 "<<" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3180 "\\(" ; 1 + 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3181 ;; First variant "BLAH" or just ``. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3182 "[ \t]*" ; Yes, whitespace is allowed! |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3183 "\\([\"'`]\\)" ; 2 + 1 = 3 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3184 "\\([^\"'`\n]*\\)" ; 3 + 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3185 "\\3" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3186 "\\|" |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3187 ;; Second variant: Identifier or \ID (same as 'ID') or empty |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3188 "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3189 ;; Do not have <<= or << 30 or <<30 or << $blah. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3190 ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3191 "\\(\\)" ; To preserve count of pars :-( 6 + 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3192 "\\)" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3193 "\\|" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3194 ;; 1+6 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3195 "^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3196 (if cperl-use-syntax-table-text-property |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3197 (concat |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3198 "\\|" |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3199 ;; 1+6+2=9 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3200 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3201 "\\|" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3202 ;; 1+6+2+1=10 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3203 "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob> |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3204 "\\|" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3205 ;; 1+6+2+1+1=11 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3206 "\\<sub\\>[ \t]*\\([a-zA-Z_:'0-9]+[ \t]*\\)?\\(([^()]*)\\)" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3207 "\\|" |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3208 ;; 1+6+2+1+1+2=13 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3209 "\\$\\(['{]\\)" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3210 "\\|" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3211 ;; 1+6+2+1+1+2+1=14 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3212 "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3213 ;; 1+6+2+1+1+2+1+1=15 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3214 "\\|" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3215 "__\\(END\\|DATA\\)__" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3216 ;; 1+6+2+1+1+2+1+1+1=16 extra () before this: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3217 "\\|" |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3218 "\\\\\\(['`\"($]\\)") |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3219 "")))) |
20323 | 3220 (unwind-protect |
3221 (progn | |
3222 (save-excursion | |
3223 (or non-inter | |
3224 (message "Scanning for \"hard\" Perl constructions...")) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3225 (and cperl-pod-here-fontify |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3226 ;; We had evals here, do not know why... |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3227 (setq face cperl-pod-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3228 head-face cperl-pod-head-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3229 here-face cperl-here-face)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3230 (remove-text-properties min max |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3231 '(syntax-type t in-pod t syntax-table t |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3232 cperl-postpone t |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3233 syntax-subtype t |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3234 rear-nonsticky t |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3235 here-doc-group t |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3236 first-format-line t |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3237 indentable t)) |
20323 | 3238 ;; Need to remove face as well... |
3239 (goto-char min) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3240 (and (eq system-type 'emx) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3241 (looking-at "extproc[ \t]") ; Analogue of #! |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3242 (cperl-commentify min |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3243 (save-excursion (end-of-line) (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3244 nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3245 (while (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3246 (< (point) max) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3247 (re-search-forward search max t)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3248 (setq tmpend nil) ; Valid for most cases |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3249 (cond |
20323 | 3250 ((match-beginning 1) ; POD section |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3251 ;; "\\(\\`\n?\\|^\n\\)=" |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3252 (if (looking-at "cut\\>") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3253 (if ignore-max |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3254 nil ; Doing a chunk only |
20323 | 3255 (message "=cut is not preceded by a POD section") |
3256 (or (car err-l) (setcar err-l (point)))) | |
3257 (beginning-of-line) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3258 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3259 (setq b (point) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3260 bb b |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3261 tb (match-beginning 0) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3262 b1 nil) ; error condition |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3263 ;; We do not search to max, since we may be called from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3264 ;; some hook of fontification, and max is random |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3265 (or (re-search-forward "^\n=cut\\>" stop-point 'toend) |
20323 | 3266 (progn |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3267 (goto-char b) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3268 (if (re-search-forward "\n=cut\\>" stop-point 'toend) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3269 (progn |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3270 (message "=cut is not preceded by an empty line") |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3271 (setq b1 t) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3272 (or (car err-l) (setcar err-l b)))))) |
20323 | 3273 (beginning-of-line 2) ; An empty line after =cut is not POD! |
3274 (setq e (point)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3275 (and (> e max) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3276 (progn |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3277 (remove-text-properties |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3278 max e '(syntax-type t in-pod t syntax-table t |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3279 cperl-postpone t |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3280 syntax-subtype t |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3281 here-doc-group t |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3282 rear-nonsticky t |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3283 first-format-line t |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3284 indentable t)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3285 (setq tmpend tb))) |
20323 | 3286 (put-text-property b e 'in-pod t) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3287 (put-text-property b e 'syntax-type 'in-pod) |
20323 | 3288 (goto-char b) |
3289 (while (re-search-forward "\n\n[ \t]" e t) | |
3290 ;; We start 'pod 1 char earlier to include the preceding line | |
3291 (beginning-of-line) | |
3292 (put-text-property (cperl-1- b) (point) 'syntax-type 'pod) | |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3293 (cperl-put-do-not-fontify b (point) t) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3294 ;; mark the non-literal parts as PODs |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3295 (if cperl-pod-here-fontify |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3296 (cperl-postpone-fontification b (point) 'face face t)) |
20323 | 3297 (re-search-forward "\n\n[^ \t\f\n]" e 'toend) |
3298 (beginning-of-line) | |
3299 (setq b (point))) | |
3300 (put-text-property (cperl-1- (point)) e 'syntax-type 'pod) | |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3301 (cperl-put-do-not-fontify (point) e t) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3302 (if cperl-pod-here-fontify |
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3303 (progn |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3304 ;; mark the non-literal parts as PODs |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3305 (cperl-postpone-fontification (point) e 'face face t) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3306 (goto-char bb) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3307 (if (looking-at |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3308 "=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$") |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3309 ;; mark the headers |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3310 (cperl-postpone-fontification |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3311 (match-beginning 1) (match-end 1) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3312 'face head-face)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3313 (while (re-search-forward |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3314 ;; One paragraph |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3315 "^\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$" |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3316 e 'toend) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3317 ;; mark the headers |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3318 (cperl-postpone-fontification |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3319 (match-beginning 1) (match-end 1) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3320 'face head-face)))) |
20323 | 3321 (cperl-commentify bb e nil) |
3322 (goto-char e) | |
3323 (or (eq e (point-max)) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3324 (forward-char -1)))) ; Prepare for immediate POD start. |
20323 | 3325 ;; Here document |
3326 ;; We do only one here-per-line | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3327 ;; ;; One extra () before this: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3328 ;;"<<" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3329 ;; "\\(" ; 1 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3330 ;; ;; First variant "BLAH" or just ``. |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3331 ;; "[ \t]*" ; Yes, whitespace is allowed! |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3332 ;; "\\([\"'`]\\)" ; 2 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3333 ;; "\\([^\"'`\n]*\\)" ; 3 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3334 ;; "\\3" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3335 ;; "\\|" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3336 ;; ;; Second variant: Identifier or \ID or empty |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3337 ;; "\\\\?\\(\\([a-zA-Z_][a-zA-Z_0-9]*\\)?\\)" ; 4 + 1, 5 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3338 ;; ;; Do not have <<= or << 30 or <<30 or << $blah. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3339 ;; ;; "\\([^= \t0-9$@%&]\\|[ \t]+[^ \t\n0-9$@%&]\\)" ; 6 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3340 ;; "\\(\\)" ; To preserve count of pars :-( 6 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3341 ;; "\\)" |
20323 | 3342 ((match-beginning 2) ; 1 + 1 |
3343 ;; Abort in comment: | |
3344 (setq b (point)) | |
3345 (setq state (parse-partial-sexp state-point b nil nil state) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3346 state-point b |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3347 tb (match-beginning 0) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3348 i (or (nth 3 state) (nth 4 state))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3349 (if i |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3350 (setq c t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3351 (setq c (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3352 (match-beginning 5) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3353 (not (match-beginning 6)) ; Empty |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3354 (looking-at |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3355 "[ \t]*[=0-9$@%&(]")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3356 (if c ; Not here-doc |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3357 nil ; Skip it. |
20323 | 3358 (if (match-beginning 5) ;4 + 1 |
3359 (setq b1 (match-beginning 5) ; 4 + 1 | |
3360 e1 (match-end 5)) ; 4 + 1 | |
3361 (setq b1 (match-beginning 4) ; 3 + 1 | |
3362 e1 (match-end 4))) ; 3 + 1 | |
3363 (setq tag (buffer-substring b1 e1) | |
3364 qtag (regexp-quote tag)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3365 (cond (cperl-pod-here-fontify |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3366 ;; Highlight the starting delimiter |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3367 (cperl-postpone-fontification b1 e1 'face font-lock-constant-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3368 (cperl-put-do-not-fontify b1 e1 t))) |
20323 | 3369 (forward-line) |
3370 (setq b (point)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3371 ;; We do not search to max, since we may be called from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3372 ;; some hook of fontification, and max is random |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3373 (or (and (re-search-forward (concat "^" qtag "$") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3374 stop-point 'toend) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3375 (eq (following-char) ?\n)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3376 (progn ; Pretend we matched at the end |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3377 (goto-char (point-max)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3378 (re-search-forward "\\'") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3379 (message "End of here-document `%s' not found." tag) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3380 (or (car err-l) (setcar err-l b)))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3381 (if cperl-pod-here-fontify |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3382 (progn |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3383 ;; Highlight the ending delimiter |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3384 (cperl-postpone-fontification (match-beginning 0) (match-end 0) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3385 'face font-lock-constant-face) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3386 (cperl-put-do-not-fontify b (match-end 0) t) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3387 ;; Highlight the HERE-DOC |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3388 (cperl-postpone-fontification b (match-beginning 0) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3389 'face here-face))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3390 (setq e1 (cperl-1+ (match-end 0))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3391 (put-text-property b (match-beginning 0) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3392 'syntax-type 'here-doc) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3393 (put-text-property (match-beginning 0) e1 |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3394 'syntax-type 'here-doc-delim) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3395 (put-text-property b e1 |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3396 'here-doc-group t) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3397 (cperl-commentify b e1 nil) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3398 (cperl-put-do-not-fontify b (match-end 0) t) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3399 (if (> e1 max) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3400 (setq tmpend tb)))) |
20323 | 3401 ;; format |
3402 ((match-beginning 8) | |
3403 ;; 1+6=7 extra () before this: | |
3404 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" | |
3405 (setq b (point) | |
3406 name (if (match-beginning 8) ; 7 + 1 | |
3407 (buffer-substring (match-beginning 8) ; 7 + 1 | |
3408 (match-end 8)) ; 7 + 1 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3409 "") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3410 tb (match-beginning 0)) |
20323 | 3411 (setq argument nil) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3412 (put-text-property (save-excursion |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3413 (beginning-of-line) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3414 (point)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3415 b 'first-format-line 't) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3416 (if cperl-pod-here-fontify |
20323 | 3417 (while (and (eq (forward-line) 0) |
3418 (not (looking-at "^[.;]$"))) | |
3419 (cond | |
3420 ((looking-at "^#")) ; Skip comments | |
3421 ((and argument ; Skip argument multi-lines | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3422 (looking-at "^[ \t]*{")) |
20323 | 3423 (forward-sexp 1) |
3424 (setq argument nil)) | |
3425 (argument ; Skip argument lines | |
3426 (setq argument nil)) | |
3427 (t ; Format line | |
3428 (setq b1 (point)) | |
3429 (setq argument (looking-at "^[^\n]*[@^]")) | |
3430 (end-of-line) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3431 ;; Highlight the format line |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3432 (cperl-postpone-fontification b1 (point) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3433 'face font-lock-string-face) |
20323 | 3434 (cperl-commentify b1 (point) nil) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3435 (cperl-put-do-not-fontify b1 (point) t)))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3436 ;; We do not search to max, since we may be called from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3437 ;; some hook of fontification, and max is random |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3438 (re-search-forward "^[.;]$" stop-point 'toend)) |
20323 | 3439 (beginning-of-line) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3440 (if (looking-at "^\\.$") ; ";" is not supported yet |
20323 | 3441 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3442 ;; Highlight the ending delimiter |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3443 (cperl-postpone-fontification (point) (+ (point) 2) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3444 'face font-lock-string-face) |
20323 | 3445 (cperl-commentify (point) (+ (point) 2) nil) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3446 (cperl-put-do-not-fontify (point) (+ (point) 2) t)) |
20323 | 3447 (message "End of format `%s' not found." name) |
3448 (or (car err-l) (setcar err-l b))) | |
3449 (forward-line) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3450 (if (> (point) max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3451 (setq tmpend tb)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3452 (put-text-property b (point) 'syntax-type 'format)) |
20323 | 3453 ;; Regexp: |
3454 ((or (match-beginning 10) (match-beginning 11)) | |
3455 ;; 1+6+2=9 extra () before this: | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3456 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
20323 | 3457 ;; "\\|" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3458 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob> |
20323 | 3459 (setq b1 (if (match-beginning 10) 10 11) |
3460 argument (buffer-substring | |
3461 (match-beginning b1) (match-end b1)) | |
3462 b (point) | |
3463 i b | |
3464 c (char-after (match-beginning b1)) | |
3465 bb (char-after (1- (match-beginning b1))) ; tmp holder | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3466 ;; bb == "Not a stringy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3467 bb (if (eq b1 10) ; user variables/whatever |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3468 (and (memq bb (append "$@%*#_:-&>" nil)) ; $#y) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3469 (cond ((eq bb ?-) (eq c ?s)) ; -s file test |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3470 ((eq bb ?\:) ; $opt::s |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3471 (eq (char-after |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3472 (- (match-beginning b1) 2)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3473 ?\:)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3474 ((eq bb ?\>) ; $foo->s |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3475 (eq (char-after |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3476 (- (match-beginning b1) 2)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3477 ?\-)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3478 ((eq bb ?\&) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3479 (not (eq (char-after ; &&m/blah/ |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3480 (- (match-beginning b1) 2)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3481 ?\&))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3482 (t t))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3483 ;; <file> or <$file> |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3484 (and (eq c ?\<) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3485 ;; Do not stringify <FH>, <$fh> : |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3486 (save-match-data |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3487 (looking-at |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3488 "\\$?\\([_a-zA-Z:][_a-zA-Z0-9:]*\\)?>")))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3489 tb (match-beginning 0)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3490 (goto-char (match-beginning b1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3491 (cperl-backward-to-noncomment (point-min)) |
20323 | 3492 (or bb |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3493 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo> |
20323 | 3494 (setq argument "" |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3495 b1 nil |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3496 bb ; Not a regexp? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3497 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3498 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3499 ;; What is below: regexp-p? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3500 (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3501 (or (memq (preceding-char) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3502 (append (if (memq c '(?\? ?\<)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3503 ;; $a++ ? 1 : 2 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3504 "~{(=|&*!,;:" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3505 "~{(=|&+-*!,;:") nil)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3506 (and (eq (preceding-char) ?\}) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3507 (cperl-after-block-p (point-min))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3508 (and (eq (char-syntax (preceding-char)) ?w) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3509 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3510 (forward-sexp -1) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3511 ;; After these keywords `/' starts a RE. One should add all the |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3512 ;; functions/builtins which expect an argument, but ... |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3513 (if (eq (preceding-char) ?-) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3514 ;; -d ?foo? is a RE |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3515 (looking-at "[a-zA-Z]\\>") |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3516 (and |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3517 (not (memq (preceding-char) |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3518 '(?$ ?@ ?& ?%))) |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3519 (looking-at |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3520 "\\(while\\|if\\|unless\\|until\\|and\\|or\\|not\\|xor\\|split\\|grep\\|map\\|print\\)\\>"))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3521 (and (eq (preceding-char) ?.) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3522 (eq (char-after (- (point) 2)) ?.)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3523 (bobp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3524 ;; m|blah| ? foo : bar; |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3525 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3526 (and (eq c ?\?) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3527 cperl-use-syntax-table-text-property |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3528 (not (bobp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3529 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3530 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3531 (looking-at "\\s|"))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3532 b (1- b)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3533 ;; s y tr m |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3534 ;; Check for $a -> y |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3535 (setq b1 (preceding-char) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3536 go (point)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3537 (if (and (eq b1 ?>) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3538 (eq (char-after (- go 2)) ?-)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3539 ;; Not a regexp |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3540 (setq bb t)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3541 (or bb (setq state (parse-partial-sexp |
20323 | 3542 state-point b nil nil state) |
3543 state-point b)) | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3544 (setq bb (or bb (nth 3 state) (nth 4 state))) |
20323 | 3545 (goto-char b) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3546 (or bb |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3547 (progn |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3548 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3549 (goto-char (match-end 0)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3550 (skip-chars-forward " \t\n\f")) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3551 (cond ((and (eq (following-char) ?\}) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3552 (eq b1 ?\{)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3553 ;; Check for $a[23]->{ s }, @{s} and *{s::foo} |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3554 (goto-char (1- go)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3555 (skip-chars-backward " \t\n\f") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3556 (if (memq (preceding-char) (append "$@%&*" nil)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3557 (setq bb t) ; @{y} |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3558 (condition-case nil |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3559 (forward-sexp -1) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3560 (error nil))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3561 (if (or bb |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3562 (looking-at ; $foo -> {s} |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3563 "[$@]\\$*\\([a-zA-Z0-9_:]+\\|[^{]\\)\\([ \t\n]*->\\)?[ \t\n]*{") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3564 (and ; $foo[12] -> {s} |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3565 (memq (following-char) '(?\{ ?\[)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3566 (progn |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3567 (forward-sexp 1) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3568 (looking-at "\\([ \t\n]*->\\)?[ \t\n]*{")))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3569 (setq bb t) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3570 (goto-char b))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3571 ((and (eq (following-char) ?=) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3572 (eq (char-after (1+ (point))) ?\>)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3573 ;; Check for { foo => 1, s => 2 } |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3574 ;; Apparently s=> is never a substitution... |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3575 (setq bb t)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3576 ((and (eq (following-char) ?:) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3577 (eq b1 ?\{) ; Check for $ { s::bar } |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3578 (looking-at "::[a-zA-Z0-9_:]*[ \t\n\f]*}") |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
3579 (progn |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3580 (goto-char (1- go)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3581 (skip-chars-backward " \t\n\f") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3582 (memq (preceding-char) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3583 (append "$@%&*" nil)))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3584 (setq bb t))))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3585 (if bb |
20323 | 3586 (goto-char i) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3587 ;; Skip whitespace and comments... |
20323 | 3588 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") |
3589 (goto-char (match-end 0)) | |
3590 (skip-chars-forward " \t\n\f")) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3591 (if (> (point) b) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3592 (put-text-property b (point) 'syntax-type 'prestring)) |
20323 | 3593 ;; qtag means two-arg matcher, may be reset to |
3594 ;; 2 or 3 later if some special quoting is needed. | |
3595 ;; e1 means matching-char matcher. | |
3596 (setq b (point) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3597 ;; has 2 args |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3598 i2 (string-match "^\\([sy]\\|tr\\)$" argument) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3599 ;; We do not search to max, since we may be called from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3600 ;; some hook of fontification, and max is random |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3601 i (cperl-forward-re stop-point end |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3602 i2 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3603 t st-l err-l argument) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3604 ;; Note that if `go', then it is considered as 1-arg |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3605 b1 (nth 1 i) ; start of the second part |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3606 tag (nth 2 i) ; ender-char, true if second part |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3607 ; is with matching chars [] |
20323 | 3608 go (nth 4 i) ; There is a 1-char part after the end |
3609 i (car i) ; intermediate point | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3610 e1 (point) ; end |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3611 ;; Before end of the second part if non-matching: /// |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3612 tail (if (and i (not tag)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3613 (1- e1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3614 e (if i i e1) ; end of the first part |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3615 qtag nil ; need to preserve backslashitis |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3616 is-x-REx nil) ; REx has //x modifier |
20323 | 3617 ;; Commenting \\ is dangerous, what about ( ? |
3618 (and i tail | |
3619 (eq (char-after i) ?\\) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3620 (setq qtag t)) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3621 (if (looking-at "\\sw*x") ; qr//x |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3622 (setq is-x-REx t)) |
20323 | 3623 (if (null i) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3624 ;; Considered as 1arg form |
20323 | 3625 (progn |
3626 (cperl-commentify b (point) t) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3627 (put-text-property b (point) 'syntax-type 'string) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3628 (if (or is-x-REx |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3629 ;; ignore other text properties: |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3630 (string-match "^qw$" argument)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3631 (put-text-property b (point) 'indentable t)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3632 (and go |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3633 (setq e1 (cperl-1+ e1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3634 (or (eobp) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3635 (forward-char 1)))) |
20323 | 3636 (cperl-commentify b i t) |
3637 (if (looking-at "\\sw*e") ; s///e | |
3638 (progn | |
3639 (and | |
3640 ;; silent: | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3641 (cperl-find-pods-heres b1 (1- (point)) t end) |
20323 | 3642 ;; Error |
3643 (goto-char (1+ max))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3644 (if (and tag (eq (preceding-char) ?\>)) |
20323 | 3645 (progn |
3646 (cperl-modify-syntax-type (1- (point)) cperl-st-ket) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3647 (cperl-modify-syntax-type i cperl-st-bra))) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3648 (put-text-property b i 'syntax-type 'string) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3649 (if is-x-REx |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3650 (put-text-property b i 'indentable t))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3651 (cperl-commentify b1 (point) t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3652 (put-text-property b (point) 'syntax-type 'string) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3653 (if is-x-REx |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3654 (put-text-property b i 'indentable t)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3655 (if qtag |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3656 (cperl-modify-syntax-type (1+ i) cperl-st-punct)) |
20323 | 3657 (setq tail nil))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3658 ;; Now: tail: if the second part is non-matching without ///e |
20323 | 3659 (if (eq (char-syntax (following-char)) ?w) |
3660 (progn | |
3661 (forward-word 1) ; skip modifiers s///s | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3662 (if tail (cperl-commentify tail (point) t)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3663 (cperl-postpone-fontification |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3664 e1 (point) 'face 'cperl-nonoverridable-face))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3665 ;; Check whether it is m// which means "previous match" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3666 ;; and highlight differently |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3667 (setq is-REx |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3668 (and (string-match "^\\([sm]?\\|qr\\)$" argument) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3669 (or (not (= (length argument) 0)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3670 (not (eq c ?\<))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3671 (if (and is-REx |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3672 (eq e (+ 2 b)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3673 ;; split // *is* using zero-pattern |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3674 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3675 (condition-case nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3676 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3677 (goto-char tb) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3678 (forward-sexp -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3679 (not (looking-at "split\\>"))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3680 (error t)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3681 (cperl-postpone-fontification |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3682 b e 'face font-lock-function-name-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3683 (if (or i2 ; Has 2 args |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3684 (and cperl-fontify-m-as-s |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3685 (or |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3686 (string-match "^\\(m\\|qr\\)$" argument) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3687 (and (eq 0 (length argument)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3688 (not (eq ?\< (char-after b))))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3689 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3690 (cperl-postpone-fontification |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3691 b (cperl-1+ b) 'face font-lock-constant-face) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3692 (cperl-postpone-fontification |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3693 (1- e) e 'face font-lock-constant-face))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3694 (if (and is-REx cperl-regexp-scan) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3695 ;; Process RExen better |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3696 (save-excursion |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3697 (goto-char (1+ b)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3698 (while |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3699 (and (< (point) e) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3700 (re-search-forward |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3701 (if is-x-REx |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3702 (if (eq (char-after b) ?\#) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3703 "\\((\\?\\\\#\\)\\|\\(\\\\#\\)" |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3704 "\\((\\?#\\)\\|\\(#\\)") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3705 (if (eq (char-after b) ?\#) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3706 "\\((\\?\\\\#\\)" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3707 "\\((\\?#\\)")) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3708 (1- e) 'to-end)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3709 (goto-char (match-beginning 0)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3710 (setq REx-comment-start (point) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3711 was-comment t) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3712 (if (save-excursion |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3713 (and |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3714 ;; XXX not working if outside delimiter is # |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3715 (eq (preceding-char) ?\\) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3716 (= (% (skip-chars-backward "$\\\\") 2) -1))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3717 ;; Not a comment, avoid loop: |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3718 (progn (setq was-comment nil) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3719 (forward-char 1)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3720 (if (match-beginning 2) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3721 (progn |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3722 (beginning-of-line 2) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3723 (if (> (point) e) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3724 (goto-char (1- e)))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3725 ;; Works also if the outside delimiters are (). |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3726 (or (search-forward ")" (1- e) 'toend) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3727 (message |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3728 "Couldn't find end of (?#...)-comment in a REx, pos=%s" |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3729 REx-comment-start)))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3730 (if (>= (point) e) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3731 (goto-char (1- e))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3732 (if was-comment |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3733 (progn |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3734 (setq REx-comment-end (point)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3735 (cperl-commentify |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3736 REx-comment-start REx-comment-end nil) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3737 (cperl-postpone-fontification |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3738 REx-comment-start REx-comment-end |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3739 'face font-lock-comment-face)))))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3740 (if (and is-REx is-x-REx) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3741 (put-text-property (1+ b) (1- e) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3742 'syntax-subtype 'x-REx))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3743 (if i2 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3744 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3745 (cperl-postpone-fontification |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3746 (1- e1) e1 'face font-lock-constant-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3747 (if (assoc (char-after b) cperl-starters) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3748 (cperl-postpone-fontification |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3749 b1 (1+ b1) 'face font-lock-constant-face)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3750 (if (> (point) max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3751 (setq tmpend tb)))) |
20323 | 3752 ((match-beginning 13) ; sub with prototypes |
3753 (setq b (match-beginning 0)) | |
3754 (if (memq (char-after (1- b)) | |
3755 '(?\$ ?\@ ?\% ?\& ?\*)) | |
3756 nil | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3757 (setq state (parse-partial-sexp |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3758 state-point b nil nil state) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3759 state-point b) |
20323 | 3760 (if (or (nth 3 state) (nth 4 state)) |
3761 nil | |
3762 ;; Mark as string | |
3763 (cperl-commentify (match-beginning 13) (match-end 13) t)) | |
3764 (goto-char (match-end 0)))) | |
3765 ;; 1+6+2+1+1+2=13 extra () before this: | |
3766 ;; "\\$\\(['{]\\)" | |
3767 ((and (match-beginning 14) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3768 (eq (preceding-char) ?\')) ; $' |
20323 | 3769 (setq b (1- (point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3770 state (parse-partial-sexp |
20323 | 3771 state-point (1- b) nil nil state) |
3772 state-point (1- b)) | |
3773 (if (nth 3 state) ; in string | |
3774 (cperl-modify-syntax-type (1- b) cperl-st-punct)) | |
3775 (goto-char (1+ b))) | |
3776 ;; 1+6+2+1+1+2=13 extra () before this: | |
3777 ;; "\\$\\(['{]\\)" | |
3778 ((match-beginning 14) ; ${ | |
3779 (setq bb (match-beginning 0)) | |
3780 (cperl-modify-syntax-type bb cperl-st-punct)) | |
3781 ;; 1+6+2+1+1+2+1=14 extra () before this: | |
3782 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'") | |
3783 ((match-beginning 15) ; old $abc'efg syntax | |
3784 (setq bb (match-end 0) | |
3785 b (match-beginning 0) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3786 state (parse-partial-sexp |
20323 | 3787 state-point b nil nil state) |
3788 state-point b) | |
3789 (if (nth 3 state) ; in string | |
3790 nil | |
3791 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)) | |
3792 (goto-char bb)) | |
3793 ;; 1+6+2+1+1+2+1+1=15 extra () before this: | |
3794 ;; "__\\(END\\|DATA\\)__" | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3795 ((match-beginning 16) ; __END__, __DATA__ |
20323 | 3796 (setq bb (match-end 0) |
3797 b (match-beginning 0) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3798 state (parse-partial-sexp |
20323 | 3799 state-point b nil nil state) |
3800 state-point b) | |
3801 (if (or (nth 3 state) (nth 4 state)) | |
3802 nil | |
3803 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat | |
3804 (cperl-commentify b bb nil) | |
3805 (setq end t)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3806 (goto-char bb)) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3807 ((match-beginning 17) ; "\\\\\\(['`\"($]\\)" |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3808 ;; Trailing backslash ==> non-quoting outside string/comment |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3809 (setq bb (match-end 0) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3810 b (match-beginning 0)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3811 (goto-char b) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3812 (skip-chars-backward "\\\\") |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3813 ;;;(setq i2 (= (% (skip-chars-backward "\\\\") 2) -1)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
3814 (setq state (parse-partial-sexp |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3815 state-point b nil nil state) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3816 state-point b) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3817 (if (or (nth 3 state) (nth 4 state) ) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3818 nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3819 (cperl-modify-syntax-type b cperl-st-punct)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3820 (goto-char bb)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
3821 (t (error "Error in regexp of the sniffer"))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3822 (if (> (point) stop-point) |
20323 | 3823 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3824 (if end |
20323 | 3825 (message "Garbage after __END__/__DATA__ ignored") |
3826 (message "Unbalanced syntax found while scanning") | |
3827 (or (car err-l) (setcar err-l b))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3828 (goto-char stop-point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3829 (setq cperl-syntax-state (cons state-point state) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3830 cperl-syntax-done-to (or tmpend (max (point) max)))) |
20323 | 3831 (if (car err-l) (goto-char (car err-l)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3832 (or non-inter |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3833 (message "Scanning for \"hard\" Perl constructions... done")))) |
20323 | 3834 (and (buffer-modified-p) |
3835 (not modified) | |
3836 (set-buffer-modified-p nil)) | |
3837 (set-syntax-table cperl-mode-syntax-table)) | |
3838 (car err-l))) | |
3839 | |
3840 (defun cperl-backward-to-noncomment (lim) | |
3841 ;; Stops at lim or after non-whitespace that is not in comment | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3842 (let (stop p pr) |
20323 | 3843 (while (and (not stop) (> (point) (or lim 1))) |
3844 (skip-chars-backward " \t\n\f" lim) | |
3845 (setq p (point)) | |
3846 (beginning-of-line) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3847 (if (memq (setq pr (get-text-property (point) 'syntax-type)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3848 '(pod here-doc here-doc-delim)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3849 (cperl-unwind-to-safe nil) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3850 (or (looking-at "^[ \t]*\\(#\\|$\\)") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3851 (progn (cperl-to-comment-or-eol) (bolp)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3852 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3853 (skip-chars-backward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3854 (if (< p (point)) (goto-char p)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3855 (setq stop t))))))) |
20323 | 3856 |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3857 (defun cperl-after-block-p (lim &optional pre-block) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3858 "Return true if the preceeding } ends a block or a following { starts one. |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3859 Would not look before LIM. If PRE-BLOCK is nil checks preceeding }. |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3860 otherwise following {." |
20323 | 3861 ;; We suppose that the preceding char is }. |
3862 (save-excursion | |
3863 (condition-case nil | |
3864 (progn | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3865 (or pre-block (forward-sexp -1)) |
20323 | 3866 (cperl-backward-to-noncomment lim) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3867 (or (eq (point) lim) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3868 (eq (preceding-char) ?\) ) ; if () {} sub f () {} |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3869 (if (eq (char-syntax (preceding-char)) ?w) ; else {} |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3870 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3871 (forward-sexp -1) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3872 (or (looking-at "\\(else\\|continue\\|grep\\|map\\|BEGIN\\|END\\|CHECK\\|INIT\\)\\>") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3873 ;; sub f {} |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3874 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3875 (cperl-backward-to-noncomment lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3876 (and (eq (char-syntax (preceding-char)) ?w) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3877 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3878 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3879 (looking-at "sub\\>")))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3880 (cperl-after-expr-p lim)))) |
20323 | 3881 (error nil)))) |
3882 | |
3883 (defun cperl-after-expr-p (&optional lim chars test) | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3884 "Return true if the position is good for start of expression. |
20323 | 3885 TEST is the expression to evaluate at the found position. If absent, |
3886 CHARS is a string that contains good characters to have before us (however, | |
3887 `}' is treated \"smartly\" if it is not in the list)." | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3888 (let ((lim (or lim (point-min))) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3889 stop p pr) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3890 (cperl-update-syntaxification (point) (point)) |
20323 | 3891 (save-excursion |
3892 (while (and (not stop) (> (point) lim)) | |
3893 (skip-chars-backward " \t\n\f" lim) | |
3894 (setq p (point)) | |
3895 (beginning-of-line) | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3896 ;;(memq (setq pr (get-text-property (point) 'syntax-type)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3897 ;; '(pod here-doc here-doc-delim)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3898 (if (get-text-property (point) 'here-doc-group) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3899 (progn |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3900 (goto-char |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3901 (previous-single-property-change (point) 'here-doc-group)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3902 (beginning-of-line 0))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3903 (if (get-text-property (point) 'in-pod) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3904 (progn |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3905 (goto-char |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3906 (previous-single-property-change (point) 'in-pod)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3907 (beginning-of-line 0))) |
20323 | 3908 (if (looking-at "^[ \t]*\\(#\\|$\\)") nil ; Only comment, skip |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3909 ;; Else: last iteration, or a label |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3910 (cperl-to-comment-or-eol) ; Will not move past "." after a format |
20323 | 3911 (skip-chars-backward " \t") |
3912 (if (< p (point)) (goto-char p)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3913 (setq p (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3914 (if (and (eq (preceding-char) ?:) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3915 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3916 (forward-char -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3917 (skip-chars-backward " \t\n\f" lim) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3918 (eq (char-syntax (preceding-char)) ?w))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3919 (forward-sexp -1) ; Possibly label. Skip it |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3920 (goto-char p) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3921 (setq stop t)))) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3922 (or (bobp) ; ???? Needed |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3923 (eq (point) lim) |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3924 (looking-at "[ \t]*__\\(END\\|DATA\\)__") ; After this anything goes |
20323 | 3925 (progn |
3926 (if test (eval test) | |
3927 (or (memq (preceding-char) (append (or chars "{;") nil)) | |
3928 (and (eq (preceding-char) ?\}) | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3929 (cperl-after-block-p lim)) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3930 (and (eq (following-char) ?.) ; in format: see comment above |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3931 (eq (get-text-property (point) 'syntax-type) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
3932 'format))))))))) |
20323 | 3933 |
3934 (defun cperl-backward-to-start-of-continued-exp (lim) | |
3935 (if (memq (preceding-char) (append ")]}\"'`" nil)) | |
3936 (forward-sexp -1)) | |
3937 (beginning-of-line) | |
3938 (if (<= (point) lim) | |
3939 (goto-char (1+ lim))) | |
3940 (skip-chars-forward " \t")) | |
3941 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3942 (defun cperl-after-block-and-statement-beg (lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3943 ;; We assume that we are after ?\} |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3944 (and |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3945 (cperl-after-block-p lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3946 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3947 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3948 (cperl-backward-to-noncomment (point-min)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3949 (or (bobp) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3950 (eq (point) lim) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3951 (not (= (char-syntax (preceding-char)) ?w)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3952 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3953 (forward-sexp -1) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3954 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3955 (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3956 "\\(map\\|grep\\|printf?\\|system\\|exec\\|tr\\|s\\)\\>"))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3957 |
20323 | 3958 |
3959 (defun cperl-indent-exp () | |
3960 "Simple variant of indentation of continued-sexp. | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3961 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3962 Will not indent comment if it starts at `comment-indent' or looks like |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3963 continuation of the comment on the previous line. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3964 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3965 If `cperl-indent-region-fix-constructs', will improve spacing on |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3966 conditional/loop constructs." |
20323 | 3967 (interactive) |
3968 (save-excursion | |
3969 (let ((tmp-end (progn (end-of-line) (point))) top done) | |
3970 (save-excursion | |
3971 (beginning-of-line) | |
3972 (while (null done) | |
3973 (setq top (point)) | |
3974 (while (= (nth 0 (parse-partial-sexp (point) tmp-end | |
3975 -1)) -1) | |
3976 (setq top (point))) ; Get the outermost parenths in line | |
3977 (goto-char top) | |
3978 (while (< (point) tmp-end) | |
3979 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol | |
3980 (or (eolp) (forward-sexp 1))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3981 (if (> (point) tmp-end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3982 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3983 (end-of-line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3984 (setq tmp-end (point))) |
20323 | 3985 (setq done t))) |
3986 (goto-char tmp-end) | |
3987 (setq tmp-end (point-marker))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3988 (if cperl-indent-region-fix-constructs |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3989 (cperl-fix-line-spacing tmp-end)) |
20323 | 3990 (cperl-indent-region (point) tmp-end)))) |
3991 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3992 (defun cperl-fix-line-spacing (&optional end parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3993 "Improve whitespace in a conditional/loop construct. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3994 Returns some position at the last line." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3995 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3996 (or end |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3997 (setq end (point-max))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3998 (let ((ee (save-excursion (end-of-line) (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
3999 (cperl-indent-region-fix-constructs |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4000 (or cperl-indent-region-fix-constructs 1)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4001 p pp ml have-brace ret) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4002 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4003 (beginning-of-line) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4004 (setq ret (point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4005 ;; }? continue |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4006 ;; blah; } |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4007 (if (not |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4008 (or (looking-at "[ \t]*\\(els\\(e\\|if\\)\\|continue\\|if\\|while\\|for\\(each\\)?\\|until\\)") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4009 (setq have-brace (save-excursion (search-forward "}" ee t))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4010 nil ; Do not need to do anything |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4011 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4012 ;; } |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4013 ;; else |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4014 (if (and cperl-merge-trailing-else |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4015 (looking-at |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4016 "[ \t]*}[ \t]*\n[ \t\n]*\\(els\\(e\\|if\\)\\|continue\\)\\>")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4017 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4018 (search-forward "}") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4019 (setq p (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4020 (skip-chars-forward " \t\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4021 (delete-region p (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4022 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4023 (beginning-of-line))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4024 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4025 ;; } else |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4026 (if (looking-at "[ \t]*}\\(\t*\\|[ \t][ \t]+\\)\\<\\(els\\(e\\|if\\)\\|continue\\)\\>") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4027 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4028 (search-forward "}") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4029 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4030 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4031 (beginning-of-line))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4032 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4033 ;; else { |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4034 (if (looking-at |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4035 "[ \t]*}?[ \t]*\\<\\(\\els\\(e\\|if\\)\\|continue\\|unless\\|if\\|while\\|for\\(each\\)?\\|until\\)\\>\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4036 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4037 (forward-word 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4038 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4039 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4040 (beginning-of-line))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4041 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4042 ;; foreach my $var |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4043 (if (looking-at |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4044 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)\\(\t*\\|[ \t][ \t]+\\)[^ \t\n]") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4045 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4046 (forward-word 2) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4047 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4048 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4049 (beginning-of-line))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4050 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4051 ;; foreach my $var ( |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4052 (if (looking-at |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4053 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\|our\\)[ \t]*\\$[_a-zA-Z0-9]+\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]") |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4054 (progn |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
4055 (forward-sexp 3) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4056 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4057 (insert |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4058 (make-string cperl-indent-region-fix-constructs ?\ )) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4059 (beginning-of-line))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4060 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4061 ;; } foreach my $var () { |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4062 (if (looking-at |
44446
9b08deb1030e
(cperl-make-face, cperl-force-face):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43943
diff
changeset
|
4063 "[ \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]*{") |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4064 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4065 (setq ml (match-beginning 8)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4066 (re-search-forward "[({]") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4067 (forward-char -1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4068 (setq p (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4069 (if (eq (following-char) ?\( ) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4070 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4071 (forward-sexp 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4072 (setq pp (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4073 ;; after `else' or nothing |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4074 (if ml ; after `else' |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4075 (skip-chars-backward " \t\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4076 (beginning-of-line)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4077 (setq pp nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4078 ;; Now after the sexp before the brace |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4079 ;; Multiline expr should be special |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4080 (setq ml (and pp (save-excursion (goto-char p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4081 (search-forward "\n" pp t)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4082 (if (and (or (not pp) (< pp end)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4083 (looking-at "[ \t\n]*{")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4084 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4085 (cond |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4086 ((bolp) ; Were before `{', no if/else/etc |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4087 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4088 ((looking-at "\\(\t*\\| [ \t]+\\){") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4089 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4090 (if (if ml |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4091 cperl-extra-newline-before-brace-multiline |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4092 cperl-extra-newline-before-brace) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4093 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4094 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4095 (insert "\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4096 (setq ret (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4097 (if (cperl-indent-line parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4098 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4099 (cperl-fix-line-spacing end parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4100 (setq ret (point))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4101 (insert |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4102 (make-string cperl-indent-region-fix-constructs ?\ )))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4103 ((and (looking-at "[ \t]*\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4104 (not (if ml |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4105 cperl-extra-newline-before-brace-multiline |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4106 cperl-extra-newline-before-brace))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4107 (setq pp (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4108 (skip-chars-forward " \t\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4109 (delete-region pp (point)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4110 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4111 (make-string cperl-indent-region-fix-constructs ?\ )))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4112 ;; Now we are before `{' |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4113 (if (looking-at "[ \t\n]*{[ \t]*[^ \t\n#]") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4114 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4115 (skip-chars-forward " \t\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4116 (setq pp (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4117 (forward-sexp 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4118 (setq p (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4119 (goto-char pp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4120 (setq ml (search-forward "\n" p t)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4121 (if (or cperl-break-one-line-blocks-when-indent ml) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4122 ;; not good: multi-line BLOCK |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4123 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4124 (goto-char (1+ pp)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4125 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4126 (insert "\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4127 (setq ret (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4128 (if (cperl-indent-line parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4129 (setq ret (cperl-fix-line-spacing end parse-data))))))))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4130 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4131 (setq p (point) pp (save-excursion (end-of-line) (point))) ; May be different from ee. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4132 ;; Now check whether there is a hanging `}' |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4133 ;; Looking at: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4134 ;; } blah |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4135 (if (and |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4136 cperl-fix-hanging-brace-when-indent |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4137 have-brace |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4138 (not (looking-at "[ \t]*}[ \t]*\\(\\<\\(els\\(if\\|e\\)\\|continue\\|while\\|until\\)\\>\\|$\\|#\\)")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4139 (condition-case nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4140 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4141 (up-list 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4142 (if (and (<= (point) pp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4143 (eq (preceding-char) ?\} ) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4144 (cperl-after-block-and-statement-beg (point-min))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4145 t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4146 (goto-char p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4147 nil)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4148 (error nil))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4149 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4150 (forward-char -1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4151 (skip-chars-backward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4152 (if (bolp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4153 ;; `}' was the first thing on the line, insert NL *after* it. |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4154 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4155 (cperl-indent-line parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4156 (search-forward "}") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4157 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4158 (insert "\n")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4159 (delete-horizontal-space) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4160 (or (eq (preceding-char) ?\;) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4161 (bolp) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4162 (and (eq (preceding-char) ?\} ) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4163 (cperl-after-block-p (point-min))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4164 (insert ";")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4165 (insert "\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4166 (setq ret (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4167 (if (cperl-indent-line parse-data) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4168 (setq ret (cperl-fix-line-spacing end parse-data))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4169 (beginning-of-line))))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4170 ret)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4171 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4172 (defvar cperl-update-start) ; Do not need to make them local |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4173 (defvar cperl-update-end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4174 (defun cperl-delay-update-hook (beg end old-len) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4175 (setq cperl-update-start (min beg (or cperl-update-start (point-max)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4176 (setq cperl-update-end (max end (or cperl-update-end (point-min))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4177 |
20323 | 4178 (defun cperl-indent-region (start end) |
4179 "Simple variant of indentation of region in CPerl mode. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4180 Should be slow. Will not indent comment if it starts at `comment-indent' |
20323 | 4181 or looks like continuation of the comment on the previous line. |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4182 Indents all the lines whose first character is between START and END |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4183 inclusive. |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4184 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4185 If `cperl-indent-region-fix-constructs', will improve spacing on |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4186 conditional/loop constructs." |
20323 | 4187 (interactive "r") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4188 (cperl-update-syntaxification end end) |
20323 | 4189 (save-excursion |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4190 (let (cperl-update-start cperl-update-end (h-a-c after-change-functions)) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4191 (let ((indent-info (if cperl-emacs-can-parse |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4192 (list nil nil nil) ; Cannot use '(), since will modify |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4193 nil)) |
58356
4ca1b78a471f
(cperl-indent-region): Don't mind imenu-scanning-message.
Richard M. Stallman <rms@gnu.org>
parents:
58190
diff
changeset
|
4194 (pm 0) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4195 after-change-functions ; Speed it up! |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4196 st comm old-comm-indent new-comm-indent p pp i empty) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4197 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook)) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4198 (goto-char start) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4199 (setq old-comm-indent (and (cperl-to-comment-or-eol) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4200 (current-column)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4201 new-comm-indent old-comm-indent) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4202 (goto-char start) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4203 (setq end (set-marker (make-marker) end)) ; indentation changes pos |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4204 (or (bolp) (beginning-of-line 2)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4205 (while (and (<= (point) end) (not (eobp))) ; bol to check start |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4206 (setq st (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4207 (if (or |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4208 (setq empty (looking-at "[ \t]*\n")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4209 (and (setq comm (looking-at "[ \t]*#")) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4210 (or (eq (current-indentation) (or old-comm-indent |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4211 comment-column)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4212 (setq old-comm-indent nil)))) |
20323 | 4213 (if (and old-comm-indent |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4214 (not empty) |
20323 | 4215 (= (current-indentation) old-comm-indent) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4216 (not (eq (get-text-property (point) 'syntax-type) 'pod)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4217 (not (eq (get-text-property (point) 'syntax-table) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4218 cperl-st-cfence))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4219 (let ((comment-column new-comm-indent)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4220 (indent-for-comment))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4221 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4222 (setq i (cperl-indent-line indent-info)) |
20323 | 4223 (or comm |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4224 (not i) |
20323 | 4225 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4226 (if cperl-indent-region-fix-constructs |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4227 (goto-char (cperl-fix-line-spacing end indent-info))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4228 (if (setq old-comm-indent |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4229 (and (cperl-to-comment-or-eol) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4230 (not (memq (get-text-property (point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4231 'syntax-type) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4232 '(pod here-doc))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4233 (not (eq (get-text-property (point) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4234 'syntax-table) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4235 cperl-st-cfence)) |
20323 | 4236 (current-column))) |
4237 (progn (indent-for-comment) | |
4238 (skip-chars-backward " \t") | |
4239 (skip-chars-backward "#") | |
4240 (setq new-comm-indent (current-column)))))))) | |
58492
4edc8e8a8ed6
(cperl-indent-region, cperl-imenu--create-perl-index, cperl-xsub-scan):
Richard M. Stallman <rms@gnu.org>
parents:
58356
diff
changeset
|
4241 (beginning-of-line 2))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4242 ;; Now run the update hooks |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4243 (and after-change-functions |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4244 cperl-update-end |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4245 (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4246 (goto-char cperl-update-end) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4247 (insert " ") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4248 (delete-char -1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4249 (goto-char cperl-update-start) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4250 (insert " ") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4251 (delete-char -1)))))) |
20323 | 4252 |
4253 ;; Stolen from lisp-mode with a lot of improvements | |
4254 | |
4255 (defun cperl-fill-paragraph (&optional justify iteration) | |
53779
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
4256 "Like `fill-paragraph', but handle CPerl comments. |
20323 | 4257 If any of the current line is a comment, fill the comment or the |
4258 block of it that point is in, preserving the comment's initial | |
4259 indentation and initial hashes. Behaves usually outside of comment." | |
53779
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
4260 ;; (interactive "P") ; Only works when called from fill-paragraph. -stef |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4261 (let (;; Non-nil if the current line contains a comment. |
20323 | 4262 has-comment |
4263 | |
4264 ;; If has-comment, the appropriate fill-prefix for the comment. | |
4265 comment-fill-prefix | |
4266 ;; Line that contains code and comment (or nil) | |
4267 start | |
4268 c spaces len dc (comment-column comment-column)) | |
4269 ;; Figure out what kind of comment we are looking at. | |
4270 (save-excursion | |
4271 (beginning-of-line) | |
4272 (cond | |
4273 | |
4274 ;; A line with nothing but a comment on it? | |
4275 ((looking-at "[ \t]*#[# \t]*") | |
4276 (setq has-comment t | |
4277 comment-fill-prefix (buffer-substring (match-beginning 0) | |
4278 (match-end 0)))) | |
4279 | |
4280 ;; A line with some code, followed by a comment? Remember that the | |
4281 ;; semi which starts the comment shouldn't be part of a string or | |
4282 ;; character. | |
4283 ((cperl-to-comment-or-eol) | |
4284 (setq has-comment t) | |
4285 (looking-at "#+[ \t]*") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4286 (setq start (point) c (current-column) |
20323 | 4287 comment-fill-prefix |
4288 (concat (make-string (current-column) ?\ ) | |
4289 (buffer-substring (match-beginning 0) (match-end 0))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4290 spaces (progn (skip-chars-backward " \t") |
20323 | 4291 (buffer-substring (point) start)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4292 dc (- c (current-column)) len (- start (point)) |
20323 | 4293 start (point-marker)) |
4294 (delete-char len) | |
4295 (insert (make-string dc ?-))))) | |
4296 (if (not has-comment) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4297 (fill-paragraph justify) ; Do the usual thing outside of comment |
20323 | 4298 ;; Narrow to include only the comment, and then fill the region. |
4299 (save-restriction | |
4300 (narrow-to-region | |
4301 ;; Find the first line we should include in the region to fill. | |
4302 (if start (progn (beginning-of-line) (point)) | |
4303 (save-excursion | |
4304 (while (and (zerop (forward-line -1)) | |
4305 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
4306 ;; We may have gone to far. Go forward again. | |
4307 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]") | |
4308 (forward-line 1)) | |
4309 (point))) | |
4310 ;; Find the beginning of the first line past the region to fill. | |
4311 (save-excursion | |
4312 (while (progn (forward-line 1) | |
4313 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
4314 (point))) | |
4315 ;; Remove existing hashes | |
53812
80c9f33653f7
(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53779
diff
changeset
|
4316 (save-excursion |
80c9f33653f7
(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53779
diff
changeset
|
4317 (goto-char (point-min)) |
80c9f33653f7
(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53779
diff
changeset
|
4318 (while (progn (forward-line 1) (< (point) (point-max))) |
80c9f33653f7
(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53779
diff
changeset
|
4319 (skip-chars-forward " \t") |
80c9f33653f7
(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53779
diff
changeset
|
4320 (and (looking-at "#+") |
80c9f33653f7
(cperl-fill-paragraph): Call fill-paragraph
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53779
diff
changeset
|
4321 (delete-char (- (match-end 0) (match-beginning 0)))))) |
20323 | 4322 |
4323 ;; Lines with only hashes on them can be paragraph boundaries. | |
4324 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$")) | |
4325 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$")) | |
4326 (fill-prefix comment-fill-prefix)) | |
4327 (fill-paragraph justify))) | |
4328 (if (and start) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4329 (progn |
20323 | 4330 (goto-char start) |
4331 (if (> dc 0) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4332 (progn (delete-char dc) (insert spaces))) |
20323 | 4333 (if (or (= (current-column) c) iteration) nil |
4334 (setq comment-column c) | |
4335 (indent-for-comment) | |
4336 ;; Repeat once more, flagging as iteration | |
4337 (cperl-fill-paragraph justify t))))))) | |
4338 | |
4339 (defun cperl-do-auto-fill () | |
4340 ;; Break out if the line is short enough | |
4341 (if (> (save-excursion | |
4342 (end-of-line) | |
4343 (current-column)) | |
4344 fill-column) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4345 (let ((c (save-excursion (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4346 (cperl-to-comment-or-eol) (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4347 (s (memq (following-char) '(?\ ?\t))) marker) |
53779
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
4348 (if (>= c (point)) |
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
4349 ;; Don't break line inside code: only inside comment. |
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
4350 nil |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4351 (setq marker (point-marker)) |
53779
5b728a418323
(cperl-mode-map, cperl-do-auto-fill, cperl-menu): Use fill-paragraph,
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
4352 (fill-paragraph nil) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4353 (goto-char marker) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4354 ;; Is not enough, sometimes marker is a start of line |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4355 (if (bolp) (progn (re-search-forward "#+[ \t]*") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4356 (goto-char (match-end 0)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4357 ;; Following space could have gone: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4358 (if (or (not s) (memq (following-char) '(?\ ?\t))) nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4359 (insert " ") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4360 (backward-char 1)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4361 ;; Previous space could have gone: |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4362 (or (memq (preceding-char) '(?\ ?\t)) (insert " ")))))) |
20323 | 4363 |
4364 (defun cperl-imenu-addback (lst &optional isback name) | |
4365 ;; We suppose that the lst is a DAG, unless the first element only | |
4366 ;; loops back, and ISBACK is set. Thus this function cannot be | |
4367 ;; applied twice without ISBACK set. | |
4368 (cond ((not cperl-imenu-addback) lst) | |
4369 (t | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4370 (or name |
20323 | 4371 (setq name "+++BACK+++")) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4372 (mapcar (lambda (elt) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4373 (if (and (listp elt) (listp (cdr elt))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4374 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4375 ;; In the other order it goes up |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4376 ;; one level only ;-( |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4377 (setcdr elt (cons (cons name lst) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4378 (cdr elt))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4379 (cperl-imenu-addback (cdr elt) t name)))) |
20323 | 4380 (if isback (cdr lst) lst)) |
4381 lst))) | |
4382 | |
31821 | 4383 (defun cperl-imenu--create-perl-index (&optional regexp) |
20323 | 4384 (require 'imenu) ; May be called from TAGS creator |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4385 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '()) |
20323 | 4386 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function)) |
4387 (index-meth-alist '()) meth | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4388 packages ends-ranges p marker |
20323 | 4389 (prev-pos 0) char fchar index index1 name (end-range 0) package) |
4390 (goto-char (point-min)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4391 (cperl-update-syntaxification (point-max) (point-max)) |
20323 | 4392 ;; Search for the function |
4393 (progn ;;save-match-data | |
4394 (while (re-search-forward | |
31821 | 4395 (or regexp cperl-imenu--function-name-regexp-perl) |
20323 | 4396 nil t) |
4397 (cond | |
4398 ((and ; Skip some noise if building tags | |
4399 (match-beginning 2) ; package or sub | |
4400 (eq (char-after (match-beginning 2)) ?p) ; package | |
4401 (not (save-match-data | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4402 (looking-at "[ \t\n]*;")))) ; Plain text word 'package' |
20323 | 4403 nil) |
4404 ((and | |
4405 (match-beginning 2) ; package or sub | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4406 ;; Skip if quoted (will not skip multi-line ''-strings :-(): |
20323 | 4407 (null (get-text-property (match-beginning 1) 'syntax-table)) |
4408 (null (get-text-property (match-beginning 1) 'syntax-type)) | |
4409 (null (get-text-property (match-beginning 1) 'in-pod))) | |
4410 (save-excursion | |
4411 (goto-char (match-beginning 2)) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4412 (setq fchar (following-char))) |
20323 | 4413 ;; (if (looking-at "([^()]*)[ \t\n\f]*") |
4414 ;; (goto-char (match-end 0))) ; Messes what follows | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4415 (setq char (following-char) ; ?\; for "sub foo () ;" |
20323 | 4416 meth nil |
4417 p (point)) | |
4418 (while (and ends-ranges (>= p (car ends-ranges))) | |
4419 ;; delete obsolete entries | |
4420 (setq ends-ranges (cdr ends-ranges) packages (cdr packages))) | |
4421 (setq package (or (car packages) "") | |
4422 end-range (or (car ends-ranges) 0)) | |
4423 (if (eq fchar ?p) | |
4424 (setq name (buffer-substring (match-beginning 3) (match-end 3)) | |
4425 name (progn | |
4426 (set-text-properties 0 (length name) nil name) | |
4427 name) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4428 package (concat name "::") |
20323 | 4429 name (concat "package " name) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4430 end-range |
20323 | 4431 (save-excursion |
4432 (parse-partial-sexp (point) (point-max) -1) (point)) | |
4433 ends-ranges (cons end-range ends-ranges) | |
4434 packages (cons package packages))) | |
4435 ;; ) | |
4436 ;; Skip this function name if it is a prototype declaration. | |
4437 (if (and (eq fchar ?s) (eq char ?\;)) nil | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4438 (setq name (buffer-substring (match-beginning 3) (match-end 3)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4439 marker (make-marker)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4440 (set-text-properties 0 (length name) nil name) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4441 (set-marker marker (match-end 3)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
4442 (if (eq fchar ?p) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4443 (setq name (concat "package " name)) |
20323 | 4444 (cond ((string-match "[:']" name) |
4445 (setq meth t)) | |
4446 ((> p end-range) nil) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4447 (t |
20323 | 4448 (setq name (concat package name) meth t)))) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4449 (setq index (cons name marker)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
4450 (if (eq fchar ?p) |
20323 | 4451 (push index index-pack-alist) |
4452 (push index index-alist)) | |
4453 (if meth (push index index-meth-alist)) | |
4454 (push index index-unsorted-alist))) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4455 ((match-beginning 5) ; POD section |
20323 | 4456 ;; (beginning-of-line) |
4457 (setq index (imenu-example--name-and-position) | |
4458 name (buffer-substring (match-beginning 6) (match-end 6))) | |
4459 (set-text-properties 0 (length name) nil name) | |
4460 (if (eq (char-after (match-beginning 5)) ?2) | |
4461 (setq name (concat " " name))) | |
4462 (setcar index name) | |
4463 (setq index1 (cons (concat "=" name) (cdr index))) | |
4464 (push index index-pod-alist) | |
4465 (push index1 index-unsorted-alist))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4466 (setq index-alist |
20323 | 4467 (if (default-value 'imenu-sort-function) |
4468 (sort index-alist (default-value 'imenu-sort-function)) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4469 (nreverse index-alist))) |
20323 | 4470 (and index-pod-alist |
4471 (push (cons "+POD headers+..." | |
4472 (nreverse index-pod-alist)) | |
4473 index-alist)) | |
4474 (and (or index-pack-alist index-meth-alist) | |
4475 (let ((lst index-pack-alist) hier-list pack elt group name) | |
4476 ;; Remove "package ", reverse and uniquify. | |
4477 (while lst | |
4478 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8)) | |
4479 (if (assoc name hier-list) nil | |
4480 (setq hier-list (cons (cons name (cdr elt)) hier-list)))) | |
4481 (setq lst index-meth-alist) | |
4482 (while lst | |
4483 (setq elt (car lst) lst (cdr lst)) | |
4484 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt)) | |
4485 (setq pack (substring (car elt) 0 (match-beginning 0))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4486 (if (setq group (assoc pack hier-list)) |
20323 | 4487 (if (listp (cdr group)) |
4488 ;; Have some functions already | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4489 (setcdr group |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4490 (cons (cons (substring |
20323 | 4491 (car elt) |
4492 (+ 2 (match-beginning 0))) | |
4493 (cdr elt)) | |
4494 (cdr group))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4495 (setcdr group (list (cons (substring |
20323 | 4496 (car elt) |
4497 (+ 2 (match-beginning 0))) | |
4498 (cdr elt))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4499 (setq hier-list |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4500 (cons (cons pack |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4501 (list (cons (substring |
20323 | 4502 (car elt) |
4503 (+ 2 (match-beginning 0))) | |
4504 (cdr elt)))) | |
4505 hier-list)))))) | |
4506 (push (cons "+Hierarchy+..." | |
4507 hier-list) | |
4508 index-alist))) | |
4509 (and index-pack-alist | |
4510 (push (cons "+Packages+..." | |
4511 (nreverse index-pack-alist)) | |
4512 index-alist)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4513 (and (or index-pack-alist index-pod-alist |
20323 | 4514 (default-value 'imenu-sort-function)) |
4515 index-unsorted-alist | |
4516 (push (cons "+Unsorted List+..." | |
4517 (nreverse index-unsorted-alist)) | |
4518 index-alist)) | |
4519 (cperl-imenu-addback index-alist))) | |
4520 | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4521 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4522 ;; Suggested by Mark A. Hershberger |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4523 (defun cperl-outline-level () |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4524 (looking-at outline-regexp) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4525 (cond ((not (match-beginning 1)) 0) ; beginning-of-file |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4526 ((match-beginning 2) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4527 (if (eq (char-after (match-beginning 2)) ?p) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4528 0 ; package |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4529 1)) ; sub |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4530 ((match-beginning 5) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4531 (if (eq (char-after (match-beginning 5)) ?1) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4532 1 ; head1 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4533 2)) ; head2 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4534 (t 3))) ; should not happen |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4535 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4536 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
4537 (defvar cperl-compilation-error-regexp-alist |
20323 | 4538 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORK). |
4539 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]" | |
4540 2 3)) | |
4541 "Alist that specifies how to match errors in perl output.") | |
4542 | |
4543 (if (fboundp 'eval-after-load) | |
4544 (eval-after-load | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4545 "mode-compile" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4546 '(setq perl-compilation-error-regexp-alist |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4547 cperl-compilation-error-regexp-alist))) |
20323 | 4548 |
4549 | |
4550 (defun cperl-windowed-init () | |
4551 "Initialization under windowed version." | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4552 (if (or (featurep 'ps-print) cperl-faces-init) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4553 ;; Need to init anyway: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4554 (or cperl-faces-init (cperl-init-faces)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4555 (add-hook 'font-lock-mode-hook |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4556 (function |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4557 (lambda () |
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
4558 (if (memq major-mode '(perl-mode cperl-mode)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4559 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4560 (or cperl-faces-init (cperl-init-faces))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4561 (if (fboundp 'eval-after-load) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4562 (eval-after-load |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4563 "ps-print" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4564 '(or cperl-faces-init (cperl-init-faces)))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4565 |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4566 (defvar cperl-font-lock-keywords-1 nil |
31821 | 4567 "Additional expressions to highlight in Perl mode. Minimal set.") |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4568 (defvar cperl-font-lock-keywords nil |
31821 | 4569 "Additional expressions to highlight in Perl mode. Default set.") |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4570 (defvar cperl-font-lock-keywords-2 nil |
31821 | 4571 "Additional expressions to highlight in Perl mode. Maximal set") |
4572 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4573 (defun cperl-load-font-lock-keywords () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4574 (or cperl-faces-init (cperl-init-faces)) |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4575 cperl-font-lock-keywords) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4576 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4577 (defun cperl-load-font-lock-keywords-1 () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4578 (or cperl-faces-init (cperl-init-faces)) |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4579 cperl-font-lock-keywords-1) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4580 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4581 (defun cperl-load-font-lock-keywords-2 () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4582 (or cperl-faces-init (cperl-init-faces)) |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4583 cperl-font-lock-keywords-2) |
20323 | 4584 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4585 (defun cperl-init-faces-weak () |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4586 ;; Allow `cperl-find-pods-heres' to run. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4587 (or (boundp 'font-lock-constant-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4588 (cperl-force-face font-lock-constant-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4589 "Face for constant and label names") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4590 ;;(setq font-lock-constant-face 'font-lock-constant-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4591 )) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4592 |
20323 | 4593 (defun cperl-init-faces () |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4594 (condition-case errs |
20323 | 4595 (progn |
4596 (require 'font-lock) | |
4597 (and (fboundp 'font-lock-fontify-anchored-keywords) | |
4598 (featurep 'font-lock-extra) | |
4599 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'.")) | |
4600 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored) | |
4601 (if (fboundp 'font-lock-fontify-anchored-keywords) | |
4602 (setq font-lock-anchored t)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4603 (setq |
20323 | 4604 t-font-lock-keywords |
4605 (list | |
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
4606 `("[ \t]+$" 0 ',cperl-invalid-face t) |
20323 | 4607 (cons |
4608 (concat | |
4609 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4610 (mapconcat | |
4611 'identity | |
4612 '("if" "until" "while" "elsif" "else" "unless" "for" | |
4613 "foreach" "continue" "exit" "die" "last" "goto" "next" | |
4614 "redo" "return" "local" "exec" "sub" "do" "dump" "use" | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4615 "require" "package" "eval" "my" "BEGIN" "END" "CHECK" "INIT") |
20323 | 4616 "\\|") ; Flow control |
4617 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]" | |
4618 ; In what follows we use `type' style | |
4619 ; for overwritable builtins | |
4620 (list | |
4621 (concat | |
4622 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4623 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm" | |
4624 ;; "and" "atan2" "bind" "binmode" "bless" "caller" | |
4625 ;; "chdir" "chmod" "chown" "chr" "chroot" "close" | |
4626 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt" | |
4627 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent" | |
4628 ;; "endhostent" "endnetent" "endprotoent" "endpwent" | |
4629 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl" | |
4630 ;; "fileno" "flock" "fork" "formline" "ge" "getc" | |
4631 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr" | |
4632 ;; "gethostbyname" "gethostent" "getlogin" | |
4633 ;; "getnetbyaddr" "getnetbyname" "getnetent" | |
4634 ;; "getpeername" "getpgrp" "getppid" "getpriority" | |
4635 ;; "getprotobyname" "getprotobynumber" "getprotoent" | |
4636 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname" | |
4637 ;; "getservbyport" "getservent" "getsockname" | |
4638 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int" | |
4639 ;; "ioctl" "join" "kill" "lc" "lcfirst" "le" "length" | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4640 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt" |
20323 | 4641 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne" |
4642 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe" | |
4643 ;; "quotemeta" "rand" "read" "readdir" "readline" | |
4644 ;; "readlink" "readpipe" "recv" "ref" "rename" "require" | |
4645 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek" | |
4646 ;; "seekdir" "select" "semctl" "semget" "semop" "send" | |
4647 ;; "setgrent" "sethostent" "setnetent" "setpgrp" | |
4648 ;; "setpriority" "setprotoent" "setpwent" "setservent" | |
4649 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite" | |
4650 ;; "shutdown" "sin" "sleep" "socket" "socketpair" | |
4651 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink" | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4652 ;; "syscall" "sysopen" "sysread" "system" "syswrite" "tell" |
20323 | 4653 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst" |
4654 ;; "umask" "unlink" "unpack" "utime" "values" "vec" | |
4655 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor" | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4656 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|" |
20323 | 4657 "b\\(in\\(d\\|mode\\)\\|less\\)\\|" |
4658 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|" | |
4659 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|" | |
4660 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|" | |
4661 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|" | |
4662 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|" | |
4663 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|" | |
4664 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|" | |
4665 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w" | |
4666 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|" | |
4667 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|" | |
4668 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|" | |
4669 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|" | |
4670 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|" | |
4671 "l\\(i\\(sten\\|nk\\)\\|stat\\|c\\(\\|first\\)\\|t\\|e" | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4672 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|" |
20323 | 4673 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|" |
4674 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|" | |
4675 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin" | |
4676 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name" | |
4677 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r" | |
4678 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|" | |
4679 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|" | |
4680 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|" | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4681 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|open\\|tem\\|write\\)\\|" |
20323 | 4682 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|" |
4683 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|" | |
4684 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|" | |
4685 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|" | |
4686 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)" | |
4687 "\\)\\>") 2 'font-lock-type-face) | |
4688 ;; In what follows we use `other' style | |
4689 ;; for nonoverwritable builtins | |
4690 ;; Somehow 's', 'm' are not auto-generated??? | |
4691 (list | |
4692 (concat | |
4693 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4694 ;; "AUTOLOAD" "BEGIN" "CHECK" "DESTROY" "END" "INIT" "__END__" "chomp" |
20323 | 4695 ;; "chop" "defined" "delete" "do" "each" "else" "elsif" |
4696 ;; "eval" "exists" "for" "foreach" "format" "goto" | |
4697 ;; "grep" "if" "keys" "last" "local" "map" "my" "next" | |
4698 ;; "no" "package" "pop" "pos" "print" "printf" "push" | |
4699 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift" | |
4700 ;; "sort" "splice" "split" "study" "sub" "tie" "tr" | |
4701 ;; "undef" "unless" "unshift" "untie" "until" "use" | |
4702 ;; "while" "y" | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4703 "AUTOLOAD\\|BEGIN\\|CHECK\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|" |
20323 | 4704 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|" |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4705 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|INIT\\|if\\|keys\\|" |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4706 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|our\\|" |
20323 | 4707 "p\\(ackage\\|rint\\(\\|f\\)\\|ush\\|o\\(p\\|s\\)\\)\\|" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4708 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|" |
20323 | 4709 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|" |
4710 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|" | |
4711 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually | |
4712 "\\|[sm]" ; Added manually | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4713 "\\)\\>") 2 'cperl-nonoverridable-face) |
20323 | 4714 ;; (mapconcat 'identity |
4715 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if" | |
4716 ;; "#include" "#define" "#undef") | |
4717 ;; "\\|") | |
4718 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0 | |
4719 font-lock-function-name-face keep) ; Not very good, triggers at "[a-z]" | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4720 '("\\<sub[ \t]+\\([^ \t{;()]+\\)[ \t]*\\(([^()]*)[ \t]*\\)?[#{\n]" 1 |
20323 | 4721 font-lock-function-name-face) |
4722 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B; | |
4723 2 font-lock-function-name-face) | |
4724 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$" | |
4725 1 font-lock-function-name-face) | |
4726 (cond ((featurep 'font-lock-extra) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4727 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" |
20323 | 4728 (2 font-lock-string-face t) |
4729 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef} | |
4730 (font-lock-anchored | |
4731 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4732 (2 font-lock-string-face t) | |
4733 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4734 nil nil | |
4735 (1 font-lock-string-face t)))) | |
4736 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4737 2 font-lock-string-face t))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4738 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1 |
20323 | 4739 font-lock-string-face t) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4740 '("^[ \t]*\\([a-zA-Z0-9_]+[ \t]*:\\)[ \t]*\\($\\|{\\|\\<\\(until\\|while\\|for\\(each\\)?\\|do\\)\\>\\)" 1 |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4741 font-lock-constant-face) ; labels |
20323 | 4742 '("\\<\\(continue\\|next\\|last\\|redo\\|goto\\)\\>[ \t]+\\([a-zA-Z0-9_:]+\\)" ; labels as targets |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
4743 2 font-lock-constant-face) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4744 ;; Uncomment to get perl-mode-like vars |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4745 ;;; '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4746 ;;; '("\\([@%]\\|\\$#\\)\\(\\sw+\\)" |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4747 ;;; (2 (cons font-lock-variable-name-face '(underline)))) |
20323 | 4748 (cond ((featurep 'font-lock-extra) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4749 '("^[ \t]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" |
20323 | 4750 (3 font-lock-variable-name-face) |
4751 (4 '(another 4 nil | |
4752 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
4753 (1 font-lock-variable-name-face) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4754 (2 '(restart 2 nil) nil t))) |
20323 | 4755 nil t))) ; local variables, multiple |
4756 (font-lock-anchored | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4757 '("^[ \t{}]*\\(my\\|local\\|our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" |
20323 | 4758 (3 font-lock-variable-name-face) |
4759 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4760 nil nil | |
4761 (1 font-lock-variable-name-face)))) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4762 (t '("^[ \t{}]*\\(my\\|local\\our\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" |
20323 | 4763 3 font-lock-variable-name-face))) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4764 '("\\<for\\(each\\)?\\([ \t]+\\(my\\|local\\|our\\)\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*(" |
62081
c186a2b77f86
(cperl-init-faces): Use font-lock-negation-char-face.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
61892
diff
changeset
|
4765 4 font-lock-variable-name-face) |
62085
7dbe52d92117
Avoid $! for font-lock-negation-char-face.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
62081
diff
changeset
|
4766 ;; Avoid $!, and s!!, qq!! etc. when not fontifying syntaxically |
7dbe52d92117
Avoid $! for font-lock-negation-char-face.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
62081
diff
changeset
|
4767 '("\\(?:^\\|[^smywqrx$]\\)\\(!\\)" 1 font-lock-negation-char-face) |
62081
c186a2b77f86
(cperl-init-faces): Use font-lock-negation-char-face.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
61892
diff
changeset
|
4768 '("\\[\\(\\^\\)" 1 font-lock-negation-char-face prepend))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
4769 (setq |
20323 | 4770 t-font-lock-keywords-1 |
4771 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4772 (not cperl-xemacs-p) ; not yet as of XEmacs 19.12 |
20323 | 4773 '( |
4774 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1 | |
4775 (if (eq (char-after (match-beginning 2)) ?%) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4776 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4777 cperl-array-face) |
20323 | 4778 t) ; arrays and hashes |
4779 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)" | |
4780 1 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4781 (if (= (- (match-end 2) (match-beginning 2)) 1) |
20323 | 4782 (if (eq (char-after (match-beginning 3)) ?{) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4783 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4784 cperl-array-face) ; arrays and hashes |
20323 | 4785 font-lock-variable-name-face) ; Just to put something |
4786 t) | |
4787 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2") | |
4788 ;;; Too much noise from \s* @s[ and friends | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4789 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)" |
20323 | 4790 ;;(3 font-lock-function-name-face t t) |
4791 ;;(4 | |
4792 ;; (if (cperl-slash-is-regexp) | |
4793 ;; font-lock-function-name-face 'default) nil t)) | |
4794 ))) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4795 (if cperl-highlight-variables-indiscriminately |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4796 (setq t-font-lock-keywords-1 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4797 (append t-font-lock-keywords-1 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4798 (list '("[$*]{?\\(\\sw+\\)" 1 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4799 font-lock-variable-name-face))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
4800 (setq cperl-font-lock-keywords-1 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4801 (if cperl-syntaxify-by-font-lock |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4802 (cons 'cperl-fontify-update |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4803 t-font-lock-keywords) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4804 t-font-lock-keywords) |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4805 cperl-font-lock-keywords cperl-font-lock-keywords-1 |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4806 cperl-font-lock-keywords-2 (append |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4807 cperl-font-lock-keywords-1 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
4808 t-font-lock-keywords-1))) |
20323 | 4809 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init)) |
4810 (if (or (featurep 'choose-color) (featurep 'font-lock-extra)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4811 (eval ; Avoid a warning |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4812 '(font-lock-require-faces |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4813 (list |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4814 ;; Color-light Color-dark Gray-light Gray-dark Mono |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4815 (list 'font-lock-comment-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4816 ["Firebrick" "OrangeRed" "DimGray" "Gray80"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4817 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4818 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4819 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4820 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4821 (list 'font-lock-string-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4822 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4823 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4824 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4825 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4826 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4827 (list 'font-lock-function-name-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4828 (vector |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4829 "Blue" "LightSkyBlue" "Gray50" "LightGray" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4830 (cdr (assq 'background-color ; if mono |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4831 (frame-parameters)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4832 (vector |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4833 nil nil nil nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4834 (cdr (assq 'foreground-color ; if mono |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4835 (frame-parameters)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4836 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4837 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4838 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4839 (list 'font-lock-variable-name-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4840 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4841 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4842 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4843 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4844 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4845 (list 'font-lock-type-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4846 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4847 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4848 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4849 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4850 [nil nil t t t]) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4851 (list 'font-lock-constant-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4852 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4853 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4854 [nil nil t t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4855 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4856 [nil nil t t t]) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4857 (list 'cperl-nonoverridable-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4858 ["chartreuse3" ("orchid1" "orange") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4859 nil "Gray80"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4860 [nil nil "gray90"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4861 [nil nil nil t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4862 [nil nil t t] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4863 [nil nil t t t]) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4864 (list 'cperl-array-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4865 ["blue" "yellow" nil "Gray80"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4866 ["lightyellow2" ("navy" "os2blue" "darkgreen") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4867 "gray90"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4868 t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4869 nil |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4870 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4871 (list 'cperl-hash-face |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4872 ["red" "red" nil "Gray80"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4873 ["lightyellow2" ("navy" "os2blue" "darkgreen") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4874 "gray90"] |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4875 t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4876 t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4877 nil)))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4878 ;; Do it the dull way, without choose-color |
20323 | 4879 (defvar cperl-guessed-background nil |
4880 "Display characteristics as guessed by cperl.") | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4881 ;; (or (fboundp 'x-color-defined-p) |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
4882 ;; (defalias 'x-color-defined-p |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4883 ;; (cond ((fboundp 'color-defined-p) 'color-defined-p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4884 ;; ;; XEmacs >= 19.12 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4885 ;; ((fboundp 'valid-color-name-p) 'valid-color-name-p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4886 ;; ;; XEmacs 19.11 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4887 ;; (t 'x-valid-color-name-p)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4888 (cperl-force-face font-lock-constant-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4889 "Face for constant and label names") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4890 (cperl-force-face font-lock-variable-name-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4891 "Face for variable names") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4892 (cperl-force-face font-lock-type-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4893 "Face for data types") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4894 (cperl-force-face cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4895 "Face for data types from another group") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4896 (cperl-force-face font-lock-comment-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4897 "Face for comments") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4898 (cperl-force-face font-lock-function-name-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4899 "Face for function names") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4900 (cperl-force-face cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4901 "Face for hashes") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4902 (cperl-force-face cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4903 "Face for arrays") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4904 ;;(defvar font-lock-constant-face 'font-lock-constant-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4905 ;;(defvar font-lock-variable-name-face 'font-lock-variable-name-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4906 ;;(or (boundp 'font-lock-type-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4907 ;; (defconst font-lock-type-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4908 ;; 'font-lock-type-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4909 ;; "Face to use for data types.")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4910 ;;(or (boundp 'cperl-nonoverridable-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4911 ;; (defconst cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4912 ;; 'cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4913 ;; "Face to use for data types from another group.")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4914 ;;(if (not cperl-xemacs-p) nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4915 ;; (or (boundp 'font-lock-comment-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4916 ;; (defconst font-lock-comment-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4917 ;; 'font-lock-comment-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4918 ;; "Face to use for comments.")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4919 ;; (or (boundp 'font-lock-keyword-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4920 ;; (defconst font-lock-keyword-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4921 ;; 'font-lock-keyword-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4922 ;; "Face to use for keywords.")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4923 ;; (or (boundp 'font-lock-function-name-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4924 ;; (defconst font-lock-function-name-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4925 ;; 'font-lock-function-name-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4926 ;; "Face to use for function names."))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4927 (if (and |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4928 (not (cperl-is-face 'cperl-array-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4929 (cperl-is-face 'font-lock-emphasized-face)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4930 (copy-face 'font-lock-emphasized-face 'cperl-array-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4931 (if (and |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4932 (not (cperl-is-face 'cperl-hash-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4933 (cperl-is-face 'font-lock-other-emphasized-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4934 (copy-face 'font-lock-other-emphasized-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4935 'cperl-hash-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4936 (if (and |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4937 (not (cperl-is-face 'cperl-nonoverridable-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4938 (cperl-is-face 'font-lock-other-type-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4939 (copy-face 'font-lock-other-type-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4940 'cperl-nonoverridable-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4941 ;;(or (boundp 'cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4942 ;; (defconst cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4943 ;; 'cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4944 ;; "Face to use for hashes.")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4945 ;;(or (boundp 'cperl-array-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4946 ;; (defconst cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4947 ;; 'cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4948 ;; "Face to use for arrays.")) |
20323 | 4949 ;; Here we try to guess background |
4950 (let ((background | |
4951 (if (boundp 'font-lock-background-mode) | |
4952 font-lock-background-mode | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4953 'light)) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4954 (face-list (and (fboundp 'face-list) (face-list)))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4955 ;;;; (fset 'cperl-is-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4956 ;;;; (cond ((fboundp 'find-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4957 ;;;; (symbol-function 'find-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4958 ;;;; (face-list |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4959 ;;;; (function (lambda (face) (member face face-list)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4960 ;;;; (t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4961 ;;;; (function (lambda (face) (boundp face)))))) |
20323 | 4962 (defvar cperl-guessed-background |
4963 (if (and (boundp 'font-lock-display-type) | |
4964 (eq font-lock-display-type 'grayscale)) | |
4965 'gray | |
4966 background) | |
4967 "Background as guessed by CPerl mode") | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4968 (and (not (cperl-is-face 'font-lock-constant-face)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4969 (cperl-is-face 'font-lock-reference-face) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
4970 (copy-face 'font-lock-reference-face 'font-lock-constant-face)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4971 (if (cperl-is-face 'font-lock-type-face) nil |
20323 | 4972 (copy-face 'default 'font-lock-type-face) |
4973 (cond | |
4974 ((eq background 'light) | |
4975 (set-face-foreground 'font-lock-type-face | |
4976 (if (x-color-defined-p "seagreen") | |
4977 "seagreen" | |
4978 "sea green"))) | |
4979 ((eq background 'dark) | |
4980 (set-face-foreground 'font-lock-type-face | |
4981 (if (x-color-defined-p "os2pink") | |
4982 "os2pink" | |
4983 "pink"))) | |
4984 (t | |
4985 (set-face-background 'font-lock-type-face "gray90")))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4986 (if (cperl-is-face 'cperl-nonoverridable-face) |
20323 | 4987 nil |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4988 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face) |
20323 | 4989 (cond |
4990 ((eq background 'light) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4991 (set-face-foreground 'cperl-nonoverridable-face |
20323 | 4992 (if (x-color-defined-p "chartreuse3") |
4993 "chartreuse3" | |
4994 "chartreuse"))) | |
4995 ((eq background 'dark) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4996 (set-face-foreground 'cperl-nonoverridable-face |
20323 | 4997 (if (x-color-defined-p "orchid1") |
4998 "orchid1" | |
4999 "orange"))))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5000 ;;; (if (cperl-is-face 'font-lock-other-emphasized-face) nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5001 ;;; (copy-face 'bold-italic 'font-lock-other-emphasized-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5002 ;;; (cond |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5003 ;;; ((eq background 'light) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5004 ;;; (set-face-background 'font-lock-other-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5005 ;;; (if (x-color-defined-p "lightyellow2") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5006 ;;; "lightyellow2" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5007 ;;; (if (x-color-defined-p "lightyellow") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5008 ;;; "lightyellow" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5009 ;;; "light yellow")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5010 ;;; ((eq background 'dark) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5011 ;;; (set-face-background 'font-lock-other-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5012 ;;; (if (x-color-defined-p "navy") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5013 ;;; "navy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5014 ;;; (if (x-color-defined-p "darkgreen") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5015 ;;; "darkgreen" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5016 ;;; "dark green")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5017 ;;; (t (set-face-background 'font-lock-other-emphasized-face "gray90")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5018 ;;; (if (cperl-is-face 'font-lock-emphasized-face) nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5019 ;;; (copy-face 'bold 'font-lock-emphasized-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5020 ;;; (cond |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5021 ;;; ((eq background 'light) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5022 ;;; (set-face-background 'font-lock-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5023 ;;; (if (x-color-defined-p "lightyellow2") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5024 ;;; "lightyellow2" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5025 ;;; "lightyellow"))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5026 ;;; ((eq background 'dark) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5027 ;;; (set-face-background 'font-lock-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5028 ;;; (if (x-color-defined-p "navy") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5029 ;;; "navy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5030 ;;; (if (x-color-defined-p "darkgreen") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5031 ;;; "darkgreen" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5032 ;;; "dark green")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5033 ;;; (t (set-face-background 'font-lock-emphasized-face "gray90")))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5034 (if (cperl-is-face 'font-lock-variable-name-face) nil |
20323 | 5035 (copy-face 'italic 'font-lock-variable-name-face)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5036 (if (cperl-is-face 'font-lock-constant-face) nil |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
5037 (copy-face 'italic 'font-lock-constant-face)))) |
20323 | 5038 (setq cperl-faces-init t)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5039 (error (message "cperl-init-faces (ignored): %s" errs)))) |
20323 | 5040 |
5041 | |
5042 (defun cperl-ps-print-init () | |
5043 "Initialization of `ps-print' components for faces used in CPerl." | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5044 (eval-after-load "ps-print" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5045 '(setq ps-bold-faces |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5046 ;; font-lock-variable-name-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5047 ;; font-lock-constant-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5048 (append '(cperl-array-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5049 cperl-hash-face) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5050 ps-bold-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5051 ps-italic-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5052 ;; font-lock-constant-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5053 (append '(cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5054 cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5055 ps-italic-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5056 ps-underlined-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5057 ;; font-lock-type-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5058 (append '(cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5059 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5060 underline |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5061 cperl-nonoverridable-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5062 ps-underlined-faces)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5063 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5064 (defvar ps-print-face-extension-alist) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5065 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5066 (defun cperl-ps-print (&optional file) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5067 "Pretty-print in CPerl style. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5068 If optional argument FILE is an empty string, prints to printer, otherwise |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5069 to the file FILE. If FILE is nil, prompts for a file name. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5070 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5071 Style of printout regulated by the variable `cperl-ps-print-face-properties'." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5072 (interactive) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5073 (or file |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5074 (setq file (read-from-minibuffer |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5075 "Print to file (if empty - to printer): " |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5076 (concat (buffer-file-name) ".ps") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5077 nil nil 'file-name-history))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5078 (or (> (length file) 0) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5079 (setq file nil)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5080 (require 'ps-print) ; To get ps-print-face-extension-alist |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5081 (let ((ps-print-color-p t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5082 (ps-print-face-extension-alist ps-print-face-extension-alist)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5083 (cperl-ps-extend-face-list cperl-ps-print-face-properties) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5084 (ps-print-buffer-with-faces file))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5085 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5086 ;;; (defun cperl-ps-print-init () |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5087 ;;; "Initialization of `ps-print' components for faces used in CPerl." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5088 ;;; ;; Guard against old versions |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5089 ;;; (defvar ps-underlined-faces nil) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5090 ;;; (defvar ps-bold-faces nil) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5091 ;;; (defvar ps-italic-faces nil) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5092 ;;; (setq ps-bold-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5093 ;;; (append '(font-lock-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5094 ;;; cperl-array-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5095 ;;; font-lock-keyword-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5096 ;;; font-lock-variable-name-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5097 ;;; font-lock-constant-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5098 ;;; font-lock-reference-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5099 ;;; font-lock-other-emphasized-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5100 ;;; cperl-hash-face) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5101 ;;; ps-bold-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5102 ;;; (setq ps-italic-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5103 ;;; (append '(cperl-nonoverridable-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5104 ;;; font-lock-constant-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5105 ;;; font-lock-reference-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5106 ;;; font-lock-other-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5107 ;;; cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5108 ;;; ps-italic-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5109 ;;; (setq ps-underlined-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5110 ;;; (append '(font-lock-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5111 ;;; cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5112 ;;; font-lock-other-emphasized-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5113 ;;; cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5114 ;;; cperl-nonoverridable-face font-lock-type-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5115 ;;; ps-underlined-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5116 ;;; (cons 'font-lock-type-face ps-underlined-faces)) |
20323 | 5117 |
5118 | |
5119 (if (cperl-enable-font-lock) (cperl-windowed-init)) | |
5120 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5121 (defconst cperl-styles-entries |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5122 '(cperl-indent-level cperl-brace-offset cperl-continued-brace-offset |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5123 cperl-label-offset cperl-extra-newline-before-brace |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
5124 cperl-merge-trailing-else |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5125 cperl-continued-statement-offset)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5126 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5127 (defconst cperl-style-alist |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5128 '(("CPerl" ; =GNU without extra-newline-before-brace |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5129 (cperl-indent-level . 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5130 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5131 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5132 (cperl-label-offset . -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5133 (cperl-extra-newline-before-brace . nil) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
5134 (cperl-merge-trailing-else . t) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5135 (cperl-continued-statement-offset . 2)) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5136 ("PerlStyle" ; CPerl with 4 as indent |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5137 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5138 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5139 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5140 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5141 (cperl-extra-newline-before-brace . nil) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
5142 (cperl-merge-trailing-else . t) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5143 (cperl-continued-statement-offset . 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5144 ("GNU" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5145 (cperl-indent-level . 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5146 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5147 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5148 (cperl-label-offset . -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5149 (cperl-extra-newline-before-brace . t) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
5150 (cperl-merge-trailing-else . nil) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5151 (cperl-continued-statement-offset . 2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5152 ("K&R" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5153 (cperl-indent-level . 5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5154 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5155 (cperl-continued-brace-offset . -5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5156 (cperl-label-offset . -5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5157 ;;(cperl-extra-newline-before-brace . nil) ; ??? |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
5158 (cperl-merge-trailing-else . nil) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5159 (cperl-continued-statement-offset . 5)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5160 ("BSD" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5161 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5162 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5163 (cperl-continued-brace-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5164 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5165 ;;(cperl-extra-newline-before-brace . nil) ; ??? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5166 (cperl-continued-statement-offset . 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5167 ("C++" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5168 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5169 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5170 (cperl-continued-brace-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5171 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5172 (cperl-continued-statement-offset . 4) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
5173 (cperl-merge-trailing-else . nil) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5174 (cperl-extra-newline-before-brace . t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5175 ("Current") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5176 ("Whitesmith" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5177 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5178 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5179 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5180 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5181 ;;(cperl-extra-newline-before-brace . nil) ; ??? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5182 (cperl-continued-statement-offset . 4))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5183 "(Experimental) list of variables to set to get a particular indentation style. |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5184 Should be used via `cperl-set-style' or via Perl menu.") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5185 |
20323 | 5186 (defun cperl-set-style (style) |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
5187 "Set CPerl mode variables to use one of several different indentation styles. |
20323 | 5188 The arguments are a string representing the desired style. |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5189 The list of styles is in `cperl-style-alist', available styles |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5190 are GNU, K&R, BSD, C++ and Whitesmith. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5191 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5192 The current value of style is memorized (unless there is a memorized |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5193 data already), may be restored by `cperl-set-style-back'. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5194 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5195 Chosing \"Current\" style will not change style, so this may be used for |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5196 side-effect of memorizing only." |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5197 (interactive |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
5198 (let ((list (mapcar (function (lambda (elt) (list (car elt)))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5199 cperl-style-alist))) |
20323 | 5200 (list (completing-read "Enter style: " list nil 'insist)))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5201 (or cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5202 (setq cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5203 (mapcar (function |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5204 (lambda (name) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5205 (cons name (eval name)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5206 cperl-styles-entries))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5207 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym) |
20323 | 5208 (while style |
5209 (setq setting (car style) style (cdr style)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5210 (set (car setting) (cdr setting))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5211 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5212 (defun cperl-set-style-back () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5213 "Restore a style memorised by `cperl-set-style'." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5214 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5215 (or cperl-old-style (error "The style was not changed")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5216 (let (setting) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5217 (while cperl-old-style |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5218 (setq setting (car cperl-old-style) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5219 cperl-old-style (cdr cperl-old-style)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5220 (set (car setting) (cdr setting))))) |
20323 | 5221 |
5222 (defun cperl-check-syntax () | |
5223 (interactive) | |
5224 (require 'mode-compile) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5225 (let ((perl-dbg-flags (concat cperl-extra-perl-args " -wc"))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5226 (eval '(mode-compile)))) ; Avoid a warning |
20323 | 5227 |
5228 (defun cperl-info-buffer (type) | |
5229 ;; Returns buffer with documentation. Creates if missing. | |
5230 ;; If TYPE, this vars buffer. | |
5231 ;; Special care is taken to not stomp over an existing info buffer | |
5232 (let* ((bname (if type "*info-perl-var*" "*info-perl*")) | |
5233 (info (get-buffer bname)) | |
5234 (oldbuf (get-buffer "*info*"))) | |
5235 (if info info | |
5236 (save-window-excursion | |
5237 ;; Get Info running | |
5238 (require 'info) | |
5239 (cond (oldbuf | |
5240 (set-buffer oldbuf) | |
5241 (rename-buffer "*info-perl-tmp*"))) | |
5242 (save-window-excursion | |
5243 (info)) | |
5244 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc")) | |
5245 (set-buffer "*info*") | |
5246 (rename-buffer bname) | |
5247 (cond (oldbuf | |
5248 (set-buffer "*info-perl-tmp*") | |
5249 (rename-buffer "*info*") | |
5250 (set-buffer bname))) | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5251 (make-local-variable 'window-min-height) |
20323 | 5252 (setq window-min-height 2) |
5253 (current-buffer))))) | |
5254 | |
5255 (defun cperl-word-at-point (&optional p) | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
5256 "Return the word at point or at P." |
20323 | 5257 (save-excursion |
5258 (if p (goto-char p)) | |
5259 (or (cperl-word-at-point-hard) | |
5260 (progn | |
5261 (require 'etags) | |
5262 (funcall (or (and (boundp 'find-tag-default-function) | |
5263 find-tag-default-function) | |
5264 (get major-mode 'find-tag-default-function) | |
5265 ;; XEmacs 19.12 has `find-tag-default-hook'; it is | |
5266 ;; automatically used within `find-tag-default': | |
5267 'find-tag-default)))))) | |
5268 | |
5269 (defun cperl-info-on-command (command) | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
5270 "Show documentation for Perl command COMMAND in other window. |
20323 | 5271 If perl-info buffer is shown in some frame, uses this frame. |
5272 Customized by setting variables `cperl-shrink-wrap-info-frame', | |
5273 `cperl-max-help-size'." | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5274 (interactive |
20323 | 5275 (let* ((default (cperl-word-at-point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5276 (read (read-string |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5277 (format "Find doc for Perl function (default %s): " |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5278 default)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5279 (list (if (equal read "") |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5280 default |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5281 read)))) |
20323 | 5282 |
5283 (let ((buffer (current-buffer)) | |
5284 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///" | |
5285 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner | |
5286 max-height char-height buf-list) | |
5287 (if (string-match "^-[a-zA-Z]$" command) | |
5288 (setq cmd-desc "^-X[ \t\n]")) | |
5289 (setq isvar (string-match "^[$@%]" command) | |
5290 buf (cperl-info-buffer isvar) | |
5291 iniwin (selected-window) | |
5292 fr1 (window-frame iniwin)) | |
5293 (set-buffer buf) | |
58003
e47d2626afd7
(cperl-info-on-command): Use goto-char instead of beginning-of-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
57823
diff
changeset
|
5294 (goto-char (point-min)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5295 (or isvar |
20323 | 5296 (progn (re-search-forward "^-X[ \t\n]") |
5297 (forward-line -1))) | |
5298 (if (re-search-forward cmd-desc nil t) | |
5299 (progn | |
5300 ;; Go back to beginning of the group (ex, for qq) | |
5301 (if (re-search-backward "^[ \t\n\f]") | |
5302 (forward-line 1)) | |
5303 (beginning-of-line) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5304 ;; Get some of |
20323 | 5305 (setq pos (point) |
5306 buf-list (list buf "*info-perl-var*" "*info-perl*")) | |
5307 (while (and (not win) buf-list) | |
5308 (setq win (get-buffer-window (car buf-list) t)) | |
5309 (setq buf-list (cdr buf-list))) | |
5310 (or (not win) | |
5311 (eq (window-buffer win) buf) | |
5312 (set-window-buffer win buf)) | |
5313 (and win (setq fr2 (window-frame win))) | |
5314 (if (or (not fr2) (eq fr1 fr2)) | |
5315 (pop-to-buffer buf) | |
5316 (special-display-popup-frame buf) ; Make it visible | |
5317 (select-window win)) | |
5318 (goto-char pos) ; Needed (?!). | |
5319 ;; Resize | |
5320 (setq iniheight (window-height) | |
5321 frheight (frame-height) | |
5322 not-loner (< iniheight (1- frheight))) ; Are not alone | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5323 (cond ((if not-loner cperl-max-help-size |
20323 | 5324 cperl-shrink-wrap-info-frame) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5325 (setq height |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5326 (+ 2 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5327 (count-lines |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5328 pos |
20323 | 5329 (save-excursion |
5330 (if (re-search-forward | |
5331 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t) | |
5332 (match-beginning 0) (point-max))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5333 max-height |
20323 | 5334 (if not-loner |
5335 (/ (* (- frheight 3) cperl-max-help-size) 100) | |
5336 (setq char-height (frame-char-height)) | |
5337 ;; Non-functioning under OS/2: | |
5338 (if (eq char-height 1) (setq char-height 18)) | |
5339 ;; Title, menubar, + 2 for slack | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5340 (- (/ (x-display-pixel-height) char-height) 4))) |
20323 | 5341 (if (> height max-height) (setq height max-height)) |
5342 ;;(message "was %s doing %s" iniheight height) | |
5343 (if not-loner | |
5344 (enlarge-window (- height iniheight)) | |
5345 (set-frame-height (window-frame win) (1+ height))))) | |
5346 (set-window-start (selected-window) pos)) | |
5347 (message "No entry for %s found." command)) | |
5348 ;;(pop-to-buffer buffer) | |
5349 (select-window iniwin))) | |
5350 | |
5351 (defun cperl-info-on-current-command () | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5352 "Show documentation for Perl command at point in other window." |
20323 | 5353 (interactive) |
5354 (cperl-info-on-command (cperl-word-at-point))) | |
5355 | |
5356 (defun cperl-imenu-info-imenu-search () | |
5357 (if (looking-at "^-X[ \t\n]") nil | |
5358 (re-search-backward | |
5359 "^\n\\([-a-zA-Z_]+\\)[ \t\n]") | |
5360 (forward-line 1))) | |
5361 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5362 (defun cperl-imenu-info-imenu-name () |
20323 | 5363 (buffer-substring |
5364 (match-beginning 1) (match-end 1))) | |
5365 | |
5366 (defun cperl-imenu-on-info () | |
5367 (interactive) | |
5368 (let* ((buffer (current-buffer)) | |
5369 imenu-create-index-function | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5370 imenu-prev-index-position-function |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5371 imenu-extract-index-name-function |
20323 | 5372 (index-item (save-restriction |
5373 (save-window-excursion | |
5374 (set-buffer (cperl-info-buffer nil)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5375 (setq imenu-create-index-function |
20323 | 5376 'imenu-default-create-index-function |
5377 imenu-prev-index-position-function | |
5378 'cperl-imenu-info-imenu-search | |
5379 imenu-extract-index-name-function | |
5380 'cperl-imenu-info-imenu-name) | |
5381 (imenu-choose-buffer-index))))) | |
5382 (and index-item | |
5383 (progn | |
5384 (push-mark) | |
5385 (pop-to-buffer "*info-perl*") | |
5386 (cond | |
5387 ((markerp (cdr index-item)) | |
5388 (goto-char (marker-position (cdr index-item)))) | |
5389 (t | |
5390 (goto-char (cdr index-item)))) | |
5391 (set-window-start (selected-window) (point)) | |
5392 (pop-to-buffer buffer))))) | |
5393 | |
5394 (defun cperl-lineup (beg end &optional step minshift) | |
5395 "Lineup construction in a region. | |
5396 Beginning of region should be at the start of a construction. | |
5397 All first occurrences of this construction in the lines that are | |
5398 partially contained in the region are lined up at the same column. | |
5399 | |
5400 MINSHIFT is the minimal amount of space to insert before the construction. | |
5401 STEP is the tabwidth to position constructions. | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5402 If STEP is nil, `cperl-lineup-step' will be used |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
5403 \(or `cperl-indent-level', if `cperl-lineup-step' is nil). |
20323 | 5404 Will not move the position at the start to the left." |
5405 (interactive "r") | |
5406 (let (search col tcol seen b e) | |
5407 (save-excursion | |
5408 (goto-char end) | |
5409 (end-of-line) | |
5410 (setq end (point-marker)) | |
5411 (goto-char beg) | |
5412 (skip-chars-forward " \t\f") | |
5413 (setq beg (point-marker)) | |
5414 (indent-region beg end nil) | |
5415 (goto-char beg) | |
5416 (setq col (current-column)) | |
5417 (if (looking-at "[a-zA-Z0-9_]") | |
5418 (if (looking-at "\\<[a-zA-Z0-9_]+\\>") | |
5419 (setq search | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5420 (concat "\\<" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5421 (regexp-quote |
20323 | 5422 (buffer-substring (match-beginning 0) |
5423 (match-end 0))) "\\>")) | |
5424 (error "Cannot line up in a middle of the word")) | |
5425 (if (looking-at "$") | |
5426 (error "Cannot line up end of line")) | |
5427 (setq search (regexp-quote (char-to-string (following-char))))) | |
5428 (setq step (or step cperl-lineup-step cperl-indent-level)) | |
5429 (or minshift (setq minshift 1)) | |
5430 (while (progn | |
5431 (beginning-of-line 2) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5432 (and (< (point) end) |
20323 | 5433 (re-search-forward search end t) |
5434 (goto-char (match-beginning 0)))) | |
5435 (setq tcol (current-column) seen t) | |
5436 (if (> tcol col) (setq col tcol))) | |
5437 (or seen | |
5438 (error "The construction to line up occurred only once")) | |
5439 (goto-char beg) | |
5440 (setq col (+ col minshift)) | |
5441 (if (/= (% col step) 0) (setq step (* step (1+ (/ col step))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5442 (while |
20323 | 5443 (progn |
5444 (setq e (point)) | |
5445 (skip-chars-backward " \t") | |
5446 (delete-region (point) e) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5447 (indent-to-column col) ;(make-string (- col (current-column)) ?\ )) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5448 (beginning-of-line 2) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5449 (and (< (point) end) |
20323 | 5450 (re-search-forward search end t) |
5451 (goto-char (match-beginning 0)))))))) ; No body | |
5452 | |
5453 (defun cperl-etags (&optional add all files) | |
5454 "Run etags with appropriate options for Perl files. | |
5455 If optional argument ALL is `recursive', will process Perl files | |
5456 in subdirectories too." | |
5457 (interactive) | |
5458 (let ((cmd "etags") | |
5459 (args '("-l" "none" "-r" "/\\<\\(package\\|sub\\)[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([{#]\\|$\\)\\)/\\4/")) | |
5460 res) | |
5461 (if add (setq args (cons "-a" args))) | |
5462 (or files (setq files (list buffer-file-name))) | |
5463 (cond | |
5464 ((eq all 'recursive) | |
5465 ;;(error "Not implemented: recursive") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5466 (setq args (append (list "-e" |
20323 | 5467 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/} |
5468 use File::Find; | |
5469 find(\\&wanted, '.'); | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5470 exec @ARGV;" |
20323 | 5471 cmd) args) |
5472 cmd "perl")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5473 (all |
20323 | 5474 ;;(error "Not implemented: all") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5475 (setq args (append (list "-e" |
20323 | 5476 "push @ARGV, <*.PL *.pl *.pm>; |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5477 exec @ARGV;" |
20323 | 5478 cmd) args) |
5479 cmd "perl")) | |
5480 (t | |
5481 (setq args (append args files)))) | |
5482 (setq res (apply 'call-process cmd nil nil nil args)) | |
5483 (or (eq res 0) | |
5484 (message "etags returned \"%s\"" res)))) | |
5485 | |
5486 (defun cperl-toggle-auto-newline () | |
5487 "Toggle the state of `cperl-auto-newline'." | |
5488 (interactive) | |
5489 (setq cperl-auto-newline (not cperl-auto-newline)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5490 (message "Newlines will %sbe auto-inserted now." |
20323 | 5491 (if cperl-auto-newline "" "not "))) |
5492 | |
5493 (defun cperl-toggle-abbrev () | |
5494 "Toggle the state of automatic keyword expansion in CPerl mode." | |
5495 (interactive) | |
5496 (abbrev-mode (if abbrev-mode 0 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5497 (message "Perl control structure will %sbe auto-inserted now." |
20323 | 5498 (if abbrev-mode "" "not "))) |
5499 | |
5500 | |
5501 (defun cperl-toggle-electric () | |
5502 "Toggle the state of parentheses doubling in CPerl mode." | |
5503 (interactive) | |
5504 (setq cperl-electric-parens (if (cperl-val 'cperl-electric-parens) 'null t)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5505 (message "Parentheses will %sbe auto-doubled now." |
20323 | 5506 (if (cperl-val 'cperl-electric-parens) "" "not "))) |
5507 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5508 (defun cperl-toggle-autohelp () |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
5509 "Toggle the state of Auto-Help on Perl constructs (put in the message area). |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
5510 Delay of auto-help controlled by `cperl-lazy-help-time'." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5511 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5512 (if (fboundp 'run-with-idle-timer) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5513 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5514 (if cperl-lazy-installed |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
5515 (cperl-lazy-unstall) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5516 (cperl-lazy-install)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5517 (message "Perl help messages will %sbe automatically shown now." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5518 (if cperl-lazy-installed "" "not "))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5519 (message "Cannot automatically show Perl help messages - run-with-idle-timer missing."))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5520 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5521 (defun cperl-toggle-construct-fix () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5522 "Toggle whether `indent-region'/`indent-sexp' fix whitespace too." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5523 (interactive) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5524 (setq cperl-indent-region-fix-constructs |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5525 (if cperl-indent-region-fix-constructs |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5526 nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5527 1)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5528 (message "indent-region/indent-sexp will %sbe automatically fix whitespace." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5529 (if cperl-indent-region-fix-constructs "" "not "))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5530 |
20323 | 5531 ;;;; Tags file creation. |
5532 | |
5533 (defvar cperl-tmp-buffer " *cperl-tmp*") | |
5534 | |
5535 (defun cperl-setup-tmp-buf () | |
5536 (set-buffer (get-buffer-create cperl-tmp-buffer)) | |
5537 (set-syntax-table cperl-mode-syntax-table) | |
5538 (buffer-disable-undo) | |
5539 (auto-fill-mode 0) | |
5540 (if cperl-use-syntax-table-text-property-for-tags | |
5541 (progn | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5542 (make-local-variable 'parse-sexp-lookup-properties) |
20323 | 5543 ;; Do not introduce variable if not needed, we check it! |
5544 (set 'parse-sexp-lookup-properties t)))) | |
5545 | |
5546 (defun cperl-xsub-scan () | |
5547 (require 'imenu) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5548 (let ((index-alist '()) |
20323 | 5549 (prev-pos 0) index index1 name package prefix) |
5550 (goto-char (point-min)) | |
5551 ;; Search for the function | |
5552 (progn ;;save-match-data | |
5553 (while (re-search-forward | |
5554 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)" | |
5555 nil t) | |
5556 (cond | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5557 ((match-beginning 2) ; SECTION |
20323 | 5558 (setq package (buffer-substring (match-beginning 2) (match-end 2))) |
5559 (goto-char (match-beginning 0)) | |
5560 (skip-chars-forward " \t") | |
5561 (forward-char 1) | |
5562 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>") | |
5563 (setq prefix (buffer-substring (match-beginning 1) (match-end 1))) | |
5564 (setq prefix nil))) | |
5565 ((not package) nil) ; C language section | |
5566 ((match-beginning 3) ; XSUB | |
5567 (goto-char (1+ (match-beginning 3))) | |
5568 (setq index (imenu-example--name-and-position)) | |
5569 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
5570 (if (and prefix (string-match (concat "^" prefix) name)) | |
5571 (setq name (substring name (length prefix)))) | |
5572 (cond ((string-match "::" name) nil) | |
5573 (t | |
5574 (setq index1 (cons (concat package "::" name) (cdr index))) | |
5575 (push index1 index-alist))) | |
5576 (setcar index name) | |
5577 (push index index-alist)) | |
5578 (t ; BOOT: section | |
5579 ;; (beginning-of-line) | |
5580 (setq index (imenu-example--name-and-position)) | |
5581 (setcar index (concat package "::BOOT:")) | |
5582 (push index index-alist))))) | |
5583 index-alist)) | |
5584 | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5585 (defvar cperl-unreadable-ok nil) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5586 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5587 (defun cperl-find-tags (ifile xs topdir) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5588 (let ((b (get-buffer cperl-tmp-buffer)) ind lst elt pos ret rel |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5589 (cperl-pod-here-fontify nil) f file) |
20323 | 5590 (save-excursion |
5591 (if b (set-buffer b) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5592 (cperl-setup-tmp-buf)) |
20323 | 5593 (erase-buffer) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5594 (condition-case err |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5595 (setq file (car (insert-file-contents ifile))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5596 (error (if cperl-unreadable-ok nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5597 (if (y-or-n-p |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5598 (format "File %s unreadable. Continue? " ifile)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5599 (setq cperl-unreadable-ok t) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5600 (error "Aborting: unreadable file %s" ifile))))) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
5601 (if (not file) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5602 (message "Unreadable file %s" ifile) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5603 (message "Scanning file %s ..." file) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5604 (if (and cperl-use-syntax-table-text-property-for-tags |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5605 (not xs)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5606 (condition-case err ; after __END__ may have garbage |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5607 (cperl-find-pods-heres nil nil noninteractive) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5608 (error (message "While scanning for syntax: %s" err)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5609 (if xs |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5610 (setq lst (cperl-xsub-scan)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5611 (setq ind (cperl-imenu--create-perl-index)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5612 (setq lst (cdr (assoc "+Unsorted List+..." ind)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5613 (setq lst |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5614 (mapcar |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5615 (function |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5616 (lambda (elt) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5617 (cond ((string-match "^[_a-zA-Z]" (car elt)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5618 (goto-char (cdr elt)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5619 (beginning-of-line) ; pos should be of the start of the line |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5620 (list (car elt) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5621 (point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5622 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5623 (buffer-substring (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5624 (goto-char (cdr elt)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5625 ;; After name now... |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5626 (or (eolp) (forward-char 1)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5627 (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5628 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5629 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5630 (point)))))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5631 lst)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5632 (erase-buffer) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5633 (while lst |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5634 (setq elt (car lst) lst (cdr lst)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5635 (if elt |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5636 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5637 (insert (elt elt 3) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5638 127 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5639 (if (string-match "^package " (car elt)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5640 (substring (car elt) 8) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5641 (car elt) ) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5642 1 |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5643 (number-to-string (elt elt 2)) ; Line |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5644 "," |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5645 (number-to-string (1- (elt elt 1))) ; Char pos 0-based |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5646 "\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5647 (if (and (string-match "^[_a-zA-Z]+::" (car elt)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5648 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5649 (elt elt 3))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5650 ;; Need to insert the name without package as well |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
5651 (setq lst (cons (cons (substring (elt elt 3) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5652 (match-beginning 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5653 (match-end 1)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5654 (cdr elt)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5655 lst)))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5656 (setq pos (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5657 (goto-char 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5658 (setq rel file) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5659 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5660 (set-text-properties 0 (length rel) nil rel) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5661 (and (equal topdir (substring rel 0 (length topdir))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5662 (setq rel (substring file (length topdir)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5663 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5664 (setq ret (buffer-substring 1 (point-max))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5665 (erase-buffer) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5666 (or noninteractive |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5667 (message "Scanning file %s finished" file)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5668 ret)))) |
20323 | 5669 |
5670 (defun cperl-add-tags-recurse-noxs () | |
5671 "Add to TAGS data for Perl and XSUB files in the current directory and kids. | |
5672 Use as | |
5673 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \ | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5674 -f cperl-add-tags-recurse |
20323 | 5675 " |
5676 (cperl-write-tags nil nil t t nil t)) | |
5677 | |
5678 (defun cperl-add-tags-recurse () | |
5679 "Add to TAGS file data for Perl files in the current directory and kids. | |
5680 Use as | |
5681 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \ | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5682 -f cperl-add-tags-recurse |
20323 | 5683 " |
5684 (cperl-write-tags nil nil t t)) | |
5685 | |
5686 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir) | |
5687 ;; If INBUFFER, do not select buffer, and do not save | |
5688 ;; If ERASE is `ignore', do not erase, and do not try to delete old info. | |
5689 (require 'etags) | |
5690 (if file nil | |
5691 (setq file (if dir default-directory (buffer-file-name))) | |
5692 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!"))) | |
5693 (or topdir | |
5694 (setq topdir default-directory)) | |
5695 (let ((tags-file-name "TAGS") | |
5696 (case-fold-search (eq system-type 'emx)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5697 xs rel tm) |
20323 | 5698 (save-excursion |
5699 (cond (inbuffer nil) ; Already there | |
5700 ((file-exists-p tags-file-name) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5701 (if cperl-xemacs-p |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5702 (visit-tags-table-buffer) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5703 (visit-tags-table-buffer tags-file-name))) |
20323 | 5704 (t (set-buffer (find-file-noselect tags-file-name)))) |
5705 (cond | |
5706 (dir | |
5707 (cond ((eq erase 'ignore)) | |
5708 (erase | |
5709 (erase-buffer) | |
5710 (setq erase 'ignore))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
5711 (let ((files |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5712 (condition-case err |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
5713 (directory-files file t |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5714 (if recurse nil cperl-scan-files-regexp) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5715 t) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5716 (error |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5717 (if cperl-unreadable-ok nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5718 (if (y-or-n-p |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5719 (format "Directory %s unreadable. Continue? " file)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
5720 (setq cperl-unreadable-ok t |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5721 tm nil) ; Return empty list |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
5722 (error "Aborting: unreadable directory %s" file))))))) |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
5723 (mapcar (function |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5724 (lambda (file) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5725 (cond |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5726 ((string-match cperl-noscan-files-regexp file) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5727 nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5728 ((not (file-directory-p file)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5729 (if (string-match cperl-scan-files-regexp file) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5730 (cperl-write-tags file erase recurse nil t noxs topdir))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5731 ((not recurse) nil) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5732 (t (cperl-write-tags file erase recurse t t noxs topdir))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5733 files))) |
20323 | 5734 (t |
5735 (setq xs (string-match "\\.xs$" file)) | |
5736 (if (not (and xs noxs)) | |
5737 (progn | |
5738 (cond ((eq erase 'ignore) (goto-char (point-max))) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5739 (erase (erase-buffer)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5740 (t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5741 (goto-char 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5742 (setq rel file) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5743 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5744 (set-text-properties 0 (length rel) nil rel) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5745 (and (equal topdir (substring rel 0 (length topdir))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5746 (setq rel (substring file (length topdir)))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5747 (if (search-forward (concat "\f\n" rel ",") nil t) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5748 (progn |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5749 (search-backward "\f\n") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5750 (delete-region (point) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5751 (save-excursion |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5752 (forward-char 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5753 (if (search-forward "\f\n" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5754 nil 'toend) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5755 (- (point) 2) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5756 (point-max))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5757 (goto-char (point-max))))) |
20323 | 5758 (insert (cperl-find-tags file xs topdir)))))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5759 (if inbuffer nil ; Delegate to the caller |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5760 (save-buffer 0) ; No backup |
20323 | 5761 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs? |
5762 (initialize-new-tags-table)))))) | |
5763 | |
5764 (defvar cperl-tags-hier-regexp-list | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5765 (concat |
20323 | 5766 "^\\(" |
5767 "\\(package\\)\\>" | |
5768 "\\|" | |
5769 "sub\\>[^\n]+::" | |
5770 "\\|" | |
5771 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB? | |
5772 "\\|" | |
5773 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section | |
5774 "\\)")) | |
5775 | |
5776 (defvar cperl-hierarchy '(() ()) | |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
5777 "Global hierarchy of classes.") |
20323 | 5778 |
5779 (defun cperl-tags-hier-fill () | |
5780 ;; Suppose we are in a tag table cooked by cperl. | |
5781 (goto-char 1) | |
5782 (let (type pack name pos line chunk ord cons1 file str info fileind) | |
5783 (while (re-search-forward cperl-tags-hier-regexp-list nil t) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5784 (setq pos (match-beginning 0) |
20323 | 5785 pack (match-beginning 2)) |
5786 (beginning-of-line) | |
5787 (if (looking-at (concat | |
5788 "\\([^\n]+\\)" | |
5789 "\C-?" | |
5790 "\\([^\n]+\\)" | |
5791 "\C-a" | |
5792 "\\([0-9]+\\)" | |
5793 "," | |
5794 "\\([0-9]+\\)")) | |
5795 (progn | |
5796 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1)) | |
5797 name (buffer-substring (match-beginning 2) (match-end 2)) | |
5798 ;;pos (buffer-substring (match-beginning 3) (match-end 3)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5799 line (buffer-substring (match-beginning 3) (match-end 3)) |
20323 | 5800 ord (if pack 1 0) |
5801 file (file-of-tag) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5802 fileind (format "%s:%s" file line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5803 ;; Moves to beginning of the next line: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5804 info (cperl-etags-snarf-tag file line)) |
20323 | 5805 ;; Move back |
5806 (forward-char -1) | |
5807 ;; Make new member of hierarchy name ==> file ==> pos if needed | |
5808 (if (setq cons1 (assoc name (nth ord cperl-hierarchy))) | |
5809 ;; Name known | |
5810 (setcdr cons1 (cons (cons fileind (vector file info)) | |
5811 (cdr cons1))) | |
5812 ;; First occurrence of the name, start alist | |
5813 (setq cons1 (cons name (list (cons fileind (vector file info))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5814 (if pack |
20323 | 5815 (setcar (cdr cperl-hierarchy) |
5816 (cons cons1 (nth 1 cperl-hierarchy))) | |
5817 (setcar cperl-hierarchy | |
5818 (cons cons1 (car cperl-hierarchy))))))) | |
5819 (end-of-line)))) | |
5820 | |
5821 (defun cperl-tags-hier-init (&optional update) | |
5822 "Show hierarchical menu of classes and methods. | |
5823 Finds info about classes by a scan of loaded TAGS files. | |
5824 Supposes that the TAGS files contain fully qualified function names. | |
5825 One may build such TAGS files from CPerl mode menu." | |
5826 (interactive) | |
5827 (require 'etags) | |
5828 (require 'imenu) | |
5829 (if (or update (null (nth 2 cperl-hierarchy))) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5830 (let ((remover (function (lambda (elt) ; (name (file1...) (file2..)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5831 (or (nthcdr 2 elt) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5832 ;; Only in one file |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5833 (setcdr elt (cdr (nth 1 elt))))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5834 pack name cons1 to l1 l2 l3 l4 b) |
20323 | 5835 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later! |
5836 (setq cperl-hierarchy (list l1 l2 l3)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5837 (if cperl-xemacs-p ; Not checked |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5838 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5839 (or tags-file-name |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5840 ;; Does this work in XEmacs? |
20323 | 5841 (call-interactively 'visit-tags-table)) |
5842 (message "Updating list of classes...") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5843 (set-buffer (get-file-buffer tags-file-name)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5844 (cperl-tags-hier-fill)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5845 (or tags-table-list |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5846 (call-interactively 'visit-tags-table)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5847 (mapcar |
20323 | 5848 (function |
5849 (lambda (tagsfile) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5850 (message "Updating list of classes... %s" tagsfile) |
20323 | 5851 (set-buffer (get-file-buffer tagsfile)) |
5852 (cperl-tags-hier-fill))) | |
5853 tags-table-list) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5854 (message "Updating list of classes... postprocessing...")) |
20323 | 5855 (mapcar remover (car cperl-hierarchy)) |
5856 (mapcar remover (nth 1 cperl-hierarchy)) | |
5857 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy)) | |
5858 (cons "Methods: " (car cperl-hierarchy)))) | |
5859 (cperl-tags-treeify to 1) | |
5860 (setcar (nthcdr 2 cperl-hierarchy) | |
5861 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to)))) | |
5862 (message "Updating list of classes: done, requesting display...") | |
5863 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy)) | |
5864 )) | |
5865 (or (nth 2 cperl-hierarchy) | |
5866 (error "No items found")) | |
5867 (setq update | |
5868 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy)) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5869 (if (if (fboundp 'display-popup-menus-p) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5870 (let ((f 'display-popup-menus-p)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5871 (funcall f)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5872 window-system) |
20323 | 5873 (x-popup-menu t (nth 2 cperl-hierarchy)) |
5874 (require 'tmm) | |
5875 (tmm-prompt (nth 2 cperl-hierarchy)))) | |
5876 (if (and update (listp update)) | |
5877 (progn (while (cdr update) (setq update (cdr update))) | |
5878 (setq update (car update)))) ; Get the last from the list | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5879 (if (vectorp update) |
20323 | 5880 (progn |
5881 (find-file (elt update 0)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5882 (cperl-etags-goto-tag-location (elt update 1)))) |
20323 | 5883 (if (eq update -999) (cperl-tags-hier-init t))) |
5884 | |
5885 (defun cperl-tags-treeify (to level) | |
5886 ;; cadr of `to' is read-write. On start it is a cons | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5887 (let* ((regexp (concat "^\\(" (mapconcat |
20323 | 5888 'identity |
5889 (make-list level "[_a-zA-Z0-9]+") | |
5890 "::") | |
5891 "\\)\\(::\\)?")) | |
5892 (packages (cdr (nth 1 to))) | |
5893 (methods (cdr (nth 2 to))) | |
5894 l1 head tail cons1 cons2 ord writeto packs recurse | |
5895 root-packages root-functions ms many_ms same_name ps | |
5896 (move-deeper | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5897 (function |
20323 | 5898 (lambda (elt) |
5899 (cond ((and (string-match regexp (car elt)) | |
5900 (or (eq ord 1) (match-end 2))) | |
5901 (setq head (substring (car elt) 0 (match-end 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5902 tail (if (match-end 2) (substring (car elt) |
20323 | 5903 (match-end 2))) |
5904 recurse t) | |
5905 (if (setq cons1 (assoc head writeto)) nil | |
5906 ;; Need to init new head | |
5907 (setcdr writeto (cons (list head (list "Packages: ") | |
5908 (list "Methods: ")) | |
5909 (cdr writeto))) | |
5910 (setq cons1 (nth 1 writeto))) | |
5911 (setq cons2 (nth ord cons1)) ; Either packs or meths | |
5912 (setcdr cons2 (cons elt (cdr cons2)))) | |
5913 ((eq ord 2) | |
5914 (setq root-functions (cons elt root-functions))) | |
5915 (t | |
5916 (setq root-packages (cons elt root-packages)))))))) | |
5917 (setcdr to l1) ; Init to dynamic space | |
5918 (setq writeto to) | |
5919 (setq ord 1) | |
5920 (mapcar move-deeper packages) | |
5921 (setq ord 2) | |
5922 (mapcar move-deeper methods) | |
5923 (if recurse | |
5924 (mapcar (function (lambda (elt) | |
5925 (cperl-tags-treeify elt (1+ level)))) | |
5926 (cdr to))) | |
5927 ;;Now clean up leaders with one child only | |
5928 (mapcar (function (lambda (elt) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5929 (if (not (and (listp (cdr elt)) |
20323 | 5930 (eq (length elt) 2))) nil |
5931 (setcar elt (car (nth 1 elt))) | |
5932 (setcdr elt (cdr (nth 1 elt)))))) | |
5933 (cdr to)) | |
5934 ;; Sort the roots of subtrees | |
5935 (if (default-value 'imenu-sort-function) | |
5936 (setcdr to | |
5937 (sort (cdr to) (default-value 'imenu-sort-function)))) | |
5938 ;; Now add back functions removed from display | |
5939 (mapcar (function (lambda (elt) | |
5940 (setcdr to (cons elt (cdr to))))) | |
5941 (if (default-value 'imenu-sort-function) | |
5942 (nreverse | |
5943 (sort root-functions (default-value 'imenu-sort-function))) | |
5944 root-functions)) | |
5945 ;; Now add back packages removed from display | |
5946 (mapcar (function (lambda (elt) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5947 (setcdr to (cons (cons (concat "package " (car elt)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5948 (cdr elt)) |
20323 | 5949 (cdr to))))) |
5950 (if (default-value 'imenu-sort-function) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5951 (nreverse |
20323 | 5952 (sort root-packages (default-value 'imenu-sort-function))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
5953 root-packages)))) |
20323 | 5954 |
5955 ;;;(x-popup-menu t | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5956 ;;; '(keymap "Name1" |
20323 | 5957 ;;; ("Ret1" "aa") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5958 ;;; ("Head1" "ab" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5959 ;;; keymap "Name2" |
20323 | 5960 ;;; ("Tail1" "x") ("Tail2" "y")))) |
5961 | |
5962 (defun cperl-list-fold (list name limit) | |
5963 (let (list1 list2 elt1 (num 0)) | |
5964 (if (<= (length list) limit) list | |
5965 (setq list1 nil list2 nil) | |
5966 (while list | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5967 (setq num (1+ num) |
20323 | 5968 elt1 (car list) |
5969 list (cdr list)) | |
5970 (if (<= num imenu-max-items) | |
5971 (setq list2 (cons elt1 list2)) | |
5972 (setq list1 (cons (cons name | |
5973 (nreverse list2)) | |
5974 list1) | |
5975 list2 (list elt1) | |
5976 num 1))) | |
5977 (nreverse (cons (cons name | |
5978 (nreverse list2)) | |
5979 list1))))) | |
5980 | |
5981 (defun cperl-menu-to-keymap (menu &optional name) | |
5982 (let (list) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5983 (cons 'keymap |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5984 (mapcar |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5985 (function |
20323 | 5986 (lambda (elt) |
5987 (cond ((listp (cdr elt)) | |
5988 (setq list (cperl-list-fold | |
5989 (cdr elt) (car elt) imenu-max-items)) | |
5990 (cons nil | |
5991 (cons (car elt) | |
5992 (cperl-menu-to-keymap list)))) | |
5993 (t | |
5994 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34 | |
5995 (cperl-list-fold menu "Root" imenu-max-items))))) | |
5996 | |
5997 | |
5998 (defvar cperl-bad-style-regexp | |
5999 (mapconcat 'identity | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6000 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
6001 "[-<>=+^&|]+[^- \t\n=+<>~]") ; sign+ char |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6002 "\\|") |
20323 | 6003 "Finds places such that insertion of a whitespace may help a lot.") |
6004 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6005 (defvar cperl-not-bad-style-regexp |
50859
25507c4ce520
(cperl-lineup): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
50788
diff
changeset
|
6006 (mapconcat |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6007 'identity |
20323 | 6008 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++ |
6009 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used. | |
6010 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field) | |
6011 "<\\$?\\sw+\\(\\.\\sw+\\)?>" ; <IN> <stdin.h> | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6012 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN |
20323 | 6013 "-[0-9]" ; -5 |
6014 "\\+\\+" ; ++var | |
6015 "--" ; --var | |
6016 ".->" ; a->b | |
6017 "->" ; a SPACE ->b | |
6018 "\\[-" ; a[-1] | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6019 "\\\\[&$@*\\\\]" ; \&func |
20323 | 6020 "^=" ; =head |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6021 "\\$." ; $| |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6022 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO' |
20323 | 6023 "||" |
6024 "&&" | |
6025 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text> | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6026 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value |
20323 | 6027 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below |
6028 ;;"[*/+-|&<.]+=" | |
6029 ) | |
6030 "\\|") | |
6031 "If matches at the start of match found by `my-bad-c-style-regexp', | |
6032 insertion of a whitespace will not help.") | |
6033 | |
6034 (defvar found-bad) | |
6035 | |
6036 (defun cperl-find-bad-style () | |
6037 "Find places in the buffer where insertion of a whitespace may help. | |
6038 Prompts user for insertion of spaces. | |
6039 Currently it is tuned to C and Perl syntax." | |
6040 (interactive) | |
6041 (let (found-bad (p (point))) | |
6042 (setq last-nonmenu-event 13) ; To disable popup | |
59103
9c9d41548660
(cperl-find-bad-style): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
58492
diff
changeset
|
6043 (with-no-warnings ; It is useful to push the mark here. |
9c9d41548660
(cperl-find-bad-style): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
58492
diff
changeset
|
6044 (beginning-of-buffer)) |
20323 | 6045 (map-y-or-n-p "Insert space here? " |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6046 (lambda (arg) (insert " ")) |
20323 | 6047 'cperl-next-bad-style |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6048 '("location" "locations" "insert a space into") |
20323 | 6049 '((?\C-r (lambda (arg) |
6050 (let ((buffer-quit-function | |
6051 'exit-recursive-edit)) | |
6052 (message "Exit with Esc Esc") | |
6053 (recursive-edit) | |
6054 t)) ; Consider acted upon | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6055 "edit, exit with Esc Esc") |
20323 | 6056 (?e (lambda (arg) |
6057 (let ((buffer-quit-function | |
6058 'exit-recursive-edit)) | |
6059 (message "Exit with Esc Esc") | |
6060 (recursive-edit) | |
6061 t)) ; Consider acted upon | |
6062 "edit, exit with Esc Esc")) | |
6063 t) | |
6064 (if found-bad (goto-char found-bad) | |
6065 (goto-char p) | |
6066 (message "No appropriate place found")))) | |
6067 | |
6068 (defun cperl-next-bad-style () | |
6069 (let (p (not-found t) (point (point)) found) | |
6070 (while (and not-found | |
6071 (re-search-forward cperl-bad-style-regexp nil 'to-end)) | |
6072 (setq p (point)) | |
6073 (goto-char (match-beginning 0)) | |
6074 (if (or | |
6075 (looking-at cperl-not-bad-style-regexp) | |
6076 ;; Check for a < -b and friends | |
6077 (and (eq (following-char) ?\-) | |
6078 (save-excursion | |
6079 (skip-chars-backward " \t\n") | |
49789
aca582e2f94c
(cperl-next-bad-style): Fix use of character constant.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
6080 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\( ?\[ ?\{)))) |
20323 | 6081 ;; Now check for syntax type |
6082 (save-match-data | |
6083 (setq found (point)) | |
6084 (beginning-of-defun) | |
6085 (let ((pps (parse-partial-sexp (point) found))) | |
6086 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))) | |
6087 (goto-char (match-end 0)) | |
6088 (goto-char (1- p)) | |
6089 (setq not-found nil | |
6090 found-bad found))) | |
6091 (not not-found))) | |
6092 | |
27248 | 6093 |
20323 | 6094 ;;; Getting help |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6095 (defvar cperl-have-help-regexp |
20323 | 6096 ;;(concat "\\(" |
6097 (mapconcat | |
6098 'identity | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6099 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable |
20323 | 6100 "[$@]\\^[a-zA-Z]" ; Special variable |
6101 "[$@][^ \n\t]" ; Special variable | |
6102 "-[a-zA-Z]" ; File test | |
6103 "\\\\[a-zA-Z0]" ; Special chars | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6104 "^=[a-z][a-zA-Z0-9_]*" ; POD sections |
20323 | 6105 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator |
6106 "[a-zA-Z_0-9:]+" ; symbol or number | |
6107 "x=" | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6108 "#!") |
20323 | 6109 ;;"\\)\\|\\(" |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6110 "\\|") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6111 ;;"\\)" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6112 ;;) |
20323 | 6113 "Matches places in the buffer we can find help for.") |
6114 | |
6115 (defvar cperl-message-on-help-error t) | |
6116 (defvar cperl-help-from-timer nil) | |
6117 | |
6118 (defun cperl-word-at-point-hard () | |
6119 ;; Does not save-excursion | |
6120 ;; Get to the something meaningful | |
6121 (or (eobp) (eolp) (forward-char 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6122 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]" |
20323 | 6123 (save-excursion (beginning-of-line) (point)) |
6124 'to-beg) | |
6125 ;; (cond | |
6126 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol | |
6127 ;; (skip-chars-backward " \n\t\r({[]});,") | |
6128 ;; (or (bobp) (backward-char 1)))) | |
6129 ;; Try to backtrace | |
6130 (cond | |
6131 ((looking-at "[a-zA-Z0-9_:]") ; symbol | |
6132 (skip-chars-backward "a-zA-Z0-9_:") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6133 (cond |
20323 | 6134 ((and (eq (preceding-char) ?^) ; $^I |
6135 (eq (char-after (- (point) 2)) ?\$)) | |
6136 (forward-char -2)) | |
6137 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob | |
6138 (forward-char -1)) | |
6139 ((and (eq (preceding-char) ?\=) | |
6140 (eq (current-column) 1)) | |
6141 (forward-char -1))) ; =head1 | |
6142 (if (and (eq (preceding-char) ?\<) | |
6143 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH> | |
6144 (forward-char -1))) | |
6145 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x= | |
6146 (forward-char -1)) | |
6147 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I | |
6148 (forward-char -1)) | |
6149 ((looking-at "[-!&*+,-./<=>?\\\\^|~]") | |
6150 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~") | |
6151 (cond | |
6152 ((and (eq (preceding-char) ?\$) | |
6153 (not (eq (char-after (- (point) 2)) ?\$))) ; $- | |
6154 (forward-char -1)) | |
6155 ((and (eq (following-char) ?\>) | |
6156 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char))) | |
6157 (save-excursion | |
6158 (forward-sexp -1) | |
6159 (and (eq (preceding-char) ?\<) | |
6160 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH> | |
6161 (search-backward "<")))) | |
6162 ((and (eq (following-char) ?\$) | |
6163 (eq (preceding-char) ?\<) | |
6164 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh> | |
6165 (forward-char -1))) | |
6166 (if (looking-at cperl-have-help-regexp) | |
6167 (buffer-substring (match-beginning 0) (match-end 0)))) | |
6168 | |
6169 (defun cperl-get-help () | |
6170 "Get one-line docs on the symbol at the point. | |
6171 The data for these docs is a little bit obsolete and may be in fact longer | |
6172 than a line. Your contribution to update/shorten it is appreciated." | |
6173 (interactive) | |
6174 (save-match-data ; May be called "inside" query-replace | |
6175 (save-excursion | |
6176 (let ((word (cperl-word-at-point-hard))) | |
6177 (if word | |
6178 (if (and cperl-help-from-timer ; Bail out if not in mainland | |
6179 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings. | |
6180 (or (memq (get-text-property (point) 'face) | |
6181 '(font-lock-comment-face font-lock-string-face)) | |
6182 (memq (get-text-property (point) 'syntax-type) | |
6183 '(pod here-doc format)))) | |
6184 nil | |
6185 (cperl-describe-perl-symbol word)) | |
6186 (if cperl-message-on-help-error | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6187 (message "Nothing found for %s..." |
20323 | 6188 (buffer-substring (point) (min (+ 5 (point)) (point-max)))))))))) |
6189 | |
6190 ;;; Stolen from perl-descr.el by Johan Vromans: | |
6191 | |
6192 (defvar cperl-doc-buffer " *perl-doc*" | |
6193 "Where the documentation can be found.") | |
6194 | |
6195 (defun cperl-describe-perl-symbol (val) | |
6196 "Display the documentation of symbol at point, a Perl operator." | |
6197 (let ((enable-recursive-minibuffers t) | |
6198 args-file regexp) | |
6199 (cond | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6200 ((string-match "^[&*][a-zA-Z_]" val) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6201 (setq val (concat (substring val 0 1) "NAME"))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6202 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6203 (setq val (concat "@" (substring val 1 (match-end 1))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6204 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6205 (setq val (concat "%" (substring val 1 (match-end 1))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6206 ((and (string= val "x") (string-match "^x=" val)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6207 (setq val "x=")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6208 ((string-match "^\\$[\C-a-\C-z]" val) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6209 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1)))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6210 ((string-match "^CORE::" val) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6211 (setq val "CORE::")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6212 ((string-match "^SUPER::" val) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6213 (setq val "SUPER::")) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6214 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6215 (setq val "<NAME>"))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6216 (setq regexp (concat "^" |
20323 | 6217 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?" |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6218 (regexp-quote val) |
20323 | 6219 "\\([ \t([/]\\|$\\)")) |
6220 | |
6221 ;; get the buffer with the documentation text | |
6222 (cperl-switch-to-doc-buffer) | |
6223 | |
6224 ;; lookup in the doc | |
6225 (goto-char (point-min)) | |
6226 (let ((case-fold-search nil)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6227 (list |
20323 | 6228 (if (re-search-forward regexp (point-max) t) |
6229 (save-excursion | |
6230 (beginning-of-line 1) | |
6231 (let ((lnstart (point))) | |
6232 (end-of-line) | |
6233 (message "%s" (buffer-substring lnstart (point))))) | |
6234 (if cperl-message-on-help-error | |
6235 (message "No definition for %s" val))))))) | |
6236 | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6237 (defvar cperl-short-docs 'please-ignore-this-line |
20323 | 6238 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl) |
6239 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5] | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
6240 ... Range (list context); flip/flop [no flop when flip] (scalar context). |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6241 ! ... Logical negation. |
20323 | 6242 ... != ... Numeric inequality. |
6243 ... !~ ... Search pattern, substitution, or translation (negated). | |
6244 $! In numeric context: errno. In a string context: error string. | |
6245 $\" The separator which joins elements of arrays interpolated in strings. | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
6246 $# The output format for printed numbers. Default is %.15g or close. |
20323 | 6247 $$ Process number of this script. Changes in the fork()ed child process. |
6248 $% The current page number of the currently selected output channel. | |
6249 | |
6250 The following variables are always local to the current block: | |
6251 | |
6252 $1 Match of the 1st set of parentheses in the last match (auto-local). | |
6253 $2 Match of the 2nd set of parentheses in the last match (auto-local). | |
6254 $3 Match of the 3rd set of parentheses in the last match (auto-local). | |
6255 $4 Match of the 4th set of parentheses in the last match (auto-local). | |
6256 $5 Match of the 5th set of parentheses in the last match (auto-local). | |
6257 $6 Match of the 6th set of parentheses in the last match (auto-local). | |
6258 $7 Match of the 7th set of parentheses in the last match (auto-local). | |
6259 $8 Match of the 8th set of parentheses in the last match (auto-local). | |
6260 $9 Match of the 9th set of parentheses in the last match (auto-local). | |
6261 $& The string matched by the last pattern match (auto-local). | |
6262 $' The string after what was matched by the last match (auto-local). | |
6263 $` The string before what was matched by the last match (auto-local). | |
6264 | |
6265 $( The real gid of this process. | |
6266 $) The effective gid of this process. | |
6267 $* Deprecated: Set to 1 to do multiline matching within a string. | |
6268 $+ The last bracket matched by the last search pattern. | |
6269 $, The output field separator for the print operator. | |
6270 $- The number of lines left on the page. | |
6271 $. The current input line number of the last filehandle that was read. | |
6272 $/ The input record separator, newline by default. | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
6273 $0 Name of the file containing the current perl script (read/write). |
20323 | 6274 $: String may be broken after these characters to fill ^-lines in a format. |
6275 $; Subscript separator for multi-dim array emulation. Default \"\\034\". | |
6276 $< The real uid of this process. | |
6277 $= The page length of the current output channel. Default is 60 lines. | |
6278 $> The effective uid of this process. | |
6279 $? The status returned by the last ``, pipe close or `system'. | |
6280 $@ The perl error message from the last eval or do @var{EXPR} command. | |
6281 $ARGV The name of the current file used with <> . | |
6282 $[ Deprecated: The index of the first element/char in an array/string. | |
6283 $\\ The output record separator for the print operator. | |
6284 $] The perl version string as displayed with perl -v. | |
6285 $^ The name of the current top-of-page format. | |
6286 $^A The current value of the write() accumulator for format() lines. | |
6287 $^D The value of the perl debug (-D) flags. | |
6288 $^E Information about the last system error other than that provided by $!. | |
6289 $^F The highest system file descriptor, ordinarily 2. | |
6290 $^H The current set of syntax checks enabled by `use strict'. | |
6291 $^I The value of the in-place edit extension (perl -i option). | |
6292 $^L What formats output to perform a formfeed. Default is \f. | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6293 $^M A buffer for emergency memory allocation when running out of memory. |
20323 | 6294 $^O The operating system name under which this copy of Perl was built. |
6295 $^P Internal debugging flag. | |
6296 $^T The time the script was started. Used by -A/-M/-C file tests. | |
6297 $^W True if warnings are requested (perl -w flag). | |
6298 $^X The name under which perl was invoked (argv[0] in C-speech). | |
6299 $_ The default input and pattern-searching space. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6300 $| Auto-flush after write/print on current output channel? Default 0. |
20323 | 6301 $~ The name of the current report format. |
6302 ... % ... Modulo division. | |
6303 ... %= ... Modulo division assignment. | |
6304 %ENV Contains the current environment. | |
6305 %INC List of files that have been require-d or do-ne. | |
6306 %SIG Used to set signal handlers for various signals. | |
6307 ... & ... Bitwise and. | |
6308 ... && ... Logical and. | |
6309 ... &&= ... Logical and assignment. | |
6310 ... &= ... Bitwise and assignment. | |
6311 ... * ... Multiplication. | |
6312 ... ** ... Exponentiation. | |
6313 *NAME Glob: all objects refered by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2. | |
6314 &NAME(arg0, ...) Subroutine call. Arguments go to @_. | |
6315 ... + ... Addition. +EXPR Makes EXPR into scalar context. | |
6316 ++ Auto-increment (magical on strings). ++EXPR EXPR++ | |
6317 ... += ... Addition assignment. | |
6318 , Comma operator. | |
6319 ... - ... Subtraction. | |
6320 -- Auto-decrement (NOT magical on strings). --EXPR EXPR-- | |
6321 ... -= ... Subtraction assignment. | |
6322 -A Access time in days since script started. | |
6323 -B File is a non-text (binary) file. | |
6324 -C Inode change time in days since script started. | |
6325 -M Age in days since script started. | |
6326 -O File is owned by real uid. | |
6327 -R File is readable by real uid. | |
6328 -S File is a socket . | |
6329 -T File is a text file. | |
6330 -W File is writable by real uid. | |
6331 -X File is executable by real uid. | |
6332 -b File is a block special file. | |
6333 -c File is a character special file. | |
6334 -d File is a directory. | |
6335 -e File exists . | |
6336 -f File is a plain file. | |
6337 -g File has setgid bit set. | |
6338 -k File has sticky bit set. | |
6339 -l File is a symbolic link. | |
6340 -o File is owned by effective uid. | |
6341 -p File is a named pipe (FIFO). | |
6342 -r File is readable by effective uid. | |
6343 -s File has non-zero size. | |
6344 -t Tests if filehandle (STDIN by default) is opened to a tty. | |
6345 -u File has setuid bit set. | |
6346 -w File is writable by effective uid. | |
6347 -x File is executable by effective uid. | |
6348 -z File has zero size. | |
6349 . Concatenate strings. | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
6350 .. Range (list context); flip/flop (scalar context) operator. |
20323 | 6351 .= Concatenate assignment strings |
6352 ... / ... Division. /PATTERN/ioxsmg Pattern match | |
6353 ... /= ... Division assignment. | |
6354 /PATTERN/ioxsmg Pattern match. | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
6355 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well. |
20323 | 6356 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword). |
6357 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>). | |
6358 <> Reads line from union of files in @ARGV (= command line) and STDIN. | |
6359 ... << ... Bitwise shift left. << start of HERE-DOCUMENT. | |
6360 ... <= ... Numeric less than or equal to. | |
6361 ... <=> ... Numeric compare. | |
6362 ... = ... Assignment. | |
6363 ... == ... Numeric equality. | |
6364 ... =~ ... Search pattern, substitution, or translation | |
6365 ... > ... Numeric greater than. | |
6366 ... >= ... Numeric greater than or equal to. | |
6367 ... >> ... Bitwise shift right. | |
6368 ... >>= ... Bitwise shift right assignment. | |
6369 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match. | |
6370 ?PATTERN? One-time pattern match. | |
6371 @ARGV Command line arguments (not including the command name - see $0). | |
6372 @INC List of places to look for perl scripts during do/include/use. | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
6373 @_ Parameter array for subroutines; result of split() unless in list context. |
20323 | 6374 \\ Creates reference to what follows, like \$var, or quotes non-\w in strings. |
6375 \\0 Octal char, e.g. \\033. | |
6376 \\E Case modification terminator. See \\Q, \\L, and \\U. | |
6377 \\L Lowercase until \\E . See also \l, lc. | |
6378 \\U Upcase until \\E . See also \u, uc. | |
6379 \\Q Quote metacharacters until \\E . See also quotemeta. | |
6380 \\a Alarm character (octal 007). | |
6381 \\b Backspace character (octal 010). | |
6382 \\c Control character, e.g. \\c[ . | |
6383 \\e Escape character (octal 033). | |
6384 \\f Formfeed character (octal 014). | |
6385 \\l Lowercase the next character. See also \\L and \\u, lcfirst. | |
6386 \\n Newline character (octal 012 on most systems). | |
6387 \\r Return character (octal 015 on most systems). | |
6388 \\t Tab character (octal 011). | |
6389 \\u Upcase the next character. See also \\U and \\l, ucfirst. | |
6390 \\x Hex character, e.g. \\x1b. | |
6391 ... ^ ... Bitwise exclusive or. | |
6392 __END__ Ends program source. | |
6393 __DATA__ Ends program source. | |
6394 __FILE__ Current (source) filename. | |
6395 __LINE__ Current line in current source. | |
6396 __PACKAGE__ Current package. | |
6397 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>. | |
6398 ARGVOUT Output filehandle with -i flag. | |
6399 BEGIN { ... } Immediately executed (during compilation) piece of code. | |
6400 END { ... } Pseudo-subroutine executed after the script finishes. | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6401 CHECK { ... } Pseudo-subroutine executed after the script is compiled. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6402 INIT { ... } Pseudo-subroutine executed before the script starts running. |
20323 | 6403 DATA Input filehandle for what follows after __END__ or __DATA__. |
6404 accept(NEWSOCKET,GENERICSOCKET) | |
6405 alarm(SECONDS) | |
6406 atan2(X,Y) | |
6407 bind(SOCKET,NAME) | |
6408 binmode(FILEHANDLE) | |
6409 caller[(LEVEL)] | |
6410 chdir(EXPR) | |
6411 chmod(LIST) | |
6412 chop[(LIST|VAR)] | |
6413 chown(LIST) | |
6414 chroot(FILENAME) | |
6415 close(FILEHANDLE) | |
6416 closedir(DIRHANDLE) | |
6417 ... cmp ... String compare. | |
6418 connect(SOCKET,NAME) | |
6419 continue of { block } continue { block }. Is executed after `next' or at end. | |
6420 cos(EXPR) | |
6421 crypt(PLAINTEXT,SALT) | |
6422 dbmclose(%HASH) | |
6423 dbmopen(%HASH,DBNAME,MODE) | |
6424 defined(EXPR) | |
6425 delete($HASH{KEY}) | |
6426 die(LIST) | |
6427 do { ... }|SUBR while|until EXPR executes at least once | |
6428 do(EXPR|SUBR([LIST])) (with while|until executes at least once) | |
6429 dump LABEL | |
6430 each(%HASH) | |
6431 endgrent | |
6432 endhostent | |
6433 endnetent | |
6434 endprotoent | |
6435 endpwent | |
6436 endservent | |
6437 eof[([FILEHANDLE])] | |
6438 ... eq ... String equality. | |
6439 eval(EXPR) or eval { BLOCK } | |
6440 exec(LIST) | |
6441 exit(EXPR) | |
6442 exp(EXPR) | |
6443 fcntl(FILEHANDLE,FUNCTION,SCALAR) | |
6444 fileno(FILEHANDLE) | |
6445 flock(FILEHANDLE,OPERATION) | |
6446 for (EXPR;EXPR;EXPR) { ... } | |
6447 foreach [VAR] (@ARRAY) { ... } | |
6448 fork | |
6449 ... ge ... String greater than or equal. | |
6450 getc[(FILEHANDLE)] | |
6451 getgrent | |
6452 getgrgid(GID) | |
6453 getgrnam(NAME) | |
6454 gethostbyaddr(ADDR,ADDRTYPE) | |
6455 gethostbyname(NAME) | |
6456 gethostent | |
6457 getlogin | |
6458 getnetbyaddr(ADDR,ADDRTYPE) | |
6459 getnetbyname(NAME) | |
6460 getnetent | |
6461 getpeername(SOCKET) | |
6462 getpgrp(PID) | |
6463 getppid | |
6464 getpriority(WHICH,WHO) | |
6465 getprotobyname(NAME) | |
6466 getprotobynumber(NUMBER) | |
6467 getprotoent | |
6468 getpwent | |
6469 getpwnam(NAME) | |
6470 getpwuid(UID) | |
6471 getservbyname(NAME,PROTO) | |
6472 getservbyport(PORT,PROTO) | |
6473 getservent | |
6474 getsockname(SOCKET) | |
6475 getsockopt(SOCKET,LEVEL,OPTNAME) | |
6476 gmtime(EXPR) | |
6477 goto LABEL | |
6478 ... gt ... String greater than. | |
6479 hex(EXPR) | |
6480 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR | |
6481 index(STR,SUBSTR[,OFFSET]) | |
6482 int(EXPR) | |
6483 ioctl(FILEHANDLE,FUNCTION,SCALAR) | |
6484 join(EXPR,LIST) | |
6485 keys(%HASH) | |
6486 kill(LIST) | |
6487 last [LABEL] | |
6488 ... le ... String less than or equal. | |
6489 length(EXPR) | |
6490 link(OLDFILE,NEWFILE) | |
6491 listen(SOCKET,QUEUESIZE) | |
6492 local(LIST) | |
6493 localtime(EXPR) | |
6494 log(EXPR) | |
6495 lstat(EXPR|FILEHANDLE|VAR) | |
6496 ... lt ... String less than. | |
6497 m/PATTERN/iogsmx | |
6498 mkdir(FILENAME,MODE) | |
6499 msgctl(ID,CMD,ARG) | |
6500 msgget(KEY,FLAGS) | |
6501 msgrcv(ID,VAR,SIZE,TYPE.FLAGS) | |
6502 msgsnd(ID,MSG,FLAGS) | |
6503 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH). | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6504 our VAR or our (VAR1,...) Lexically enable a global variable ($V, @A, or %H). |
20323 | 6505 ... ne ... String inequality. |
6506 next [LABEL] | |
6507 oct(EXPR) | |
6508 open(FILEHANDLE[,EXPR]) | |
6509 opendir(DIRHANDLE,EXPR) | |
6510 ord(EXPR) ASCII value of the first char of the string. | |
6511 pack(TEMPLATE,LIST) | |
6512 package NAME Introduces package context. | |
6513 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe. | |
6514 pop(ARRAY) | |
6515 print [FILEHANDLE] [(LIST)] | |
6516 printf [FILEHANDLE] (FORMAT,LIST) | |
6517 push(ARRAY,LIST) | |
6518 q/STRING/ Synonym for 'STRING' | |
6519 qq/STRING/ Synonym for \"STRING\" | |
6520 qx/STRING/ Synonym for `STRING` | |
6521 rand[(EXPR)] | |
6522 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6523 readdir(DIRHANDLE) | |
6524 readlink(EXPR) | |
6525 recv(SOCKET,SCALAR,LEN,FLAGS) | |
6526 redo [LABEL] | |
6527 rename(OLDNAME,NEWNAME) | |
6528 require [FILENAME | PERL_VERSION] | |
6529 reset[(EXPR)] | |
6530 return(LIST) | |
6531 reverse(LIST) | |
6532 rewinddir(DIRHANDLE) | |
6533 rindex(STR,SUBSTR[,OFFSET]) | |
6534 rmdir(FILENAME) | |
6535 s/PATTERN/REPLACEMENT/gieoxsm | |
6536 scalar(EXPR) | |
6537 seek(FILEHANDLE,POSITION,WHENCE) | |
6538 seekdir(DIRHANDLE,POS) | |
6539 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT) | |
6540 semctl(ID,SEMNUM,CMD,ARG) | |
6541 semget(KEY,NSEMS,SIZE,FLAGS) | |
6542 semop(KEY,...) | |
6543 send(SOCKET,MSG,FLAGS[,TO]) | |
6544 setgrent | |
6545 sethostent(STAYOPEN) | |
6546 setnetent(STAYOPEN) | |
6547 setpgrp(PID,PGRP) | |
6548 setpriority(WHICH,WHO,PRIORITY) | |
6549 setprotoent(STAYOPEN) | |
6550 setpwent | |
6551 setservent(STAYOPEN) | |
6552 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL) | |
6553 shift[(ARRAY)] | |
6554 shmctl(ID,CMD,ARG) | |
6555 shmget(KEY,SIZE,FLAGS) | |
6556 shmread(ID,VAR,POS,SIZE) | |
6557 shmwrite(ID,STRING,POS,SIZE) | |
6558 shutdown(SOCKET,HOW) | |
6559 sin(EXPR) | |
6560 sleep[(EXPR)] | |
6561 socket(SOCKET,DOMAIN,TYPE,PROTOCOL) | |
6562 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL) | |
6563 sort [SUBROUTINE] (LIST) | |
6564 splice(ARRAY,OFFSET[,LENGTH[,LIST]]) | |
6565 split[(/PATTERN/[,EXPR[,LIMIT]])] | |
6566 sprintf(FORMAT,LIST) | |
6567 sqrt(EXPR) | |
6568 srand(EXPR) | |
6569 stat(EXPR|FILEHANDLE|VAR) | |
6570 study[(SCALAR)] | |
6571 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...} | |
6572 substr(EXPR,OFFSET[,LEN]) | |
6573 symlink(OLDFILE,NEWFILE) | |
6574 syscall(LIST) | |
6575 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6576 system(LIST) | |
6577 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6578 tell[(FILEHANDLE)] | |
6579 telldir(DIRHANDLE) | |
6580 time | |
6581 times | |
6582 tr/SEARCHLIST/REPLACEMENTLIST/cds | |
6583 truncate(FILE|EXPR,LENGTH) | |
6584 umask[(EXPR)] | |
6585 undef[(EXPR)] | |
6586 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR | |
6587 unlink(LIST) | |
6588 unpack(TEMPLATE,EXPR) | |
6589 unshift(ARRAY,LIST) | |
6590 until (EXPR) { ... } EXPR until EXPR | |
6591 utime(LIST) | |
6592 values(%HASH) | |
6593 vec(EXPR,OFFSET,BITS) | |
6594 wait | |
6595 waitpid(PID,FLAGS) | |
6596 wantarray Returns true if the sub/eval is called in list context. | |
6597 warn(LIST) | |
6598 while (EXPR) { ... } EXPR while EXPR | |
6599 write[(EXPR|FILEHANDLE)] | |
6600 ... x ... Repeat string or array. | |
6601 x= ... Repetition assignment. | |
6602 y/SEARCHLIST/REPLACEMENTLIST/ | |
6603 ... | ... Bitwise or. | |
6604 ... || ... Logical or. | |
6605 ~ ... Unary bitwise complement. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6606 #! OS interpreter indicator. If contains `perl', used for options, and -x. |
20323 | 6607 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'. |
6608 CORE:: Prefix to access builtin function if imported sub obscures it. | |
6609 SUPER:: Prefix to lookup for a method in @ISA classes. | |
6610 DESTROY Shorthand for `sub DESTROY {...}'. | |
6611 ... EQ ... Obsolete synonym of `eq'. | |
6612 ... GE ... Obsolete synonym of `ge'. | |
6613 ... GT ... Obsolete synonym of `gt'. | |
6614 ... LE ... Obsolete synonym of `le'. | |
6615 ... LT ... Obsolete synonym of `lt'. | |
6616 ... NE ... Obsolete synonym of `ne'. | |
6617 abs [ EXPR ] absolute value | |
6618 ... and ... Low-precedence synonym for &&. | |
6619 bless REFERENCE [, PACKAGE] Makes reference into an object of a package. | |
6620 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''! | |
6621 chr Converts a number to char with the same ordinal. | |
6622 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
6623 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6624 exists $HASH{KEY} True if the key exists. |
20323 | 6625 format [NAME] = Start of output format. Ended by a single dot (.) on a line. |
6626 formline PICTURE, LIST Backdoor into \"format\" processing. | |
6627 glob EXPR Synonym of <EXPR>. | |
6628 lc [ EXPR ] Returns lowercased EXPR. | |
6629 lcfirst [ EXPR ] Returns EXPR with lower-cased first letter. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6630 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK. |
20323 | 6631 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST. |
6632 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method. | |
6633 not ... Low-precedence synonym for ! - negation. | |
6634 ... or ... Low-precedence synonym for ||. | |
6635 pos STRING Set/Get end-position of the last match over this string, see \\G. | |
6636 quotemeta [ EXPR ] Quote regexp metacharacters. | |
6637 qw/WORD1 .../ Synonym of split('', 'WORD1 ...') | |
6638 readline FH Synonym of <FH>. | |
6639 readpipe CMD Synonym of `CMD`. | |
6640 ref [ EXPR ] Type of EXPR when dereferenced. | |
6641 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.) | |
6642 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable. | |
6643 tied Returns internal object for a tied data. | |
6644 uc [ EXPR ] Returns upcased EXPR. | |
6645 ucfirst [ EXPR ] Returns EXPR with upcased first letter. | |
6646 untie VAR Unlink an object from a simple Perl variable. | |
6647 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'. | |
6648 ... xor ... Low-precedence synonym for exclusive or. | |
6649 prototype \&SUB Returns prototype of the function given a reference. | |
6650 =head1 Top-level heading. | |
6651 =head2 Second-level heading. | |
6652 =head3 Third-level heading (is there such?). | |
6653 =over [ NUMBER ] Start list. | |
6654 =item [ TITLE ] Start new item in the list. | |
6655 =back End list. | |
6656 =cut Switch from POD to Perl. | |
6657 =pod Switch from Perl to POD. | |
6658 ") | |
6659 | |
57823
d77a1264b555
(cperl-switch-to-doc-buffer): Don't use interactive-p.
Richard M. Stallman <rms@gnu.org>
parents:
56377
diff
changeset
|
6660 (defun cperl-switch-to-doc-buffer (&optional interactive) |
20323 | 6661 "Go to the perl documentation buffer and insert the documentation." |
57823
d77a1264b555
(cperl-switch-to-doc-buffer): Don't use interactive-p.
Richard M. Stallman <rms@gnu.org>
parents:
56377
diff
changeset
|
6662 (interactive "p") |
20323 | 6663 (let ((buf (get-buffer-create cperl-doc-buffer))) |
57823
d77a1264b555
(cperl-switch-to-doc-buffer): Don't use interactive-p.
Richard M. Stallman <rms@gnu.org>
parents:
56377
diff
changeset
|
6664 (if interactive |
20323 | 6665 (switch-to-buffer-other-window buf) |
6666 (set-buffer buf)) | |
6667 (if (= (buffer-size) 0) | |
6668 (progn | |
6669 (insert (documentation-property 'cperl-short-docs | |
6670 'variable-documentation)) | |
6671 (setq buffer-read-only t))))) | |
6672 | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6673 (defun cperl-beautify-regexp-piece (b e embed level) |
20323 | 6674 ;; b is before the starting delimiter, e before the ending |
6675 ;; e should be a marker, may be changed, but remains "correct". | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6676 ;; EMBED is nil iff we process the whole REx. |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6677 ;; The REx is guarantied to have //x |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6678 ;; LEVEL shows how many levels deep to go |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6679 ;; position at enter and at leave is not defined |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6680 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code pos) |
20323 | 6681 (if (not embed) |
6682 (goto-char (1+ b)) | |
6683 (goto-char b) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6684 (cond ((looking-at "(\\?\\\\#") ; (?#) wrongly commented when //x-ing |
20323 | 6685 (forward-char 2) |
6686 (delete-char 1) | |
6687 (forward-char 1)) | |
6688 ((looking-at "(\\?[^a-zA-Z]") | |
6689 (forward-char 3)) | |
6690 ((looking-at "(\\?") ; (?i) | |
6691 (forward-char 2)) | |
6692 (t | |
6693 (forward-char 1)))) | |
6694 (setq c (if embed (current-indentation) (1- (current-column))) | |
6695 c1 (+ c (or cperl-regexp-indent-step cperl-indent-level))) | |
6696 (or (looking-at "[ \t]*[\n#]") | |
6697 (progn | |
6698 (insert "\n"))) | |
6699 (goto-char e) | |
6700 (beginning-of-line) | |
6701 (if (re-search-forward "[^ \t]" e t) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6702 (progn ; Something before the ending delimiter |
20323 | 6703 (goto-char e) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6704 (delete-horizontal-space) |
20323 | 6705 (insert "\n") |
6706 (indent-to-column c) | |
6707 (set-marker e (point)))) | |
6708 (goto-char b) | |
6709 (end-of-line 2) | |
6710 (while (< (point) (marker-position e)) | |
6711 (beginning-of-line) | |
6712 (setq s (point) | |
6713 inline t) | |
6714 (skip-chars-forward " \t") | |
6715 (delete-region s (point)) | |
6716 (indent-to-column c1) | |
6717 (while (and | |
6718 inline | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6719 (looking-at |
20323 | 6720 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word |
6721 "\\|" ; Embedded variable | |
6722 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3 | |
6723 "\\|" ; $ ^ | |
6724 "[$^]" | |
6725 "\\|" ; simple-code simple-code*? | |
6726 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5 | |
6727 "\\|" ; Class | |
6728 "\\(\\[\\)" ; 6 | |
6729 "\\|" ; Grouping | |
6730 "\\((\\(\\?\\)?\\)" ; 7 8 | |
6731 "\\|" ; | | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6732 "\\(|\\)"))) ; 9 |
20323 | 6733 (goto-char (match-end 0)) |
6734 (setq spaces t) | |
6735 (cond ((match-beginning 1) ; Alphanum word + junk | |
6736 (forward-char -1)) | |
6737 ((or (match-beginning 3) ; $ab[12] | |
6738 (and (match-beginning 5) ; X* X+ X{2,3} | |
6739 (eq (preceding-char) ?\{))) | |
6740 (forward-char -1) | |
6741 (forward-sexp 1)) | |
6742 ((match-beginning 6) ; [] | |
6743 (setq tmp (point)) | |
6744 (if (looking-at "\\^?\\]") | |
6745 (goto-char (match-end 0))) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6746 ;; XXXX POSIX classes?! |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6747 (while (and (not pos) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6748 (re-search-forward "\\[:\\|\\]" e t)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6749 (if (eq (preceding-char) ?:) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6750 (or (re-search-forward ":\\]" e t) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6751 (error "[:POSIX:]-group in []-group not terminated")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6752 (setq pos t))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6753 (or (eq (preceding-char) ?\]) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6754 (error "[]-group not terminated")) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6755 (if (eq (following-char) ?\{) |
20323 | 6756 (progn |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6757 (forward-sexp 1) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6758 (and (eq (following-char) ??) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6759 (forward-char 1))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6760 (re-search-forward "\\=\\([*+?]\\??\\)" e t))) |
20323 | 6761 ((match-beginning 7) ; () |
6762 (goto-char (match-beginning 0)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6763 (setq pos (current-column)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6764 (or (eq pos c1) |
20323 | 6765 (progn |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6766 (delete-horizontal-space) |
20323 | 6767 (insert "\n") |
6768 (indent-to-column c1))) | |
6769 (setq tmp (point)) | |
6770 (forward-sexp 1) | |
6771 ;; (or (forward-sexp 1) | |
6772 ;; (progn | |
6773 ;; (goto-char tmp) | |
6774 ;; (error "()-group not terminated"))) | |
6775 (set-marker m (1- (point))) | |
6776 (set-marker m1 (point)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6777 (if (= level 1) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6778 (if (progn ; indent rigidly if multiline |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
6779 ;; In fact does not make a lot of sense, since |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6780 ;; the starting position can be already lost due |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6781 ;; to insertion of "\n" and " " |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6782 (goto-char tmp) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6783 (search-forward "\n" m1 t)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6784 (indent-rigidly (point) m1 (- c1 pos))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6785 (setq level (1- level)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6786 (cond |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6787 ((not (match-beginning 8)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6788 (cperl-beautify-regexp-piece tmp m t level)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6789 ((eq (char-after (+ 2 tmp)) ?\{) ; Code |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6790 t) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6791 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6792 (goto-char (+ 2 tmp)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6793 (forward-sexp 1) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6794 (cperl-beautify-regexp-piece (point) m t level)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6795 ((eq (char-after (+ 2 tmp)) ?<) ; Lookbehind |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6796 (goto-char (+ 3 tmp)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6797 (cperl-beautify-regexp-piece (point) m t level)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6798 (t |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6799 (cperl-beautify-regexp-piece tmp m t level)))) |
20323 | 6800 (goto-char m1) |
6801 (cond ((looking-at "[*+?]\\??") | |
6802 (goto-char (match-end 0))) | |
6803 ((eq (following-char) ?\{) | |
6804 (forward-sexp 1) | |
6805 (if (eq (following-char) ?\?) | |
6806 (forward-char)))) | |
6807 (skip-chars-forward " \t") | |
6808 (setq spaces nil) | |
6809 (if (looking-at "[#\n]") | |
6810 (progn | |
6811 (or (eolp) (indent-for-comment)) | |
6812 (beginning-of-line 2)) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6813 (delete-horizontal-space) |
20323 | 6814 (insert "\n")) |
6815 (end-of-line) | |
6816 (setq inline nil)) | |
6817 ((match-beginning 9) ; | | |
6818 (forward-char -1) | |
6819 (setq tmp (point)) | |
6820 (beginning-of-line) | |
6821 (if (re-search-forward "[^ \t]" tmp t) | |
6822 (progn | |
6823 (goto-char tmp) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6824 (delete-horizontal-space) |
20323 | 6825 (insert "\n")) |
6826 ;; first at line | |
6827 (delete-region (point) tmp)) | |
6828 (indent-to-column c) | |
6829 (forward-char 1) | |
6830 (skip-chars-forward " \t") | |
6831 (setq spaces nil) | |
6832 (if (looking-at "[#\n]") | |
6833 (beginning-of-line 2) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6834 (delete-horizontal-space) |
20323 | 6835 (insert "\n")) |
6836 (end-of-line) | |
6837 (setq inline nil))) | |
6838 (or (looking-at "[ \t\n]") | |
6839 (not spaces) | |
6840 (insert " ")) | |
6841 (skip-chars-forward " \t")) | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6842 (or (looking-at "[#\n]") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6843 (error "Unknown code `%s' in a regexp" |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6844 (buffer-substring (point) (1+ (point))))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6845 (and inline (end-of-line 2))) |
20323 | 6846 ;; Special-case the last line of group |
6847 (if (and (>= (point) (marker-position e)) | |
6848 (/= (current-indentation) c)) | |
6849 (progn | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6850 (beginning-of-line) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6851 (setq s (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6852 (skip-chars-forward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6853 (delete-region s (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6854 (indent-to-column c))))) |
20323 | 6855 |
6856 (defun cperl-make-regexp-x () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6857 ;; Returns position of the start |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6858 ;; XXX this is called too often! Need to cache the result! |
20323 | 6859 (save-excursion |
6860 (or cperl-use-syntax-table-text-property | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6861 (error "I need to have a regexp marked!")) |
20323 | 6862 ;; Find the start |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6863 (if (looking-at "\\s|") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6864 nil ; good already |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6865 (if (looking-at "\\([smy]\\|qr\\)\\s|") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6866 (forward-char 1) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6867 (re-search-backward "\\s|"))) ; Assume it is scanned already. |
20323 | 6868 ;;(forward-char 1) |
6869 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column)) | |
6870 (sub-p (eq (preceding-char) ?s)) s) | |
6871 (forward-sexp 1) | |
6872 (set-marker e (1- (point))) | |
6873 (setq delim (preceding-char)) | |
6874 (if (and sub-p (eq delim (char-after (- (point) 2)))) | |
6875 (error "Possible s/blah// - do not know how to deal with")) | |
6876 (if sub-p (forward-sexp 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6877 (if (looking-at "\\sw*x") |
20323 | 6878 (setq have-x t) |
6879 (insert "x")) | |
6880 ;; Protect fragile " ", "#" | |
6881 (if have-x nil | |
6882 (goto-char (1+ b)) | |
6883 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too? | |
6884 (forward-char -1) | |
6885 (insert "\\") | |
6886 (forward-char 1))) | |
6887 b))) | |
6888 | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6889 (defun cperl-beautify-regexp (&optional deep) |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
6890 "Do it. (Experimental, may change semantics, recheck the result.) |
20323 | 6891 We suppose that the regexp is scanned already." |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6892 (interactive "P") |
49516
774eed0b5c78
(cperl-beautify-level, cperl-beautify-regexp): Fix use of
Juanma Barranquero <lekktu@gmail.com>
parents:
49304
diff
changeset
|
6893 (setq deep (if deep (prefix-numeric-value deep) -1)) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6894 (save-excursion |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6895 (goto-char (cperl-make-regexp-x)) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6896 (let ((b (point)) (e (make-marker))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6897 (forward-sexp 1) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6898 (set-marker e (1- (point))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6899 (cperl-beautify-regexp-piece b e nil deep)))) |
20323 | 6900 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6901 (defun cperl-regext-to-level-start () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6902 "Goto start of an enclosing group in regexp. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6903 We suppose that the regexp is scanned already." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6904 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6905 (let ((limit (cperl-make-regexp-x)) done) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6906 (while (not done) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6907 (or (eq (following-char) ?\() |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6908 (search-backward "(" (1+ limit) t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6909 (error "Cannot find `(' which starts a group")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6910 (setq done |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6911 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6912 (skip-chars-backward "\\") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6913 (looking-at "\\(\\\\\\\\\\)*("))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6914 (or done (forward-char -1))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6915 |
20323 | 6916 (defun cperl-contract-level () |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6917 "Find an enclosing group in regexp and contract it. |
20323 | 6918 \(Experimental, may change semantics, recheck the result.) |
6919 We suppose that the regexp is scanned already." | |
6920 (interactive) | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6921 ;; (save-excursion ; Can't, breaks `cperl-contract-levels' |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6922 (cperl-regext-to-level-start) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6923 (let ((b (point)) (e (make-marker)) s c) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6924 (forward-sexp 1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6925 (set-marker e (1- (point))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6926 (goto-char b) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6927 (while (re-search-forward "\\(#\\)\\|\n" e 'to-end) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6928 (cond |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6929 ((match-beginning 1) ; #-comment |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6930 (or c (setq c (current-indentation))) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6931 (beginning-of-line 2) ; Skip |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6932 (setq s (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6933 (skip-chars-forward " \t") |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6934 (delete-region s (point)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6935 (indent-to-column c)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6936 (t |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6937 (delete-char -1) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6938 (just-one-space)))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6939 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6940 (defun cperl-contract-levels () |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6941 "Find an enclosing group in regexp and contract all the kids. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6942 \(Experimental, may change semantics, recheck the result.) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6943 We suppose that the regexp is scanned already." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6944 (interactive) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6945 (save-excursion |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6946 (condition-case nil |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6947 (cperl-regext-to-level-start) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6948 (error ; We are outside outermost group |
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6949 (goto-char (cperl-make-regexp-x)))) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6950 (let ((b (point)) (e (make-marker)) s c) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6951 (forward-sexp 1) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6952 (set-marker e (1- (point))) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6953 (goto-char (1+ b)) |
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6954 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49516
diff
changeset
|
6955 (cond |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6956 ((match-beginning 1) ; Skip |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6957 nil) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6958 (t ; Group |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6959 (cperl-contract-level))))))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6960 |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6961 (defun cperl-beautify-level (&optional deep) |
20323 | 6962 "Find an enclosing group in regexp and beautify it. |
6963 \(Experimental, may change semantics, recheck the result.) | |
6964 We suppose that the regexp is scanned already." | |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6965 (interactive "P") |
49516
774eed0b5c78
(cperl-beautify-level, cperl-beautify-regexp): Fix use of
Juanma Barranquero <lekktu@gmail.com>
parents:
49304
diff
changeset
|
6966 (setq deep (if deep (prefix-numeric-value deep) -1)) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6967 (save-excursion |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6968 (cperl-regext-to-level-start) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6969 (let ((b (point)) (e (make-marker))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6970 (forward-sexp 1) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6971 (set-marker e (1- (point))) |
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6972 (cperl-beautify-regexp-piece b e nil deep)))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6973 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6974 (defun cperl-invert-if-unless () |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6975 "Change `if (A) {B}' into `B if A;' etc if possible." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6976 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6977 (or (looking-at "\\<") |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
6978 (forward-sexp -1)) |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
6979 (if (looking-at "\\<\\(if\\|unless\\|while\\|until\\|for\\|foreach\\)\\>") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6980 (let ((pos1 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6981 pos2 pos3 pos4 pos5 s1 s2 state p pos45 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6982 (s0 (buffer-substring (match-beginning 0) (match-end 0)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6983 (forward-sexp 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6984 (setq pos3 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6985 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6986 (setq pos2 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6987 (if (eq (following-char) ?\( ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6988 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6989 (goto-char pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6990 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6991 (setq pos5 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6992 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6993 (setq pos4 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6994 ;; XXXX In fact may be `A if (B); {C}' ... |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6995 (if (and (eq (following-char) ?\{ ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6996 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6997 (cperl-backward-to-noncomment pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6998 (eq (preceding-char) ?\) ))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6999 (if (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7000 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7001 (goto-char pos5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7002 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7003 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7004 (looking-at "\\<els\\(e\\|if\\)\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7005 (error nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7006 (error |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7007 "`%s' (EXPR) {BLOCK} with `else'/`elsif'" s0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7008 (goto-char (1- pos5)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7009 (cperl-backward-to-noncomment pos4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7010 (if (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7011 (forward-char -1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7012 (setq pos45 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7013 (goto-char pos4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7014 (while (re-search-forward "\\<\\(for\\|foreach\\|if\\|unless\\|while\\|until\\)\\>\\|;" pos45 t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7015 (setq p (match-beginning 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7016 s1 (buffer-substring p (match-end 0)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7017 state (parse-partial-sexp pos4 p)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7018 (or (nth 3 state) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7019 (nth 4 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7020 (nth 5 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7021 (error "`%s' inside `%s' BLOCK" s1 s0)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7022 (goto-char (match-end 0))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7023 ;; Finally got it |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7024 (goto-char (1+ pos4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7025 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7026 (setq s2 (buffer-substring (point) pos45)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7027 (goto-char pos45) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7028 (or (looking-at ";?[ \t\n]*}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7029 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7030 (skip-chars-forward "; \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7031 (setq s2 (concat s2 "\n" (buffer-substring (point) (1- pos5)))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7032 (and (equal s2 "") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7033 (setq s2 "1")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7034 (goto-char (1- pos3)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7035 (cperl-backward-to-noncomment pos2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7036 (or (looking-at "[ \t\n]*)") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7037 (goto-char (1- pos3))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7038 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7039 (goto-char (1+ pos2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7040 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7041 (setq s1 (buffer-substring (point) p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7042 (delete-region pos4 pos5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7043 (delete-region pos2 pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7044 (goto-char pos1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7045 (insert s2 " ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7046 (just-one-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7047 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7048 (setq pos1 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7049 (insert " " s1 ";") |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
7050 (delete-horizontal-space) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7051 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7052 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7053 (goto-char pos1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7054 (just-one-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7055 (cperl-indent-line)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7056 (error "`%s' (EXPR) not with an {BLOCK}" s0))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7057 (error "`%s' not with an (EXPR)" s0))) |
46024
267399555cd1
Many trivial doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
44446
diff
changeset
|
7058 (error "Not at `if', `unless', `while', `until', `for' or `foreach'"))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7059 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7060 ;;; By Anthony Foiani <afoiani@uswest.com> |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7061 ;;; Getting help on modules in C-h f ? |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7062 ;;; This is a modified version of `man'. |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7063 ;;; Need to teach it how to lookup functions |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7064 (defun cperl-perldoc (word) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7065 "Run `perldoc' on WORD." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7066 (interactive |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7067 (list (let* ((default-entry (cperl-word-at-point)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7068 (input (read-string |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7069 (format "perldoc entry%s: " |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7070 (if (string= default-entry "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7071 "" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7072 (format " (default %s)" default-entry)))))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7073 (if (string= input "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7074 (if (string= default-entry "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7075 (error "No perldoc args given") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7076 default-entry) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7077 input)))) |
41309
8c4c4027c7bd
(cperl-perldoc): Require man before binding `manual-program'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39836
diff
changeset
|
7078 (require 'man) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7079 (let* ((case-fold-search nil) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7080 (is-func (and |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7081 (string-match "^[a-z]+$" word) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7082 (string-match (concat "^" word "\\>") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7083 (documentation-property |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7084 'cperl-short-docs |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7085 'variable-documentation)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7086 (manual-program (if is-func "perldoc -f" "perldoc"))) |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7087 (cond |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7088 (cperl-xemacs-p |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7089 (let ((Manual-program "perldoc") |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7090 (Manual-switches (if is-func (list "-f")))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7091 (manual-entry word))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7092 (t |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7093 (Man-getpage-in-background word))))) |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7094 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7095 (defun cperl-perldoc-at-point () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7096 "Run a `perldoc' on the word around point." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7097 (interactive) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7098 (cperl-perldoc (cperl-word-at-point))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7099 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7100 (defcustom pod2man-program "pod2man" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7101 "*File name for `pod2man'." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7102 :type 'file |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7103 :group 'cperl) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7104 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7105 ;;; By Nick Roberts <Nick.Roberts@src.bae.co.uk> (with changes) |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7106 (defun cperl-pod-to-manpage () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7107 "Create a virtual manpage in Emacs from the Perl Online Documentation." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7108 (interactive) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7109 (require 'man) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7110 (let* ((pod2man-args (concat buffer-file-name " | nroff -man ")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7111 (bufname (concat "Man " buffer-file-name)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7112 (buffer (generate-new-buffer bufname))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7113 (save-excursion |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7114 (set-buffer buffer) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7115 (let ((process-environment (copy-sequence process-environment))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7116 ;; Prevent any attempt to use display terminal fanciness. |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7117 (setenv "TERM" "dumb") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7118 (set-process-sentinel |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7119 (start-process pod2man-program buffer "sh" "-c" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7120 (format (cperl-pod2man-build-command) pod2man-args)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7121 'Man-bgproc-sentinel))))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7122 |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7123 ;;; Updated version by him too |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7124 (defun cperl-build-manpage () |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7125 "Create a virtual manpage in Emacs from the POD in the file." |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7126 (interactive) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7127 (require 'man) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7128 (cond |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7129 (cperl-xemacs-p |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7130 (let ((Manual-program "perldoc")) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7131 (manual-entry buffer-file-name))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7132 (t |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7133 (let* ((manual-program "perldoc")) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7134 (Man-getpage-in-background buffer-file-name))))) |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7135 |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7136 (defun cperl-pod2man-build-command () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7137 "Builds the entire background manpage and cleaning command." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7138 (let ((command (concat pod2man-program " %s 2>/dev/null")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7139 (flist Man-filter-list)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7140 (while (and flist (car flist)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7141 (let ((pcom (car (car flist))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7142 (pargs (cdr (car flist)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7143 (setq command |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7144 (concat command " | " pcom " " |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7145 (mapconcat '(lambda (phrase) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7146 (if (not (stringp phrase)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7147 (error "Malformed Man-filter-list")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7148 phrase) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7149 pargs " "))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7150 (setq flist (cdr flist)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
7151 command)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7152 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7153 (defun cperl-lazy-install ()) ; Avoid a warning |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7154 (defun cperl-lazy-unstall ()) ; Avoid a warning |
20323 | 7155 |
7156 (if (fboundp 'run-with-idle-timer) | |
7157 (progn | |
7158 (defvar cperl-help-shown nil | |
7159 "Non-nil means that the help was already shown now.") | |
7160 | |
7161 (defvar cperl-lazy-installed nil | |
7162 "Non-nil means that the lazy-help handlers are installed now.") | |
7163 | |
7164 (defun cperl-lazy-install () | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7165 "Switches on Auto-Help on Perl constructs (put in the message area). |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7166 Delay of auto-help controlled by `cperl-lazy-help-time'." |
20323 | 7167 (interactive) |
7168 (make-variable-buffer-local 'cperl-help-shown) | |
7169 (if (and (cperl-val 'cperl-lazy-help-time) | |
7170 (not cperl-lazy-installed)) | |
7171 (progn | |
7172 (add-hook 'post-command-hook 'cperl-lazy-hook) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7173 (run-with-idle-timer |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7174 (cperl-val 'cperl-lazy-help-time 1000000 5) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7175 t |
20323 | 7176 'cperl-get-help-defer) |
7177 (setq cperl-lazy-installed t)))) | |
7178 | |
7179 (defun cperl-lazy-unstall () | |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7180 "Switches off Auto-Help on Perl constructs (put in the message area). |
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7181 Delay of auto-help controlled by `cperl-lazy-help-time'." |
20323 | 7182 (interactive) |
7183 (remove-hook 'post-command-hook 'cperl-lazy-hook) | |
7184 (cancel-function-timers 'cperl-get-help-defer) | |
7185 (setq cperl-lazy-installed nil)) | |
7186 | |
7187 (defun cperl-lazy-hook () | |
7188 (setq cperl-help-shown nil)) | |
7189 | |
7190 (defun cperl-get-help-defer () | |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7191 (if (not (memq major-mode '(perl-mode cperl-mode))) nil |
20323 | 7192 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t)) |
7193 (cperl-get-help) | |
7194 (setq cperl-help-shown t)))) | |
7195 (cperl-lazy-install))) | |
7196 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7197 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7198 ;;; Plug for wrong font-lock: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7199 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7200 (defun cperl-font-lock-unfontify-region-function (beg end) |
59103
9c9d41548660
(cperl-find-bad-style): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
58492
diff
changeset
|
7201 ;; Simplified now that font-lock-unfontify-region uses save-buffer-state. |
9c9d41548660
(cperl-find-bad-style): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
58492
diff
changeset
|
7202 (let (before-change-functions after-change-functions) |
9c9d41548660
(cperl-find-bad-style): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
58492
diff
changeset
|
7203 (remove-text-properties beg end '(face nil)))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7204 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7205 (defvar cperl-d-l nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7206 (defun cperl-fontify-syntaxically (end) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7207 ;; Some vars for debugging only |
39836
c2db8c1499cb
Merged in changes from v4.32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
7208 ;; (message "Syntaxifying...") |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7209 (let ((dbg (point)) (iend end) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7210 (istate (car cperl-syntax-state)) |
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7211 start) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7212 (and cperl-syntaxify-unwind |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7213 (setq end (cperl-unwind-to-safe t end))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7214 (setq start (point)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7215 (or cperl-syntax-done-to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7216 (setq cperl-syntax-done-to (point-min))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7217 (if (or (not (boundp 'font-lock-hot-pass)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7218 (eval 'font-lock-hot-pass) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7219 t) ; Not debugged otherwise |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7220 ;; Need to forget what is after `start' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7221 (setq start (min cperl-syntax-done-to start)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7222 ;; Fontification without a change |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7223 (setq start (max cperl-syntax-done-to start))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7224 (and (> end start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7225 (setq cperl-syntax-done-to start) ; In case what follows fails |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7226 (cperl-find-pods-heres start end t nil t)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7227 (if (eq cperl-syntaxify-by-font-lock 'message) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7228 (message "Syntaxified %s..%s from %s to %s(%s), state %s-->%s" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7229 dbg iend |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7230 start end cperl-syntax-done-to |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7231 istate (car cperl-syntax-state))) ; For debugging |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7232 nil)) ; Do not iterate |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
7233 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7234 (defun cperl-fontify-update (end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7235 (let ((pos (point)) prop posend) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7236 (while (< pos end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7237 (setq prop (get-text-property pos 'cperl-postpone)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7238 (setq posend (next-single-property-change pos 'cperl-postpone nil end)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7239 (and prop (put-text-property pos posend (car prop) (cdr prop))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7240 (setq pos posend))) |
49918
c5956f47d1f6
Merge changes from CPerl-4.35.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49850
diff
changeset
|
7241 nil) ; Do not iterate |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7242 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7243 (defun cperl-update-syntaxification (from to) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7244 (if (and cperl-use-syntax-table-text-property |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7245 cperl-syntaxify-by-font-lock |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7246 (or (null cperl-syntax-done-to) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7247 (< cperl-syntax-done-to to))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7248 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7249 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7250 (goto-char from) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7251 (cperl-fontify-syntaxically to))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7252 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
7253 (defvar cperl-version |
49919
249621b2dae5
Merge changes from CPerl-5.0.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49918
diff
changeset
|
7254 (let ((v "Revision: 5.0")) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7255 (string-match ":\\s *\\([0-9.]+\\)" v) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7256 (substring v (match-beginning 1) (match-end 1))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7257 "Version of IZ-supported CPerl package this file is based on.") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
7258 |
20323 | 7259 (provide 'cperl-mode) |
7260 | |
52401 | 7261 ;;; arch-tag: 42e5b19b-e187-4537-929f-1a7408980ce6 |
20323 | 7262 ;;; cperl-mode.el ends here |