Mercurial > emacs
annotate lisp/progmodes/cperl-mode.el @ 37081:71fe12822bf3
Fix last change.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 30 Mar 2001 10:21:06 +0000 |
parents | 4bcc2745d610 |
children | 44748506225d |
rev | line source |
---|---|
20323 | 1 ;;; cperl-mode.el --- Perl code editing commands for Emacs |
2 | |
3 ;; Copyright (C) 1985, 86, 87, 91, 92, 93, 94, 95, 96, 1997 | |
4 ;; Free Software Foundation, Inc. | |
5 | |
6 ;; Author: Ilya Zakharevich and Bob Olson | |
7 ;; Maintainer: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
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 | |
27 ;;; Corrections made by Ilya Zakharevich ilya@math.mps.ohio-state.edu | |
28 | |
29 ;;; Commentary: | |
30 | |
31 ;;; You can either fine-tune the bells and whistles of this mode or | |
32 ;;; bulk enable them by putting | |
33 | |
34 ;; (setq cperl-hairy t) | |
35 | |
36 ;;; in your .emacs file. (Emacs rulers do not consider it politically | |
37 ;;; correct to make whistles enabled by default.) | |
38 | |
39 ;;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<< | |
40 ;;; or as help on variables `cperl-tips', `cperl-problems', <<<<<< | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
41 ;;; `cperl-non-problems', `cperl-praise', `cperl-speed'. <<<<<< |
20323 | 42 |
43 ;;; The mode information (on C-h m) provides some customization help. | |
44 ;;; If you use font-lock feature of this mode, it is advisable to use | |
45 ;;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock. | |
46 | |
47 ;;; Faces used now: three faces for first-class and second-class keywords | |
48 ;;; and control flow words, one for each: comments, string, labels, | |
49 ;;; functions definitions and packages, arrays, hashes, and variable | |
50 ;;; definitions. If you do not see all these faces, your font-lock does | |
51 ;;; not define them, so you need to define them manually. | |
52 | |
53 ;;; into your .emacs file. | |
54 | |
55 ;;;; This mode supports font-lock, imenu and mode-compile. In the | |
56 ;;;; hairy version font-lock is on, but you should activate imenu | |
57 ;;;; yourself (note that mode-compile is not standard yet). Well, you | |
58 ;;;; can use imenu from keyboard anyway (M-x imenu), but it is better | |
59 ;;;; to bind it like that: | |
60 | |
61 ;; (define-key global-map [M-S-down-mouse-3] 'imenu) | |
62 | |
63 ;;; Code: | |
64 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
65 ;; Some macros are needed for `defcustom' |
31821 | 66 (eval-when-compile |
67 (require 'font-lock) | |
68 (defvar msb-menu-cond) | |
69 (defvar gud-perldb-history) | |
70 (defvar font-lock-background-mode) ; not in Emacs | |
71 (defvar font-lock-display-type) ; ditto | |
72 (defconst cperl-xemacs-p (string-match "XEmacs\\|Lucid" emacs-version)) | |
73 (defmacro cperl-is-face (arg) ; Takes quoted arg | |
74 (cond ((fboundp 'find-face) | |
75 `(find-face ,arg)) | |
76 (;;(and (fboundp 'face-list) | |
77 ;; (face-list)) | |
78 (fboundp 'face-list) | |
79 `(member ,arg (and (fboundp 'face-list) | |
80 (face-list)))) | |
81 (t | |
82 `(boundp ,arg)))) | |
83 (defmacro cperl-make-face (arg descr) ; Takes unquoted arg | |
84 (cond ((fboundp 'make-face) | |
85 `(make-face (quote ,arg))) | |
86 (t | |
87 `(defconst ,arg (quote ,arg) ,descr)))) | |
88 (defmacro cperl-force-face (arg descr) ; Takes unquoted arg | |
89 `(progn | |
90 (or (cperl-is-face (quote ,arg)) | |
91 (cperl-make-face ,arg ,descr)) | |
92 (or (boundp (quote ,arg)) ; We use unquoted variants too | |
93 (defconst ,arg (quote ,arg) ,descr)))) | |
94 (if cperl-xemacs-p | |
95 (defmacro cperl-etags-snarf-tag (file line) | |
26455 | 96 `(progn |
31821 | 97 (beginning-of-line 2) |
98 (list ,file ,line))) | |
99 (defmacro cperl-etags-snarf-tag (file line) | |
100 `(etags-snarf-tag))) | |
101 (if cperl-xemacs-p | |
102 (defmacro cperl-etags-goto-tag-location (elt) | |
103 ;;(progn | |
104 ;; (switch-to-buffer (get-file-buffer (elt (, elt) 0))) | |
105 ;; (set-buffer (get-file-buffer (elt (, elt) 0))) | |
106 ;; Probably will not work due to some save-excursion??? | |
107 ;; Or save-file-position? | |
108 ;; (message "Did I get to line %s?" (elt (, elt) 1)) | |
109 `(goto-line (string-to-int (elt ,elt 1)))) | |
110 ;;) | |
111 (defmacro cperl-etags-goto-tag-location (elt) | |
112 `(etags-goto-tag-location ,elt))) | |
113 (autoload 'tmm-prompt "tmm")) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
114 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
115 (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
|
116 (let (answer) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
117 (while list |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
118 (or answer |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
119 (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
|
120 (null (cdr list))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
121 (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
|
122 (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
|
123 answer)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
124 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
125 (defgroup cperl nil |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
126 "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
|
127 :prefix "cperl-" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
128 :group 'languages |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
129 :version "20.3") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
130 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
131 (defgroup cperl-indentation-details nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
132 "Indentation." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
133 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
134 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
135 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
136 (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
|
137 "Variables affected by `cperl-hairy'." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
138 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
139 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
140 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
141 (defgroup cperl-autoinsert-details nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
142 "Auto-insert tuneup." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
143 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
144 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
145 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
146 (defgroup cperl-faces nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
147 "Fontification colors." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
148 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
149 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
150 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
151 (defgroup cperl-speed nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
152 "Speed vs. validity tuneup." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
153 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
154 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
155 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
156 (defgroup cperl-help-system nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
157 "Help system tuneup." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
158 :prefix "cperl-" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
159 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
160 |
20323 | 161 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
162 (defcustom cperl-extra-newline-before-brace nil |
20323 | 163 "*Non-nil means that if, elsif, while, until, else, for, foreach |
164 and do constructs look like: | |
165 | |
166 if () | |
167 { | |
168 } | |
169 | |
170 instead of: | |
171 | |
172 if () { | |
173 } | |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
174 " |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
175 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
176 :group 'cperl-autoinsert-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
177 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
178 (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
|
179 cperl-extra-newline-before-brace |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
180 "*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
|
181 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
|
182 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
183 :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
|
184 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
185 (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
|
186 "*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
|
187 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
188 :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
|
189 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
190 (defcustom cperl-lineup-step nil |
20323 | 191 "*`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
|
192 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
|
193 :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
|
194 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
195 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
196 (defcustom cperl-brace-imaginary-offset 0 |
20323 | 197 "*Imagined indentation of a Perl open brace that actually follows a statement. |
198 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
|
199 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
|
200 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
201 :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
|
202 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
203 (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
|
204 "*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
|
205 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
206 :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
|
207 (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
|
208 "*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
|
209 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
210 :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
|
211 (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
|
212 "*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
|
213 :type '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) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
215 (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
|
216 "*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
|
217 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
218 :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
|
219 (defcustom cperl-continued-brace-offset 0 |
20323 | 220 "*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
|
221 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
|
222 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
223 :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
|
224 (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
|
225 "*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
|
226 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
227 :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
|
228 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
229 (defcustom cperl-auto-newline nil |
20323 | 230 "*Non-nil means automatically newline before and after braces, |
231 and after colons and semicolons, inserted in CPerl code. The following | |
232 \\[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
|
233 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
|
234 `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
|
235 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
236 :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
|
237 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
238 (defcustom cperl-auto-newline-after-colon nil |
20323 | 239 "*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
|
240 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
|
241 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
242 :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
|
243 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
244 (defcustom cperl-tab-always-indent t |
20323 | 245 "*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
|
246 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
|
247 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
248 :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
|
249 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
250 (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
|
251 "*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
|
252 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
|
253 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
254 :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
|
255 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
256 (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
|
257 "*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
|
258 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
|
259 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
260 :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
|
261 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
262 (defcustom cperl-electric-parens-string "({[]})<" |
20323 | 263 "*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
|
264 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
|
265 :type 'string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
266 :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
|
267 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
268 (defcustom cperl-electric-parens nil |
20323 | 269 "*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
|
270 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
|
271 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
272 :group 'cperl-affected-by-hairy) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
273 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
274 (defvar zmacs-regions) ; Avoid warning |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
275 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
276 (defcustom cperl-electric-parens-mark |
20323 | 277 (and window-system |
278 (or (and (boundp 'transient-mark-mode) ; For Emacs | |
279 transient-mark-mode) | |
280 (and (boundp 'zmacs-regions) ; For XEmacs | |
281 zmacs-regions))) | |
282 "*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
|
283 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
|
284 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
285 :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
|
286 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
287 (defcustom cperl-electric-linefeed nil |
20323 | 288 "*If true, LFD should be hairy in CPerl, otherwise C-c LFD is hairy. |
289 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
|
290 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
|
291 :type '(choice (const null) boolean) |
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-keywords nil |
20323 | 295 "*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
|
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) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
299 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
300 (defcustom cperl-hairy nil |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
301 "*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
|
302 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
|
303 `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
|
304 `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
|
305 `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
|
306 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
307 :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
|
308 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
309 (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
|
310 "*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
|
311 :type 'integer |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
312 :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
|
313 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
314 (defcustom cperl-vc-header-alist '((SCCS "$sccs = '%W\%' ;") |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
315 (RCS "$rcs = ' $Id\$ ' ;")) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
316 "*What to use as `vc-header-alist' in CPerl." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
317 :type '(repeat (list symbol string)) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
318 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
319 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
320 (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
|
321 (not |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
322 (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
323 (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
|
324 (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
|
325 (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
|
326 "*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
|
327 :type 'boolean |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
328 :group 'cperl) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
329 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
330 (defcustom cperl-info-on-command-no-prompt nil |
20323 | 331 "*Not-nil (and non-null) means not to prompt on C-h f. |
332 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
|
333 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
|
334 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
335 :group 'cperl-affected-by-hairy) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
336 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
337 (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
|
338 "*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
|
339 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
|
340 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
|
341 :type '(choice (const null) boolean) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
342 :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
|
343 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
344 (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
|
345 "*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
|
346 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
|
347 :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
|
348 :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
|
349 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
350 (defcustom cperl-pod-face 'font-lock-comment-face |
31821 | 351 "*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
|
352 :type 'face |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
353 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
354 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
355 (defcustom cperl-pod-head-face 'font-lock-variable-name-face |
31821 | 356 "*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
|
357 Font for POD headers." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
358 :type 'face |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
359 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
360 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
361 (defcustom cperl-here-face 'font-lock-string-face |
31821 | 362 "*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
|
363 :type 'face |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
364 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
365 |
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
366 (defcustom cperl-invalid-face 'underline |
31821 | 367 "*Face for highlighting trailing whitespace." |
368 :type 'face | |
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
369 :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
|
370 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
371 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
372 (defcustom cperl-pod-here-fontify '(featurep 'font-lock) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
373 "*Not-nil after evaluation means to highlight pod and here-docs sections." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
374 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
375 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
376 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
377 (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
|
378 "*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
|
379 :type 'boolean |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
380 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
381 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
382 (defcustom cperl-pod-here-scan t |
20323 | 383 "*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
|
384 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
|
385 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
386 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
387 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
388 (defcustom cperl-imenu-addback nil |
20323 | 389 "*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
|
390 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
|
391 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
392 :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
|
393 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
394 (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
|
395 "*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
|
396 :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
|
397 :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
|
398 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
399 (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
|
400 "*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
|
401 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
402 :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
|
403 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
404 (defcustom cperl-info-page "perl" |
20323 | 405 "*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
|
406 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
|
407 :type 'string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
408 :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
|
409 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
410 (defcustom cperl-use-syntax-table-text-property |
20323 | 411 (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
|
412 "*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
|
413 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
414 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
415 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
416 (defcustom cperl-use-syntax-table-text-property-for-tags |
20323 | 417 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
|
418 "*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
|
419 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
420 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
421 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
422 (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
|
423 "*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
|
424 :type 'regexp |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
425 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
426 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
427 (defcustom cperl-noscan-files-regexp "/\\(\\.\\.?\\|SCCS\\|RCS\\|blib\\)$" |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
428 "*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
|
429 :type 'regexp |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
430 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
431 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
432 (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
|
433 "*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
|
434 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
|
435 :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
|
436 :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
|
437 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
438 (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
|
439 "*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
|
440 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
441 :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
|
442 |
26667
a11929b241ab
(cperl-under-as-char): Make nil the default value.
Richard M. Stallman <rms@gnu.org>
parents:
26455
diff
changeset
|
443 (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
|
444 "*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
|
445 :type 'boolean |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
446 :group 'cperl) |
20323 | 447 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
448 (defcustom cperl-extra-perl-args "" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
449 "*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
|
450 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
|
451 :type 'string |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
452 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
453 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
454 (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
|
455 "*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
|
456 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
457 :group 'cperl-help-system) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
458 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
459 (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
|
460 "*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
|
461 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
|
462 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
|
463 :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
|
464 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
465 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
466 (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
|
467 "*Non-nil means that one-line if/unless/while/until/for/foreach BLOCKs |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
468 need to be reformated into multiline ones when indenting a region." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
469 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
470 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
471 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
472 (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
|
473 "*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
|
474 when indenting a region. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
475 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
|
476 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
477 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
478 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
479 (defcustom cperl-merge-trailing-else t |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
480 "*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
|
481 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
|
482 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
483 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
484 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
485 (defcustom cperl-syntaxify-by-font-lock |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
486 (and window-system |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
487 (boundp 'parse-sexp-lookup-properties)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
488 "*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
|
489 Having it TRUE may be not completely debugged yet." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
490 :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
|
491 :group 'cperl-speed) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
492 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
493 (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
|
494 t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
495 "*Non-nil means that CPerl unwinds to a start of along construction |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
496 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
|
497 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
498 :group 'cperl-speed) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
499 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
500 (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
|
501 '((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
|
502 (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
|
503 (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
|
504 (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
|
505 (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
|
506 (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
|
507 (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
|
508 (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
|
509 (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
|
510 (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
|
511 (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
|
512 "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
|
513 :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
|
514 (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
|
515 (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
|
516 (repeat symbol))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
517 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
518 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
519 (if window-system |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
520 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
521 (defvar cperl-dark-background |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
522 (cperl-choose-color "navy" "os2blue" "darkgreen")) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
523 (defvar cperl-dark-foreground |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
524 (cperl-choose-color "orchid1" "orange")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
525 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
526 (defface cperl-nonoverridable-face |
26455 | 527 `((((class grayscale) (background light)) |
528 (:background "Gray90" :italic t :underline t)) | |
529 (((class grayscale) (background dark)) | |
530 (:foreground "Gray80" :italic t :underline t :bold t)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
531 (((class color) (background light)) |
26455 | 532 (:foreground "chartreuse3")) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
533 (((class color) (background dark)) |
26455 | 534 (:foreground ,cperl-dark-foreground)) |
535 (t (:bold t :underline t))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
536 "Font Lock mode face used to highlight array names." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
537 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
538 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
539 (defface cperl-array-face |
26455 | 540 `((((class grayscale) (background light)) |
541 (:background "Gray90" :bold t)) | |
542 (((class grayscale) (background dark)) | |
543 (:foreground "Gray80" :bold t)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
544 (((class color) (background light)) |
26455 | 545 (:foreground "Blue" :background "lightyellow2" :bold t)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
546 (((class color) (background dark)) |
26455 | 547 (:foreground "yellow" :background ,cperl-dark-background :bold t)) |
548 (t (:bold t))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
549 "Font Lock mode face used to highlight array names." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
550 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
551 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
552 (defface cperl-hash-face |
26455 | 553 `((((class grayscale) (background light)) |
554 (:background "Gray90" :bold t :italic t)) | |
555 (((class grayscale) (background dark)) | |
556 (:foreground "Gray80" :bold t :italic t)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
557 (((class color) (background light)) |
26455 | 558 (:foreground "Red" :background "lightyellow2" :bold t :italic t)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
559 (((class color) (background dark)) |
26455 | 560 (:foreground "Red" :background ,cperl-dark-background :bold t :italic t)) |
561 (t (:bold t :italic t))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
562 "Font Lock mode face used to highlight hash names." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
563 :group 'cperl-faces))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
564 |
20323 | 565 |
566 | |
567 ;;; Short extra-docs. | |
568 | |
569 (defvar cperl-tips 'please-ignore-this-line | |
570 "Get newest version of this package from | |
571 ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs | |
572 and/or | |
573 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
|
574 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
|
575 patches to related files. |
20323 | 576 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
577 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
|
578 ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode/patches |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
579 \(this upgrades syntax-parsing abilities of RMS Emaxen v19.34 and |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
580 v20.2 up to the level of RMS Emacs v20.3 - a must for a good Perl |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
581 mode.) You will not get much from XEmacs, it's syntax abilities are |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
582 too primitive. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
583 |
20323 | 584 Get support packages choose-color.el (or font-lock-extra.el before |
585 19.30), imenu-go.el from the same place. \(Look for other files there | |
586 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
|
587 later you should use choose-color.el *instead* of font-lock-extra.el |
20323 | 588 \(and you will not get smart highlighting in C :-(). |
589 | |
590 Note that to enable Compile choices in the menu you need to install | |
591 mode-compile.el. | |
592 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
593 Get perl5-info from |
20323 | 594 $CPAN/doc/manual/info/perl-info.tar.gz |
595 older version was on | |
596 http://www.metronet.com:70/9/perlinfo/perl5/manual/perl5-info.tar.gz | |
597 | |
598 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
|
599 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
|
600 Tools/Tags submenu in Perl menu. |
20323 | 601 |
602 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
|
603 from Perl menu, or hierarchic view of imenu. The second one uses the |
20323 | 604 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
|
605 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
|
606 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
607 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
|
608 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
609 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
|
610 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
611 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
|
612 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
|
613 |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
614 \\[normal-mode] |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
615 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
616 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
|
617 |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
618 \\[load-library] cperl-mode RET |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
619 \\[normal-mode] |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
620 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
621 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
|
622 micro-docs on what I know about CPerl problems.") |
20323 | 623 |
624 (defvar cperl-problems 'please-ignore-this-line | |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
625 "Some faces will not be shown on some versions of Emacs unless you |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
626 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
|
627 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
|
628 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
629 Emacs had a _very_ restricted syntax parsing engine until RMS's Emacs |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
630 20.1. Most problems below are corrected starting from this version of |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
631 Emacs, and all of them should go with (future) RMS's version 20.3. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
632 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
633 Note that even with newer Emacsen interaction of `font-lock' and |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
634 syntaxification is not cleaned up. You may get slightly different |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
635 colors basing on the order of fontification and syntaxification. This |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
636 might be corrected by setting `cperl-syntaxify-by-font-lock' to t, but |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
637 the corresponding code is still extremely buggy. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
638 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
639 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
|
640 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
|
641 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
|
642 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
|
643 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
|
644 braces. |
20323 | 645 |
646 This may be confusing, since the regexp s#//#/#\; may be highlighted | |
647 as a comment, but it will be recognized as a regexp by the indentation | |
648 code. Or the opposite case, when a pod section is highlighted, but | |
649 may break the indentation of the following code (though indentation | |
650 should work if the balance of delimiters is not broken by POD). | |
651 | |
652 The main trick (to make $ a \"backslash\") makes constructions like | |
653 ${aaa} look like unbalanced braces. The only trick I can think of is | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
654 to insert it as $ {aaa} (legal in perl5, not in perl4). |
20323 | 655 |
656 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
|
657 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
|
658 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
659 The solution is to upgrade your Emacs or patch an older one. Note |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
660 that RMS's 20.2 has some bugs related to `syntax-table' text |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
661 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
|
662 and on CPAN. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
663 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
664 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
|
665 environment and cannot recompile), you may still disable all the fancy stuff |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
666 via `cperl-use-syntax-table-text-property'." ) |
20323 | 667 |
668 (defvar cperl-non-problems 'please-ignore-this-line | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
669 "As you know from `problems' section, Perl syntax is too hard for CPerl on |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
670 older Emacsen. Here is what you can do if you cannot upgrade, or if |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
671 you want to switch off these capabilities on RMS Emacs 20.2 (+patches) or 20.3 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
672 or better. Please skip this docs if you run a capable Emacs already. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
673 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
674 Most of the time, if you write your own code, you may find an equivalent |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
675 \(and almost as readable) expression (what is discussed below is usually |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
676 not relevant on newer Emacsen, since they can do it automatically). |
20323 | 677 |
678 Try to help CPerl: add comments with embedded quotes to fix CPerl | |
679 misunderstandings about the end of quotation: | |
680 | |
681 $a='500$'; # '; | |
682 | |
683 You won't need it too often. The reason: $ \"quotes\" the following | |
684 character (this saves a life a lot of times in CPerl), thus due to | |
685 Emacs parsing rules it does not consider tick (i.e., ' ) after a | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
686 dollar as a closing one, but as a usual character. This is usually |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
687 correct, but not in the above context. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
688 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
689 Even with older Emacsen the indentation code is pretty wise. The only |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
690 drawback is that it relied on Emacs parsing to find matching |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
691 parentheses. And Emacs *could not* match parentheses in Perl 100% |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
692 correctly. So |
20323 | 693 1 if s#//#/#; |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
694 would not break indentation, but |
20323 | 695 1 if ( s#//#/# ); |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
696 would. Upgrade. |
20323 | 697 |
698 By similar reasons | |
699 s\"abc\"def\"; | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
700 would confuse CPerl a lot. |
20323 | 701 |
702 If you still get wrong indentation in situation that you think the | |
703 code should be able to parse, try: | |
704 | |
705 a) Check what Emacs thinks about balance of your parentheses. | |
706 b) Supply the code to me (IZ). | |
707 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
708 Pods were treated _very_ rudimentally. Here-documents were not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
709 treated at all (except highlighting and inhibiting indentation). Upgrade. |
20323 | 710 |
711 To speed up coloring the following compromises exist: | |
712 a) sub in $mypackage::sub may be highlighted. | |
713 b) -z in [a-z] may be highlighted. | |
714 c) if your regexp contains a keyword (like \"s\"), it may be highlighted. | |
715 | |
716 | |
717 Imenu in 19.31 is broken. Set `imenu-use-keymap-menu' to t, and remove | |
718 `car' before `imenu-choose-buffer-index' in `imenu'. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
719 `imenu-add-to-menubar' in 20.2 is broken. |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
720 |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
721 A lot of things on XEmacs may be broken too, judging by bug reports I |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
722 receive. Note that some releases of XEmacs are better than the others |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
723 as far as bugs reports I see are concerned.") |
20323 | 724 |
725 (defvar cperl-praise 'please-ignore-this-line | |
726 "RMS asked me to list good things about CPerl. Here they go: | |
727 | |
728 0) It uses the newest `syntax-table' property ;-); | |
729 | |
730 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
|
731 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
|
732 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
|
733 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
734 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
|
735 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
|
736 updates syntax assist hints when you edit your script. |
20323 | 737 |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
738 2) It is generally believed to be \"the most user-friendly Emacs |
20323 | 739 package\" whatever it may mean (I doubt that the people who say similar |
740 things tried _all_ the rest of Emacs ;-), but this was not a lonely | |
741 voice); | |
742 | |
743 3) Everything is customizable, one-by-one or in a big sweep; | |
744 | |
745 4) It has many easily-accessable \"tools\": | |
746 a) Can run program, check syntax, start debugger; | |
747 b) Can lineup vertically \"middles\" of rows, like `=' in | |
748 a = b; | |
749 cc = d; | |
750 c) Can insert spaces where this impoves readability (in one | |
751 interactive sweep over the buffer); | |
752 d) Has support for imenu, including: | |
753 1) Separate unordered list of \"interesting places\"; | |
754 2) Separate TOC of POD sections; | |
755 3) Separate list of packages; | |
756 4) Hierarchical view of methods in (sub)packages; | |
757 5) and functions (by the full name - with package); | |
758 e) Has an interface to INFO docs for Perl; The interface is | |
759 very flexible, including shrink-wrapping of | |
760 documentation buffer/frame; | |
761 f) Has a builtin list of one-line explanations for perl constructs. | |
762 g) Can show these explanations if you stay long enough at the | |
763 corresponding place (or on demand); | |
764 h) Has an enhanced fontification (using 3 or 4 additional faces | |
765 comparing to font-lock - basically, different | |
766 namespaces in Perl have different colors); | |
767 i) Can construct TAGS basing on its knowledge of Perl syntax, | |
768 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
|
769 TAGS (if \"by directory\", .xs files - with C-language |
20323 | 770 bindings - are included in the scan); |
771 j) Can build a hierarchical view of classes (via imenu) basing | |
772 on generated TAGS file; | |
773 k) Has electric parentheses, electric newlines, uses Abbrev | |
774 for electric logical constructs | |
775 while () {} | |
776 with different styles of expansion (context sensitive | |
777 to be not so bothering). Electric parentheses behave | |
778 \"as they should\" in a presence of a visible region. | |
779 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
|
780 m) Can convert from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
781 if (A) { B } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
782 to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
783 B if A; |
20323 | 784 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
785 n) Highlights (by user-choice) either 3-delimiters constructs |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
786 (such as tr/a/b/), or regular expressions and `y/tr'. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
787 o) Highlights trailing whitespace. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
788 |
20323 | 789 5) The indentation engine was very smart, but most of tricks may be |
790 not needed anymore with the support for `syntax-table' property. Has | |
791 progress indicator for indentation (with `imenu' loaded). | |
792 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
793 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
|
794 whitespace *inside* the conditional/loop constructs. |
20323 | 795 |
796 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
|
797 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
798 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
|
799 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
|
800 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
801 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
|
802 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
|
803 |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
804 10) Uses a linear-time algorith for indentation of regions (on Emaxen with |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
805 capable syntax engines). |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
806 ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
807 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
808 (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
|
809 "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
|
810 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
|
811 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
812 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
|
813 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
|
814 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
815 *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
|
816 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
|
817 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
|
818 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
|
819 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
|
820 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
821 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
|
822 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
|
823 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
|
824 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
825 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
|
826 PODs and HERE-documents), or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
827 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
|
828 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
|
829 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
830 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
|
831 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
832 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
|
833 `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
|
834 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
|
835 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
836 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
|
837 `cperl-pod-here-scan' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
838 to nil. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
839 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
840 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
|
841 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
842 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
|
843 `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
|
844 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
|
845 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
|
846 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
|
847 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
|
848 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
849 One can unset `cperl-syntaxify-unwind'. This might speed up editing |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
850 of, say, long POD sections. |
20323 | 851 ") |
852 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
853 (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
|
854 "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
|
855 |
32422 | 856 `cperl-array-face' Array names |
857 `cperl-hash-face' Hash names | |
858 `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
|
859 syntaxically to be not code |
32422 | 860 `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
|
861 2-arg operators s/y/tr/ or of RExen, |
32422 | 862 `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
|
863 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
|
864 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
|
865 (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
|
866 package names (when recognized), format names |
32422 | 867 `font-lock-keyword-face' Control flow switch constructs, declarators |
868 `cperl-nonoverridable-face' Non-overridable keywords, modifiers of RExen | |
869 `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
|
870 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
|
871 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
|
872 as string literals |
32422 | 873 `font-lock-type-face' Overridable keywords |
874 `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
|
875 hash names, POD headers/item names |
32422 | 876 `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
|
877 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
878 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
|
879 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
|
880 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
|
881 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
|
882 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
883 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
|
884 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
|
885 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
886 \(Not finished.)") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
887 |
20323 | 888 |
889 | |
890 ;;; Portability stuff: | |
891 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
892 (defconst cperl-xemacs-p (string-match "XEmacs\\|Lucid" emacs-version)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
893 |
20323 | 894 (defmacro cperl-define-key (emacs-key definition &optional xemacs-key) |
26455 | 895 `(define-key cperl-mode-map |
896 ,(if xemacs-key | |
897 `(if cperl-xemacs-p ,xemacs-key ,emacs-key) | |
898 emacs-key) | |
899 ,definition)) | |
20323 | 900 |
901 (defvar cperl-del-back-ch | |
902 (car (append (where-is-internal 'delete-backward-char) | |
903 (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
|
904 "Character generated by key bound to `delete-backward-char'.") |
20323 | 905 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
906 (and (vectorp cperl-del-back-ch) (= (length cperl-del-back-ch) 1) |
20323 | 907 (setq cperl-del-back-ch (aref cperl-del-back-ch 0))) |
908 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
909 (defun cperl-mark-active () (mark)) ; Avoid undefined warning |
20323 | 910 (if cperl-xemacs-p |
911 (progn | |
912 ;; "Active regions" are on: use region only if active | |
913 ;; "Active regions" are off: use region unconditionally | |
914 (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
|
915 (if zmacs-regions (mark) t))) |
20323 | 916 (defun cperl-use-region-p () |
917 (if transient-mark-mode mark-active t)) | |
918 (defun cperl-mark-active () mark-active)) | |
919 | |
920 (defsubst cperl-enable-font-lock () | |
921 (or cperl-xemacs-p window-system)) | |
922 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
923 (defun cperl-putback-char (c) ; Emacs 19 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
924 (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
|
925 |
20323 | 926 (if (boundp 'unread-command-events) |
927 (if cperl-xemacs-p | |
928 (defun cperl-putback-char (c) ; XEmacs >= 19.12 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
929 (setq unread-command-events (list (eval '(character-to-event c)))))) |
20323 | 930 (defun cperl-putback-char (c) ; XEmacs <= 19.11 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
931 (set 'unread-command-event (eval '(character-to-event c))))) ; Avoid warnings |
20323 | 932 |
933 (or (fboundp 'uncomment-region) | |
934 (defun uncomment-region (beg end) | |
935 (interactive "r") | |
936 (comment-region beg end -1))) | |
937 | |
938 (defvar cperl-do-not-fontify | |
939 (if (string< emacs-version "19.30") | |
940 'fontified | |
941 'lazy-lock) | |
942 "Text property which inhibits refontification.") | |
943 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
944 (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
|
945 ;; 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
|
946 (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
|
947 nil |
20323 | 948 (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
|
949 to cperl-do-not-fontify t))) |
20323 | 950 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
951 (defcustom cperl-mode-hook nil |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
952 "Hook run by `cperl-mode'." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
953 :type 'hook |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
954 :group 'cperl) |
20323 | 955 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
956 (defvar cperl-syntax-state nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
957 (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
|
958 (defvar cperl-emacs-can-parse (> (length (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
959 (parse-partial-sexp 1 1))) 9)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
960 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
961 ;; Make customization possible "in reverse" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
962 (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
|
963 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
964 ((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
|
965 (cperl-hairy (or hairy t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
966 (t (symbol-value symbol)))) |
20323 | 967 |
968 ;;; Probably it is too late to set these guys already, but it can help later: | |
969 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
970 ;;;(and cperl-clobber-mode-lists |
20323 | 971 ;;;(setq auto-mode-alist |
972 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist )) | |
973 ;;;(and (boundp 'interpreter-mode-alist) | |
974 ;;; (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
|
975 ;;; '(("miniperl" . perl-mode)))))) |
31821 | 976 (eval-when-compile |
977 (condition-case nil | |
978 (require 'imenu) | |
979 (error nil)) | |
980 (condition-case nil | |
981 (require 'easymenu) | |
982 (error nil)) | |
983 (condition-case nil | |
984 (require 'etags) | |
985 (error nil)) | |
986 (condition-case nil | |
987 (require 'timer) | |
988 (error nil)) | |
989 (condition-case nil | |
990 (require 'man) | |
991 (error nil)) | |
992 (condition-case nil | |
993 (require 'info) | |
994 (error nil)) | |
995 (if (fboundp 'ps-extend-face-list) | |
996 (defmacro cperl-ps-extend-face-list (arg) | |
997 `(ps-extend-face-list ,arg)) | |
998 (defmacro cperl-ps-extend-face-list (arg) | |
999 `(error "This version of Emacs has no `ps-extend-face-list'."))) | |
1000 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs, | |
1001 ;; macros instead of defsubsts don't work on Emacs, so we do the | |
1002 ;; expansion manually. Any other suggestions? | |
1003 (require 'cl)) | |
20323 | 1004 |
1005 (defvar cperl-mode-abbrev-table nil | |
1006 "Abbrev table in use in Cperl-mode buffers.") | |
1007 | |
1008 (add-hook 'edit-var-mode-alist '(perl-mode (regexp . "^cperl-"))) | |
1009 | |
1010 (defvar cperl-mode-map () "Keymap used in CPerl mode.") | |
1011 | |
1012 (if cperl-mode-map nil | |
1013 (setq cperl-mode-map (make-sparse-keymap)) | |
1014 (cperl-define-key "{" 'cperl-electric-lbrace) | |
1015 (cperl-define-key "[" 'cperl-electric-paren) | |
1016 (cperl-define-key "(" 'cperl-electric-paren) | |
1017 (cperl-define-key "<" 'cperl-electric-paren) | |
1018 (cperl-define-key "}" 'cperl-electric-brace) | |
1019 (cperl-define-key "]" 'cperl-electric-rparen) | |
1020 (cperl-define-key ")" 'cperl-electric-rparen) | |
1021 (cperl-define-key ";" 'cperl-electric-semi) | |
1022 (cperl-define-key ":" 'cperl-electric-terminator) | |
1023 (cperl-define-key "\C-j" 'newline-and-indent) | |
1024 (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
|
1025 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless) |
20323 | 1026 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline) |
1027 (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
|
1028 (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
|
1029 (cperl-define-key "\C-c\C-f" 'auto-fill-mode) |
20323 | 1030 (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
|
1031 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp) |
20323 | 1032 (cperl-define-key "\e\C-q" 'cperl-indent-exp) ; Usually not bound |
1033 (cperl-define-key [?\C-\M-\|] 'cperl-lineup | |
1034 [(control meta |)]) | |
1035 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
1036 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment) | |
1037 (cperl-define-key "\177" 'cperl-electric-backspace) | |
1038 (cperl-define-key "\t" 'cperl-indent-command) | |
1039 ;; 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
|
1040 (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
|
1041 [(control c) (control h) F]) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1042 (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
|
1043 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1044 (cperl-define-key "\C-hf" |
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) "f") ; does not work |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1046 'cperl-info-on-command |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1047 [(control h) f]) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1048 (cperl-define-key "\C-hv" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1049 ;;(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
|
1050 '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
|
1051 [(control h) v]) |
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-hf" |
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) "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
|
1054 (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
|
1055 [(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
|
1056 (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
|
1057 ;;(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
|
1058 (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
|
1059 [(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
|
1060 (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
|
1061 [(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
|
1062 (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
|
1063 ;;(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
|
1064 'cperl-get-help |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1065 [(control c) (control h) v])) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1066 (if (and cperl-xemacs-p |
20323 | 1067 (<= emacs-minor-version 11) (<= emacs-major-version 19)) |
1068 (progn | |
1069 ;; substitute-key-definition is usefulness-deenhanced... | |
1070 (cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
1071 (cperl-define-key "\e;" 'cperl-indent-for-comment) | |
1072 (cperl-define-key "\e\C-\\" 'cperl-indent-region)) | |
1073 (substitute-key-definition | |
1074 'indent-sexp 'cperl-indent-exp | |
1075 cperl-mode-map global-map) | |
1076 (substitute-key-definition | |
1077 'fill-paragraph 'cperl-fill-paragraph | |
1078 cperl-mode-map global-map) | |
1079 (substitute-key-definition | |
1080 'indent-region 'cperl-indent-region | |
1081 cperl-mode-map global-map) | |
1082 (substitute-key-definition | |
1083 'indent-for-comment 'cperl-indent-for-comment | |
1084 cperl-mode-map global-map))) | |
1085 | |
1086 (defvar cperl-menu) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1087 (defvar cperl-lazy-installed) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1088 (defvar cperl-old-style nil) |
20323 | 1089 (condition-case nil |
1090 (progn | |
1091 (require 'easymenu) | |
1092 (easy-menu-define cperl-menu cperl-mode-map "Menu for CPerl mode" | |
1093 '("Perl" | |
1094 ["Beginning of function" beginning-of-defun t] | |
1095 ["End of function" end-of-defun t] | |
1096 ["Mark function" mark-defun t] | |
1097 ["Indent expression" cperl-indent-exp t] | |
1098 ["Fill paragraph/comment" cperl-fill-paragraph t] | |
1099 "----" | |
1100 ["Line up a construction" cperl-lineup (cperl-use-region-p)] | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1101 ["Invert if/unless/while/until" cperl-invert-if-unless t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1102 ("Regexp" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1103 ["Beautify" cperl-beautify-regexp |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1104 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
|
1105 ["Beautify a group" cperl-beautify-level |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1106 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
|
1107 ["Contract a group" cperl-contract-level |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1108 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
|
1109 ["Contract groups" cperl-contract-levels |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1110 cperl-use-syntax-table-text-property]) |
20323 | 1111 ["Refresh \"hard\" constructions" cperl-find-pods-heres t] |
1112 "----" | |
1113 ["Indent region" cperl-indent-region (cperl-use-region-p)] | |
1114 ["Comment region" cperl-comment-region (cperl-use-region-p)] | |
1115 ["Uncomment region" cperl-uncomment-region (cperl-use-region-p)] | |
1116 "----" | |
1117 ["Run" mode-compile (fboundp 'mode-compile)] | |
1118 ["Kill" mode-compile-kill (and (fboundp 'mode-compile-kill) | |
1119 (get-buffer "*compilation*"))] | |
1120 ["Next error" next-error (get-buffer "*compilation*")] | |
1121 ["Check syntax" cperl-check-syntax (fboundp 'mode-compile)] | |
1122 "----" | |
1123 ["Debugger" cperl-db t] | |
1124 "----" | |
1125 ("Tools" | |
1126 ["Imenu" imenu (fboundp 'imenu)] | |
1127 ["Insert spaces if needed" cperl-find-bad-style t] | |
1128 ["Class Hierarchy from TAGS" cperl-tags-hier-init t] | |
1129 ;;["Update classes" (cperl-tags-hier-init t) tags-table-list] | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1130 ["CPerl pretty print (exprmntl)" cperl-ps-print |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1131 (fboundp 'ps-extend-face-list)] |
20323 | 1132 ["Imenu on info" cperl-imenu-on-info (featurep 'imenu)] |
1133 ("Tags" | |
1134 ;;; ["Create tags for current file" cperl-etags t] | |
1135 ;;; ["Add tags for current file" (cperl-etags t) t] | |
1136 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t] | |
1137 ;;; ["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
|
1138 ;;; ["Create tags for Perl files in (sub)directories" |
20323 | 1139 ;;; (cperl-etags nil 'recursive) t] |
1140 ;;; ["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
|
1141 ;;; (cperl-etags t 'recursive) t]) |
20323 | 1142 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer) |
1143 ["Create tags for current file" (cperl-write-tags nil t) t] | |
1144 ["Add tags for current file" (cperl-write-tags) t] | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1145 ["Create tags for Perl files in directory" |
20323 | 1146 (cperl-write-tags nil t nil t) t] |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1147 ["Add tags for Perl files in directory" |
20323 | 1148 (cperl-write-tags nil nil nil t) t] |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1149 ["Create tags for Perl files in (sub)directories" |
20323 | 1150 (cperl-write-tags nil t t t) t] |
1151 ["Add tags for Perl files in (sub)directories" | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1152 (cperl-write-tags nil nil t t) t])) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1153 ("Perl docs" |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1154 ["Define word at point" imenu-go-find-at-position |
20323 | 1155 (fboundp 'imenu-go-find-at-position)] |
1156 ["Help on function" cperl-info-on-command t] | |
1157 ["Help on function at point" cperl-info-on-current-command t] | |
1158 ["Help on symbol at point" cperl-get-help t] | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1159 ["Perldoc" cperl-perldoc t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1160 ["Perldoc on word at point" cperl-perldoc-at-point t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1161 ["View manpage of POD in this file" cperl-pod-to-manpage t] |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1162 ["Auto-help on" cperl-lazy-install |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1163 (and (fboundp 'run-with-idle-timer) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1164 (not cperl-lazy-installed))] |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1165 ["Auto-help off" (eval '(cperl-lazy-unstall)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1166 (and (fboundp 'run-with-idle-timer) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1167 cperl-lazy-installed)]) |
20323 | 1168 ("Toggle..." |
1169 ["Auto newline" cperl-toggle-auto-newline t] | |
1170 ["Electric parens" cperl-toggle-electric t] | |
1171 ["Electric keywords" cperl-toggle-abbrev t] | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1172 ["Fix whitespace on indent" cperl-toggle-construct-fix t] |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1173 ["Auto fill" auto-fill-mode t]) |
20323 | 1174 ("Indent styles..." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1175 ["CPerl" (cperl-set-style "CPerl") t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1176 ["PerlStyle" (cperl-set-style "PerlStyle") t] |
20323 | 1177 ["GNU" (cperl-set-style "GNU") t] |
1178 ["C++" (cperl-set-style "C++") t] | |
1179 ["FSF" (cperl-set-style "FSF") t] | |
1180 ["BSD" (cperl-set-style "BSD") t] | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1181 ["Whitesmith" (cperl-set-style "Whitesmith") t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1182 ["Current" (cperl-set-style "Current") t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1183 ["Memorized" (cperl-set-style-back) cperl-old-style]) |
20323 | 1184 ("Micro-docs" |
1185 ["Tips" (describe-variable 'cperl-tips) t] | |
1186 ["Problems" (describe-variable 'cperl-problems) t] | |
1187 ["Non-problems" (describe-variable 'cperl-non-problems) t] | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1188 ["Speed" (describe-variable 'cperl-speed) t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1189 ["Praise" (describe-variable 'cperl-praise) t] |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1190 ["Faces" (describe-variable 'cperl-tips-faces) t] |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1191 ["CPerl mode" (describe-function 'cperl-mode) t] |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1192 ["CPerl version" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1193 (message "The version of master-file for this CPerl is %s" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1194 cperl-version) t])))) |
20323 | 1195 (error nil)) |
1196 | |
1197 (autoload 'c-macro-expand "cmacexp" | |
1198 "Display the result of expanding all C macros occurring in the region. | |
1199 The expansion is entirely correct because it uses the C preprocessor." | |
1200 t) | |
1201 | |
1202 (defvar cperl-mode-syntax-table nil | |
1203 "Syntax table in use in Cperl-mode buffers.") | |
1204 | |
1205 (defvar cperl-string-syntax-table nil | |
1206 "Syntax table in use in Cperl-mode string-like chunks.") | |
1207 | |
1208 (if cperl-mode-syntax-table | |
1209 () | |
1210 (setq cperl-mode-syntax-table (make-syntax-table)) | |
1211 (modify-syntax-entry ?\\ "\\" cperl-mode-syntax-table) | |
1212 (modify-syntax-entry ?/ "." cperl-mode-syntax-table) | |
1213 (modify-syntax-entry ?* "." cperl-mode-syntax-table) | |
1214 (modify-syntax-entry ?+ "." cperl-mode-syntax-table) | |
1215 (modify-syntax-entry ?- "." cperl-mode-syntax-table) | |
1216 (modify-syntax-entry ?= "." cperl-mode-syntax-table) | |
1217 (modify-syntax-entry ?% "." cperl-mode-syntax-table) | |
1218 (modify-syntax-entry ?< "." cperl-mode-syntax-table) | |
1219 (modify-syntax-entry ?> "." cperl-mode-syntax-table) | |
1220 (modify-syntax-entry ?& "." cperl-mode-syntax-table) | |
1221 (modify-syntax-entry ?$ "\\" cperl-mode-syntax-table) | |
1222 (modify-syntax-entry ?\n ">" 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 (if cperl-under-as-char | |
1227 (modify-syntax-entry ?_ "w" cperl-mode-syntax-table)) | |
1228 (modify-syntax-entry ?: "_" cperl-mode-syntax-table) | |
1229 (modify-syntax-entry ?| "." cperl-mode-syntax-table) | |
1230 (setq cperl-string-syntax-table (copy-syntax-table cperl-mode-syntax-table)) | |
1231 (modify-syntax-entry ?$ "." cperl-string-syntax-table) | |
1232 (modify-syntax-entry ?# "." cperl-string-syntax-table) ; (?# comment ) | |
1233 ) | |
1234 | |
1235 | |
1236 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1237 (defvar cperl-faces-init nil) |
20323 | 1238 ;; Fix for msb.el |
1239 (defvar cperl-msb-fixed nil) | |
1240 ;;;###autoload | |
1241 (defun cperl-mode () | |
1242 "Major mode for editing Perl code. | |
1243 Expression and list commands understand all C brackets. | |
1244 Tab indents for Perl code. | |
1245 Paragraphs are separated by blank lines only. | |
1246 Delete converts tabs to spaces as it moves back. | |
1247 | |
1248 Various characters in Perl almost always come in pairs: {}, (), [], | |
1249 sometimes <>. When the user types the first, she gets the second as | |
1250 well, with optional special formatting done on {}. (Disabled by | |
1251 default.) You can always quote (with \\[quoted-insert]) the left | |
1252 \"paren\" to avoid the expansion. The processing of < is special, | |
1253 since most the time you mean \"less\". Cperl mode tries to guess | |
1254 whether you want to type pair <>, and inserts is if it | |
1255 appropriate. You can set `cperl-electric-parens-string' to the string that | |
1256 contains the parenths from the above list you want to be electrical. | |
1257 Electricity of parenths is controlled by `cperl-electric-parens'. | |
1258 You may also set `cperl-electric-parens-mark' to have electric parens | |
1259 look for active mark and \"embrace\" a region if possible.' | |
1260 | |
1261 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
|
1262 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1263 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
|
1264 for, foreach, formy and foreachmy. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1265 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1266 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
|
1267 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1268 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
|
1269 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
|
1270 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
|
1271 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
|
1272 } { } 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
|
1273 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
|
1274 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
|
1275 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
|
1276 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
|
1277 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1278 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
|
1279 |
20323 | 1280 bite if angry; |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1281 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1282 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
|
1283 `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
|
1284 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
|
1285 to nil.) |
20323 | 1286 |
1287 \\[cperl-linefeed] is a convenience replacement for typing carriage | |
1288 return. It places you in the next line with proper indentation, or if | |
1289 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
|
1290 |
20323 | 1291 foreach (@lines) {print; print} |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1292 |
20323 | 1293 and you are on a boundary of a statement inside braces, it will |
1294 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
|
1295 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
|
1296 `newline-and-indent' behaviour, it is on \\[newline-and-indent], |
20323 | 1297 see documentation on `cperl-electric-linefeed'. |
1298 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1299 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
|
1300 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1301 if (A) { B } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1302 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1303 into |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1304 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1305 B if A; |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1306 |
20323 | 1307 \\{cperl-mode-map} |
1308 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1309 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
|
1310 \(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
|
1311 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
|
1312 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
|
1313 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'), |
20323 | 1314 setting `cperl-electric-keywords' enables electric expansion of |
1315 control structures in CPerl. `cperl-electric-linefeed' governs which | |
1316 one of two linefeed behavior is preferable. You can enable all these | |
1317 options simultaneously (recommended mode of use) by setting | |
1318 `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
|
1319 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
|
1320 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
|
1321 consequent \\[cperl-electric-backspace]. |
20323 | 1322 |
1323 If your site has perl5 documentation in info format, you can use commands | |
1324 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it. | |
1325 These keys run commands `cperl-info-on-current-command' and | |
1326 `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
|
1327 `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
|
1328 \(in turn affected by `cperl-hairy'). |
20323 | 1329 |
1330 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
|
1331 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
|
1332 man via menu. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1333 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1334 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
|
1335 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
|
1336 `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
|
1337 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
|
1338 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'. |
20323 | 1339 |
1340 Use \\[cperl-lineup] to vertically lineup some construction - put the | |
1341 beginning of the region at the start of construction, and make region | |
1342 span the needed amount of lines. | |
1343 | |
1344 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify', | |
1345 `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
|
1346 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
|
1347 for indentation too, otherwise they are used for highlighting only. |
20323 | 1348 |
1349 Variables controlling indentation style: | |
1350 `cperl-tab-always-indent' | |
1351 Non-nil means TAB in CPerl mode should always reindent the current line, | |
1352 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
|
1353 `cperl-indent-left-aligned-comments' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1354 Non-nil means that the comment starting in leftmost column should indent. |
20323 | 1355 `cperl-auto-newline' |
1356 Non-nil means automatically newline before and after braces, | |
1357 and after colons and semicolons, inserted in Perl code. The following | |
1358 \\[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
|
1359 Insertion after colons requires both this variable and |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1360 `cperl-auto-newline-after-colon' set. |
20323 | 1361 `cperl-auto-newline-after-colon' |
1362 Non-nil means automatically newline even after colons. | |
1363 Subject to `cperl-auto-newline' setting. | |
1364 `cperl-indent-level' | |
1365 Indentation of Perl statements within surrounding block. | |
1366 The surrounding block's indentation is the indentation | |
1367 of the line on which the open-brace appears. | |
1368 `cperl-continued-statement-offset' | |
1369 Extra indentation given to a substatement, such as the | |
1370 then-clause of an if, or body of a while, or just a statement continuation. | |
1371 `cperl-continued-brace-offset' | |
1372 Extra indentation given to a brace that starts a substatement. | |
1373 This is in addition to `cperl-continued-statement-offset'. | |
1374 `cperl-brace-offset' | |
1375 Extra indentation for line if it starts with an open brace. | |
1376 `cperl-brace-imaginary-offset' | |
1377 An open brace following other text is treated as if it the line started | |
1378 this far to the right of the actual line indentation. | |
1379 `cperl-label-offset' | |
1380 Extra indentation for line that is a label. | |
1381 `cperl-min-label-indent' | |
1382 Minimal indentation for line that is a label. | |
1383 | |
1384 Settings for K&R and BSD indentation styles are | |
1385 `cperl-indent-level' 5 8 | |
1386 `cperl-continued-statement-offset' 5 8 | |
1387 `cperl-brace-offset' -5 -8 | |
1388 `cperl-label-offset' -5 -8 | |
1389 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1390 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
|
1391 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
|
1392 \\[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
|
1393 \(both available from menu). |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1394 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1395 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
|
1396 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
|
1397 `cperl-brace-offset'+`cperl-continued-statement-offset'. |
20323 | 1398 |
1399 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
|
1400 with no args. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1401 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1402 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
|
1403 or as help on variables `cperl-tips', `cperl-problems', |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1404 `cperl-non-problems', `cperl-praise', `cperl-speed'." |
20323 | 1405 (interactive) |
1406 (kill-all-local-variables) | |
1407 (use-local-map cperl-mode-map) | |
1408 (if (cperl-val 'cperl-electric-linefeed) | |
1409 (progn | |
1410 (local-set-key "\C-J" 'cperl-linefeed) | |
1411 (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
|
1412 (if (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1413 (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
|
1414 (cperl-val 'cperl-info-on-command-no-prompt)) |
20323 | 1415 (progn |
1416 ;; don't clobber the backspace binding: | |
1417 (cperl-define-key "\C-hf" 'cperl-info-on-current-command [(control h) f]) | |
1418 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command | |
1419 [(control c) (control h) f]))) | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1420 (setq major-mode 'cperl-mode) |
20323 | 1421 (setq mode-name "CPerl") |
1422 (if (not cperl-mode-abbrev-table) | |
1423 (let ((prev-a-c abbrevs-changed)) | |
1424 (define-abbrev-table 'cperl-mode-abbrev-table '( | |
1425 ("if" "if" cperl-electric-keyword 0) | |
1426 ("elsif" "elsif" cperl-electric-keyword 0) | |
1427 ("while" "while" cperl-electric-keyword 0) | |
1428 ("until" "until" cperl-electric-keyword 0) | |
1429 ("unless" "unless" cperl-electric-keyword 0) | |
1430 ("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
|
1431 ("continue" "continue" cperl-electric-else 0) |
20323 | 1432 ("for" "for" cperl-electric-keyword 0) |
1433 ("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
|
1434 ("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
|
1435 ("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
|
1436 ("do" "do" cperl-electric-keyword 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1437 ("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
|
1438 ("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
|
1439 ("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
|
1440 ("head2" "head2" cperl-electric-pod 0))) |
20323 | 1441 (setq abbrevs-changed prev-a-c))) |
1442 (setq local-abbrev-table cperl-mode-abbrev-table) | |
1443 (abbrev-mode (if (cperl-val 'cperl-electric-keywords) 1 0)) | |
1444 (set-syntax-table cperl-mode-syntax-table) | |
1445 (make-local-variable 'paragraph-start) | |
1446 (setq paragraph-start (concat "^$\\|" page-delimiter)) | |
1447 (make-local-variable 'paragraph-separate) | |
1448 (setq paragraph-separate paragraph-start) | |
1449 (make-local-variable 'paragraph-ignore-fill-prefix) | |
1450 (setq paragraph-ignore-fill-prefix t) | |
1451 (make-local-variable 'indent-line-function) | |
1452 (setq indent-line-function 'cperl-indent-line) | |
1453 (make-local-variable 'require-final-newline) | |
1454 (setq require-final-newline t) | |
1455 (make-local-variable 'comment-start) | |
1456 (setq comment-start "# ") | |
1457 (make-local-variable 'comment-end) | |
1458 (setq comment-end "") | |
1459 (make-local-variable 'comment-column) | |
1460 (setq comment-column cperl-comment-column) | |
1461 (make-local-variable 'comment-start-skip) | |
1462 (setq comment-start-skip "#+ *") | |
1463 (make-local-variable 'defun-prompt-regexp) | |
1464 (setq defun-prompt-regexp "^[ \t]*sub[ \t]+\\([^ \t\n{(;]+\\)[ \t]*") | |
1465 (make-local-variable 'comment-indent-function) | |
1466 (setq comment-indent-function 'cperl-comment-indent) | |
1467 (make-local-variable 'parse-sexp-ignore-comments) | |
1468 (setq parse-sexp-ignore-comments t) | |
1469 (make-local-variable 'indent-region-function) | |
1470 (setq indent-region-function 'cperl-indent-region) | |
1471 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off! | |
1472 (make-local-variable 'imenu-create-index-function) | |
1473 (setq imenu-create-index-function | |
31821 | 1474 (function cperl-imenu--create-perl-index)) |
20323 | 1475 (make-local-variable 'imenu-sort-function) |
1476 (setq imenu-sort-function nil) | |
1477 (make-local-variable 'vc-header-alist) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1478 (set 'vc-header-alist cperl-vc-header-alist) ; Avoid warning |
20323 | 1479 (make-local-variable 'font-lock-defaults) |
1480 (setq font-lock-defaults | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1481 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1482 ((string< emacs-version "19.30") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1483 '(perl-font-lock-keywords-2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1484 ((string< emacs-version "19.33") ; Which one to use? |
20323 | 1485 '((perl-font-lock-keywords |
1486 perl-font-lock-keywords-1 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1487 perl-font-lock-keywords-2))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1488 (t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1489 '((cperl-load-font-lock-keywords |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1490 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
|
1491 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
|
1492 (make-local-variable 'cperl-syntax-state) |
20323 | 1493 (if cperl-use-syntax-table-text-property |
1494 (progn | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1495 (make-local-variable 'parse-sexp-lookup-properties) |
20323 | 1496 ;; 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
|
1497 (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
|
1498 ;; Fix broken font-lock: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1499 (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
|
1500 (set 'font-lock-unfontify-region-function |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1501 '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
|
1502 (make-local-variable 'font-lock-unfontify-region-function) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1503 (set 'font-lock-unfontify-region-function |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1504 '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
|
1505 (make-local-variable 'cperl-syntax-done-to) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1506 ;; Another bug: unless font-lock-syntactic-keywords, font-lock |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1507 ;; ignores syntax-table text-property. (t) is a hack |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1508 ;; to make font-lock think that font-lock-syntactic-keywords |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1509 ;; are defined |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1510 (make-local-variable 'font-lock-syntactic-keywords) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1511 (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
|
1512 (if cperl-syntaxify-by-font-lock |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1513 '(t (cperl-fontify-syntaxically)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1514 '(t))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1515 (make-local-variable 'cperl-old-style) |
31821 | 1516 (set (make-local-variable 'normal-auto-fill-function) |
32880 | 1517 #'cperl-do-auto-fill) |
20323 | 1518 (if (cperl-enable-font-lock) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1519 (if (cperl-val 'cperl-font-lock) |
20323 | 1520 (progn (or cperl-faces-init (cperl-init-faces)) |
1521 (font-lock-mode 1)))) | |
1522 (and (boundp 'msb-menu-cond) | |
1523 (not cperl-msb-fixed) | |
1524 (cperl-msb-fix)) | |
1525 (if (featurep 'easymenu) | |
22392
7300e6ab99d2
(cperl-problems): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22391
diff
changeset
|
1526 (easy-menu-add cperl-menu)) ; A NOP in Emacs. |
20323 | 1527 (run-hooks 'cperl-mode-hook) |
1528 ;; After hooks since fontification will break this | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1529 (if cperl-pod-here-scan |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1530 (or ;;(and (boundp 'font-lock-mode) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1531 ;; (eval 'font-lock-mode) ; Avoid warning |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1532 ;; (boundp 'font-lock-hot-pass) ; Newer font-lock |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1533 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
|
1534 (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
|
1535 (cperl-find-pods-heres))))) |
20323 | 1536 |
1537 ;; Fix for perldb - make default reasonable | |
1538 (defun cperl-db () | |
1539 (interactive) | |
1540 (require 'gud) | |
1541 (perldb (read-from-minibuffer "Run perldb (like this): " | |
1542 (if (consp gud-perldb-history) | |
1543 (car gud-perldb-history) | |
1544 (concat "perl " ;;(file-name-nondirectory | |
1545 ;; I have problems | |
1546 ;; in OS/2 | |
1547 ;; otherwise | |
1548 (buffer-file-name))) | |
1549 nil nil | |
1550 '(gud-perldb-history . 1)))) | |
1551 | |
1552 (defun cperl-msb-fix () | |
1553 ;; Adds perl files to msb menu, supposes that msb is already loaded | |
1554 (setq cperl-msb-fixed t) | |
1555 (let* ((l (length msb-menu-cond)) | |
1556 (last (nth (1- l) msb-menu-cond)) | |
1557 (precdr (nthcdr (- l 2) msb-menu-cond)) ; cdr of this is last | |
1558 (handle (1- (nth 1 last)))) | |
1559 (setcdr precdr (list | |
1560 (list | |
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
1561 '(memq major-mode '(cperl-mode perl-mode)) |
20323 | 1562 handle |
1563 "Perl Files (%d)") | |
1564 last)))) | |
1565 | |
1566 ;; This is used by indent-for-comment | |
1567 ;; to decide how much to indent a comment in CPerl code | |
1568 ;; based on its context. Do fallback if comment is found wrong. | |
1569 | |
1570 (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
|
1571 (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
|
1572 (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
|
1573 (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
|
1574 (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
|
1575 (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
|
1576 (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
|
1577 |
20323 | 1578 |
1579 (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
|
1580 (let ((p (point)) (c (current-column)) was phony) |
20323 | 1581 (if (looking-at "^#") 0 ; Existing comment at bol stays there. |
1582 ;; Wrong comment found | |
1583 (save-excursion | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1584 (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
|
1585 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
|
1586 cperl-st-cfence)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1587 (if phony |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1588 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1589 (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
|
1590 (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
|
1591 (forward-char -1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1592 (setq was nil))) |
20323 | 1593 (if (= (point) p) |
1594 (progn | |
1595 (skip-chars-backward " \t") | |
1596 (max (1+ (current-column)) ; Else indent at comment column | |
1597 comment-column)) | |
1598 (if was nil | |
1599 (insert comment-start) | |
1600 (backward-char (length comment-start))) | |
1601 (setq cperl-wrong-comment t) | |
1602 (indent-to comment-column 1) ; Indent minimum 1 | |
1603 c))))) ; except leave at least one space. | |
1604 | |
1605 ;;;(defun cperl-comment-indent-fallback () | |
1606 ;;; "Is called if the standard comment-search procedure fails. | |
1607 ;;;Point is at start of real comment." | |
1608 ;;; (let ((c (current-column)) target cnt prevc) | |
1609 ;;; (if (= c comment-column) nil | |
1610 ;;; (setq cnt (skip-chars-backward "[ \t]")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1611 ;;; (setq target (max (1+ (setq prevc |
20323 | 1612 ;;; (current-column))) ; Else indent at comment column |
1613 ;;; comment-column)) | |
1614 ;;; (if (= c comment-column) nil | |
1615 ;;; (delete-backward-char cnt) | |
1616 ;;; (while (< prevc target) | |
1617 ;;; (insert "\t") | |
1618 ;;; (setq prevc (current-column))) | |
1619 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column)))) | |
1620 ;;; (while (< prevc target) | |
1621 ;;; (insert " ") | |
1622 ;;; (setq prevc (current-column))))))) | |
1623 | |
1624 (defun cperl-indent-for-comment () | |
1625 "Substitute for `indent-for-comment' in CPerl." | |
1626 (interactive) | |
1627 (let (cperl-wrong-comment) | |
1628 (indent-for-comment) | |
1629 (if cperl-wrong-comment | |
1630 (progn (cperl-to-comment-or-eol) | |
1631 (forward-char (length comment-start)))))) | |
1632 | |
1633 (defun cperl-comment-region (b e arg) | |
1634 "Comment or uncomment each line in the region in CPerl mode. | |
1635 See `comment-region'." | |
1636 (interactive "r\np") | |
1637 (let ((comment-start "#")) | |
1638 (comment-region b e arg))) | |
1639 | |
1640 (defun cperl-uncomment-region (b e arg) | |
1641 "Uncomment or comment each line in the region in CPerl mode. | |
1642 See `comment-region'." | |
1643 (interactive "r\np") | |
1644 (let ((comment-start "#")) | |
1645 (comment-region b e (- arg)))) | |
1646 | |
1647 (defvar cperl-brace-recursing nil) | |
1648 | |
1649 (defun cperl-electric-brace (arg &optional only-before) | |
1650 "Insert character and correct line's indentation. | |
1651 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the | |
1652 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
|
1653 char is \"{\", insert extra newline before only if |
20323 | 1654 `cperl-extra-newline-before-brace'." |
1655 (interactive "P") | |
1656 (let (insertpos | |
1657 (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
|
1658 (cperl-mark-active) |
20323 | 1659 (< (mark) (point))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1660 (mark) |
20323 | 1661 nil))) |
1662 (if (and other-end | |
1663 (not cperl-brace-recursing) | |
1664 (cperl-val 'cperl-electric-parens) | |
1665 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))) | |
1666 ;; Need to insert a matching pair | |
1667 (progn | |
1668 (save-excursion | |
1669 (setq insertpos (point-marker)) | |
1670 (goto-char other-end) | |
1671 (setq last-command-char ?\{) | |
1672 (cperl-electric-lbrace arg insertpos)) | |
1673 (forward-char 1)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1674 ;: Check whether we close something "usual" with `}' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1675 (if (and (eq last-command-char ?\}) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1676 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1677 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1678 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1679 (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
|
1680 ;;(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
|
1681 (cperl-after-expr-p nil "{;)")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1682 (error nil)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1683 ;; Just insert the guy |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1684 (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
|
1685 (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
|
1686 (eolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1687 (or (and (null only-before) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1688 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1689 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1690 (bolp))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1691 (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
|
1692 ;; 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
|
1693 ;; 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
|
1694 (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
|
1695 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1696 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1697 (eq (preceding-char) ?\)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1698 (if cperl-auto-newline |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1699 (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
|
1700 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1701 (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
|
1702 (cperl-indent-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1703 (if cperl-auto-newline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1704 (setq insertpos (1- (point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1705 (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
|
1706 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1707 (newline) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1708 (cperl-indent-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1709 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1710 (if insertpos (progn (goto-char insertpos) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1711 (search-forward (make-string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1712 1 last-command-char)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1713 (setq insertpos (1- (point))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1714 (delete-char -1)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1715 (if insertpos |
20323 | 1716 (save-excursion |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1717 (goto-char insertpos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1718 (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
|
1719 (self-insert-command (prefix-numeric-value arg))))))) |
20323 | 1720 |
1721 (defun cperl-electric-lbrace (arg &optional end) | |
1722 "Insert character, correct line's indentation, correct quoting by space." | |
1723 (interactive "P") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1724 (let (pos after |
20323 | 1725 (cperl-brace-recursing t) |
1726 (cperl-auto-newline cperl-auto-newline) | |
1727 (other-end (or end | |
1728 (if (and cperl-electric-parens-mark | |
1729 (cperl-mark-active) | |
1730 (> (mark) (point))) | |
1731 (save-excursion | |
1732 (goto-char (mark)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1733 (point-marker)) |
20323 | 1734 nil)))) |
1735 (and (cperl-val 'cperl-electric-lbrace-space) | |
1736 (eq (preceding-char) ?$) | |
1737 (save-excursion | |
1738 (skip-chars-backward "$") | |
1739 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)")) | |
1740 (insert ?\ )) | |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1741 ;; Check whether we are in comment |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1742 (if (and |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1743 (save-excursion |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1744 (beginning-of-line) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1745 (not (looking-at "[ \t]*#"))) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1746 (cperl-after-expr-p nil "{;)")) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1747 nil |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1748 (setq cperl-auto-newline nil)) |
20323 | 1749 (cperl-electric-brace arg) |
1750 (and (cperl-val 'cperl-electric-parens) | |
1751 (eq last-command-char ?{) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1752 (memq last-command-char |
20323 | 1753 (append cperl-electric-parens-string nil)) |
1754 (or (if other-end (goto-char (marker-position other-end))) | |
1755 t) | |
1756 (setq last-command-char ?} pos (point)) | |
1757 (progn (cperl-electric-brace arg t) | |
1758 (goto-char pos))))) | |
1759 | |
1760 (defun cperl-electric-paren (arg) | |
1761 "Insert a matching pair of parentheses." | |
1762 (interactive "P") | |
1763 (let ((beg (save-excursion (beginning-of-line) (point))) | |
1764 (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
|
1765 (cperl-mark-active) |
20323 | 1766 (> (mark) (point))) |
1767 (save-excursion | |
1768 (goto-char (mark)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1769 (point-marker)) |
20323 | 1770 nil))) |
1771 (if (and (cperl-val 'cperl-electric-parens) | |
1772 (memq last-command-char | |
1773 (append cperl-electric-parens-string nil)) | |
1774 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
1775 ;;(not (save-excursion (search-backward "#" beg t))) | |
1776 (if (eq last-command-char ?<) | |
1777 (progn | |
1778 (and abbrev-mode ; later it is too late, may be after `for' | |
1779 (expand-abbrev)) | |
1780 (cperl-after-expr-p nil "{;(,:=")) | |
1781 1)) | |
1782 (progn | |
1783 (self-insert-command (prefix-numeric-value arg)) | |
1784 (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
|
1785 (insert (make-string |
20323 | 1786 (prefix-numeric-value arg) |
1787 (cdr (assoc last-command-char '((?{ .?}) | |
1788 (?[ . ?]) | |
1789 (?( . ?)) | |
1790 (?< . ?>)))))) | |
1791 (forward-char (- (prefix-numeric-value arg)))) | |
1792 (self-insert-command (prefix-numeric-value arg))))) | |
1793 | |
1794 (defun cperl-electric-rparen (arg) | |
1795 "Insert a matching pair of parentheses if marking is active. | |
1796 If not, or if we are not at the end of marking range, would self-insert." | |
1797 (interactive "P") | |
1798 (let ((beg (save-excursion (beginning-of-line) (point))) | |
1799 (other-end (if (and cperl-electric-parens-mark | |
1800 (cperl-val 'cperl-electric-parens) | |
1801 (memq last-command-char | |
1802 (append cperl-electric-parens-string nil)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1803 (cperl-mark-active) |
20323 | 1804 (< (mark) (point))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1805 (mark) |
20323 | 1806 nil)) |
1807 p) | |
1808 (if (and other-end | |
1809 (cperl-val 'cperl-electric-parens) | |
1810 (memq last-command-char '( ?\) ?\] ?\} ?\> )) | |
1811 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
1812 ;;(not (save-excursion (search-backward "#" beg t))) | |
1813 ) | |
1814 (progn | |
1815 (self-insert-command (prefix-numeric-value arg)) | |
1816 (setq p (point)) | |
1817 (if other-end (goto-char other-end)) | |
1818 (insert (make-string | |
1819 (prefix-numeric-value arg) | |
1820 (cdr (assoc last-command-char '((?\} . ?\{) | |
1821 (?\] . ?\[) | |
1822 (?\) . ?\() | |
1823 (?\> . ?\<)))))) | |
1824 (goto-char (1+ p))) | |
1825 (self-insert-command (prefix-numeric-value arg))))) | |
1826 | |
1827 (defun cperl-electric-keyword () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1828 "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
|
1829 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
|
1830 to nil." |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1831 (let ((beg (save-excursion (beginning-of-line) (point))) |
20323 | 1832 (dollar (and (eq last-command-char ?$) |
1833 (eq this-command 'self-insert-command))) | |
1834 (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
|
1835 (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
|
1836 my do) |
20323 | 1837 (and (save-excursion |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1838 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1839 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1840 (backward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1841 (setq do (looking-at "do\\>"))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1842 (error nil)) |
20323 | 1843 (cperl-after-expr-p nil "{;:")) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1844 (save-excursion |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1845 (not |
20323 | 1846 (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
|
1847 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
20323 | 1848 beg t))) |
1849 (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
|
1850 (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1851 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1852 (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
|
1853 (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
|
1854 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1855 'pod)))))) |
20323 | 1856 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1857 (and (eq (preceding-char) ?y) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1858 (progn ; "foreachmy" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1859 (forward-char -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1860 (insert " ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1861 (forward-char 2) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1862 (setq my t dollar t |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1863 delete |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1864 (memq this-command '(self-insert-command newline))))) |
20323 | 1865 (and dollar (insert " $")) |
1866 (cperl-indent-line) | |
1867 ;;(insert " () {\n}") | |
1868 (cond | |
1869 (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
|
1870 (insert (if do "\n" " ()\n")) |
20323 | 1871 (insert "{") |
1872 (cperl-indent-line) | |
1873 (insert "\n") | |
1874 (cperl-indent-line) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1875 (insert "\n}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1876 (and do (insert " while ();"))) |
20323 | 1877 (t |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1878 (insert (if do " {\n} while ();" " () {\n}"))) |
20323 | 1879 ) |
1880 (or (looking-at "[ \t]\\|$") (insert " ")) | |
1881 (cperl-indent-line) | |
1882 (if dollar (progn (search-backward "$") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1883 (if my |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1884 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1885 (delete-char 1))) |
20323 | 1886 (search-backward ")")) |
1887 (if delete | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1888 (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
|
1889 (if cperl-message-electric-keyword |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1890 (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
|
1891 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1892 (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
|
1893 "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
|
1894 (or pos (setq pos (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1895 (if (looking-at "\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1896 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1897 (insert "\n")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1898 (if (> n 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1899 (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
|
1900 (goto-char pos))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1901 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1902 (defun cperl-electric-pod () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1903 "Insert a POD chunk appropriate after a =POD directive." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1904 (let ((delete (and (memq last-command-char '(?\ ?\n ?\t ?\f)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1905 (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
|
1906 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
|
1907 (and (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1908 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1909 (backward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1910 (error nil)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1911 (and |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1912 (eq (preceding-char) ?=) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1913 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1914 (setq head1 (looking-at "head1\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1915 (setq over (looking-at "over\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1916 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1917 (bolp)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1918 (or |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1919 (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
|
1920 (cperl-after-expr-p nil "{;:") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1921 (and (re-search-backward |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1922 "\\(\\`\n?\\|\n\n\\)=\\sw+" (point-min) t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1923 (not (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1924 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1925 (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
|
1926 (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
|
1927 'pod))))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1928 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1929 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1930 (setq notlast (search-forward "\n\n=" nil t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1931 (or notlast |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1932 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1933 (insert "\n\n=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1934 (cperl-ensure-newlines 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1935 (forward-sexp -2) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1936 (if (and head1 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1937 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1938 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1939 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1940 (re-search-backward "\\(\\`\n?\\|\n\n\\)=head1\\>" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1941 nil t)))) ; Only one |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1942 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1943 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1944 (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
|
1945 (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
|
1946 p (point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1947 (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
|
1948 " - \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
|
1949 "=head1 DESCRIPTION") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1950 (cperl-ensure-newlines 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1951 (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1952 (forward-sexp 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1953 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1954 (setq really-delete t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1955 (forward-sexp 1)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1956 (if over |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1957 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1958 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1959 (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
|
1960 "=back") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1961 (cperl-ensure-newlines 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1962 (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1963 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1964 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1965 (setq really-delete t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1966 (if (and delete really-delete) |
20323 | 1967 (cperl-putback-char cperl-del-back-ch)))))) |
1968 | |
1969 (defun cperl-electric-else () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1970 "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
|
1971 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
|
1972 to nil." |
20323 | 1973 (let ((beg (save-excursion (beginning-of-line) (point)))) |
1974 (and (save-excursion | |
1975 (backward-sexp 1) | |
1976 (cperl-after-expr-p nil "{;:")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1977 (save-excursion |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1978 (not |
20323 | 1979 (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
|
1980 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
20323 | 1981 beg t))) |
1982 (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
|
1983 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1984 (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
|
1985 (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
|
1986 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1987 'pod))))) |
20323 | 1988 (progn |
1989 (cperl-indent-line) | |
1990 ;;(insert " {\n\n}") | |
1991 (cond | |
1992 (cperl-extra-newline-before-brace | |
1993 (insert "\n") | |
1994 (insert "{") | |
1995 (cperl-indent-line) | |
1996 (insert "\n\n}")) | |
1997 (t | |
1998 (insert " {\n\n}")) | |
1999 ) | |
2000 (or (looking-at "[ \t]\\|$") (insert " ")) | |
2001 (cperl-indent-line) | |
2002 (forward-line -1) | |
2003 (cperl-indent-line) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2004 (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
|
2005 (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
|
2006 (if cperl-message-electric-keyword |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2007 (message "Precede char by C-q to avoid expansion")))))) |
20323 | 2008 |
2009 (defun cperl-linefeed () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2010 "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
|
2011 If in POD, insert appropriate lines." |
20323 | 2012 (interactive) |
2013 (let ((beg (save-excursion (beginning-of-line) (point))) | |
2014 (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
|
2015 (pos (point)) start over cut res) |
20323 | 2016 (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
|
2017 ; i.e., on a boundary and inside "{...}" |
20323 | 2018 (save-excursion (cperl-to-comment-or-eol) |
2019 (>= (point) pos)) ; Not in a comment | |
2020 (or (save-excursion | |
2021 (skip-chars-backward " \t" beg) | |
2022 (forward-char -1) | |
2023 (looking-at "[;{]")) ; After { or ; + spaces | |
2024 (looking-at "[ \t]*}") ; Before } | |
2025 (re-search-forward "\\=[ \t]*;" end t)) ; Before spaces + ; | |
2026 (save-excursion | |
2027 (and | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2028 (eq (car (parse-partial-sexp pos end -1)) -1) |
20323 | 2029 ; Leave the level of parens |
2030 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr | |
2031 ; Are at end | |
2032 (progn | |
2033 (backward-sexp 1) | |
2034 (setq start (point-marker)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2035 (<= start pos))))) ; Redundant? Are after the |
20323 | 2036 ; start of parens group. |
2037 (progn | |
2038 (skip-chars-backward " \t") | |
2039 (or (memq (preceding-char) (append ";{" nil)) | |
2040 (insert ";")) | |
2041 (insert "\n") | |
2042 (forward-line -1) | |
2043 (cperl-indent-line) | |
2044 (goto-char start) | |
2045 (or (looking-at "{[ \t]*$") ; If there is a statement | |
2046 ; before, move it to separate line | |
2047 (progn | |
2048 (forward-char 1) | |
2049 (insert "\n") | |
2050 (cperl-indent-line))) | |
2051 (forward-line 1) ; We are on the target line | |
2052 (cperl-indent-line) | |
2053 (beginning-of-line) | |
2054 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement | |
2055 ; after, move it to separate line | |
2056 (progn | |
2057 (end-of-line) | |
2058 (search-backward "}" beg) | |
2059 (skip-chars-backward " \t") | |
2060 (or (memq (preceding-char) (append ";{" nil)) | |
2061 (insert ";")) | |
2062 (insert "\n") | |
2063 (cperl-indent-line) | |
2064 (forward-line -1))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2065 (forward-line -1) ; We are on the line before target |
20323 | 2066 (end-of-line) |
2067 (newline-and-indent)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2068 (end-of-line) ; else - no splitting |
20323 | 2069 (cond |
2070 ((and (looking-at "\n[ \t]*{$") | |
2071 (save-excursion | |
2072 (skip-chars-backward " \t") | |
2073 (eq (preceding-char) ?\)))) ; Probably if () {} group | |
2074 ; with an extra newline. | |
2075 (forward-line 2) | |
2076 (cperl-indent-line)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2077 ((save-excursion ; In POD header |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2078 (forward-paragraph -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2079 ;; (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
|
2080 ;; 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
|
2081 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2082 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2083 (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
|
2084 (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
|
2085 t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2086 (if (and over |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2087 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2088 (forward-paragraph -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2089 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2090 (setq pos (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2091 (setq cut (buffer-substring (point) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2092 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2093 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2094 (point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2095 (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
|
2096 (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2097 (setq res (expand-abbrev)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2098 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2099 (goto-char pos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2100 (insert cut)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2101 res)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2102 nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2103 (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
|
2104 (forward-line 2))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2105 ((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
|
2106 (cperl-ensure-newlines 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2107 (forward-line 2)) |
20323 | 2108 ((looking-at "\n[ \t]*$") ; Next line is empty - use it. |
2109 (forward-line 1) | |
2110 (cperl-indent-line)) | |
2111 (t | |
2112 (newline-and-indent)))))) | |
2113 | |
2114 (defun cperl-electric-semi (arg) | |
2115 "Insert character and correct line's indentation." | |
2116 (interactive "P") | |
2117 (if cperl-auto-newline | |
2118 (cperl-electric-terminator arg) | |
2119 (self-insert-command (prefix-numeric-value arg)))) | |
2120 | |
2121 (defun cperl-electric-terminator (arg) | |
2122 "Insert character and correct line's indentation." | |
2123 (interactive "P") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2124 (let (insertpos (end (point)) |
20323 | 2125 (auto (and cperl-auto-newline |
2126 (or (not (eq last-command-char ?:)) | |
2127 cperl-auto-newline-after-colon)))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2128 (if (and ;;(not arg) |
20323 | 2129 (eolp) |
2130 (not (save-excursion | |
2131 (beginning-of-line) | |
2132 (skip-chars-forward " \t") | |
2133 (or | |
2134 ;; Ignore in comment lines | |
2135 (= (following-char) ?#) | |
2136 ;; Colon is special only after a label | |
2137 ;; So quickly rule out most other uses of colon | |
2138 ;; and do no indentation for them. | |
2139 (and (eq last-command-char ?:) | |
2140 (save-excursion | |
2141 (forward-word 1) | |
2142 (skip-chars-forward " \t") | |
2143 (and (< (point) end) | |
2144 (progn (goto-char (- end 1)) | |
2145 (not (looking-at ":")))))) | |
2146 (progn | |
2147 (beginning-of-defun) | |
2148 (let ((pps (parse-partial-sexp (point) end))) | |
2149 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))))) | |
2150 (progn | |
2151 (self-insert-command (prefix-numeric-value arg)) | |
2152 ;;(forward-char -1) | |
2153 (if auto (setq insertpos (point-marker))) | |
2154 ;;(forward-char 1) | |
2155 (cperl-indent-line) | |
2156 (if auto | |
2157 (progn | |
2158 (newline) | |
2159 (cperl-indent-line))) | |
2160 (save-excursion | |
2161 (if insertpos (goto-char (1- (marker-position insertpos))) | |
2162 (forward-char -1)) | |
2163 (delete-char 1)))) | |
2164 (if insertpos | |
2165 (save-excursion | |
2166 (goto-char insertpos) | |
2167 (self-insert-command (prefix-numeric-value arg))) | |
2168 (self-insert-command (prefix-numeric-value arg))))) | |
2169 | |
2170 (defun cperl-electric-backspace (arg) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2171 "Backspace-untabify, or remove the whitespace around the point inserted |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2172 by an electric key." |
20323 | 2173 (interactive "p") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2174 (if (and cperl-auto-newline |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2175 (memq last-command '(cperl-electric-semi |
20323 | 2176 cperl-electric-terminator |
2177 cperl-electric-lbrace)) | |
2178 (memq (preceding-char) '(?\ ?\t ?\n))) | |
2179 (let (p) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2180 (if (eq last-command 'cperl-electric-lbrace) |
20323 | 2181 (skip-chars-forward " \t\n")) |
2182 (setq p (point)) | |
2183 (skip-chars-backward " \t\n") | |
2184 (delete-region (point) p)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2185 (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
|
2186 ;; 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
|
2187 (setq this-command 'cperl-electric-else-really)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2188 (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
|
2189 (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
|
2190 (memq (preceding-char) '(?\ ?\t ?\n))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2191 (let (p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2192 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2193 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2194 (skip-chars-backward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2195 (delete-region (point) p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2196 (backward-delete-char-untabify arg)))) |
20323 | 2197 |
2198 (defun cperl-inside-parens-p () | |
2199 (condition-case () | |
2200 (save-excursion | |
2201 (save-restriction | |
2202 (narrow-to-region (point) | |
2203 (progn (beginning-of-defun) (point))) | |
2204 (goto-char (point-max)) | |
2205 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
2206 (error nil))) | |
2207 | |
2208 (defun cperl-indent-command (&optional whole-exp) | |
2209 "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
|
2210 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
|
2211 line. Otherwise, indent the current line only if point is at the left margin |
20323 | 2212 or in the line's indentation; otherwise insert a tab. |
2213 | |
2214 A numeric argument, regardless of its value, | |
2215 means indent rigidly all the lines of the expression starting after point | |
2216 so that this line becomes properly indented. | |
2217 The relative indentation among the lines of the expression are preserved." | |
2218 (interactive "P") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2219 (cperl-update-syntaxification (point) (point)) |
20323 | 2220 (if whole-exp |
2221 ;; If arg, always indent this line as Perl | |
2222 ;; and shift remaining lines of expression the same amount. | |
2223 (let ((shift-amt (cperl-indent-line)) | |
2224 beg end) | |
2225 (save-excursion | |
2226 (if cperl-tab-always-indent | |
2227 (beginning-of-line)) | |
2228 (setq beg (point)) | |
2229 (forward-sexp 1) | |
2230 (setq end (point)) | |
2231 (goto-char beg) | |
2232 (forward-line 1) | |
2233 (setq beg (point))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2234 (if (and shift-amt (> end beg)) |
20323 | 2235 (indent-code-rigidly beg end shift-amt "#"))) |
2236 (if (and (not cperl-tab-always-indent) | |
2237 (save-excursion | |
2238 (skip-chars-backward " \t") | |
2239 (not (bolp)))) | |
2240 (insert-tab) | |
2241 (cperl-indent-line)))) | |
2242 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2243 (defun cperl-indent-line (&optional parse-data) |
20323 | 2244 "Indent current line as Perl code. |
2245 Return the amount the indentation changed by." | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2246 (let (indent i beg shift-amt |
20323 | 2247 (case-fold-search nil) |
2248 (pos (- (point-max) (point)))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2249 (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
|
2250 i indent) |
20323 | 2251 (beginning-of-line) |
2252 (setq beg (point)) | |
2253 (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
|
2254 (setq indent (current-indentation) i nil)) |
20323 | 2255 ;;((eq indent t) ; Never? |
2256 ;; (setq indent (cperl-calculate-indent-within-comment))) | |
2257 ;;((looking-at "[ \t]*#") | |
2258 ;; (setq indent 0)) | |
2259 (t | |
2260 (skip-chars-forward " \t") | |
2261 (if (listp indent) (setq indent (car indent))) | |
2262 (cond ((looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]") | |
2263 (and (> indent 0) | |
2264 (setq indent (max cperl-min-label-indent | |
2265 (+ indent cperl-label-offset))))) | |
2266 ((= (following-char) ?}) | |
2267 (setq indent (- indent cperl-indent-level))) | |
2268 ((memq (following-char) '(?\) ?\])) ; To line up with opening paren. | |
2269 (setq indent (+ indent cperl-close-paren-offset))) | |
2270 ((= (following-char) ?{) | |
2271 (setq indent (+ indent cperl-brace-offset)))))) | |
2272 (skip-chars-forward " \t") | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2273 (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
|
2274 (if (or (not shift-amt) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2275 (zerop shift-amt)) |
20323 | 2276 (if (> (- (point-max) pos) (point)) |
2277 (goto-char (- (point-max) pos))) | |
2278 (delete-region beg (point)) | |
2279 (indent-to indent) | |
2280 ;; If initial point was within line's indentation, | |
2281 ;; position after the indentation. Else stay at same point in text. | |
2282 (if (> (- (point-max) pos) (point)) | |
2283 (goto-char (- (point-max) pos)))) | |
2284 shift-amt)) | |
2285 | |
2286 (defun cperl-after-label () | |
2287 ;; Returns true if the point is after label. Does not do save-excursion. | |
2288 (and (eq (preceding-char) ?:) | |
2289 (memq (char-syntax (char-after (- (point) 2))) | |
2290 '(?w ?_)) | |
2291 (progn | |
2292 (backward-sexp) | |
2293 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]")))) | |
2294 | |
2295 (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
|
2296 ;; 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
|
2297 ;; 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
|
2298 ;; 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
|
2299 ;; 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
|
2300 ;; 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
|
2301 ;; which contains START. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2302 ;; PRESTART is the position basing on which START was found. |
20323 | 2303 (save-excursion |
2304 (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
|
2305 (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
|
2306 (<= parse-start start-point)) |
20323 | 2307 (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
|
2308 (beginning-of-defun) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2309 (setq start-state nil)) |
20323 | 2310 (setq prestart (point)) |
2311 (if start-state nil | |
2312 ;; Try to go out, if sub is not on the outermost level | |
2313 (while (< (point) start-point) | |
2314 (setq start (point) parse-start start depth nil | |
2315 state (parse-partial-sexp start start-point -1)) | |
2316 (if (> (car state) -1) nil | |
2317 ;; The current line could start like }}}, so the indentation | |
2318 ;; corresponds to a different level than what we reached | |
2319 (setq depth t) | |
2320 (beginning-of-line 2))) ; Go to the next line. | |
2321 (if start (goto-char start))) ; Not at the start of file | |
2322 (setq start (point)) | |
2323 (or state (setq state (parse-partial-sexp start start-point -1 nil start-state))) | |
2324 (list start state depth prestart)))) | |
2325 | |
2326 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" ! | |
2327 ;; Positions is before ?\{. Checks whether it starts a block. | |
2328 ;; No save-excursion! | |
2329 (cperl-backward-to-noncomment (point-min)) | |
2330 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp | |
2331 ; Label may be mixed up with `$blah :' | |
2332 (save-excursion (cperl-after-label)) | |
2333 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
2334 (progn | |
2335 (backward-sexp) | |
2336 ;; Need take into account `bless', `return', `tr',... | |
2337 (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
|
2338 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>"))) |
20323 | 2339 (progn |
2340 (skip-chars-backward " \t\n\f") | |
2341 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
2342 (progn | |
2343 (backward-sexp) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2344 (looking-at |
20323 | 2345 "sub[ \t]+[a-zA-Z0-9_:]+[ \t\n\f]*\\(([^()]*)[ \t\n\f]*\\)?[#{]"))))))))) |
2346 | |
2347 (defvar cperl-look-for-prop '((pod in-pod) (here-doc-delim here-doc-group))) | |
2348 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2349 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start |
20323 | 2350 "Return appropriate indentation for current line as Perl code. |
2351 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
|
2352 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
|
2353 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2354 Will not correct the indentation for labels, but will correct it for braces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2355 and closing parentheses and brackets.." |
20323 | 2356 (save-excursion |
2357 (if (or | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2358 (memq (get-text-property (point) 'syntax-type) |
20323 | 2359 '(pod here-doc here-doc-delim format)) |
2360 ;; before start of POD - whitespace found since do not have 'pod! | |
2361 (and (looking-at "[ \t]*\n=") | |
2362 (error "Spaces before pod section!")) | |
2363 (and (not cperl-indent-left-aligned-comments) | |
2364 (looking-at "^#"))) | |
2365 nil | |
2366 (beginning-of-line) | |
2367 (let ((indent-point (point)) | |
2368 (char-after (save-excursion | |
2369 (skip-chars-forward " \t") | |
2370 (following-char))) | |
2371 (in-pod (get-text-property (point) 'in-pod)) | |
2372 (pre-indent-point (point)) | |
2373 p prop look-prop) | |
2374 (cond | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2375 (in-pod |
20323 | 2376 ;; In the verbatim part, probably code example. What to do??? |
2377 ) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2378 (t |
20323 | 2379 (save-excursion |
2380 ;; Not in pod | |
2381 (cperl-backward-to-noncomment nil) | |
2382 (setq p (max (point-min) (1- (point))) | |
2383 prop (get-text-property p 'syntax-type) | |
2384 look-prop (or (nth 1 (assoc prop cperl-look-for-prop)) | |
2385 'syntax-type)) | |
2386 (if (memq prop '(pod here-doc format here-doc-delim)) | |
2387 (progn | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2388 (goto-char (or (previous-single-property-change p look-prop) |
20323 | 2389 (point-min))) |
2390 (beginning-of-line) | |
2391 (setq pre-indent-point (point))))))) | |
2392 (goto-char pre-indent-point) | |
2393 (let* ((case-fold-search nil) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2394 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2395 (start (or (nth 2 parse-data) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2396 (nth 0 s-s))) |
20323 | 2397 (state (nth 1 s-s)) |
2398 (containing-sexp (car (cdr state))) | |
2399 old-indent) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2400 (if (and |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2401 ;;containing-sexp ;; We are buggy at toplevel :-( |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2402 parse-data) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2403 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2404 (setcar parse-data pre-indent-point) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2405 (setcar (cdr parse-data) state) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2406 (or (nth 2 parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2407 (setcar (cddr parse-data) start)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2408 ;; Before this point: end of statement |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2409 (setq old-indent (nth 3 parse-data)))) |
20323 | 2410 ;; (or parse-start (null symbol) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2411 ;; (setq parse-start (symbol-value symbol) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2412 ;; start-indent (nth 2 parse-start) |
20323 | 2413 ;; parse-start (car parse-start))) |
2414 ;; (if parse-start | |
2415 ;; (goto-char parse-start) | |
2416 ;; (beginning-of-defun)) | |
2417 ;; ;; Try to go out | |
2418 ;; (while (< (point) indent-point) | |
2419 ;; (setq start (point) parse-start start moved nil | |
2420 ;; state (parse-partial-sexp start indent-point -1)) | |
2421 ;; (if (> (car state) -1) nil | |
2422 ;; ;; The current line could start like }}}, so the indentation | |
2423 ;; ;; corresponds to a different level than what we reached | |
2424 ;; (setq moved t) | |
2425 ;; (beginning-of-line 2))) ; Go to the next line. | |
2426 ;; (if start ; Not at the start of file | |
2427 ;; (progn | |
2428 ;; (goto-char start) | |
2429 ;; (setq start-indent (current-indentation)) | |
2430 ;; (if moved ; Should correct... | |
2431 ;; (setq start-indent (- start-indent cperl-indent-level)))) | |
2432 ;; (setq start-indent 0)) | |
2433 ;; (if (< (point) indent-point) (setq parse-start (point))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2434 ;; (or state (setq state (parse-partial-sexp |
20323 | 2435 ;; (point) indent-point -1 nil start-state))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2436 ;; (setq containing-sexp |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2437 ;; (or (car (cdr state)) |
20323 | 2438 ;; (and (>= (nth 6 state) 0) old-containing-sexp)) |
2439 ;; old-containing-sexp nil start-state nil) | |
2440 ;;;; (while (< (point) indent-point) | |
2441 ;;;; (setq parse-start (point)) | |
2442 ;;;; (setq state (parse-partial-sexp (point) indent-point -1 nil start-state)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2443 ;;;; (setq containing-sexp |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2444 ;;;; (or (car (cdr state)) |
20323 | 2445 ;;;; (and (>= (nth 6 state) 0) old-containing-sexp)) |
2446 ;;;; old-containing-sexp nil start-state nil)) | |
2447 ;; (if symbol (set symbol (list indent-point state start-indent))) | |
2448 ;; (goto-char indent-point) | |
2449 (cond ((or (nth 3 state) (nth 4 state)) | |
2450 ;; return nil or t if should not change this line | |
2451 (nth 4 state)) | |
2452 ((null containing-sexp) | |
2453 ;; Line is at top level. May be data or function definition, | |
2454 ;; or may be function argument declaration. | |
2455 ;; Indent like the previous top level line | |
2456 ;; unless that ends in a closeparen without semicolon, | |
2457 ;; in which case this line is the first argument decl. | |
2458 (skip-chars-forward " \t") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2459 (+ (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2460 (goto-char start) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2461 (- (current-indentation) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2462 (if (nth 2 s-s) cperl-indent-level 0))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2463 (if (= char-after ?{) cperl-continued-brace-offset 0) |
20323 | 2464 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2465 (cperl-backward-to-noncomment (or old-indent (point-min))) |
20323 | 2466 ;; Look at previous line that's at column 0 |
2467 ;; to determine whether we are in top-level decls | |
2468 ;; or function's arg decls. Set basic-indent accordingly. | |
2469 ;; Now add a little if this is a continuation line. | |
2470 (if (or (bobp) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2471 (eq (point) old-indent) ; old-indent was at comment |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2472 (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2473 ;; Had ?\) too |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2474 (and (eq (preceding-char) ?\}) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2475 (cperl-after-block-and-statement-beg |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2476 (point-min))) ; Was start - too close |
20323 | 2477 (memq char-after (append ")]}" nil)) |
2478 (and (eq (preceding-char) ?\:) ; label | |
2479 (progn | |
2480 (forward-sexp -1) | |
2481 (skip-chars-backward " \t") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2482 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:")))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2483 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2484 (if (and parse-data |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2485 (not (eq char-after ?\C-j))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2486 (setcdr (cddr parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2487 (list pre-indent-point))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2488 0) |
20323 | 2489 cperl-continued-statement-offset)))) |
2490 ((/= (char-after containing-sexp) ?{) | |
2491 ;; line is expression, not statement: | |
2492 ;; indent to just after the surrounding open, | |
2493 ;; skip blanks if we do not close the expression. | |
2494 (goto-char (1+ containing-sexp)) | |
2495 (or (memq char-after (append ")]}" nil)) | |
2496 (looking-at "[ \t]*\\(#\\|$\\)") | |
2497 (skip-chars-forward " \t")) | |
2498 (current-column)) | |
2499 ((progn | |
2500 ;; Containing-expr starts with \{. Check whether it is a hash. | |
2501 (goto-char containing-sexp) | |
2502 (not (cperl-block-p))) | |
2503 (goto-char (1+ containing-sexp)) | |
2504 (or (eq char-after ?\}) | |
2505 (looking-at "[ \t]*\\(#\\|$\\)") | |
2506 (skip-chars-forward " \t")) | |
2507 (+ (current-column) ; Correct indentation of trailing ?\} | |
2508 (if (eq char-after ?\}) (+ cperl-indent-level | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2509 cperl-close-paren-offset) |
20323 | 2510 0))) |
2511 (t | |
2512 ;; Statement level. Is it a continuation or a new statement? | |
2513 ;; Find previous non-comment character. | |
2514 (goto-char pre-indent-point) | |
2515 (cperl-backward-to-noncomment containing-sexp) | |
2516 ;; Back up over label lines, since they don't | |
2517 ;; affect whether our line is a continuation. | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2518 ;; (Had \, too) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2519 (while ;;(or (eq (preceding-char) ?\,) |
20323 | 2520 (and (eq (preceding-char) ?:) |
2521 (or;;(eq (char-after (- (point) 2)) ?\') ; ???? | |
2522 (memq (char-syntax (char-after (- (point) 2))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2523 '(?w ?_)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2524 ;;) |
20323 | 2525 (if (eq (preceding-char) ?\,) |
2526 ;; Will go to beginning of line, essentially. | |
2527 ;; Will ignore embedded sexpr XXXX. | |
2528 (cperl-backward-to-start-of-continued-exp containing-sexp)) | |
2529 (beginning-of-line) | |
2530 (cperl-backward-to-noncomment containing-sexp)) | |
2531 ;; Now we get the answer. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2532 ;; Had \?, too: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2533 (if (not (or (memq (preceding-char) (append " ;{" '(nil))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2534 (and (eq (preceding-char) ?\}) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2535 (cperl-after-block-and-statement-beg |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2536 containing-sexp)))) ; Was ?\, |
20323 | 2537 ;; This line is continuation of preceding line's statement; |
2538 ;; indent `cperl-continued-statement-offset' more than the | |
2539 ;; previous line of the statement. | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2540 ;; |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2541 ;; There might be a label on this line, just |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2542 ;; consider it bad style and ignore it. |
20323 | 2543 (progn |
2544 (cperl-backward-to-start-of-continued-exp containing-sexp) | |
2545 (+ (if (memq char-after (append "}])" nil)) | |
2546 0 ; Closing parenth | |
2547 cperl-continued-statement-offset) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2548 (if (looking-at "\\w+[ \t]*:") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2549 (if (> (current-indentation) cperl-min-label-indent) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2550 (- (current-indentation) cperl-label-offset) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2551 ;; Do not move `parse-data', this should |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2552 ;; be quick anyway (this comment comes |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2553 ;;from different location): |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2554 (cperl-calculate-indent)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2555 (current-column)) |
20323 | 2556 (if (eq char-after ?\{) |
2557 cperl-continued-brace-offset 0))) | |
2558 ;; This line starts a new statement. | |
2559 ;; Position following last unclosed open. | |
2560 (goto-char containing-sexp) | |
2561 ;; Is line first statement after an open-brace? | |
2562 (or | |
2563 ;; If no, find that first statement and indent like | |
2564 ;; it. If the first statement begins with label, do | |
2565 ;; not believe when the indentation of the label is too | |
2566 ;; small. | |
2567 (save-excursion | |
2568 (forward-char 1) | |
2569 (setq old-indent (current-indentation)) | |
2570 (let ((colon-line-end 0)) | |
2571 (while (progn (skip-chars-forward " \t\n") | |
2572 (looking-at "#\\|[a-zA-Z0-9_$]*:[^:]")) | |
2573 ;; Skip over comments and labels following openbrace. | |
2574 (cond ((= (following-char) ?\#) | |
2575 (forward-line 1)) | |
2576 ;; label: | |
2577 (t | |
2578 (save-excursion (end-of-line) | |
2579 (setq colon-line-end (point))) | |
2580 (search-forward ":")))) | |
2581 ;; The first following code counts | |
2582 ;; if it is before the line we want to indent. | |
2583 (and (< (point) indent-point) | |
2584 (if (> colon-line-end (point)) ; After label | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2585 (if (> (current-indentation) |
20323 | 2586 cperl-min-label-indent) |
2587 (- (current-indentation) cperl-label-offset) | |
2588 ;; Do not believe: `max' is involved | |
2589 (+ old-indent cperl-indent-level)) | |
2590 (current-column))))) | |
2591 ;; If no previous statement, | |
2592 ;; indent it relative to line brace is on. | |
2593 ;; For open brace in column zero, don't let statement | |
2594 ;; start there too. If cperl-indent-level is zero, | |
2595 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. | |
2596 ;; For open-braces not the first thing in a line, | |
2597 ;; add in cperl-brace-imaginary-offset. | |
2598 | |
2599 ;; If first thing on a line: ????? | |
2600 (+ (if (and (bolp) (zerop cperl-indent-level)) | |
2601 (+ cperl-brace-offset cperl-continued-statement-offset) | |
2602 cperl-indent-level) | |
2603 ;; Move back over whitespace before the openbrace. | |
2604 ;; If openbrace is not first nonwhite thing on the line, | |
2605 ;; add the cperl-brace-imaginary-offset. | |
2606 (progn (skip-chars-backward " \t") | |
2607 (if (bolp) 0 cperl-brace-imaginary-offset)) | |
2608 ;; If the openbrace is preceded by a parenthesized exp, | |
2609 ;; move to the beginning of that; | |
2610 ;; possibly a different line | |
2611 (progn | |
2612 (if (eq (preceding-char) ?\)) | |
2613 (forward-sexp -1)) | |
2614 ;; In the case it starts a subroutine, indent with | |
2615 ;; respect to `sub', not with respect to the the | |
2616 ;; first thing on the line, say in the case of | |
2617 ;; anonymous sub in a hash. | |
2618 ;; | |
2619 (skip-chars-backward " \t") | |
2620 (if (and (eq (preceding-char) ?b) | |
2621 (progn | |
2622 (forward-sexp -1) | |
2623 (looking-at "sub\\>")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2624 (setq old-indent |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2625 (nth 1 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2626 (parse-partial-sexp |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2627 (save-excursion (beginning-of-line) (point)) |
20323 | 2628 (point))))) |
2629 (progn (goto-char (1+ old-indent)) | |
2630 (skip-chars-forward " \t") | |
2631 (current-column)) | |
2632 ;; Get initial indentation of the line we are on. | |
2633 ;; If line starts with label, calculate label indentation | |
2634 (if (save-excursion | |
2635 (beginning-of-line) | |
2636 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) | |
2637 (if (> (current-indentation) cperl-min-label-indent) | |
2638 (- (current-indentation) cperl-label-offset) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2639 ;; Do not move `parse-data', this should |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2640 ;; be quick anyway: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2641 (cperl-calculate-indent)) |
20323 | 2642 (current-indentation)))))))))))))) |
2643 | |
2644 (defvar cperl-indent-alist | |
2645 '((string nil) | |
2646 (comment nil) | |
2647 (toplevel 0) | |
2648 (toplevel-after-parenth 2) | |
2649 (toplevel-continued 2) | |
2650 (expression 1)) | |
2651 "Alist of indentation rules for CPerl mode. | |
2652 The values mean: | |
2653 nil: do not indent; | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2654 number: add this amount of indentation. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2655 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2656 Not finished, not used.") |
20323 | 2657 |
2658 (defun cperl-where-am-i (&optional parse-start start-state) | |
2659 ;; Unfinished | |
2660 "Return a list of lists ((TYPE POS)...) of good points before the point. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2661 POS may be nil if it is hard to find, say, when TYPE is `string' or `comment'. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2662 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2663 Not finished, not used." |
20323 | 2664 (save-excursion |
2665 (let* ((start-point (point)) | |
2666 (s-s (cperl-get-state)) | |
2667 (start (nth 0 s-s)) | |
2668 (state (nth 1 s-s)) | |
2669 (prestart (nth 3 s-s)) | |
2670 (containing-sexp (car (cdr state))) | |
2671 (case-fold-search nil) | |
2672 (res (list (list 'parse-start start) (list 'parse-prestart prestart)))) | |
2673 (cond ((nth 3 state) ; In string | |
2674 (setq res (cons (list 'string nil (nth 3 state)) res))) ; What started string | |
2675 ((nth 4 state) ; In comment | |
2676 (setq res (cons '(comment) res))) | |
2677 ((null containing-sexp) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2678 ;; Line is at top level. |
20323 | 2679 ;; Indent like the previous top level line |
2680 ;; unless that ends in a closeparen without semicolon, | |
2681 ;; in which case this line is the first argument decl. | |
2682 (cperl-backward-to-noncomment (or parse-start (point-min))) | |
2683 ;;(skip-chars-backward " \t\f\n") | |
2684 (cond | |
2685 ((or (bobp) | |
2686 (memq (preceding-char) (append ";}" nil))) | |
2687 (setq res (cons (list 'toplevel start) res))) | |
2688 ((eq (preceding-char) ?\) ) | |
2689 (setq res (cons (list 'toplevel-after-parenth start) res))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2690 (t |
20323 | 2691 (setq res (cons (list 'toplevel-continued start) res))))) |
2692 ((/= (char-after containing-sexp) ?{) | |
2693 ;; line is expression, not statement: | |
2694 ;; indent to just after the surrounding open. | |
2695 ;; skip blanks if we do not close the expression. | |
2696 (setq res (cons (list 'expression-blanks | |
2697 (progn | |
2698 (goto-char (1+ containing-sexp)) | |
2699 (or (looking-at "[ \t]*\\(#\\|$\\)") | |
2700 (skip-chars-forward " \t")) | |
2701 (point))) | |
2702 (cons (list 'expression containing-sexp) res)))) | |
2703 ((progn | |
2704 ;; Containing-expr starts with \{. Check whether it is a hash. | |
2705 (goto-char containing-sexp) | |
2706 (not (cperl-block-p))) | |
2707 (setq res (cons (list 'expression-blanks | |
2708 (progn | |
2709 (goto-char (1+ containing-sexp)) | |
2710 (or (looking-at "[ \t]*\\(#\\|$\\)") | |
2711 (skip-chars-forward " \t")) | |
2712 (point))) | |
2713 (cons (list 'expression containing-sexp) res)))) | |
2714 (t | |
2715 ;; Statement level. | |
2716 (setq res (cons (list 'in-block containing-sexp) res)) | |
2717 ;; Is it a continuation or a new statement? | |
2718 ;; Find previous non-comment character. | |
2719 (cperl-backward-to-noncomment containing-sexp) | |
2720 ;; Back up over label lines, since they don't | |
2721 ;; affect whether our line is a continuation. | |
2722 ;; Back up comma-delimited lines too ????? | |
2723 (while (or (eq (preceding-char) ?\,) | |
2724 (save-excursion (cperl-after-label))) | |
2725 (if (eq (preceding-char) ?\,) | |
2726 ;; Will go to beginning of line, essentially | |
2727 ;; Will ignore embedded sexpr XXXX. | |
2728 (cperl-backward-to-start-of-continued-exp containing-sexp)) | |
2729 (beginning-of-line) | |
2730 (cperl-backward-to-noncomment containing-sexp)) | |
2731 ;; Now we get the answer. | |
2732 (if (not (memq (preceding-char) (append ";}{" '(nil)))) ; Was ?\, | |
2733 ;; This line is continuation of preceding line's statement. | |
2734 (list (list 'statement-continued containing-sexp)) | |
2735 ;; This line starts a new statement. | |
2736 ;; Position following last unclosed open. | |
2737 (goto-char containing-sexp) | |
2738 ;; Is line first statement after an open-brace? | |
2739 (or | |
2740 ;; If no, find that first statement and indent like | |
2741 ;; it. If the first statement begins with label, do | |
2742 ;; not believe when the indentation of the label is too | |
2743 ;; small. | |
2744 (save-excursion | |
2745 (forward-char 1) | |
2746 (let ((colon-line-end 0)) | |
2747 (while (progn (skip-chars-forward " \t\n" start-point) | |
2748 (and (< (point) start-point) | |
2749 (looking-at | |
2750 "#\\|[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))) | |
2751 ;; Skip over comments and labels following openbrace. | |
2752 (cond ((= (following-char) ?\#) | |
2753 ;;(forward-line 1) | |
2754 (end-of-line)) | |
2755 ;; label: | |
2756 (t | |
2757 (save-excursion (end-of-line) | |
2758 (setq colon-line-end (point))) | |
2759 (search-forward ":")))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2760 ;; Now at the point, after label, or at start |
20323 | 2761 ;; of first statement in the block. |
2762 (and (< (point) start-point) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2763 (if (> colon-line-end (point)) |
20323 | 2764 ;; Before statement after label |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2765 (if (> (current-indentation) |
20323 | 2766 cperl-min-label-indent) |
2767 (list (list 'label-in-block (point))) | |
2768 ;; Do not believe: `max' is involved | |
2769 (list | |
2770 (list 'label-in-block-min-indent (point)))) | |
2771 ;; Before statement | |
2772 (list 'statement-in-block (point)))))) | |
2773 ;; If no previous statement, | |
2774 ;; indent it relative to line brace is on. | |
2775 ;; For open brace in column zero, don't let statement | |
2776 ;; start there too. If cperl-indent-level is zero, | |
2777 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. | |
2778 ;; For open-braces not the first thing in a line, | |
2779 ;; add in cperl-brace-imaginary-offset. | |
2780 | |
2781 ;; If first thing on a line: ????? | |
2782 (+ (if (and (bolp) (zerop cperl-indent-level)) | |
2783 (+ cperl-brace-offset cperl-continued-statement-offset) | |
2784 cperl-indent-level) | |
2785 ;; Move back over whitespace before the openbrace. | |
2786 ;; If openbrace is not first nonwhite thing on the line, | |
2787 ;; add the cperl-brace-imaginary-offset. | |
2788 (progn (skip-chars-backward " \t") | |
2789 (if (bolp) 0 cperl-brace-imaginary-offset)) | |
2790 ;; If the openbrace is preceded by a parenthesized exp, | |
2791 ;; move to the beginning of that; | |
2792 ;; possibly a different line | |
2793 (progn | |
2794 (if (eq (preceding-char) ?\)) | |
2795 (forward-sexp -1)) | |
2796 ;; Get initial indentation of the line we are on. | |
2797 ;; If line starts with label, calculate label indentation | |
2798 (if (save-excursion | |
2799 (beginning-of-line) | |
2800 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) | |
2801 (if (> (current-indentation) cperl-min-label-indent) | |
2802 (- (current-indentation) cperl-label-offset) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2803 (cperl-calculate-indent)) |
20323 | 2804 (current-indentation)))))))) |
2805 res))) | |
2806 | |
2807 (defun cperl-calculate-indent-within-comment () | |
2808 "Return the indentation amount for line, assuming that | |
2809 the current line is to be regarded as part of a block comment." | |
2810 (let (end star-start) | |
2811 (save-excursion | |
2812 (beginning-of-line) | |
2813 (skip-chars-forward " \t") | |
2814 (setq end (point)) | |
2815 (and (= (following-char) ?#) | |
2816 (forward-line -1) | |
2817 (cperl-to-comment-or-eol) | |
2818 (setq end (point))) | |
2819 (goto-char end) | |
2820 (current-column)))) | |
2821 | |
2822 | |
2823 (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
|
2824 "Go to position before comment on the current line, or to end of line. |
20323 | 2825 Returns true if comment is found." |
2826 (let (state stop-in cpoint (lim (progn (end-of-line) (point)))) | |
2827 (beginning-of-line) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2828 (if (or |
20323 | 2829 (eq (get-text-property (point) 'syntax-type) 'pod) |
2830 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)) | |
2831 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t)) | |
2832 ;; Else | |
2833 (while (not stop-in) | |
2834 (setq state (parse-partial-sexp (point) lim nil nil nil t)) | |
2835 ; stop at comment | |
2836 ;; If fails (beginning-of-line inside sexp), then contains not-comment | |
2837 (if (nth 4 state) ; After `#'; | |
2838 ; (nth 2 state) can be | |
2839 ; beginning of m,s,qq and so | |
2840 ; on | |
2841 (if (nth 2 state) | |
2842 (progn | |
2843 (setq cpoint (point)) | |
2844 (goto-char (nth 2 state)) | |
2845 (cond | |
2846 ((looking-at "\\(s\\|tr\\)\\>") | |
2847 (or (re-search-forward | |
2848 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*" | |
2849 lim 'move) | |
2850 (setq stop-in t))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2851 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>") |
20323 | 2852 (or (re-search-forward |
2853 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#" | |
2854 lim 'move) | |
2855 (setq stop-in t))) | |
2856 (t ; It was fair comment | |
2857 (setq stop-in t) ; Finish | |
2858 (goto-char (1- cpoint))))) | |
2859 (setq stop-in t) ; Finish | |
2860 (forward-char -1)) | |
2861 (setq stop-in t)) ; Finish | |
2862 ) | |
2863 (nth 4 state)))) | |
2864 | |
2865 (defsubst cperl-1- (p) | |
2866 (max (point-min) (1- p))) | |
2867 | |
2868 (defsubst cperl-1+ (p) | |
2869 (min (point-max) (1+ p))) | |
2870 | |
2871 (defsubst cperl-modify-syntax-type (at how) | |
2872 (if (< at (point-max)) | |
2873 (progn | |
2874 (put-text-property at (1+ at) 'syntax-table how) | |
2875 (put-text-property at (1+ at) 'rear-nonsticky t)))) | |
2876 | |
2877 (defun cperl-protect-defun-start (s e) | |
2878 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations | |
2879 (save-excursion | |
2880 (goto-char s) | |
2881 (while (re-search-forward "^\\s(" e 'to-end) | |
2882 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct)))) | |
2883 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2884 (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
|
2885 (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
|
2886 (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
|
2887 nil |
20323 | 2888 ;; We suppose that e is _after_ the end of construction, as after eol. |
2889 (setq string (if string cperl-st-sfence cperl-st-cfence)) | |
2890 (cperl-modify-syntax-type bb string) | |
2891 (cperl-modify-syntax-type (1- e) string) | |
2892 (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
|
2893 (put-text-property (1+ bb) (1- e) |
20323 | 2894 '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
|
2895 (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
|
2896 ;; Fontify |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2897 (or noface |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2898 (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
|
2899 (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
|
2900 '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
|
2901 (defvar cperl-starters '(( ?\( . ?\) ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2902 ( ?\[ . ?\] ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2903 ( ?\{ . ?\} ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2904 ( ?\< . ?\> ))) |
20323 | 2905 |
2906 (defun cperl-forward-re (lim end is-2arg set-st st-l err-l argument | |
2907 &optional ostart oend) | |
2908 ;; Works *before* syntax recognition is done | |
2909 ;; May modify syntax-type text property if the situation is too hard | |
2910 (let (b starter ender st i i2 go-forward) | |
2911 (skip-chars-forward " \t") | |
2912 ;; ender means matching-char matcher. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2913 (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
|
2914 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
|
2915 ender (cdr (assoc starter cperl-starters))) |
20323 | 2916 ;; What if starter == ?\\ ???? |
2917 (if set-st | |
2918 (if (car st-l) | |
2919 (setq st (car st-l)) | |
2920 (setcar st-l (make-syntax-table)) | |
2921 (setq i 0 st (car st-l)) | |
2922 (while (< i 256) | |
2923 (modify-syntax-entry i "." st) | |
2924 (setq i (1+ i))) | |
2925 (modify-syntax-entry ?\\ "\\" st))) | |
2926 (setq set-st t) | |
2927 ;; Whether we have an intermediate point | |
2928 (setq i nil) | |
2929 ;; Prepare the syntax table: | |
2930 (and set-st | |
2931 (if (not ender) ; m/blah/, s/x//, s/x/y/ | |
2932 (modify-syntax-entry starter "$" st) | |
2933 (modify-syntax-entry starter (concat "(" (list ender)) st) | |
2934 (modify-syntax-entry ender (concat ")" (list starter)) st))) | |
2935 (condition-case bb | |
2936 (progn | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2937 ;; 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
|
2938 ;; is recognized the same as $, so we need to check this manually. |
20323 | 2939 (if (and (eq starter (char-after (cperl-1+ b))) |
2940 (not ender)) | |
2941 ;; $ has TeXish matching rules, so $$ equiv $... | |
2942 (forward-char 2) | |
2943 (set-syntax-table st) | |
2944 (forward-sexp 1) | |
2945 (set-syntax-table cperl-mode-syntax-table) | |
2946 ;; Now the problem is with m;blah;; | |
2947 (and (not ender) | |
2948 (eq (preceding-char) | |
2949 (char-after (- (point) 2))) | |
2950 (save-excursion | |
2951 (forward-char -2) | |
2952 (= 0 (% (skip-chars-backward "\\\\") 2))) | |
2953 (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
|
2954 ;; Now we are after the first part. |
20323 | 2955 (and is-2arg ; Have trailing part |
2956 (not ender) | |
2957 (eq (following-char) starter) ; Empty trailing part | |
2958 (progn | |
2959 (or (eq (char-syntax (following-char)) ?.) | |
2960 ;; Make trailing letter into punctuation | |
2961 (cperl-modify-syntax-type (point) cperl-st-punct)) | |
2962 (setq is-2arg nil go-forward t))) ; Ignore the tail | |
2963 (if is-2arg ; Not number => have second part | |
2964 (progn | |
2965 (setq i (point) i2 i) | |
2966 (if ender | |
2967 (if (memq (following-char) '(?\ ?\t ?\n ?\f)) | |
2968 (progn | |
2969 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
2970 (goto-char (match-end 0)) | |
2971 (skip-chars-forward " \t\n\f")) | |
2972 (setq i2 (point)))) | |
2973 (forward-char -1)) | |
2974 (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
|
2975 (if ender (modify-syntax-entry ender "." st)) |
20323 | 2976 (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
|
2977 (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
|
2978 argument starter ender) |
20323 | 2979 ender (nth 2 ender))))) |
2980 (error (goto-char lim) | |
2981 (setq set-st nil) | |
2982 (or end | |
2983 (message | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2984 "End of `%s%s%c ... %c' string/RE not found: %s" |
20323 | 2985 argument |
2986 (if ostart (format "%c ... %c" ostart (or oend ostart)) "") | |
2987 starter (or ender starter) bb) | |
2988 (or (car err-l) (setcar err-l b))))) | |
2989 (if set-st | |
2990 (progn | |
2991 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
2992 (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
|
2993 ;; 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
|
2994 ;; 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
|
2995 ;; 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
|
2996 ;; starter: the starting delimiter 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
|
2997 ;; go-forward: has 2 args, and the second part is empth |
20323 | 2998 (list i i2 ender starter go-forward))) |
2999 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3000 (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
|
3001 ;; 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
|
3002 (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
|
3003 (or now (put-text-property b e 'cperl-postpone (cons type val))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3004 (put-text-property b e type val))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3005 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3006 ;;; 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
|
3007 ;;; recognized locally) are marked: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3008 ;; a) PODs: |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3009 ;; 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
|
3010 ;; 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
|
3011 ;; 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
|
3012 ;; b) HEREs: |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3013 ;; 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
|
3014 ;; 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
|
3015 ;; 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
|
3016 ;; c) FORMATs: |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3017 ;; After-initial-line--to-end is marked `syntax-type' ==> `format' |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3018 ;; 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
|
3019 ;; part between markers inclusive is marked `syntax-type' ==> `string' |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3020 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3021 (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
|
3022 ;; 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
|
3023 (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
|
3024 (setq opos pos) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3025 (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
|
3026 (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
|
3027 (if pos |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3028 (if before |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3029 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3030 (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
|
3031 (beginning-of-line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3032 (setq pos (point))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3033 (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
|
3034 ;; 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
|
3035 (goto-char (point-min)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3036 (if end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3037 ;; 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
|
3038 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3039 (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
|
3040 (setq pos end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3041 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
|
3042 (or end pos))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3043 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3044 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max) |
20323 | 3045 "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
|
3046 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
|
3047 the sections using `cperl-pod-head-face', `cperl-pod-face', |
20323 | 3048 `cperl-here-face'." |
3049 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3050 (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
|
3051 cperl-syntax-state nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3052 cperl-syntax-done-to min)) |
20323 | 3053 (or max (setq max (point-max))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3054 (let* (face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3055 (cperl-pod-here-fontify (eval cperl-pod-here-fontify)) go tmpend |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3056 (case-fold-search nil) (inhibit-read-only t) (buffer-undo-list t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3057 (modified (buffer-modified-p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3058 (after-change-functions nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3059 (use-syntax-state (and cperl-syntax-state |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3060 (>= min (car cperl-syntax-state)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3061 (state-point (if use-syntax-state |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3062 (car cperl-syntax-state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3063 (point-min))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3064 (state (if use-syntax-state |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3065 (cdr cperl-syntax-state))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3066 (st-l '(nil)) (err-l '(nil)) i2 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3067 ;; Somehow font-lock may be not loaded yet... |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3068 (font-lock-string-face (if (boundp 'font-lock-string-face) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3069 font-lock-string-face |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3070 'font-lock-string-face)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3071 (font-lock-constant-face (if (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
|
3072 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
|
3073 'font-lock-constant-face)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3074 (font-lock-function-name-face |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3075 (if (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
|
3076 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
|
3077 'font-lock-function-name-face)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3078 (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
|
3079 (if (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
|
3080 cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3081 'cperl-nonoverridable-face)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3082 (stop-point (if ignore-max |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3083 (point-max) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3084 max)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3085 (search |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3086 (concat |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3087 "\\(\\`\n?\\|\n\n\\)=" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3088 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3089 ;; One extra () before this: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3090 "<<" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3091 "\\(" ; 1 + 1 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3092 ;; First variant "BLAH" or just ``. |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3093 "\\([\"'`]\\)" ; 2 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3094 "\\([^\"'`\n]*\\)" ; 3 + 1 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3095 "\\3" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3096 "\\|" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3097 ;; 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
|
3098 "\\\\?\\(\\([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
|
3099 ;; 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
|
3100 ;; "\\([^= \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
|
3101 "\\(\\)" ; To preserve count of pars :-( 6 + 1 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3102 "\\)" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3103 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3104 ;; 1+6 extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3105 "^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3106 (if 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
|
3107 (concat |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3108 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3109 ;; 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
|
3110 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3111 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3112 ;; 1+6+2+1=10 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
|
3113 "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob> |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3114 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3115 ;; 1+6+2+1+1=11 extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3116 "\\<sub\\>[ \t]*\\([a-zA-Z_:'0-9]+[ \t]*\\)?\\(([^()]*)\\)" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3117 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3118 ;; 1+6+2+1+1+2=13 extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3119 "\\$\\(['{]\\)" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3120 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3121 ;; 1+6+2+1+1+2+1=14 extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3122 "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3123 ;; 1+6+2+1+1+2+1+1=15 extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3124 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3125 "__\\(END\\|DATA\\)__" ; Commented - does not help with indent... |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3126 ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3127 "")))) |
20323 | 3128 (unwind-protect |
3129 (progn | |
3130 (save-excursion | |
3131 (or non-inter | |
3132 (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
|
3133 (and cperl-pod-here-fontify |
20323 | 3134 ;; We had evals here, do not know why... |
3135 (setq face cperl-pod-face | |
3136 head-face cperl-pod-head-face | |
3137 here-face cperl-here-face)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3138 (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
|
3139 '(syntax-type t in-pod t syntax-table t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3140 cperl-postpone t)) |
20323 | 3141 ;; Need to remove face as well... |
3142 (goto-char min) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3143 (and (eq system-type 'emx) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3144 (looking-at "extproc[ \t]") ; Analogue of #! |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3145 (cperl-commentify min |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3146 (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
|
3147 nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3148 (while (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3149 (< (point) max) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3150 (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
|
3151 (setq tmpend nil) ; Valid for most cases |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3152 (cond |
20323 | 3153 ((match-beginning 1) ; POD section |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3154 ;; "\\(\\`\n?\\|\n\n\\)=" |
20323 | 3155 (if (looking-at "\n*cut\\>") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3156 (if ignore-max |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3157 nil ; Doing a chunk only |
20323 | 3158 (message "=cut is not preceded by a POD section") |
3159 (or (car err-l) (setcar err-l (point)))) | |
3160 (beginning-of-line) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3161 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3162 (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
|
3163 bb b |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3164 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
|
3165 b1 nil) ; error condition |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3166 ;; 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
|
3167 ;; 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
|
3168 (or (re-search-forward "\n\n=cut\\>" stop-point 'toend) |
20323 | 3169 (progn |
3170 (message "End of a POD section not marked by =cut") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3171 (setq b1 t) |
20323 | 3172 (or (car err-l) (setcar err-l b)))) |
3173 (beginning-of-line 2) ; An empty line after =cut is not POD! | |
3174 (setq e (point)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3175 (if (and b1 (eobp)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3176 ;; Unrecoverable error |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3177 nil |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3178 (and (> e max) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3179 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3180 (remove-text-properties |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3181 max e '(syntax-type t in-pod t syntax-table t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3182 'cperl-postpone t)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3183 (setq tmpend tb))) |
20323 | 3184 (put-text-property b e 'in-pod t) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3185 (put-text-property b e 'syntax-type 'in-pod) |
20323 | 3186 (goto-char b) |
3187 (while (re-search-forward "\n\n[ \t]" e t) | |
3188 ;; We start 'pod 1 char earlier to include the preceding line | |
3189 (beginning-of-line) | |
3190 (put-text-property (cperl-1- b) (point) 'syntax-type 'pod) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3191 (cperl-put-do-not-fontify b (point) t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3192 ;; mark the non-literal parts as PODs |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3193 (if 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
|
3194 (cperl-postpone-fontification b (point) 'face face t)) |
20323 | 3195 (re-search-forward "\n\n[^ \t\f\n]" e 'toend) |
3196 (beginning-of-line) | |
3197 (setq b (point))) | |
3198 (put-text-property (cperl-1- (point)) e 'syntax-type 'pod) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3199 (cperl-put-do-not-fontify (point) e t) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3200 (if cperl-pod-here-fontify |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3201 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3202 ;; mark the non-literal parts as PODs |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3203 (cperl-postpone-fontification (point) e 'face face t) |
20323 | 3204 (goto-char bb) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3205 (if (looking-at |
20323 | 3206 "=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3207 ;; mark the headers |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3208 (cperl-postpone-fontification |
20323 | 3209 (match-beginning 1) (match-end 1) |
3210 'face head-face)) | |
3211 (while (re-search-forward | |
3212 ;; One paragraph | |
3213 "\n\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$" | |
3214 e 'toend) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3215 ;; mark the headers |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3216 (cperl-postpone-fontification |
20323 | 3217 (match-beginning 1) (match-end 1) |
3218 'face head-face)))) | |
3219 (cperl-commentify bb e nil) | |
3220 (goto-char e) | |
3221 (or (eq e (point-max)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3222 (forward-char -1))))) ; Prepare for immediate pod start. |
20323 | 3223 ;; Here document |
3224 ;; 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
|
3225 ;; ;; One extra () before this: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3226 ;;"<<" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3227 ;; "\\(" ; 1 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3228 ;; ;; First variant "BLAH" or just ``. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3229 ;; "\\([\"'`]\\)" ; 2 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3230 ;; "\\([^\"'`\n]*\\)" ; 3 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3231 ;; "\\3" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3232 ;; "\\|" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3233 ;; ;; 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
|
3234 ;; "\\\\?\\(\\([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
|
3235 ;; ;; 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
|
3236 ;; ;; "\\([^= \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
|
3237 ;; "\\(\\)" ; 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
|
3238 ;; "\\)" |
20323 | 3239 ((match-beginning 2) ; 1 + 1 |
3240 ;; Abort in comment: | |
3241 (setq b (point)) | |
3242 (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
|
3243 state-point b |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3244 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
|
3245 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
|
3246 (if i |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3247 (setq c t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3248 (setq c (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3249 (match-beginning 5) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3250 (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
|
3251 (looking-at |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3252 "[ \t]*[=0-9$@%&(]")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3253 (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
|
3254 nil ; Skip it. |
20323 | 3255 (if (match-beginning 5) ;4 + 1 |
3256 (setq b1 (match-beginning 5) ; 4 + 1 | |
3257 e1 (match-end 5)) ; 4 + 1 | |
3258 (setq b1 (match-beginning 4) ; 3 + 1 | |
3259 e1 (match-end 4))) ; 3 + 1 | |
3260 (setq tag (buffer-substring b1 e1) | |
3261 qtag (regexp-quote tag)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3262 (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
|
3263 ;; 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
|
3264 (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
|
3265 (cperl-put-do-not-fontify b1 e1 t))) |
20323 | 3266 (forward-line) |
3267 (setq b (point)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3268 ;; 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
|
3269 ;; some hook of fontification, and max is random |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3270 (cond ((re-search-forward (concat "^" qtag "$") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3271 stop-point 'toend) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3272 (if cperl-pod-here-fontify |
20323 | 3273 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3274 ;; Highlight the ending delimiter |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3275 (cperl-postpone-fontification (match-beginning 0) (match-end 0) |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
3276 '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
|
3277 (cperl-put-do-not-fontify b (match-end 0) t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3278 ;; Highlight the HERE-DOC |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3279 (cperl-postpone-fontification b (match-beginning 0) |
20323 | 3280 'face here-face))) |
3281 (setq e1 (cperl-1+ (match-end 0))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3282 (put-text-property b (match-beginning 0) |
20323 | 3283 'syntax-type 'here-doc) |
3284 (put-text-property (match-beginning 0) e1 | |
3285 'syntax-type 'here-doc-delim) | |
3286 (put-text-property b e1 | |
3287 'here-doc-group t) | |
3288 (cperl-commentify b e1 nil) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3289 (cperl-put-do-not-fontify b (match-end 0) t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3290 (if (> e1 max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3291 (setq tmpend tb))) |
20323 | 3292 (t (message "End of here-document `%s' not found." tag) |
3293 (or (car err-l) (setcar err-l b)))))) | |
3294 ;; format | |
3295 ((match-beginning 8) | |
3296 ;; 1+6=7 extra () before this: | |
3297 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" | |
3298 (setq b (point) | |
3299 name (if (match-beginning 8) ; 7 + 1 | |
3300 (buffer-substring (match-beginning 8) ; 7 + 1 | |
3301 (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
|
3302 "") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3303 tb (match-beginning 0)) |
20323 | 3304 (setq argument nil) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3305 (if cperl-pod-here-fontify |
20323 | 3306 (while (and (eq (forward-line) 0) |
3307 (not (looking-at "^[.;]$"))) | |
3308 (cond | |
3309 ((looking-at "^#")) ; Skip comments | |
3310 ((and argument ; Skip argument multi-lines | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3311 (looking-at "^[ \t]*{")) |
20323 | 3312 (forward-sexp 1) |
3313 (setq argument nil)) | |
3314 (argument ; Skip argument lines | |
3315 (setq argument nil)) | |
3316 (t ; Format line | |
3317 (setq b1 (point)) | |
3318 (setq argument (looking-at "^[^\n]*[@^]")) | |
3319 (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
|
3320 ;; Highlight the format line |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3321 (cperl-postpone-fontification b1 (point) |
20323 | 3322 'face font-lock-string-face) |
3323 (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
|
3324 (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
|
3325 ;; 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
|
3326 ;; 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
|
3327 (re-search-forward "^[.;]$" stop-point 'toend)) |
20323 | 3328 (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
|
3329 (if (looking-at "^\\.$") ; ";" is not supported yet |
20323 | 3330 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3331 ;; 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
|
3332 (cperl-postpone-fontification (point) (+ (point) 2) |
20323 | 3333 'face font-lock-string-face) |
3334 (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
|
3335 (cperl-put-do-not-fontify (point) (+ (point) 2) t)) |
20323 | 3336 (message "End of format `%s' not found." name) |
3337 (or (car err-l) (setcar err-l b))) | |
3338 (forward-line) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3339 (if (> (point) max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3340 (setq tmpend tb)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3341 (put-text-property b (point) 'syntax-type 'format)) |
20323 | 3342 ;; Regexp: |
3343 ((or (match-beginning 10) (match-beginning 11)) | |
3344 ;; 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
|
3345 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
20323 | 3346 ;; "\\|" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3347 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob> |
20323 | 3348 (setq b1 (if (match-beginning 10) 10 11) |
3349 argument (buffer-substring | |
3350 (match-beginning b1) (match-end b1)) | |
3351 b (point) | |
3352 i b | |
3353 c (char-after (match-beginning b1)) | |
3354 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
|
3355 ;; 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
|
3356 bb (if (eq b1 10) ; user variables/whatever |
20323 | 3357 (or |
3358 (memq bb '(?\$ ?\@ ?\% ?\* ?\#)) ; $#y | |
3359 (and (eq bb ?-) (eq c ?s)) ; -s file test | |
3360 (and (eq bb ?\&) ; &&m/blah/ | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3361 (not (eq (char-after |
20323 | 3362 (- (match-beginning b1) 2)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3363 ?\&)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3364 ;; <file> or <$file> |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3365 (and (eq c ?\<) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3366 ;; Do not stringify <FH> : |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3367 (save-match-data |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3368 (looking-at |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3369 "\\s *\\$?\\([_a-zA-Z:][_a-zA-Z0-9:]*\\s *\\)?>")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3370 tb (match-beginning 0)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3371 (goto-char (match-beginning b1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3372 (cperl-backward-to-noncomment (point-min)) |
20323 | 3373 (or bb |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3374 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo> |
20323 | 3375 (setq argument "" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3376 bb ; Not a regexp? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3377 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3378 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3379 ;; What is below: regexp-p? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3380 (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3381 (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
|
3382 (append (if (memq c '(?\? ?\<)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3383 ;; $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
|
3384 "~{(=|&*!,;:" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3385 "~{(=|&+-*!,;:") nil)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3386 (and (eq (preceding-char) ?\}) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3387 (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
|
3388 (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
|
3389 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3390 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3391 ;;; After these keywords `/' starts a RE. One should add all the |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3392 ;;; 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
|
3393 (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
|
3394 ;; -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
|
3395 (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
|
3396 (and |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3397 (not (memq (preceding-char) |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3398 '(?$ ?@ ?& ?%))) |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3399 (looking-at |
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3400 "\\(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
|
3401 (and (eq (preceding-char) ?.) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3402 (eq (char-after (- (point) 2)) ?.)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3403 (bobp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3404 ;; m|blah| ? foo : bar; |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3405 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3406 (and (eq c ?\?) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3407 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
|
3408 (not (bobp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3409 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3410 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3411 (looking-at "\\s|"))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3412 b (1- b)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3413 ;; s y tr m |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3414 ;; Check for $a->y |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3415 (if (and (eq (preceding-char) ?>) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3416 (eq (char-after (- (point) 2)) ?-)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3417 ;; Not a regexp |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3418 (setq bb t)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3419 (or bb (setq state (parse-partial-sexp |
20323 | 3420 state-point b nil nil state) |
3421 state-point b)) | |
3422 (goto-char b) | |
3423 (if (or bb (nth 3 state) (nth 4 state)) | |
3424 (goto-char i) | |
3425 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
3426 (goto-char (match-end 0)) | |
3427 (skip-chars-forward " \t\n\f")) | |
3428 ;; qtag means two-arg matcher, may be reset to | |
3429 ;; 2 or 3 later if some special quoting is needed. | |
3430 ;; e1 means matching-char matcher. | |
3431 (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
|
3432 ;; has 2 args |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3433 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
|
3434 ;; 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
|
3435 ;; 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
|
3436 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
|
3437 i2 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3438 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
|
3439 ;; 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
|
3440 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
|
3441 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
|
3442 ; is with matching chars [] |
20323 | 3443 go (nth 4 i) ; There is a 1-char part after the end |
3444 i (car i) ; intermediate point | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3445 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
|
3446 ;; 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
|
3447 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
|
3448 (1- e1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3449 e (if i i e1) ; end of the first part |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3450 qtag nil) ; need to preserve backslashitis |
20323 | 3451 ;; Commenting \\ is dangerous, what about ( ? |
3452 (and i tail | |
3453 (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
|
3454 (setq qtag t)) |
20323 | 3455 (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
|
3456 ;; Considered as 1arg form |
20323 | 3457 (progn |
3458 (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
|
3459 (put-text-property b (point) 'syntax-type 'string) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3460 (and go |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3461 (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
|
3462 (or (eobp) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3463 (forward-char 1)))) |
20323 | 3464 (cperl-commentify b i t) |
3465 (if (looking-at "\\sw*e") ; s///e | |
3466 (progn | |
3467 (and | |
3468 ;; silent: | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3469 (cperl-find-pods-heres b1 (1- (point)) t end) |
20323 | 3470 ;; Error |
3471 (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
|
3472 (if (and tag (eq (preceding-char) ?\>)) |
20323 | 3473 (progn |
3474 (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
|
3475 (cperl-modify-syntax-type i cperl-st-bra))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3476 (put-text-property b i 'syntax-type 'string)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3477 (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
|
3478 (put-text-property b (point) 'syntax-type 'string) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3479 (if qtag |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3480 (cperl-modify-syntax-type (1+ i) cperl-st-punct)) |
20323 | 3481 (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
|
3482 ;; Now: tail: if the second part is non-matching without ///e |
20323 | 3483 (if (eq (char-syntax (following-char)) ?w) |
3484 (progn | |
3485 (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
|
3486 (if tail (cperl-commentify tail (point) t)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3487 (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
|
3488 e1 (point) '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
|
3489 ;; 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
|
3490 ;; and highlight differently |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3491 (if (and (eq e (+ 2 b)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3492 (string-match "^\\([sm]?\\|qr\\)$" argument) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3493 ;; <> is already filtered out |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3494 ;; 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
|
3495 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3496 (condition-case nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3497 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3498 (goto-char tb) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3499 (forward-sexp -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3500 (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
|
3501 (error t)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3502 (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
|
3503 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
|
3504 (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
|
3505 (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
|
3506 (or |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3507 (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
|
3508 (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
|
3509 (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
|
3510 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3511 (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
|
3512 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
|
3513 (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
|
3514 (1- e) e '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
|
3515 (if i2 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3516 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3517 (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
|
3518 (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
|
3519 (if (assoc (char-after b) cperl-starters) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3520 (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
|
3521 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
|
3522 (if (> (point) max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3523 (setq tmpend tb)))) |
20323 | 3524 ((match-beginning 13) ; sub with prototypes |
3525 (setq b (match-beginning 0)) | |
3526 (if (memq (char-after (1- b)) | |
3527 '(?\$ ?\@ ?\% ?\& ?\*)) | |
3528 nil | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3529 (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
|
3530 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
|
3531 state-point b) |
20323 | 3532 (if (or (nth 3 state) (nth 4 state)) |
3533 nil | |
3534 ;; Mark as string | |
3535 (cperl-commentify (match-beginning 13) (match-end 13) t)) | |
3536 (goto-char (match-end 0)))) | |
3537 ;; 1+6+2+1+1+2=13 extra () before this: | |
3538 ;; "\\$\\(['{]\\)" | |
3539 ((and (match-beginning 14) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3540 (eq (preceding-char) ?\')) ; $' |
20323 | 3541 (setq b (1- (point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3542 state (parse-partial-sexp |
20323 | 3543 state-point (1- b) nil nil state) |
3544 state-point (1- b)) | |
3545 (if (nth 3 state) ; in string | |
3546 (cperl-modify-syntax-type (1- b) cperl-st-punct)) | |
3547 (goto-char (1+ b))) | |
3548 ;; 1+6+2+1+1+2=13 extra () before this: | |
3549 ;; "\\$\\(['{]\\)" | |
3550 ((match-beginning 14) ; ${ | |
3551 (setq bb (match-beginning 0)) | |
3552 (cperl-modify-syntax-type bb cperl-st-punct)) | |
3553 ;; 1+6+2+1+1+2+1=14 extra () before this: | |
3554 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'") | |
3555 ((match-beginning 15) ; old $abc'efg syntax | |
3556 (setq bb (match-end 0) | |
3557 b (match-beginning 0) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3558 state (parse-partial-sexp |
20323 | 3559 state-point b nil nil state) |
3560 state-point b) | |
3561 (if (nth 3 state) ; in string | |
3562 nil | |
3563 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)) | |
3564 (goto-char bb)) | |
3565 ;; 1+6+2+1+1+2+1+1=15 extra () before this: | |
3566 ;; "__\\(END\\|DATA\\)__" | |
3567 (t ; __END__, __DATA__ | |
3568 (setq bb (match-end 0) | |
3569 b (match-beginning 0) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3570 state (parse-partial-sexp |
20323 | 3571 state-point b nil nil state) |
3572 state-point b) | |
3573 (if (or (nth 3 state) (nth 4 state)) | |
3574 nil | |
3575 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat | |
3576 (cperl-commentify b bb nil) | |
3577 (setq end t)) | |
3578 (goto-char bb))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3579 (if (> (point) stop-point) |
20323 | 3580 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3581 (if end |
20323 | 3582 (message "Garbage after __END__/__DATA__ ignored") |
3583 (message "Unbalanced syntax found while scanning") | |
3584 (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
|
3585 (goto-char stop-point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3586 (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
|
3587 cperl-syntax-done-to (or tmpend (max (point) max)))) |
20323 | 3588 (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
|
3589 (or non-inter |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3590 (message "Scanning for \"hard\" Perl constructions... done")))) |
20323 | 3591 (and (buffer-modified-p) |
3592 (not modified) | |
3593 (set-buffer-modified-p nil)) | |
3594 (set-syntax-table cperl-mode-syntax-table)) | |
3595 (car err-l))) | |
3596 | |
3597 (defun cperl-backward-to-noncomment (lim) | |
3598 ;; 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
|
3599 (let (stop p pr) |
20323 | 3600 (while (and (not stop) (> (point) (or lim 1))) |
3601 (skip-chars-backward " \t\n\f" lim) | |
3602 (setq p (point)) | |
3603 (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
|
3604 (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
|
3605 '(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
|
3606 (cperl-unwind-to-safe nil) |
20323 | 3607 (if (or (looking-at "^[ \t]*\\(#\\|$\\)") |
3608 (progn (cperl-to-comment-or-eol) (bolp))) | |
3609 nil ; Only comment, skip | |
3610 ;; Else | |
3611 (skip-chars-backward " \t") | |
3612 (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
|
3613 (setq stop t)))))) |
20323 | 3614 |
3615 (defun cperl-after-block-p (lim) | |
3616 ;; We suppose that the preceding char is }. | |
3617 (save-excursion | |
3618 (condition-case nil | |
3619 (progn | |
3620 (forward-sexp -1) | |
3621 (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
|
3622 (or (eq (point) lim) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3623 (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
|
3624 (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
|
3625 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3626 (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
|
3627 (or (looking-at "\\(else\\|grep\\|map\\|BEGIN\\|END\\)\\>") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3628 ;; sub f {} |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3629 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3630 (cperl-backward-to-noncomment lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3631 (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
|
3632 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3633 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3634 (looking-at "sub\\>")))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3635 (cperl-after-expr-p lim)))) |
20323 | 3636 (error nil)))) |
3637 | |
3638 (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
|
3639 "Return true if the position is good for start of expression. |
20323 | 3640 TEST is the expression to evaluate at the found position. If absent, |
3641 CHARS is a string that contains good characters to have before us (however, | |
3642 `}' is treated \"smartly\" if it is not in the list)." | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3643 (let (stop p |
20323 | 3644 (lim (or lim (point-min)))) |
3645 (save-excursion | |
3646 (while (and (not stop) (> (point) lim)) | |
3647 (skip-chars-backward " \t\n\f" lim) | |
3648 (setq p (point)) | |
3649 (beginning-of-line) | |
3650 (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
|
3651 ;; Else: last iteration, or a label |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3652 (cperl-to-comment-or-eol) |
20323 | 3653 (skip-chars-backward " \t") |
3654 (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
|
3655 (setq p (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3656 (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
|
3657 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3658 (forward-char -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3659 (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
|
3660 (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
|
3661 (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
|
3662 (goto-char p) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3663 (setq stop t)))) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3664 (or (bobp) ; ???? Needed |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3665 (eq (point) lim) |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3666 (looking-at "[ \t]*__\\(END\\|DATA\\)__") ; After this anything goes |
20323 | 3667 (progn |
3668 (if test (eval test) | |
3669 (or (memq (preceding-char) (append (or chars "{;") nil)) | |
3670 (and (eq (preceding-char) ?\}) | |
3671 (cperl-after-block-p lim))))))))) | |
3672 | |
3673 (defun cperl-backward-to-start-of-continued-exp (lim) | |
3674 (if (memq (preceding-char) (append ")]}\"'`" nil)) | |
3675 (forward-sexp -1)) | |
3676 (beginning-of-line) | |
3677 (if (<= (point) lim) | |
3678 (goto-char (1+ lim))) | |
3679 (skip-chars-forward " \t")) | |
3680 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3681 (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
|
3682 ;; We assume that we are after ?\} |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3683 (and |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3684 (cperl-after-block-p lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3685 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3686 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3687 (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
|
3688 (or (bobp) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3689 (eq (point) lim) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3690 (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
|
3691 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3692 (forward-sexp -1) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3693 (not |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3694 (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3695 "\\(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
|
3696 |
20323 | 3697 |
3698 (defun cperl-indent-exp () | |
3699 "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
|
3700 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3701 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
|
3702 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
|
3703 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3704 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
|
3705 conditional/loop constructs." |
20323 | 3706 (interactive) |
3707 (save-excursion | |
3708 (let ((tmp-end (progn (end-of-line) (point))) top done) | |
3709 (save-excursion | |
3710 (beginning-of-line) | |
3711 (while (null done) | |
3712 (setq top (point)) | |
3713 (while (= (nth 0 (parse-partial-sexp (point) tmp-end | |
3714 -1)) -1) | |
3715 (setq top (point))) ; Get the outermost parenths in line | |
3716 (goto-char top) | |
3717 (while (< (point) tmp-end) | |
3718 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol | |
3719 (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
|
3720 (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
|
3721 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3722 (end-of-line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3723 (setq tmp-end (point))) |
20323 | 3724 (setq done t))) |
3725 (goto-char tmp-end) | |
3726 (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
|
3727 (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
|
3728 (cperl-fix-line-spacing tmp-end)) |
20323 | 3729 (cperl-indent-region (point) tmp-end)))) |
3730 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3731 (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
|
3732 "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
|
3733 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
|
3734 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3735 (or end |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3736 (setq end (point-max))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3737 (let (p pp ml have-brace ret |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3738 (ee (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
|
3739 (cperl-indent-region-fix-constructs |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3740 (or 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
|
3741 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3742 (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
|
3743 (setq ret (point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3744 ;; }? continue |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3745 ;; blah; } |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3746 (if (not |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3747 (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
|
3748 (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
|
3749 nil ; Do not need to do anything |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3750 ;; Looking at: |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3751 ;; } |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3752 ;; else |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3753 (if (and cperl-merge-trailing-else |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3754 (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3755 "[ \t]*}[ \t]*\n[ \t\n]*\\(els\\(e\\|if\\)\\|continue\\)\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3756 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3757 (search-forward "}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3758 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3759 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3760 (delete-region p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3761 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3762 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3763 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3764 ;; } else |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3765 (if (looking-at "[ \t]*}\\(\t*\\|[ \t][ \t]+\\)\\<\\(els\\(e\\|if\\)\\|continue\\)\\>") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3766 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3767 (search-forward "}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3768 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3769 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3770 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3771 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3772 ;; else { |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3773 (if (looking-at |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3774 "[ \t]*}?[ \t]*\\<\\(\\els\\(e\\|if\\)\\|continue\\|unless\\|if\\|while\\|for\\(each\\)?\\|until\\)\\>\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3775 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3776 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3777 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3778 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3779 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3780 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3781 ;; foreach my $var |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3782 (if (looking-at |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3783 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\)\\(\t*\\|[ \t][ \t]+\\)[^ \t\n]") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3784 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3785 (forward-word 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3786 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3787 (insert (make-string cperl-indent-region-fix-constructs ?\ )) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3788 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3789 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3790 ;; foreach my $var ( |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3791 (if (looking-at |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3792 "[ \t]*\\<for\\(each\\)?[ \t]+\\(my\\|local\\)[ \t]*\\$[_a-zA-Z0-9]+\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3793 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3794 (forward-word 3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3795 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3796 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3797 (make-string cperl-indent-region-fix-constructs ?\ )) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3798 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3799 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3800 ;; } foreach my $var () { |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3801 (if (looking-at |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3802 "[ \t]*\\(}[ \t]*\\)?\\<\\(\\els\\(e\\|if\\)\\|continue\\|if\\|unless\\|while\\|for\\(each\\)?\\(\\([ t]+\\(my\\|local\\)\\)?[ \t]*\\$[_a-zA-Z0-9]+\\)?\\|until\\)\\>\\([ \t]*(\\|[ \t\n]*{\\)\\|[ \t]*{") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3803 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3804 (setq ml (match-beginning 8)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3805 (re-search-forward "[({]") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3806 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3807 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3808 (if (eq (following-char) ?\( ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3809 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3810 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3811 (setq pp (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3812 ;; after `else' or nothing |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3813 (if ml ; after `else' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3814 (skip-chars-backward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3815 (beginning-of-line)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3816 (setq pp nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3817 ;; Now after the sexp before the brace |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3818 ;; Multiline expr should be special |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3819 (setq ml (and pp (save-excursion (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3820 (search-forward "\n" pp t)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3821 (if (and (or (not pp) (< pp end)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3822 (looking-at "[ \t\n]*{")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3823 (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3824 (cond |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3825 ((bolp) ; Were before `{', no if/else/etc |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3826 nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3827 ((looking-at "\\(\t*\\| [ \t]+\\){") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3828 (delete-horizontal-space) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3829 (if (if ml |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3830 cperl-extra-newline-before-brace-multiline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3831 cperl-extra-newline-before-brace) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3832 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3833 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3834 (insert "\n") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3835 (setq ret (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3836 (if (cperl-indent-line parse-data) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3837 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3838 (cperl-fix-line-spacing end parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3839 (setq ret (point))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3840 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3841 (make-string cperl-indent-region-fix-constructs ?\ )))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3842 ((and (looking-at "[ \t]*\n") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3843 (not (if ml |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3844 cperl-extra-newline-before-brace-multiline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3845 cperl-extra-newline-before-brace))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3846 (setq pp (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3847 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3848 (delete-region pp (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3849 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3850 (make-string cperl-indent-region-fix-constructs ?\ )))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3851 ;; Now we are before `{' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3852 (if (looking-at "[ \t\n]*{[ \t]*[^ \t\n#]") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3853 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3854 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3855 (setq pp (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3856 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3857 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3858 (goto-char pp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3859 (setq ml (search-forward "\n" p t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3860 (if (or cperl-break-one-line-blocks-when-indent ml) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3861 ;; not good: multi-line BLOCK |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3862 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3863 (goto-char (1+ pp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3864 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3865 (insert "\n") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3866 (setq ret (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3867 (if (cperl-indent-line parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3868 (setq ret (cperl-fix-line-spacing end parse-data))))))))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3869 (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
|
3870 (setq p (point) pp (save-excursion (end-of-line) (point))) ; May be different from ee. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3871 ;; Now check whether there is a hanging `}' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3872 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3873 ;; } blah |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3874 (if (and |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3875 cperl-fix-hanging-brace-when-indent |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3876 have-brace |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3877 (not (looking-at "[ \t]*}[ \t]*\\(\\<\\(els\\(if\\|e\\)\\|continue\\|while\\|until\\)\\>\\|$\\|#\\)")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3878 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3879 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3880 (up-list 1) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3881 (if (and (<= (point) pp) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3882 (eq (preceding-char) ?\} ) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3883 (cperl-after-block-and-statement-beg (point-min))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3884 t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3885 (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3886 nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3887 (error nil))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3888 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3889 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3890 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3891 (if (bolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3892 ;; `}' was the first thing on the line, insert NL *after* it. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3893 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3894 (cperl-indent-line parse-data) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3895 (search-forward "}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3896 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3897 (insert "\n")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3898 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3899 (or (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3900 (bolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3901 (and (eq (preceding-char) ?\} ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3902 (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
|
3903 (insert ";")) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3904 (insert "\n") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3905 (setq ret (point))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3906 (if (cperl-indent-line parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3907 (setq ret (cperl-fix-line-spacing end parse-data))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3908 (beginning-of-line))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3909 ret)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3910 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3911 (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
|
3912 (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
|
3913 (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
|
3914 (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
|
3915 (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
|
3916 |
20323 | 3917 (defun cperl-indent-region (start end) |
3918 "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
|
3919 Should be slow. Will not indent comment if it starts at `comment-indent' |
20323 | 3920 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
|
3921 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
|
3922 inclusive. |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3923 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3924 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
|
3925 conditional/loop constructs." |
20323 | 3926 (interactive "r") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3927 (cperl-update-syntaxification end end) |
20323 | 3928 (save-excursion |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3929 (let (cperl-update-start cperl-update-end (h-a-c after-change-functions)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3930 (let (st comm old-comm-indent new-comm-indent p pp i empty |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3931 (indent-info (if cperl-emacs-can-parse |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3932 (list nil nil nil) ; Cannot use '(), since will modify |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3933 nil)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3934 after-change-functions ; Speed it up! |
20323 | 3935 (pm 0) (imenu-scanning-message "Indenting... (%3d%%)")) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3936 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook)) |
20323 | 3937 (goto-char start) |
3938 (setq old-comm-indent (and (cperl-to-comment-or-eol) | |
3939 (current-column)) | |
3940 new-comm-indent old-comm-indent) | |
3941 (goto-char start) | |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3942 (setq end (set-marker (make-marker) end)) ; indentation changes pos |
20323 | 3943 (or (bolp) (beginning-of-line 2)) |
3944 (or (fboundp 'imenu-progress-message) | |
3945 (message "Indenting... For feedback load `imenu'...")) | |
3946 (while (and (<= (point) end) (not (eobp))) ; bol to check start | |
3947 (and (fboundp 'imenu-progress-message) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3948 (imenu-progress-message |
20323 | 3949 pm (/ (* 100 (- (point) start)) (- end start -1)))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3950 (setq st (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3951 (if (or |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3952 (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
|
3953 (and (setq comm (looking-at "[ \t]*#")) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3954 (or (eq (current-indentation) (or old-comm-indent |
20323 | 3955 comment-column)) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3956 (setq old-comm-indent nil)))) |
20323 | 3957 (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
|
3958 (not empty) |
20323 | 3959 (= (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
|
3960 (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
|
3961 (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
|
3962 cperl-st-cfence))) |
20323 | 3963 (let ((comment-column new-comm-indent)) |
3964 (indent-for-comment))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3965 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3966 (setq i (cperl-indent-line indent-info)) |
20323 | 3967 (or comm |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3968 (not i) |
20323 | 3969 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3970 (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
|
3971 (goto-char (cperl-fix-line-spacing end indent-info))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3972 (if (setq old-comm-indent |
20323 | 3973 (and (cperl-to-comment-or-eol) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3974 (not (memq (get-text-property (point) |
20323 | 3975 'syntax-type) |
3976 '(pod here-doc))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3977 (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
|
3978 'syntax-table) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3979 cperl-st-cfence)) |
20323 | 3980 (current-column))) |
3981 (progn (indent-for-comment) | |
3982 (skip-chars-backward " \t") | |
3983 (skip-chars-backward "#") | |
3984 (setq new-comm-indent (current-column)))))))) | |
3985 (beginning-of-line 2)) | |
3986 (if (fboundp 'imenu-progress-message) | |
3987 (imenu-progress-message pm 100) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3988 (message nil))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3989 ;; Now run the update hooks |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3990 (if after-change-functions |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3991 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3992 (if cperl-update-end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3993 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3994 (goto-char cperl-update-end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3995 (insert " ") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3996 (delete-char -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3997 (goto-char cperl-update-start) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3998 (insert " ") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3999 (delete-char -1)))))))) |
20323 | 4000 |
4001 ;; Stolen from lisp-mode with a lot of improvements | |
4002 | |
4003 (defun cperl-fill-paragraph (&optional justify iteration) | |
4004 "Like \\[fill-paragraph], but handle CPerl comments. | |
4005 If any of the current line is a comment, fill the comment or the | |
4006 block of it that point is in, preserving the comment's initial | |
4007 indentation and initial hashes. Behaves usually outside of comment." | |
4008 (interactive "P") | |
4009 (let ( | |
4010 ;; Non-nil if the current line contains a comment. | |
4011 has-comment | |
4012 | |
4013 ;; If has-comment, the appropriate fill-prefix for the comment. | |
4014 comment-fill-prefix | |
4015 ;; Line that contains code and comment (or nil) | |
4016 start | |
4017 c spaces len dc (comment-column comment-column)) | |
4018 ;; Figure out what kind of comment we are looking at. | |
4019 (save-excursion | |
4020 (beginning-of-line) | |
4021 (cond | |
4022 | |
4023 ;; A line with nothing but a comment on it? | |
4024 ((looking-at "[ \t]*#[# \t]*") | |
4025 (setq has-comment t | |
4026 comment-fill-prefix (buffer-substring (match-beginning 0) | |
4027 (match-end 0)))) | |
4028 | |
4029 ;; A line with some code, followed by a comment? Remember that the | |
4030 ;; semi which starts the comment shouldn't be part of a string or | |
4031 ;; character. | |
4032 ((cperl-to-comment-or-eol) | |
4033 (setq has-comment t) | |
4034 (looking-at "#+[ \t]*") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4035 (setq start (point) c (current-column) |
20323 | 4036 comment-fill-prefix |
4037 (concat (make-string (current-column) ?\ ) | |
4038 (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
|
4039 spaces (progn (skip-chars-backward " \t") |
20323 | 4040 (buffer-substring (point) start)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4041 dc (- c (current-column)) len (- start (point)) |
20323 | 4042 start (point-marker)) |
4043 (delete-char len) | |
4044 (insert (make-string dc ?-))))) | |
4045 (if (not has-comment) | |
4046 (fill-paragraph justify) ; Do the usual thing outside of comment | |
4047 ;; Narrow to include only the comment, and then fill the region. | |
4048 (save-restriction | |
4049 (narrow-to-region | |
4050 ;; Find the first line we should include in the region to fill. | |
4051 (if start (progn (beginning-of-line) (point)) | |
4052 (save-excursion | |
4053 (while (and (zerop (forward-line -1)) | |
4054 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
4055 ;; We may have gone to far. Go forward again. | |
4056 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]") | |
4057 (forward-line 1)) | |
4058 (point))) | |
4059 ;; Find the beginning of the first line past the region to fill. | |
4060 (save-excursion | |
4061 (while (progn (forward-line 1) | |
4062 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
4063 (point))) | |
4064 ;; Remove existing hashes | |
4065 (goto-char (point-min)) | |
4066 (while (progn (forward-line 1) (< (point) (point-max))) | |
4067 (skip-chars-forward " \t") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4068 (and (looking-at "#+") |
20323 | 4069 (delete-char (- (match-end 0) (match-beginning 0))))) |
4070 | |
4071 ;; Lines with only hashes on them can be paragraph boundaries. | |
4072 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$")) | |
4073 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$")) | |
4074 (fill-prefix comment-fill-prefix)) | |
4075 (fill-paragraph justify))) | |
4076 (if (and start) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4077 (progn |
20323 | 4078 (goto-char start) |
4079 (if (> dc 0) | |
4080 (progn (delete-char dc) (insert spaces))) | |
4081 (if (or (= (current-column) c) iteration) nil | |
4082 (setq comment-column c) | |
4083 (indent-for-comment) | |
4084 ;; Repeat once more, flagging as iteration | |
4085 (cperl-fill-paragraph justify t))))))) | |
4086 | |
4087 (defun cperl-do-auto-fill () | |
4088 ;; Break out if the line is short enough | |
4089 (if (> (save-excursion | |
4090 (end-of-line) | |
4091 (current-column)) | |
4092 fill-column) | |
4093 (let ((c (save-excursion (beginning-of-line) | |
4094 (cperl-to-comment-or-eol) (point))) | |
4095 (s (memq (following-char) '(?\ ?\t))) marker) | |
4096 (if (>= c (point)) nil | |
4097 (setq marker (point-marker)) | |
4098 (cperl-fill-paragraph) | |
4099 (goto-char marker) | |
4100 ;; Is not enough, sometimes marker is a start of line | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4101 (if (bolp) (progn (re-search-forward "#+[ \t]*") |
20323 | 4102 (goto-char (match-end 0)))) |
4103 ;; Following space could have gone: | |
4104 (if (or (not s) (memq (following-char) '(?\ ?\t))) nil | |
4105 (insert " ") | |
4106 (backward-char 1)) | |
4107 ;; Previous space could have gone: | |
4108 (or (memq (preceding-char) '(?\ ?\t)) (insert " ")))))) | |
4109 | |
31821 | 4110 (defvar cperl-imenu--function-name-regexp-perl |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4111 (concat |
20323 | 4112 "^\\(" |
4113 "[ \t]*\\(sub\\|package\\)[ \t\n]+\\([a-zA-Z_0-9:']+\\)[ \t]*\\(([^()]*)[ \t]*\\)?" | |
4114 "\\|" | |
4115 "=head\\([12]\\)[ \t]+\\([^\n]+\\)$" | |
4116 "\\)")) | |
4117 | |
4118 (defun cperl-imenu-addback (lst &optional isback name) | |
4119 ;; We suppose that the lst is a DAG, unless the first element only | |
4120 ;; loops back, and ISBACK is set. Thus this function cannot be | |
4121 ;; applied twice without ISBACK set. | |
4122 (cond ((not cperl-imenu-addback) lst) | |
4123 (t | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4124 (or name |
20323 | 4125 (setq name "+++BACK+++")) |
4126 (mapcar (function (lambda (elt) | |
4127 (if (and (listp elt) (listp (cdr elt))) | |
4128 (progn | |
4129 ;; In the other order it goes up | |
4130 ;; one level only ;-( | |
4131 (setcdr elt (cons (cons name lst) | |
4132 (cdr elt))) | |
4133 (cperl-imenu-addback (cdr elt) t name) | |
4134 )))) | |
4135 (if isback (cdr lst) lst)) | |
4136 lst))) | |
4137 | |
31821 | 4138 (defun cperl-imenu--create-perl-index (&optional regexp) |
20323 | 4139 (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
|
4140 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '()) |
20323 | 4141 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function)) |
4142 (index-meth-alist '()) meth | |
4143 packages ends-ranges p | |
4144 (prev-pos 0) char fchar index index1 name (end-range 0) package) | |
4145 (goto-char (point-min)) | |
4146 (if noninteractive | |
4147 (message "Scanning Perl for index") | |
4148 (imenu-progress-message prev-pos 0)) | |
4149 ;; Search for the function | |
4150 (progn ;;save-match-data | |
4151 (while (re-search-forward | |
31821 | 4152 (or regexp cperl-imenu--function-name-regexp-perl) |
20323 | 4153 nil t) |
4154 (or noninteractive | |
4155 (imenu-progress-message prev-pos)) | |
4156 (cond | |
4157 ((and ; Skip some noise if building tags | |
4158 (match-beginning 2) ; package or sub | |
4159 (eq (char-after (match-beginning 2)) ?p) ; package | |
4160 (not (save-match-data | |
4161 (looking-at "[ \t\n]*;")))) ; Plain text word 'package' | |
4162 nil) | |
4163 ((and | |
4164 (match-beginning 2) ; package or sub | |
4165 ;; Skip if quoted (will not skip multi-line ''-comments :-(): | |
4166 (null (get-text-property (match-beginning 1) 'syntax-table)) | |
4167 (null (get-text-property (match-beginning 1) 'syntax-type)) | |
4168 (null (get-text-property (match-beginning 1) 'in-pod))) | |
4169 (save-excursion | |
4170 (goto-char (match-beginning 2)) | |
4171 (setq fchar (following-char)) | |
4172 ) | |
4173 ;; (if (looking-at "([^()]*)[ \t\n\f]*") | |
4174 ;; (goto-char (match-end 0))) ; Messes what follows | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4175 (setq char (following-char) |
20323 | 4176 meth nil |
4177 p (point)) | |
4178 (while (and ends-ranges (>= p (car ends-ranges))) | |
4179 ;; delete obsolete entries | |
4180 (setq ends-ranges (cdr ends-ranges) packages (cdr packages))) | |
4181 (setq package (or (car packages) "") | |
4182 end-range (or (car ends-ranges) 0)) | |
4183 (if (eq fchar ?p) | |
4184 (setq name (buffer-substring (match-beginning 3) (match-end 3)) | |
4185 name (progn | |
4186 (set-text-properties 0 (length name) nil name) | |
4187 name) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4188 package (concat name "::") |
20323 | 4189 name (concat "package " name) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4190 end-range |
20323 | 4191 (save-excursion |
4192 (parse-partial-sexp (point) (point-max) -1) (point)) | |
4193 ends-ranges (cons end-range ends-ranges) | |
4194 packages (cons package packages))) | |
4195 ;; ) | |
4196 ;; Skip this function name if it is a prototype declaration. | |
4197 (if (and (eq fchar ?s) (eq char ?\;)) nil | |
4198 (setq index (imenu-example--name-and-position)) | |
4199 (if (eq fchar ?p) nil | |
4200 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
4201 (set-text-properties 0 (length name) nil name) | |
4202 (cond ((string-match "[:']" name) | |
4203 (setq meth t)) | |
4204 ((> p end-range) nil) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4205 (t |
20323 | 4206 (setq name (concat package name) meth t)))) |
4207 (setcar index name) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4208 (if (eq fchar ?p) |
20323 | 4209 (push index index-pack-alist) |
4210 (push index index-alist)) | |
4211 (if meth (push index index-meth-alist)) | |
4212 (push index index-unsorted-alist))) | |
4213 ((match-beginning 5) ; Pod section | |
4214 ;; (beginning-of-line) | |
4215 (setq index (imenu-example--name-and-position) | |
4216 name (buffer-substring (match-beginning 6) (match-end 6))) | |
4217 (set-text-properties 0 (length name) nil name) | |
4218 (if (eq (char-after (match-beginning 5)) ?2) | |
4219 (setq name (concat " " name))) | |
4220 (setcar index name) | |
4221 (setq index1 (cons (concat "=" name) (cdr index))) | |
4222 (push index index-pod-alist) | |
4223 (push index1 index-unsorted-alist))))) | |
4224 (or noninteractive | |
4225 (imenu-progress-message prev-pos 100)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4226 (setq index-alist |
20323 | 4227 (if (default-value 'imenu-sort-function) |
4228 (sort index-alist (default-value 'imenu-sort-function)) | |
4229 (nreverse index-alist))) | |
4230 (and index-pod-alist | |
4231 (push (cons "+POD headers+..." | |
4232 (nreverse index-pod-alist)) | |
4233 index-alist)) | |
4234 (and (or index-pack-alist index-meth-alist) | |
4235 (let ((lst index-pack-alist) hier-list pack elt group name) | |
4236 ;; Remove "package ", reverse and uniquify. | |
4237 (while lst | |
4238 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8)) | |
4239 (if (assoc name hier-list) nil | |
4240 (setq hier-list (cons (cons name (cdr elt)) hier-list)))) | |
4241 (setq lst index-meth-alist) | |
4242 (while lst | |
4243 (setq elt (car lst) lst (cdr lst)) | |
4244 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt)) | |
4245 (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
|
4246 (if (setq group (assoc pack hier-list)) |
20323 | 4247 (if (listp (cdr group)) |
4248 ;; Have some functions already | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4249 (setcdr group |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4250 (cons (cons (substring |
20323 | 4251 (car elt) |
4252 (+ 2 (match-beginning 0))) | |
4253 (cdr elt)) | |
4254 (cdr group))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4255 (setcdr group (list (cons (substring |
20323 | 4256 (car elt) |
4257 (+ 2 (match-beginning 0))) | |
4258 (cdr elt))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4259 (setq hier-list |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4260 (cons (cons pack |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4261 (list (cons (substring |
20323 | 4262 (car elt) |
4263 (+ 2 (match-beginning 0))) | |
4264 (cdr elt)))) | |
4265 hier-list)))))) | |
4266 (push (cons "+Hierarchy+..." | |
4267 hier-list) | |
4268 index-alist))) | |
4269 (and index-pack-alist | |
4270 (push (cons "+Packages+..." | |
4271 (nreverse index-pack-alist)) | |
4272 index-alist)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4273 (and (or index-pack-alist index-pod-alist |
20323 | 4274 (default-value 'imenu-sort-function)) |
4275 index-unsorted-alist | |
4276 (push (cons "+Unsorted List+..." | |
4277 (nreverse index-unsorted-alist)) | |
4278 index-alist)) | |
4279 (cperl-imenu-addback index-alist))) | |
4280 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4281 (defvar cperl-compilation-error-regexp-alist |
20323 | 4282 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORK). |
4283 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]" | |
4284 2 3)) | |
4285 "Alist that specifies how to match errors in perl output.") | |
4286 | |
4287 (if (fboundp 'eval-after-load) | |
4288 (eval-after-load | |
4289 "mode-compile" | |
4290 '(setq perl-compilation-error-regexp-alist | |
4291 cperl-compilation-error-regexp-alist))) | |
4292 | |
4293 | |
4294 (defun cperl-windowed-init () | |
4295 "Initialization under windowed version." | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4296 (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
|
4297 ;; Need to init anyway: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4298 (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
|
4299 (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
|
4300 (function |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4301 (lambda () |
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
4302 (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
|
4303 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4304 (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
|
4305 (if (fboundp 'eval-after-load) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4306 (eval-after-load |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4307 "ps-print" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4308 '(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
|
4309 |
31821 | 4310 (defvar perl-font-lock-keywords-1 nil |
4311 "Additional expressions to highlight in Perl mode. Minimal set.") | |
4312 (defvar perl-font-lock-keywords nil | |
4313 "Additional expressions to highlight in Perl mode. Default set.") | |
4314 (defvar perl-font-lock-keywords-2 nil | |
4315 "Additional expressions to highlight in Perl mode. Maximal set") | |
4316 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4317 (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
|
4318 (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
|
4319 perl-font-lock-keywords) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4320 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4321 (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
|
4322 (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
|
4323 perl-font-lock-keywords-1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4324 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4325 (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
|
4326 (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
|
4327 perl-font-lock-keywords-2) |
20323 | 4328 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4329 (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
|
4330 ;; 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
|
4331 (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
|
4332 (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
|
4333 "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
|
4334 ;;(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
|
4335 )) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4336 |
20323 | 4337 (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
|
4338 (condition-case errs |
20323 | 4339 (progn |
4340 (require 'font-lock) | |
4341 (and (fboundp 'font-lock-fontify-anchored-keywords) | |
4342 (featurep 'font-lock-extra) | |
4343 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'.")) | |
4344 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored) | |
4345 (if (fboundp 'font-lock-fontify-anchored-keywords) | |
4346 (setq font-lock-anchored t)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4347 (setq |
20323 | 4348 t-font-lock-keywords |
4349 (list | |
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
4350 `("[ \t]+$" 0 ',cperl-invalid-face t) |
20323 | 4351 (cons |
4352 (concat | |
4353 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4354 (mapconcat | |
4355 'identity | |
4356 '("if" "until" "while" "elsif" "else" "unless" "for" | |
4357 "foreach" "continue" "exit" "die" "last" "goto" "next" | |
4358 "redo" "return" "local" "exec" "sub" "do" "dump" "use" | |
4359 "require" "package" "eval" "my" "BEGIN" "END") | |
4360 "\\|") ; Flow control | |
4361 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]" | |
4362 ; In what follows we use `type' style | |
4363 ; for overwritable builtins | |
4364 (list | |
4365 (concat | |
4366 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4367 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm" | |
4368 ;; "and" "atan2" "bind" "binmode" "bless" "caller" | |
4369 ;; "chdir" "chmod" "chown" "chr" "chroot" "close" | |
4370 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt" | |
4371 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent" | |
4372 ;; "endhostent" "endnetent" "endprotoent" "endpwent" | |
4373 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl" | |
4374 ;; "fileno" "flock" "fork" "formline" "ge" "getc" | |
4375 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr" | |
4376 ;; "gethostbyname" "gethostent" "getlogin" | |
4377 ;; "getnetbyaddr" "getnetbyname" "getnetent" | |
4378 ;; "getpeername" "getpgrp" "getppid" "getpriority" | |
4379 ;; "getprotobyname" "getprotobynumber" "getprotoent" | |
4380 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname" | |
4381 ;; "getservbyport" "getservent" "getsockname" | |
4382 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int" | |
4383 ;; "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
|
4384 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt" |
20323 | 4385 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne" |
4386 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe" | |
4387 ;; "quotemeta" "rand" "read" "readdir" "readline" | |
4388 ;; "readlink" "readpipe" "recv" "ref" "rename" "require" | |
4389 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek" | |
4390 ;; "seekdir" "select" "semctl" "semget" "semop" "send" | |
4391 ;; "setgrent" "sethostent" "setnetent" "setpgrp" | |
4392 ;; "setpriority" "setprotoent" "setpwent" "setservent" | |
4393 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite" | |
4394 ;; "shutdown" "sin" "sleep" "socket" "socketpair" | |
4395 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink" | |
4396 ;; "syscall" "sysread" "system" "syswrite" "tell" | |
4397 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst" | |
4398 ;; "umask" "unlink" "unpack" "utime" "values" "vec" | |
4399 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor" | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4400 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|" |
20323 | 4401 "b\\(in\\(d\\|mode\\)\\|less\\)\\|" |
4402 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|" | |
4403 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|" | |
4404 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|" | |
4405 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|" | |
4406 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|" | |
4407 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|" | |
4408 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|" | |
4409 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w" | |
4410 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|" | |
4411 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|" | |
4412 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|" | |
4413 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|" | |
4414 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|" | |
4415 "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
|
4416 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|" |
20323 | 4417 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|" |
4418 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|" | |
4419 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin" | |
4420 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name" | |
4421 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r" | |
4422 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|" | |
4423 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|" | |
4424 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|" | |
4425 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|tem\\|write\\)\\|" | |
4426 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|" | |
4427 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|" | |
4428 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|" | |
4429 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|" | |
4430 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)" | |
4431 "\\)\\>") 2 'font-lock-type-face) | |
4432 ;; In what follows we use `other' style | |
4433 ;; for nonoverwritable builtins | |
4434 ;; Somehow 's', 'm' are not auto-generated??? | |
4435 (list | |
4436 (concat | |
4437 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4438 ;; "AUTOLOAD" "BEGIN" "DESTROY" "END" "__END__" "chomp" | |
4439 ;; "chop" "defined" "delete" "do" "each" "else" "elsif" | |
4440 ;; "eval" "exists" "for" "foreach" "format" "goto" | |
4441 ;; "grep" "if" "keys" "last" "local" "map" "my" "next" | |
4442 ;; "no" "package" "pop" "pos" "print" "printf" "push" | |
4443 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift" | |
4444 ;; "sort" "splice" "split" "study" "sub" "tie" "tr" | |
4445 ;; "undef" "unless" "unshift" "untie" "until" "use" | |
4446 ;; "while" "y" | |
4447 "AUTOLOAD\\|BEGIN\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|" | |
4448 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|" | |
4449 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|if\\|keys\\|" | |
4450 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|" | |
4451 "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
|
4452 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|" |
20323 | 4453 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|" |
4454 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|" | |
4455 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually | |
4456 "\\|[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
|
4457 "\\)\\>") 2 'cperl-nonoverridable-face) |
20323 | 4458 ;; (mapconcat 'identity |
4459 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if" | |
4460 ;; "#include" "#define" "#undef") | |
4461 ;; "\\|") | |
4462 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0 | |
4463 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
|
4464 '("\\<sub[ \t]+\\([^ \t{;()]+\\)[ \t]*\\(([^()]*)[ \t]*\\)?[#{\n]" 1 |
20323 | 4465 font-lock-function-name-face) |
4466 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B; | |
4467 2 font-lock-function-name-face) | |
4468 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$" | |
4469 1 font-lock-function-name-face) | |
4470 (cond ((featurep 'font-lock-extra) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4471 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" |
20323 | 4472 (2 font-lock-string-face t) |
4473 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef} | |
4474 (font-lock-anchored | |
4475 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4476 (2 font-lock-string-face t) | |
4477 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4478 nil nil | |
4479 (1 font-lock-string-face t)))) | |
4480 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4481 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
|
4482 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1 |
20323 | 4483 font-lock-string-face t) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4484 '("^[ \t]*\\([a-zA-Z0-9_]+[ \t]*:\\)[ \t]*\\($\\|{\\|\\<\\(until\\|while\\|for\\(each\\)?\\|do\\)\\>\\)" 1 |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
4485 font-lock-constant-face) ; labels |
20323 | 4486 '("\\<\\(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
|
4487 2 font-lock-constant-face) |
20323 | 4488 (cond ((featurep 'font-lock-extra) |
4489 '("^[ \t]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
4490 (3 font-lock-variable-name-face) | |
4491 (4 '(another 4 nil | |
4492 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
4493 (1 font-lock-variable-name-face) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4494 (2 '(restart 2 nil) nil t))) |
20323 | 4495 nil t))) ; local variables, multiple |
4496 (font-lock-anchored | |
4497 '("^[ \t{}]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4498 (3 font-lock-variable-name-face) | |
4499 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4500 nil nil | |
4501 (1 font-lock-variable-name-face)))) | |
4502 (t '("^[ \t{}]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4503 3 font-lock-variable-name-face))) | |
4504 '("\\<for\\(each\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*(" | |
4505 2 font-lock-variable-name-face))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4506 (setq |
20323 | 4507 t-font-lock-keywords-1 |
4508 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock | |
4509 (not cperl-xemacs-p) ; not yet as of XEmacs 19.12 | |
4510 '( | |
4511 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1 | |
4512 (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
|
4513 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4514 cperl-array-face) |
20323 | 4515 t) ; arrays and hashes |
4516 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)" | |
4517 1 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4518 (if (= (- (match-end 2) (match-beginning 2)) 1) |
20323 | 4519 (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
|
4520 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4521 cperl-array-face) ; arrays and hashes |
20323 | 4522 font-lock-variable-name-face) ; Just to put something |
4523 t) | |
4524 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2") | |
4525 ;;; 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
|
4526 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)" |
20323 | 4527 ;;(3 font-lock-function-name-face t t) |
4528 ;;(4 | |
4529 ;; (if (cperl-slash-is-regexp) | |
4530 ;; font-lock-function-name-face 'default) nil t)) | |
4531 ))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4532 (setq perl-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
|
4533 (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
|
4534 (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
|
4535 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
|
4536 t-font-lock-keywords) |
20323 | 4537 perl-font-lock-keywords perl-font-lock-keywords-1 |
4538 perl-font-lock-keywords-2 (append | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4539 perl-font-lock-keywords-1 |
20323 | 4540 t-font-lock-keywords-1))) |
4541 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init)) | |
4542 (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
|
4543 (eval ; Avoid a warning |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4544 '(font-lock-require-faces |
20323 | 4545 (list |
4546 ;; Color-light Color-dark Gray-light Gray-dark Mono | |
4547 (list 'font-lock-comment-face | |
4548 ["Firebrick" "OrangeRed" "DimGray" "Gray80"] | |
4549 nil | |
4550 [nil nil t t t] | |
4551 [nil nil t t t] | |
4552 nil) | |
4553 (list 'font-lock-string-face | |
4554 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"] | |
4555 nil | |
4556 nil | |
4557 [nil nil t t t] | |
4558 nil) | |
4559 (list 'font-lock-function-name-face | |
4560 (vector | |
4561 "Blue" "LightSkyBlue" "Gray50" "LightGray" | |
4562 (cdr (assq 'background-color ; if mono | |
4563 (frame-parameters)))) | |
4564 (vector | |
4565 nil nil nil nil | |
4566 (cdr (assq 'foreground-color ; if mono | |
4567 (frame-parameters)))) | |
4568 [nil nil t t t] | |
4569 nil | |
4570 nil) | |
4571 (list 'font-lock-variable-name-face | |
4572 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"] | |
4573 nil | |
4574 [nil nil t t t] | |
4575 [nil nil t t t] | |
4576 nil) | |
4577 (list 'font-lock-type-face | |
4578 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"] | |
4579 nil | |
4580 [nil nil t t t] | |
4581 nil | |
4582 [nil nil t t t] | |
4583 ) | |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
4584 (list 'font-lock-constant-face |
20323 | 4585 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"] |
4586 nil | |
4587 [nil nil t t t] | |
4588 nil | |
4589 [nil nil t t t] | |
4590 ) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4591 (list 'cperl-nonoverridable-face |
20323 | 4592 ["chartreuse3" ("orchid1" "orange") |
4593 nil "Gray80"] | |
4594 [nil nil "gray90"] | |
4595 [nil nil nil t t] | |
4596 [nil nil t t] | |
4597 [nil nil t t t] | |
4598 ) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4599 (list 'cperl-array-face |
20323 | 4600 ["blue" "yellow" nil "Gray80"] |
4601 ["lightyellow2" ("navy" "os2blue" "darkgreen") | |
4602 "gray90"] | |
4603 t | |
4604 nil | |
4605 nil) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4606 (list 'cperl-hash-face |
20323 | 4607 ["red" "red" nil "Gray80"] |
4608 ["lightyellow2" ("navy" "os2blue" "darkgreen") | |
4609 "gray90"] | |
4610 t | |
4611 t | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4612 nil)))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4613 ;; Do it the dull way, without choose-color |
20323 | 4614 (defvar cperl-guessed-background nil |
4615 "Display characteristics as guessed by cperl.") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4616 ;; (or (fboundp 'x-color-defined-p) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4617 ;; (defalias 'x-color-defined-p |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4618 ;; (cond ((fboundp 'color-defined-p) 'color-defined-p) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4619 ;; ;; XEmacs >= 19.12 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4620 ;; ((fboundp 'valid-color-name-p) 'valid-color-name-p) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4621 ;; ;; XEmacs 19.11 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4622 ;; (t 'x-valid-color-name-p)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4623 (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
|
4624 "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
|
4625 (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
|
4626 "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
|
4627 (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
|
4628 "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
|
4629 (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
|
4630 "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
|
4631 (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
|
4632 "Face for comments") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4633 (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
|
4634 "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
|
4635 (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
|
4636 "Face for hashes") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4637 (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
|
4638 "Face for arrays") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4639 ;;(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
|
4640 ;;(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
|
4641 ;;(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
|
4642 ;; (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
|
4643 ;; '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
|
4644 ;; "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
|
4645 ;;(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
|
4646 ;; (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
|
4647 ;; 'cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4648 ;; "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
|
4649 ;;(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
|
4650 ;; (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
|
4651 ;; (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
|
4652 ;; '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
|
4653 ;; "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
|
4654 ;; (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
|
4655 ;; (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
|
4656 ;; '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
|
4657 ;; "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
|
4658 ;; (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
|
4659 ;; (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
|
4660 ;; '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
|
4661 ;; "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
|
4662 (if (and |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4663 (not (cperl-is-face 'cperl-array-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4664 (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
|
4665 (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
|
4666 (if (and |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4667 (not (cperl-is-face 'cperl-hash-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4668 (cperl-is-face 'font-lock-other-emphasized-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4669 (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
|
4670 'cperl-hash-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4671 (if (and |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4672 (not (cperl-is-face 'cperl-nonoverridable-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4673 (cperl-is-face 'font-lock-other-type-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4674 (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
|
4675 'cperl-nonoverridable-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4676 ;;(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
|
4677 ;; (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
|
4678 ;; 'cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4679 ;; "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
|
4680 ;;(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
|
4681 ;; (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
|
4682 ;; 'cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4683 ;; "Face to use for arrays.")) |
20323 | 4684 ;; Here we try to guess background |
4685 (let ((background | |
4686 (if (boundp 'font-lock-background-mode) | |
4687 font-lock-background-mode | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4688 'light)) |
20323 | 4689 (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
|
4690 ;; cperl-is-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4691 ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4692 ;;;; (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
|
4693 ;;;; (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
|
4694 ;;;; (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
|
4695 ;;;; (face-list |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4696 ;;;; (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
|
4697 ;;;; (t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4698 ;;;; (function (lambda (face) (boundp face)))))) |
20323 | 4699 (defvar cperl-guessed-background |
4700 (if (and (boundp 'font-lock-display-type) | |
4701 (eq font-lock-display-type 'grayscale)) | |
4702 'gray | |
4703 background) | |
4704 "Background as guessed by CPerl mode") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4705 (if (and |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4706 (not (cperl-is-face 'font-lock-constant-face)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4707 (cperl-is-face 'font-lock-reference-face)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4708 (copy-face 'font-lock-reference-face 'font-lock-constant-face)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4709 (if (cperl-is-face 'font-lock-type-face) nil |
20323 | 4710 (copy-face 'default 'font-lock-type-face) |
4711 (cond | |
4712 ((eq background 'light) | |
4713 (set-face-foreground 'font-lock-type-face | |
4714 (if (x-color-defined-p "seagreen") | |
4715 "seagreen" | |
4716 "sea green"))) | |
4717 ((eq background 'dark) | |
4718 (set-face-foreground 'font-lock-type-face | |
4719 (if (x-color-defined-p "os2pink") | |
4720 "os2pink" | |
4721 "pink"))) | |
4722 (t | |
4723 (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
|
4724 (if (cperl-is-face 'cperl-nonoverridable-face) |
20323 | 4725 nil |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4726 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face) |
20323 | 4727 (cond |
4728 ((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
|
4729 (set-face-foreground 'cperl-nonoverridable-face |
20323 | 4730 (if (x-color-defined-p "chartreuse3") |
4731 "chartreuse3" | |
4732 "chartreuse"))) | |
4733 ((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
|
4734 (set-face-foreground 'cperl-nonoverridable-face |
20323 | 4735 (if (x-color-defined-p "orchid1") |
4736 "orchid1" | |
4737 "orange"))))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4738 ;;; (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
|
4739 ;;; (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
|
4740 ;;; (cond |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4741 ;;; ((eq background 'light) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4742 ;;; (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
|
4743 ;;; (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
|
4744 ;;; "lightyellow2" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4745 ;;; (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
|
4746 ;;; "lightyellow" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4747 ;;; "light yellow")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4748 ;;; ((eq background 'dark) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4749 ;;; (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
|
4750 ;;; (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
|
4751 ;;; "navy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4752 ;;; (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
|
4753 ;;; "darkgreen" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4754 ;;; "dark green")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4755 ;;; (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
|
4756 ;;; (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
|
4757 ;;; (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
|
4758 ;;; (cond |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4759 ;;; ((eq background 'light) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4760 ;;; (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
|
4761 ;;; (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
|
4762 ;;; "lightyellow2" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4763 ;;; "lightyellow"))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4764 ;;; ((eq background 'dark) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4765 ;;; (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
|
4766 ;;; (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
|
4767 ;;; "navy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4768 ;;; (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
|
4769 ;;; "darkgreen" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4770 ;;; "dark green")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4771 ;;; (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
|
4772 (if (cperl-is-face 'font-lock-variable-name-face) nil |
20323 | 4773 (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
|
4774 (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
|
4775 (copy-face 'italic 'font-lock-constant-face)))) |
20323 | 4776 (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
|
4777 (error (message "cperl-init-faces (ignored): %s" errs)))) |
20323 | 4778 |
4779 | |
4780 (defun cperl-ps-print-init () | |
4781 "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
|
4782 (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
|
4783 '(setq ps-bold-faces |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4784 ;; 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
|
4785 ;; 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
|
4786 (append '(cperl-array-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4787 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
|
4788 ps-bold-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4789 ps-italic-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4790 ;; 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
|
4791 (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
|
4792 cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4793 ps-italic-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4794 ps-underlined-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4795 ;; 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
|
4796 (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
|
4797 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4798 underline |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4799 cperl-nonoverridable-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4800 ps-underlined-faces)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4801 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4802 (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
|
4803 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4804 (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
|
4805 "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
|
4806 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
|
4807 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
|
4808 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4809 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
|
4810 (interactive) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4811 (or file |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4812 (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
|
4813 "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
|
4814 (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
|
4815 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
|
4816 (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
|
4817 (setq file nil)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4818 (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
|
4819 (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
|
4820 (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
|
4821 (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
|
4822 (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
|
4823 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4824 ;;; (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
|
4825 ;;; "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
|
4826 ;;; ;; 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
|
4827 ;;; (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
|
4828 ;;; (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
|
4829 ;;; (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
|
4830 ;;; (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
|
4831 ;;; (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
|
4832 ;;; cperl-array-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4833 ;;; font-lock-keyword-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4834 ;;; font-lock-variable-name-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4835 ;;; font-lock-constant-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4836 ;;; 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
|
4837 ;;; font-lock-other-emphasized-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4838 ;;; 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
|
4839 ;;; ps-bold-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4840 ;;; (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
|
4841 ;;; (append '(cperl-nonoverridable-face |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4842 ;;; font-lock-constant-face |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4843 ;;; 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
|
4844 ;;; 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
|
4845 ;;; cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4846 ;;; ps-italic-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4847 ;;; (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
|
4848 ;;; (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
|
4849 ;;; cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4850 ;;; 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
|
4851 ;;; cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4852 ;;; 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
|
4853 ;;; ps-underlined-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4854 ;;; (cons 'font-lock-type-face ps-underlined-faces)) |
20323 | 4855 |
4856 | |
4857 (if (cperl-enable-font-lock) (cperl-windowed-init)) | |
4858 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4859 (defconst cperl-styles-entries |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4860 '(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
|
4861 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
|
4862 cperl-merge-trailing-else |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4863 cperl-continued-statement-offset)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4864 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4865 (defconst cperl-style-alist |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4866 '(("CPerl" ; =GNU without extra-newline-before-brace |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4867 (cperl-indent-level . 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4868 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4869 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4870 (cperl-label-offset . -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4871 (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
|
4872 (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
|
4873 (cperl-continued-statement-offset . 2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4874 ("PerlStyle" ; CPerl with 4 as indent |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4875 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4876 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4877 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4878 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4879 (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
|
4880 (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
|
4881 (cperl-continued-statement-offset . 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4882 ("GNU" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4883 (cperl-indent-level . 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4884 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4885 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4886 (cperl-label-offset . -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4887 (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
|
4888 (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
|
4889 (cperl-continued-statement-offset . 2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4890 ("K&R" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4891 (cperl-indent-level . 5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4892 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4893 (cperl-continued-brace-offset . -5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4894 (cperl-label-offset . -5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4895 ;;(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
|
4896 (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
|
4897 (cperl-continued-statement-offset . 5)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4898 ("BSD" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4899 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4900 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4901 (cperl-continued-brace-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4902 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4903 ;;(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
|
4904 (cperl-continued-statement-offset . 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4905 ("C++" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4906 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4907 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4908 (cperl-continued-brace-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4909 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4910 (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
|
4911 (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
|
4912 (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
|
4913 ("Current") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4914 ("Whitesmith" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4915 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4916 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4917 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4918 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4919 ;;(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
|
4920 (cperl-continued-statement-offset . 4))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4921 "(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
|
4922 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
|
4923 |
20323 | 4924 (defun cperl-set-style (style) |
4925 "Set CPerl-mode variables to use one of several different indentation styles. | |
4926 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
|
4927 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
|
4928 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
|
4929 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4930 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
|
4931 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
|
4932 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4933 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
|
4934 side-effect of memorizing only." |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4935 (interactive |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4936 (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
|
4937 cperl-style-alist))) |
20323 | 4938 (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
|
4939 (or cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4940 (setq cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4941 (mapcar (function |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4942 (lambda (name) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4943 (cons name (eval name)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4944 cperl-styles-entries))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4945 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym) |
20323 | 4946 (while style |
4947 (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
|
4948 (set (car setting) (cdr setting))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4949 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4950 (defun cperl-set-style-back () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4951 "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
|
4952 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4953 (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
|
4954 (let (setting) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4955 (while cperl-old-style |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4956 (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
|
4957 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
|
4958 (set (car setting) (cdr setting))))) |
20323 | 4959 |
4960 (defun cperl-check-syntax () | |
4961 (interactive) | |
4962 (require 'mode-compile) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4963 (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
|
4964 (eval '(mode-compile)))) ; Avoid a warning |
20323 | 4965 |
4966 (defun cperl-info-buffer (type) | |
4967 ;; Returns buffer with documentation. Creates if missing. | |
4968 ;; If TYPE, this vars buffer. | |
4969 ;; Special care is taken to not stomp over an existing info buffer | |
4970 (let* ((bname (if type "*info-perl-var*" "*info-perl*")) | |
4971 (info (get-buffer bname)) | |
4972 (oldbuf (get-buffer "*info*"))) | |
4973 (if info info | |
4974 (save-window-excursion | |
4975 ;; Get Info running | |
4976 (require 'info) | |
4977 (cond (oldbuf | |
4978 (set-buffer oldbuf) | |
4979 (rename-buffer "*info-perl-tmp*"))) | |
4980 (save-window-excursion | |
4981 (info)) | |
4982 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc")) | |
4983 (set-buffer "*info*") | |
4984 (rename-buffer bname) | |
4985 (cond (oldbuf | |
4986 (set-buffer "*info-perl-tmp*") | |
4987 (rename-buffer "*info*") | |
4988 (set-buffer bname))) | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
4989 (make-local-variable 'window-min-height) |
20323 | 4990 (setq window-min-height 2) |
4991 (current-buffer))))) | |
4992 | |
4993 (defun cperl-word-at-point (&optional p) | |
4994 ;; Returns the word at point or at P. | |
4995 (save-excursion | |
4996 (if p (goto-char p)) | |
4997 (or (cperl-word-at-point-hard) | |
4998 (progn | |
4999 (require 'etags) | |
5000 (funcall (or (and (boundp 'find-tag-default-function) | |
5001 find-tag-default-function) | |
5002 (get major-mode 'find-tag-default-function) | |
5003 ;; XEmacs 19.12 has `find-tag-default-hook'; it is | |
5004 ;; automatically used within `find-tag-default': | |
5005 'find-tag-default)))))) | |
5006 | |
5007 (defun cperl-info-on-command (command) | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5008 "Show documentation for Perl command in other window. |
20323 | 5009 If perl-info buffer is shown in some frame, uses this frame. |
5010 Customized by setting variables `cperl-shrink-wrap-info-frame', | |
5011 `cperl-max-help-size'." | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5012 (interactive |
20323 | 5013 (let* ((default (cperl-word-at-point)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5014 (read (read-string |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5015 (format "Find doc for Perl function (default %s): " |
20323 | 5016 default)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5017 (list (if (equal read "") |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5018 default |
20323 | 5019 read)))) |
5020 | |
5021 (let ((buffer (current-buffer)) | |
5022 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///" | |
5023 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner | |
5024 max-height char-height buf-list) | |
5025 (if (string-match "^-[a-zA-Z]$" command) | |
5026 (setq cmd-desc "^-X[ \t\n]")) | |
5027 (setq isvar (string-match "^[$@%]" command) | |
5028 buf (cperl-info-buffer isvar) | |
5029 iniwin (selected-window) | |
5030 fr1 (window-frame iniwin)) | |
5031 (set-buffer buf) | |
5032 (beginning-of-buffer) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5033 (or isvar |
20323 | 5034 (progn (re-search-forward "^-X[ \t\n]") |
5035 (forward-line -1))) | |
5036 (if (re-search-forward cmd-desc nil t) | |
5037 (progn | |
5038 ;; Go back to beginning of the group (ex, for qq) | |
5039 (if (re-search-backward "^[ \t\n\f]") | |
5040 (forward-line 1)) | |
5041 (beginning-of-line) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5042 ;; Get some of |
20323 | 5043 (setq pos (point) |
5044 buf-list (list buf "*info-perl-var*" "*info-perl*")) | |
5045 (while (and (not win) buf-list) | |
5046 (setq win (get-buffer-window (car buf-list) t)) | |
5047 (setq buf-list (cdr buf-list))) | |
5048 (or (not win) | |
5049 (eq (window-buffer win) buf) | |
5050 (set-window-buffer win buf)) | |
5051 (and win (setq fr2 (window-frame win))) | |
5052 (if (or (not fr2) (eq fr1 fr2)) | |
5053 (pop-to-buffer buf) | |
5054 (special-display-popup-frame buf) ; Make it visible | |
5055 (select-window win)) | |
5056 (goto-char pos) ; Needed (?!). | |
5057 ;; Resize | |
5058 (setq iniheight (window-height) | |
5059 frheight (frame-height) | |
5060 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
|
5061 (cond ((if not-loner cperl-max-help-size |
20323 | 5062 cperl-shrink-wrap-info-frame) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5063 (setq height |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5064 (+ 2 |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5065 (count-lines |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5066 pos |
20323 | 5067 (save-excursion |
5068 (if (re-search-forward | |
5069 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t) | |
5070 (match-beginning 0) (point-max))))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5071 max-height |
20323 | 5072 (if not-loner |
5073 (/ (* (- frheight 3) cperl-max-help-size) 100) | |
5074 (setq char-height (frame-char-height)) | |
5075 ;; Non-functioning under OS/2: | |
5076 (if (eq char-height 1) (setq char-height 18)) | |
5077 ;; Title, menubar, + 2 for slack | |
5078 (- (/ (x-display-pixel-height) char-height) 4) | |
5079 )) | |
5080 (if (> height max-height) (setq height max-height)) | |
5081 ;;(message "was %s doing %s" iniheight height) | |
5082 (if not-loner | |
5083 (enlarge-window (- height iniheight)) | |
5084 (set-frame-height (window-frame win) (1+ height))))) | |
5085 (set-window-start (selected-window) pos)) | |
5086 (message "No entry for %s found." command)) | |
5087 ;;(pop-to-buffer buffer) | |
5088 (select-window iniwin))) | |
5089 | |
5090 (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
|
5091 "Show documentation for Perl command at point in other window." |
20323 | 5092 (interactive) |
5093 (cperl-info-on-command (cperl-word-at-point))) | |
5094 | |
5095 (defun cperl-imenu-info-imenu-search () | |
5096 (if (looking-at "^-X[ \t\n]") nil | |
5097 (re-search-backward | |
5098 "^\n\\([-a-zA-Z_]+\\)[ \t\n]") | |
5099 (forward-line 1))) | |
5100 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5101 (defun cperl-imenu-info-imenu-name () |
20323 | 5102 (buffer-substring |
5103 (match-beginning 1) (match-end 1))) | |
5104 | |
5105 (defun cperl-imenu-on-info () | |
5106 (interactive) | |
5107 (let* ((buffer (current-buffer)) | |
5108 imenu-create-index-function | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5109 imenu-prev-index-position-function |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5110 imenu-extract-index-name-function |
20323 | 5111 (index-item (save-restriction |
5112 (save-window-excursion | |
5113 (set-buffer (cperl-info-buffer nil)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5114 (setq imenu-create-index-function |
20323 | 5115 'imenu-default-create-index-function |
5116 imenu-prev-index-position-function | |
5117 'cperl-imenu-info-imenu-search | |
5118 imenu-extract-index-name-function | |
5119 'cperl-imenu-info-imenu-name) | |
5120 (imenu-choose-buffer-index))))) | |
5121 (and index-item | |
5122 (progn | |
5123 (push-mark) | |
5124 (pop-to-buffer "*info-perl*") | |
5125 (cond | |
5126 ((markerp (cdr index-item)) | |
5127 (goto-char (marker-position (cdr index-item)))) | |
5128 (t | |
5129 (goto-char (cdr index-item)))) | |
5130 (set-window-start (selected-window) (point)) | |
5131 (pop-to-buffer buffer))))) | |
5132 | |
5133 (defun cperl-lineup (beg end &optional step minshift) | |
5134 "Lineup construction in a region. | |
5135 Beginning of region should be at the start of a construction. | |
5136 All first occurrences of this construction in the lines that are | |
5137 partially contained in the region are lined up at the same column. | |
5138 | |
5139 MINSHIFT is the minimal amount of space to insert before the construction. | |
5140 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
|
5141 If STEP is nil, `cperl-lineup-step' will be used |
20323 | 5142 \(or `cperl-indent-level', if `cperl-lineup-step' is `nil'). |
5143 Will not move the position at the start to the left." | |
5144 (interactive "r") | |
5145 (let (search col tcol seen b e) | |
5146 (save-excursion | |
5147 (goto-char end) | |
5148 (end-of-line) | |
5149 (setq end (point-marker)) | |
5150 (goto-char beg) | |
5151 (skip-chars-forward " \t\f") | |
5152 (setq beg (point-marker)) | |
5153 (indent-region beg end nil) | |
5154 (goto-char beg) | |
5155 (setq col (current-column)) | |
5156 (if (looking-at "[a-zA-Z0-9_]") | |
5157 (if (looking-at "\\<[a-zA-Z0-9_]+\\>") | |
5158 (setq search | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5159 (concat "\\<" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5160 (regexp-quote |
20323 | 5161 (buffer-substring (match-beginning 0) |
5162 (match-end 0))) "\\>")) | |
5163 (error "Cannot line up in a middle of the word")) | |
5164 (if (looking-at "$") | |
5165 (error "Cannot line up end of line")) | |
5166 (setq search (regexp-quote (char-to-string (following-char))))) | |
5167 (setq step (or step cperl-lineup-step cperl-indent-level)) | |
5168 (or minshift (setq minshift 1)) | |
5169 (while (progn | |
5170 (beginning-of-line 2) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5171 (and (< (point) end) |
20323 | 5172 (re-search-forward search end t) |
5173 (goto-char (match-beginning 0)))) | |
5174 (setq tcol (current-column) seen t) | |
5175 (if (> tcol col) (setq col tcol))) | |
5176 (or seen | |
5177 (error "The construction to line up occurred only once")) | |
5178 (goto-char beg) | |
5179 (setq col (+ col minshift)) | |
5180 (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
|
5181 (while |
20323 | 5182 (progn |
5183 (setq e (point)) | |
5184 (skip-chars-backward " \t") | |
5185 (delete-region (point) e) | |
5186 (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
|
5187 (beginning-of-line 2) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5188 (and (< (point) end) |
20323 | 5189 (re-search-forward search end t) |
5190 (goto-char (match-beginning 0)))))))) ; No body | |
5191 | |
5192 (defun cperl-etags (&optional add all files) | |
5193 "Run etags with appropriate options for Perl files. | |
5194 If optional argument ALL is `recursive', will process Perl files | |
5195 in subdirectories too." | |
5196 (interactive) | |
5197 (let ((cmd "etags") | |
5198 (args '("-l" "none" "-r" "/\\<\\(package\\|sub\\)[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([{#]\\|$\\)\\)/\\4/")) | |
5199 res) | |
5200 (if add (setq args (cons "-a" args))) | |
5201 (or files (setq files (list buffer-file-name))) | |
5202 (cond | |
5203 ((eq all 'recursive) | |
5204 ;;(error "Not implemented: recursive") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5205 (setq args (append (list "-e" |
20323 | 5206 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/} |
5207 use File::Find; | |
5208 find(\\&wanted, '.'); | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5209 exec @ARGV;" |
20323 | 5210 cmd) args) |
5211 cmd "perl")) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5212 (all |
20323 | 5213 ;;(error "Not implemented: all") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5214 (setq args (append (list "-e" |
20323 | 5215 "push @ARGV, <*.PL *.pl *.pm>; |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5216 exec @ARGV;" |
20323 | 5217 cmd) args) |
5218 cmd "perl")) | |
5219 (t | |
5220 (setq args (append args files)))) | |
5221 (setq res (apply 'call-process cmd nil nil nil args)) | |
5222 (or (eq res 0) | |
5223 (message "etags returned \"%s\"" res)))) | |
5224 | |
5225 (defun cperl-toggle-auto-newline () | |
5226 "Toggle the state of `cperl-auto-newline'." | |
5227 (interactive) | |
5228 (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
|
5229 (message "Newlines will %sbe auto-inserted now." |
20323 | 5230 (if cperl-auto-newline "" "not "))) |
5231 | |
5232 (defun cperl-toggle-abbrev () | |
5233 "Toggle the state of automatic keyword expansion in CPerl mode." | |
5234 (interactive) | |
5235 (abbrev-mode (if abbrev-mode 0 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5236 (message "Perl control structure will %sbe auto-inserted now." |
20323 | 5237 (if abbrev-mode "" "not "))) |
5238 | |
5239 | |
5240 (defun cperl-toggle-electric () | |
5241 "Toggle the state of parentheses doubling in CPerl mode." | |
5242 (interactive) | |
5243 (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
|
5244 (message "Parentheses will %sbe auto-doubled now." |
20323 | 5245 (if (cperl-val 'cperl-electric-parens) "" "not "))) |
5246 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5247 (defun cperl-toggle-autohelp () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5248 "Toggle the state of automatic help message in CPerl mode. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5249 See `cperl-lazy-help-time' too." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5250 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5251 (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
|
5252 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5253 (if cperl-lazy-installed |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5254 (eval '(cperl-lazy-unstall)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5255 (cperl-lazy-install)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5256 (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
|
5257 (if cperl-lazy-installed "" "not "))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5258 (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
|
5259 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5260 (defun cperl-toggle-construct-fix () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5261 "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
|
5262 (interactive) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5263 (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
|
5264 (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
|
5265 nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5266 1)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5267 (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
|
5268 (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
|
5269 |
20323 | 5270 ;;;; Tags file creation. |
5271 | |
5272 (defvar cperl-tmp-buffer " *cperl-tmp*") | |
5273 | |
5274 (defun cperl-setup-tmp-buf () | |
5275 (set-buffer (get-buffer-create cperl-tmp-buffer)) | |
5276 (set-syntax-table cperl-mode-syntax-table) | |
5277 (buffer-disable-undo) | |
5278 (auto-fill-mode 0) | |
5279 (if cperl-use-syntax-table-text-property-for-tags | |
5280 (progn | |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5281 (make-local-variable 'parse-sexp-lookup-properties) |
20323 | 5282 ;; Do not introduce variable if not needed, we check it! |
5283 (set 'parse-sexp-lookup-properties t)))) | |
5284 | |
5285 (defun cperl-xsub-scan () | |
5286 (require 'imenu) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5287 (let ((index-alist '()) |
20323 | 5288 (prev-pos 0) index index1 name package prefix) |
5289 (goto-char (point-min)) | |
5290 (if noninteractive | |
5291 (message "Scanning XSUB for index") | |
5292 (imenu-progress-message prev-pos 0)) | |
5293 ;; Search for the function | |
5294 (progn ;;save-match-data | |
5295 (while (re-search-forward | |
5296 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)" | |
5297 nil t) | |
5298 (or noninteractive | |
5299 (imenu-progress-message prev-pos)) | |
5300 (cond | |
5301 ((match-beginning 2) ; SECTION | |
5302 (setq package (buffer-substring (match-beginning 2) (match-end 2))) | |
5303 (goto-char (match-beginning 0)) | |
5304 (skip-chars-forward " \t") | |
5305 (forward-char 1) | |
5306 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>") | |
5307 (setq prefix (buffer-substring (match-beginning 1) (match-end 1))) | |
5308 (setq prefix nil))) | |
5309 ((not package) nil) ; C language section | |
5310 ((match-beginning 3) ; XSUB | |
5311 (goto-char (1+ (match-beginning 3))) | |
5312 (setq index (imenu-example--name-and-position)) | |
5313 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
5314 (if (and prefix (string-match (concat "^" prefix) name)) | |
5315 (setq name (substring name (length prefix)))) | |
5316 (cond ((string-match "::" name) nil) | |
5317 (t | |
5318 (setq index1 (cons (concat package "::" name) (cdr index))) | |
5319 (push index1 index-alist))) | |
5320 (setcar index name) | |
5321 (push index index-alist)) | |
5322 (t ; BOOT: section | |
5323 ;; (beginning-of-line) | |
5324 (setq index (imenu-example--name-and-position)) | |
5325 (setcar index (concat package "::BOOT:")) | |
5326 (push index index-alist))))) | |
5327 (or noninteractive | |
5328 (imenu-progress-message prev-pos 100)) | |
5329 index-alist)) | |
5330 | |
5331 (defun cperl-find-tags (file xs topdir) | |
5332 (let (ind (b (get-buffer cperl-tmp-buffer)) lst elt pos ret rel | |
5333 (cperl-pod-here-fontify nil)) | |
5334 (save-excursion | |
5335 (if b (set-buffer b) | |
5336 (cperl-setup-tmp-buf)) | |
5337 (erase-buffer) | |
5338 (setq file (car (insert-file-contents file))) | |
5339 (message "Scanning file %s ..." file) | |
5340 (if (and cperl-use-syntax-table-text-property-for-tags | |
5341 (not xs)) | |
5342 (condition-case err ; after __END__ may have garbage | |
5343 (cperl-find-pods-heres) | |
5344 (error (message "While scanning for syntax: %s" err)))) | |
5345 (if xs | |
5346 (setq lst (cperl-xsub-scan)) | |
31821 | 5347 (setq ind (cperl-imenu--create-perl-index)) |
20323 | 5348 (setq lst (cdr (assoc "+Unsorted List+..." ind)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5349 (setq lst |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5350 (mapcar |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5351 (function |
20323 | 5352 (lambda (elt) |
5353 (cond ((string-match "^[_a-zA-Z]" (car elt)) | |
5354 (goto-char (cdr elt)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5355 (beginning-of-line) ; pos should be of the start of the line |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5356 (list (car elt) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5357 (point) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5358 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l |
20323 | 5359 (buffer-substring (progn |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5360 (skip-chars-forward |
20323 | 5361 ":_a-zA-Z0-9") |
5362 (or (eolp) (forward-char 1)) | |
5363 (point)) | |
5364 (progn | |
5365 (beginning-of-line) | |
5366 (point)))))))) | |
5367 lst)) | |
5368 (erase-buffer) | |
5369 (while lst | |
5370 (setq elt (car lst) lst (cdr lst)) | |
5371 (if elt | |
5372 (progn | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5373 (insert (elt elt 3) |
20323 | 5374 127 |
5375 (if (string-match "^package " (car elt)) | |
5376 (substring (car elt) 8) | |
5377 (car elt) ) | |
5378 1 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5379 (number-to-string (elt elt 2)) ; Line |
20323 | 5380 "," |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5381 (number-to-string (1- (elt elt 1))) ; Char pos 0-based |
20323 | 5382 "\n") |
5383 (if (and (string-match "^[_a-zA-Z]+::" (car elt)) | |
5384 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]" | |
5385 (elt elt 3))) | |
5386 ;; Need to insert the name without package as well | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5387 (setq lst (cons (cons (substring (elt elt 3) |
20323 | 5388 (match-beginning 1) |
5389 (match-end 1)) | |
5390 (cdr elt)) | |
5391 lst)))))) | |
5392 (setq pos (point)) | |
5393 (goto-char 1) | |
5394 (setq rel file) | |
5395 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties | |
5396 (set-text-properties 0 (length rel) nil rel) | |
5397 (and (equal topdir (substring rel 0 (length topdir))) | |
5398 (setq rel (substring file (length topdir)))) | |
5399 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n") | |
5400 (setq ret (buffer-substring 1 (point-max))) | |
5401 (erase-buffer) | |
5402 (or noninteractive | |
5403 (message "Scanning file %s finished" file)) | |
5404 ret))) | |
5405 | |
5406 (defun cperl-add-tags-recurse-noxs () | |
5407 "Add to TAGS data for Perl and XSUB files in the current directory and kids. | |
5408 Use as | |
5409 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
|
5410 -f cperl-add-tags-recurse |
20323 | 5411 " |
5412 (cperl-write-tags nil nil t t nil t)) | |
5413 | |
5414 (defun cperl-add-tags-recurse () | |
5415 "Add to TAGS file data for Perl files in the current directory and kids. | |
5416 Use as | |
5417 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
|
5418 -f cperl-add-tags-recurse |
20323 | 5419 " |
5420 (cperl-write-tags nil nil t t)) | |
5421 | |
5422 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir) | |
5423 ;; If INBUFFER, do not select buffer, and do not save | |
5424 ;; If ERASE is `ignore', do not erase, and do not try to delete old info. | |
5425 (require 'etags) | |
5426 (if file nil | |
5427 (setq file (if dir default-directory (buffer-file-name))) | |
5428 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!"))) | |
5429 (or topdir | |
5430 (setq topdir default-directory)) | |
5431 (let ((tags-file-name "TAGS") | |
5432 (case-fold-search (eq system-type 'emx)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5433 xs rel) |
20323 | 5434 (save-excursion |
5435 (cond (inbuffer nil) ; Already there | |
5436 ((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
|
5437 (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
|
5438 (visit-tags-table-buffer) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5439 (visit-tags-table-buffer tags-file-name))) |
20323 | 5440 (t (set-buffer (find-file-noselect tags-file-name)))) |
5441 (cond | |
5442 (dir | |
5443 (cond ((eq erase 'ignore)) | |
5444 (erase | |
5445 (erase-buffer) | |
5446 (setq erase 'ignore))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5447 (let ((files |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5448 (directory-files file t |
20323 | 5449 (if recurse nil cperl-scan-files-regexp) |
5450 t))) | |
5451 (mapcar (function (lambda (file) | |
5452 (cond | |
5453 ((string-match cperl-noscan-files-regexp file) | |
5454 nil) | |
5455 ((not (file-directory-p file)) | |
5456 (if (string-match cperl-scan-files-regexp file) | |
5457 (cperl-write-tags file erase recurse nil t noxs topdir))) | |
5458 ((not recurse) nil) | |
5459 (t (cperl-write-tags file erase recurse t t noxs topdir))))) | |
5460 files)) | |
5461 ) | |
5462 (t | |
5463 (setq xs (string-match "\\.xs$" file)) | |
5464 (if (not (and xs noxs)) | |
5465 (progn | |
5466 (cond ((eq erase 'ignore) (goto-char (point-max))) | |
5467 (erase (erase-buffer)) | |
5468 (t | |
5469 (goto-char 1) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5470 (setq rel file) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5471 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5472 (set-text-properties 0 (length rel) nil rel) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5473 (and (equal topdir (substring rel 0 (length topdir))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5474 (setq rel (substring file (length topdir)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5475 (if (search-forward (concat "\f\n" rel ",") nil t) |
20323 | 5476 (progn |
5477 (search-backward "\f\n") | |
5478 (delete-region (point) | |
5479 (save-excursion | |
5480 (forward-char 1) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5481 (if (search-forward "\f\n" |
20323 | 5482 nil 'toend) |
5483 (- (point) 2) | |
5484 (point-max))))) | |
5485 (goto-char (point-max))))) | |
5486 (insert (cperl-find-tags file xs topdir)))))) | |
5487 (if inbuffer nil ; Delegate to the caller | |
5488 (save-buffer 0) ; No backup | |
5489 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs? | |
5490 (initialize-new-tags-table)))))) | |
5491 | |
5492 (defvar cperl-tags-hier-regexp-list | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5493 (concat |
20323 | 5494 "^\\(" |
5495 "\\(package\\)\\>" | |
5496 "\\|" | |
5497 "sub\\>[^\n]+::" | |
5498 "\\|" | |
5499 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB? | |
5500 "\\|" | |
5501 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section | |
5502 "\\)")) | |
5503 | |
5504 (defvar cperl-hierarchy '(() ()) | |
5505 "Global hierarchy of classes") | |
5506 | |
5507 (defun cperl-tags-hier-fill () | |
5508 ;; Suppose we are in a tag table cooked by cperl. | |
5509 (goto-char 1) | |
5510 (let (type pack name pos line chunk ord cons1 file str info fileind) | |
5511 (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
|
5512 (setq pos (match-beginning 0) |
20323 | 5513 pack (match-beginning 2)) |
5514 (beginning-of-line) | |
5515 (if (looking-at (concat | |
5516 "\\([^\n]+\\)" | |
5517 "\C-?" | |
5518 "\\([^\n]+\\)" | |
5519 "\C-a" | |
5520 "\\([0-9]+\\)" | |
5521 "," | |
5522 "\\([0-9]+\\)")) | |
5523 (progn | |
5524 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1)) | |
5525 name (buffer-substring (match-beginning 2) (match-end 2)) | |
5526 ;;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
|
5527 line (buffer-substring (match-beginning 3) (match-end 3)) |
20323 | 5528 ord (if pack 1 0) |
5529 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
|
5530 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
|
5531 ;; 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
|
5532 info (cperl-etags-snarf-tag file line)) |
20323 | 5533 ;; Move back |
5534 (forward-char -1) | |
5535 ;; Make new member of hierarchy name ==> file ==> pos if needed | |
5536 (if (setq cons1 (assoc name (nth ord cperl-hierarchy))) | |
5537 ;; Name known | |
5538 (setcdr cons1 (cons (cons fileind (vector file info)) | |
5539 (cdr cons1))) | |
5540 ;; First occurrence of the name, start alist | |
5541 (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
|
5542 (if pack |
20323 | 5543 (setcar (cdr cperl-hierarchy) |
5544 (cons cons1 (nth 1 cperl-hierarchy))) | |
5545 (setcar cperl-hierarchy | |
5546 (cons cons1 (car cperl-hierarchy))))))) | |
5547 (end-of-line)))) | |
5548 | |
5549 (defun cperl-tags-hier-init (&optional update) | |
5550 "Show hierarchical menu of classes and methods. | |
5551 Finds info about classes by a scan of loaded TAGS files. | |
5552 Supposes that the TAGS files contain fully qualified function names. | |
5553 One may build such TAGS files from CPerl mode menu." | |
5554 (interactive) | |
5555 (require 'etags) | |
5556 (require 'imenu) | |
5557 (if (or update (null (nth 2 cperl-hierarchy))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5558 (let (pack name cons1 to l1 l2 l3 l4 b |
20323 | 5559 (remover (function (lambda (elt) ; (name (file1...) (file2..)) |
5560 (or (nthcdr 2 elt) | |
5561 ;; Only in one file | |
5562 (setcdr elt (cdr (nth 1 elt)))))))) | |
5563 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later! | |
5564 (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
|
5565 (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
|
5566 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5567 (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
|
5568 ;; Does this work in XEmacs? |
20323 | 5569 (call-interactively 'visit-tags-table)) |
5570 (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
|
5571 (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
|
5572 (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
|
5573 (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
|
5574 (call-interactively 'visit-tags-table)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5575 (mapcar |
20323 | 5576 (function |
5577 (lambda (tagsfile) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5578 (message "Updating list of classes... %s" tagsfile) |
20323 | 5579 (set-buffer (get-file-buffer tagsfile)) |
5580 (cperl-tags-hier-fill))) | |
5581 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
|
5582 (message "Updating list of classes... postprocessing...")) |
20323 | 5583 (mapcar remover (car cperl-hierarchy)) |
5584 (mapcar remover (nth 1 cperl-hierarchy)) | |
5585 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy)) | |
5586 (cons "Methods: " (car cperl-hierarchy)))) | |
5587 (cperl-tags-treeify to 1) | |
5588 (setcar (nthcdr 2 cperl-hierarchy) | |
5589 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to)))) | |
5590 (message "Updating list of classes: done, requesting display...") | |
5591 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy)) | |
5592 )) | |
5593 (or (nth 2 cperl-hierarchy) | |
5594 (error "No items found")) | |
5595 (setq update | |
5596 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy)) | |
5597 (if window-system | |
5598 (x-popup-menu t (nth 2 cperl-hierarchy)) | |
5599 (require 'tmm) | |
5600 (tmm-prompt (nth 2 cperl-hierarchy)))) | |
5601 (if (and update (listp update)) | |
5602 (progn (while (cdr update) (setq update (cdr update))) | |
5603 (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
|
5604 (if (vectorp update) |
20323 | 5605 (progn |
5606 (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
|
5607 (cperl-etags-goto-tag-location (elt update 1)))) |
20323 | 5608 (if (eq update -999) (cperl-tags-hier-init t))) |
5609 | |
5610 (defun cperl-tags-treeify (to level) | |
5611 ;; 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
|
5612 (let* ((regexp (concat "^\\(" (mapconcat |
20323 | 5613 'identity |
5614 (make-list level "[_a-zA-Z0-9]+") | |
5615 "::") | |
5616 "\\)\\(::\\)?")) | |
5617 (packages (cdr (nth 1 to))) | |
5618 (methods (cdr (nth 2 to))) | |
5619 l1 head tail cons1 cons2 ord writeto packs recurse | |
5620 root-packages root-functions ms many_ms same_name ps | |
5621 (move-deeper | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5622 (function |
20323 | 5623 (lambda (elt) |
5624 (cond ((and (string-match regexp (car elt)) | |
5625 (or (eq ord 1) (match-end 2))) | |
5626 (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
|
5627 tail (if (match-end 2) (substring (car elt) |
20323 | 5628 (match-end 2))) |
5629 recurse t) | |
5630 (if (setq cons1 (assoc head writeto)) nil | |
5631 ;; Need to init new head | |
5632 (setcdr writeto (cons (list head (list "Packages: ") | |
5633 (list "Methods: ")) | |
5634 (cdr writeto))) | |
5635 (setq cons1 (nth 1 writeto))) | |
5636 (setq cons2 (nth ord cons1)) ; Either packs or meths | |
5637 (setcdr cons2 (cons elt (cdr cons2)))) | |
5638 ((eq ord 2) | |
5639 (setq root-functions (cons elt root-functions))) | |
5640 (t | |
5641 (setq root-packages (cons elt root-packages)))))))) | |
5642 (setcdr to l1) ; Init to dynamic space | |
5643 (setq writeto to) | |
5644 (setq ord 1) | |
5645 (mapcar move-deeper packages) | |
5646 (setq ord 2) | |
5647 (mapcar move-deeper methods) | |
5648 (if recurse | |
5649 (mapcar (function (lambda (elt) | |
5650 (cperl-tags-treeify elt (1+ level)))) | |
5651 (cdr to))) | |
5652 ;;Now clean up leaders with one child only | |
5653 (mapcar (function (lambda (elt) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5654 (if (not (and (listp (cdr elt)) |
20323 | 5655 (eq (length elt) 2))) nil |
5656 (setcar elt (car (nth 1 elt))) | |
5657 (setcdr elt (cdr (nth 1 elt)))))) | |
5658 (cdr to)) | |
5659 ;; Sort the roots of subtrees | |
5660 (if (default-value 'imenu-sort-function) | |
5661 (setcdr to | |
5662 (sort (cdr to) (default-value 'imenu-sort-function)))) | |
5663 ;; Now add back functions removed from display | |
5664 (mapcar (function (lambda (elt) | |
5665 (setcdr to (cons elt (cdr to))))) | |
5666 (if (default-value 'imenu-sort-function) | |
5667 (nreverse | |
5668 (sort root-functions (default-value 'imenu-sort-function))) | |
5669 root-functions)) | |
5670 ;; Now add back packages removed from display | |
5671 (mapcar (function (lambda (elt) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5672 (setcdr to (cons (cons (concat "package " (car elt)) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5673 (cdr elt)) |
20323 | 5674 (cdr to))))) |
5675 (if (default-value 'imenu-sort-function) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5676 (nreverse |
20323 | 5677 (sort root-packages (default-value 'imenu-sort-function))) |
5678 root-packages)) | |
5679 )) | |
5680 | |
5681 ;;;(x-popup-menu t | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5682 ;;; '(keymap "Name1" |
20323 | 5683 ;;; ("Ret1" "aa") |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5684 ;;; ("Head1" "ab" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5685 ;;; keymap "Name2" |
20323 | 5686 ;;; ("Tail1" "x") ("Tail2" "y")))) |
5687 | |
5688 (defun cperl-list-fold (list name limit) | |
5689 (let (list1 list2 elt1 (num 0)) | |
5690 (if (<= (length list) limit) list | |
5691 (setq list1 nil list2 nil) | |
5692 (while list | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5693 (setq num (1+ num) |
20323 | 5694 elt1 (car list) |
5695 list (cdr list)) | |
5696 (if (<= num imenu-max-items) | |
5697 (setq list2 (cons elt1 list2)) | |
5698 (setq list1 (cons (cons name | |
5699 (nreverse list2)) | |
5700 list1) | |
5701 list2 (list elt1) | |
5702 num 1))) | |
5703 (nreverse (cons (cons name | |
5704 (nreverse list2)) | |
5705 list1))))) | |
5706 | |
5707 (defun cperl-menu-to-keymap (menu &optional name) | |
5708 (let (list) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5709 (cons 'keymap |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5710 (mapcar |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5711 (function |
20323 | 5712 (lambda (elt) |
5713 (cond ((listp (cdr elt)) | |
5714 (setq list (cperl-list-fold | |
5715 (cdr elt) (car elt) imenu-max-items)) | |
5716 (cons nil | |
5717 (cons (car elt) | |
5718 (cperl-menu-to-keymap list)))) | |
5719 (t | |
5720 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34 | |
5721 (cperl-list-fold menu "Root" imenu-max-items))))) | |
5722 | |
5723 | |
5724 (defvar cperl-bad-style-regexp | |
5725 (mapconcat 'identity | |
5726 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign | |
5727 "[-<>=+^&|]+[^- \t\n=+<>~]" ; sign+ char | |
5728 ) | |
5729 "\\|") | |
5730 "Finds places such that insertion of a whitespace may help a lot.") | |
5731 | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5732 (defvar cperl-not-bad-style-regexp |
20323 | 5733 (mapconcat 'identity |
5734 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++ | |
5735 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used. | |
5736 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field) | |
5737 "<\\$?\\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
|
5738 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN |
20323 | 5739 "-[0-9]" ; -5 |
5740 "\\+\\+" ; ++var | |
5741 "--" ; --var | |
5742 ".->" ; a->b | |
5743 "->" ; a SPACE ->b | |
5744 "\\[-" ; a[-1] | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5745 "\\\\[&$@*\\\\]" ; \&func |
20323 | 5746 "^=" ; =head |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5747 "\\$." ; $| |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5748 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO' |
20323 | 5749 "||" |
5750 "&&" | |
5751 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text> | |
5752 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value | |
5753 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below | |
5754 ;;"[*/+-|&<.]+=" | |
5755 ) | |
5756 "\\|") | |
5757 "If matches at the start of match found by `my-bad-c-style-regexp', | |
5758 insertion of a whitespace will not help.") | |
5759 | |
5760 (defvar found-bad) | |
5761 | |
5762 (defun cperl-find-bad-style () | |
5763 "Find places in the buffer where insertion of a whitespace may help. | |
5764 Prompts user for insertion of spaces. | |
5765 Currently it is tuned to C and Perl syntax." | |
5766 (interactive) | |
5767 (let (found-bad (p (point))) | |
5768 (setq last-nonmenu-event 13) ; To disable popup | |
5769 (beginning-of-buffer) | |
5770 (map-y-or-n-p "Insert space here? " | |
5771 (function (lambda (arg) (insert " "))) | |
5772 'cperl-next-bad-style | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5773 '("location" "locations" "insert a space into") |
20323 | 5774 '((?\C-r (lambda (arg) |
5775 (let ((buffer-quit-function | |
5776 'exit-recursive-edit)) | |
5777 (message "Exit with Esc Esc") | |
5778 (recursive-edit) | |
5779 t)) ; Consider acted upon | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5780 "edit, exit with Esc Esc") |
20323 | 5781 (?e (lambda (arg) |
5782 (let ((buffer-quit-function | |
5783 'exit-recursive-edit)) | |
5784 (message "Exit with Esc Esc") | |
5785 (recursive-edit) | |
5786 t)) ; Consider acted upon | |
5787 "edit, exit with Esc Esc")) | |
5788 t) | |
5789 (if found-bad (goto-char found-bad) | |
5790 (goto-char p) | |
5791 (message "No appropriate place found")))) | |
5792 | |
5793 (defun cperl-next-bad-style () | |
5794 (let (p (not-found t) (point (point)) found) | |
5795 (while (and not-found | |
5796 (re-search-forward cperl-bad-style-regexp nil 'to-end)) | |
5797 (setq p (point)) | |
5798 (goto-char (match-beginning 0)) | |
5799 (if (or | |
5800 (looking-at cperl-not-bad-style-regexp) | |
5801 ;; Check for a < -b and friends | |
5802 (and (eq (following-char) ?\-) | |
5803 (save-excursion | |
5804 (skip-chars-backward " \t\n") | |
5805 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\(, ?\[, ?\{)))) | |
5806 ;; Now check for syntax type | |
5807 (save-match-data | |
5808 (setq found (point)) | |
5809 (beginning-of-defun) | |
5810 (let ((pps (parse-partial-sexp (point) found))) | |
5811 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))) | |
5812 (goto-char (match-end 0)) | |
5813 (goto-char (1- p)) | |
5814 (setq not-found nil | |
5815 found-bad found))) | |
5816 (not not-found))) | |
5817 | |
27248 | 5818 |
20323 | 5819 ;;; Getting help |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5820 (defvar cperl-have-help-regexp |
20323 | 5821 ;;(concat "\\(" |
5822 (mapconcat | |
5823 'identity | |
5824 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable | |
5825 "[$@]\\^[a-zA-Z]" ; Special variable | |
5826 "[$@][^ \n\t]" ; Special variable | |
5827 "-[a-zA-Z]" ; File test | |
5828 "\\\\[a-zA-Z0]" ; Special chars | |
5829 "^=[a-z][a-zA-Z0-9_]*" ; Pod sections | |
5830 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator | |
5831 "[a-zA-Z_0-9:]+" ; symbol or number | |
5832 "x=" | |
5833 "#!" | |
5834 ) | |
5835 ;;"\\)\\|\\(" | |
5836 "\\|" | |
5837 ) | |
5838 ;;"\\)" | |
5839 ;;) | |
5840 "Matches places in the buffer we can find help for.") | |
5841 | |
5842 (defvar cperl-message-on-help-error t) | |
5843 (defvar cperl-help-from-timer nil) | |
5844 | |
5845 (defun cperl-word-at-point-hard () | |
5846 ;; Does not save-excursion | |
5847 ;; Get to the something meaningful | |
5848 (or (eobp) (eolp) (forward-char 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5849 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]" |
20323 | 5850 (save-excursion (beginning-of-line) (point)) |
5851 'to-beg) | |
5852 ;; (cond | |
5853 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol | |
5854 ;; (skip-chars-backward " \n\t\r({[]});,") | |
5855 ;; (or (bobp) (backward-char 1)))) | |
5856 ;; Try to backtrace | |
5857 (cond | |
5858 ((looking-at "[a-zA-Z0-9_:]") ; symbol | |
5859 (skip-chars-backward "a-zA-Z0-9_:") | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5860 (cond |
20323 | 5861 ((and (eq (preceding-char) ?^) ; $^I |
5862 (eq (char-after (- (point) 2)) ?\$)) | |
5863 (forward-char -2)) | |
5864 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob | |
5865 (forward-char -1)) | |
5866 ((and (eq (preceding-char) ?\=) | |
5867 (eq (current-column) 1)) | |
5868 (forward-char -1))) ; =head1 | |
5869 (if (and (eq (preceding-char) ?\<) | |
5870 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH> | |
5871 (forward-char -1))) | |
5872 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x= | |
5873 (forward-char -1)) | |
5874 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I | |
5875 (forward-char -1)) | |
5876 ((looking-at "[-!&*+,-./<=>?\\\\^|~]") | |
5877 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~") | |
5878 (cond | |
5879 ((and (eq (preceding-char) ?\$) | |
5880 (not (eq (char-after (- (point) 2)) ?\$))) ; $- | |
5881 (forward-char -1)) | |
5882 ((and (eq (following-char) ?\>) | |
5883 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char))) | |
5884 (save-excursion | |
5885 (forward-sexp -1) | |
5886 (and (eq (preceding-char) ?\<) | |
5887 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH> | |
5888 (search-backward "<")))) | |
5889 ((and (eq (following-char) ?\$) | |
5890 (eq (preceding-char) ?\<) | |
5891 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh> | |
5892 (forward-char -1))) | |
5893 (if (looking-at cperl-have-help-regexp) | |
5894 (buffer-substring (match-beginning 0) (match-end 0)))) | |
5895 | |
5896 (defun cperl-get-help () | |
5897 "Get one-line docs on the symbol at the point. | |
5898 The data for these docs is a little bit obsolete and may be in fact longer | |
5899 than a line. Your contribution to update/shorten it is appreciated." | |
5900 (interactive) | |
5901 (save-match-data ; May be called "inside" query-replace | |
5902 (save-excursion | |
5903 (let ((word (cperl-word-at-point-hard))) | |
5904 (if word | |
5905 (if (and cperl-help-from-timer ; Bail out if not in mainland | |
5906 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings. | |
5907 (or (memq (get-text-property (point) 'face) | |
5908 '(font-lock-comment-face font-lock-string-face)) | |
5909 (memq (get-text-property (point) 'syntax-type) | |
5910 '(pod here-doc format)))) | |
5911 nil | |
5912 (cperl-describe-perl-symbol word)) | |
5913 (if cperl-message-on-help-error | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5914 (message "Nothing found for %s..." |
20323 | 5915 (buffer-substring (point) (min (+ 5 (point)) (point-max)))))))))) |
5916 | |
5917 ;;; Stolen from perl-descr.el by Johan Vromans: | |
5918 | |
5919 (defvar cperl-doc-buffer " *perl-doc*" | |
5920 "Where the documentation can be found.") | |
5921 | |
5922 (defun cperl-describe-perl-symbol (val) | |
5923 "Display the documentation of symbol at point, a Perl operator." | |
5924 (let ((enable-recursive-minibuffers t) | |
5925 args-file regexp) | |
5926 (cond | |
5927 ((string-match "^[&*][a-zA-Z_]" val) | |
5928 (setq val (concat (substring val 0 1) "NAME"))) | |
5929 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val) | |
5930 (setq val (concat "@" (substring val 1 (match-end 1))))) | |
5931 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val) | |
5932 (setq val (concat "%" (substring val 1 (match-end 1))))) | |
5933 ((and (string= val "x") (string-match "^x=" val)) | |
5934 (setq val "x=")) | |
5935 ((string-match "^\\$[\C-a-\C-z]" val) | |
5936 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1)))))) | |
5937 ((string-match "^CORE::" val) | |
5938 (setq val "CORE::")) | |
5939 ((string-match "^SUPER::" val) | |
5940 (setq val "SUPER::")) | |
5941 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val)) | |
5942 (setq val "<NAME>"))) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5943 (setq regexp (concat "^" |
20323 | 5944 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?" |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5945 (regexp-quote val) |
20323 | 5946 "\\([ \t([/]\\|$\\)")) |
5947 | |
5948 ;; get the buffer with the documentation text | |
5949 (cperl-switch-to-doc-buffer) | |
5950 | |
5951 ;; lookup in the doc | |
5952 (goto-char (point-min)) | |
5953 (let ((case-fold-search nil)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5954 (list |
20323 | 5955 (if (re-search-forward regexp (point-max) t) |
5956 (save-excursion | |
5957 (beginning-of-line 1) | |
5958 (let ((lnstart (point))) | |
5959 (end-of-line) | |
5960 (message "%s" (buffer-substring lnstart (point))))) | |
5961 (if cperl-message-on-help-error | |
5962 (message "No definition for %s" val))))))) | |
5963 | |
5964 (defvar cperl-short-docs "Ignore my value" | |
5965 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl) | |
5966 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5] | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5967 ! ... Logical negation. |
20323 | 5968 ... != ... Numeric inequality. |
5969 ... !~ ... Search pattern, substitution, or translation (negated). | |
5970 $! In numeric context: errno. In a string context: error string. | |
5971 $\" The separator which joins elements of arrays interpolated in strings. | |
5972 $# The output format for printed numbers. Initial value is %.15g or close. | |
5973 $$ Process number of this script. Changes in the fork()ed child process. | |
5974 $% The current page number of the currently selected output channel. | |
5975 | |
5976 The following variables are always local to the current block: | |
5977 | |
5978 $1 Match of the 1st set of parentheses in the last match (auto-local). | |
5979 $2 Match of the 2nd set of parentheses in the last match (auto-local). | |
5980 $3 Match of the 3rd set of parentheses in the last match (auto-local). | |
5981 $4 Match of the 4th set of parentheses in the last match (auto-local). | |
5982 $5 Match of the 5th set of parentheses in the last match (auto-local). | |
5983 $6 Match of the 6th set of parentheses in the last match (auto-local). | |
5984 $7 Match of the 7th set of parentheses in the last match (auto-local). | |
5985 $8 Match of the 8th set of parentheses in the last match (auto-local). | |
5986 $9 Match of the 9th set of parentheses in the last match (auto-local). | |
5987 $& The string matched by the last pattern match (auto-local). | |
5988 $' The string after what was matched by the last match (auto-local). | |
5989 $` The string before what was matched by the last match (auto-local). | |
5990 | |
5991 $( The real gid of this process. | |
5992 $) The effective gid of this process. | |
5993 $* Deprecated: Set to 1 to do multiline matching within a string. | |
5994 $+ The last bracket matched by the last search pattern. | |
5995 $, The output field separator for the print operator. | |
5996 $- The number of lines left on the page. | |
5997 $. The current input line number of the last filehandle that was read. | |
5998 $/ The input record separator, newline by default. | |
5999 $0 Name of the file containing the perl script being executed. May be set. | |
6000 $: String may be broken after these characters to fill ^-lines in a format. | |
6001 $; Subscript separator for multi-dim array emulation. Default \"\\034\". | |
6002 $< The real uid of this process. | |
6003 $= The page length of the current output channel. Default is 60 lines. | |
6004 $> The effective uid of this process. | |
6005 $? The status returned by the last ``, pipe close or `system'. | |
6006 $@ The perl error message from the last eval or do @var{EXPR} command. | |
6007 $ARGV The name of the current file used with <> . | |
6008 $[ Deprecated: The index of the first element/char in an array/string. | |
6009 $\\ The output record separator for the print operator. | |
6010 $] The perl version string as displayed with perl -v. | |
6011 $^ The name of the current top-of-page format. | |
6012 $^A The current value of the write() accumulator for format() lines. | |
6013 $^D The value of the perl debug (-D) flags. | |
6014 $^E Information about the last system error other than that provided by $!. | |
6015 $^F The highest system file descriptor, ordinarily 2. | |
6016 $^H The current set of syntax checks enabled by `use strict'. | |
6017 $^I The value of the in-place edit extension (perl -i option). | |
6018 $^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
|
6019 $^M A buffer for emergency memory allocation when running out of memory. |
20323 | 6020 $^O The operating system name under which this copy of Perl was built. |
6021 $^P Internal debugging flag. | |
6022 $^T The time the script was started. Used by -A/-M/-C file tests. | |
6023 $^W True if warnings are requested (perl -w flag). | |
6024 $^X The name under which perl was invoked (argv[0] in C-speech). | |
6025 $_ The default input and pattern-searching space. | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6026 $| Auto-flush after write/print on current output channel? Default 0. |
20323 | 6027 $~ The name of the current report format. |
6028 ... % ... Modulo division. | |
6029 ... %= ... Modulo division assignment. | |
6030 %ENV Contains the current environment. | |
6031 %INC List of files that have been require-d or do-ne. | |
6032 %SIG Used to set signal handlers for various signals. | |
6033 ... & ... Bitwise and. | |
6034 ... && ... Logical and. | |
6035 ... &&= ... Logical and assignment. | |
6036 ... &= ... Bitwise and assignment. | |
6037 ... * ... Multiplication. | |
6038 ... ** ... Exponentiation. | |
6039 *NAME Glob: all objects refered by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2. | |
6040 &NAME(arg0, ...) Subroutine call. Arguments go to @_. | |
6041 ... + ... Addition. +EXPR Makes EXPR into scalar context. | |
6042 ++ Auto-increment (magical on strings). ++EXPR EXPR++ | |
6043 ... += ... Addition assignment. | |
6044 , Comma operator. | |
6045 ... - ... Subtraction. | |
6046 -- Auto-decrement (NOT magical on strings). --EXPR EXPR-- | |
6047 ... -= ... Subtraction assignment. | |
6048 -A Access time in days since script started. | |
6049 -B File is a non-text (binary) file. | |
6050 -C Inode change time in days since script started. | |
6051 -M Age in days since script started. | |
6052 -O File is owned by real uid. | |
6053 -R File is readable by real uid. | |
6054 -S File is a socket . | |
6055 -T File is a text file. | |
6056 -W File is writable by real uid. | |
6057 -X File is executable by real uid. | |
6058 -b File is a block special file. | |
6059 -c File is a character special file. | |
6060 -d File is a directory. | |
6061 -e File exists . | |
6062 -f File is a plain file. | |
6063 -g File has setgid bit set. | |
6064 -k File has sticky bit set. | |
6065 -l File is a symbolic link. | |
6066 -o File is owned by effective uid. | |
6067 -p File is a named pipe (FIFO). | |
6068 -r File is readable by effective uid. | |
6069 -s File has non-zero size. | |
6070 -t Tests if filehandle (STDIN by default) is opened to a tty. | |
6071 -u File has setuid bit set. | |
6072 -w File is writable by effective uid. | |
6073 -x File is executable by effective uid. | |
6074 -z File has zero size. | |
6075 . Concatenate strings. | |
6076 .. Alternation, also range operator. | |
6077 .= Concatenate assignment strings | |
6078 ... / ... Division. /PATTERN/ioxsmg Pattern match | |
6079 ... /= ... Division assignment. | |
6080 /PATTERN/ioxsmg Pattern match. | |
6081 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well. | |
6082 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword). | |
6083 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>). | |
6084 <> Reads line from union of files in @ARGV (= command line) and STDIN. | |
6085 ... << ... Bitwise shift left. << start of HERE-DOCUMENT. | |
6086 ... <= ... Numeric less than or equal to. | |
6087 ... <=> ... Numeric compare. | |
6088 ... = ... Assignment. | |
6089 ... == ... Numeric equality. | |
6090 ... =~ ... Search pattern, substitution, or translation | |
6091 ... > ... Numeric greater than. | |
6092 ... >= ... Numeric greater than or equal to. | |
6093 ... >> ... Bitwise shift right. | |
6094 ... >>= ... Bitwise shift right assignment. | |
6095 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match. | |
6096 ?PATTERN? One-time pattern match. | |
6097 @ARGV Command line arguments (not including the command name - see $0). | |
6098 @INC List of places to look for perl scripts during do/include/use. | |
6099 @_ Parameter array for subroutines. Also used by split unless in array context. | |
6100 \\ Creates reference to what follows, like \$var, or quotes non-\w in strings. | |
6101 \\0 Octal char, e.g. \\033. | |
6102 \\E Case modification terminator. See \\Q, \\L, and \\U. | |
6103 \\L Lowercase until \\E . See also \l, lc. | |
6104 \\U Upcase until \\E . See also \u, uc. | |
6105 \\Q Quote metacharacters until \\E . See also quotemeta. | |
6106 \\a Alarm character (octal 007). | |
6107 \\b Backspace character (octal 010). | |
6108 \\c Control character, e.g. \\c[ . | |
6109 \\e Escape character (octal 033). | |
6110 \\f Formfeed character (octal 014). | |
6111 \\l Lowercase the next character. See also \\L and \\u, lcfirst. | |
6112 \\n Newline character (octal 012 on most systems). | |
6113 \\r Return character (octal 015 on most systems). | |
6114 \\t Tab character (octal 011). | |
6115 \\u Upcase the next character. See also \\U and \\l, ucfirst. | |
6116 \\x Hex character, e.g. \\x1b. | |
6117 ... ^ ... Bitwise exclusive or. | |
6118 __END__ Ends program source. | |
6119 __DATA__ Ends program source. | |
6120 __FILE__ Current (source) filename. | |
6121 __LINE__ Current line in current source. | |
6122 __PACKAGE__ Current package. | |
6123 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>. | |
6124 ARGVOUT Output filehandle with -i flag. | |
6125 BEGIN { ... } Immediately executed (during compilation) piece of code. | |
6126 END { ... } Pseudo-subroutine executed after the script finishes. | |
6127 DATA Input filehandle for what follows after __END__ or __DATA__. | |
6128 accept(NEWSOCKET,GENERICSOCKET) | |
6129 alarm(SECONDS) | |
6130 atan2(X,Y) | |
6131 bind(SOCKET,NAME) | |
6132 binmode(FILEHANDLE) | |
6133 caller[(LEVEL)] | |
6134 chdir(EXPR) | |
6135 chmod(LIST) | |
6136 chop[(LIST|VAR)] | |
6137 chown(LIST) | |
6138 chroot(FILENAME) | |
6139 close(FILEHANDLE) | |
6140 closedir(DIRHANDLE) | |
6141 ... cmp ... String compare. | |
6142 connect(SOCKET,NAME) | |
6143 continue of { block } continue { block }. Is executed after `next' or at end. | |
6144 cos(EXPR) | |
6145 crypt(PLAINTEXT,SALT) | |
6146 dbmclose(%HASH) | |
6147 dbmopen(%HASH,DBNAME,MODE) | |
6148 defined(EXPR) | |
6149 delete($HASH{KEY}) | |
6150 die(LIST) | |
6151 do { ... }|SUBR while|until EXPR executes at least once | |
6152 do(EXPR|SUBR([LIST])) (with while|until executes at least once) | |
6153 dump LABEL | |
6154 each(%HASH) | |
6155 endgrent | |
6156 endhostent | |
6157 endnetent | |
6158 endprotoent | |
6159 endpwent | |
6160 endservent | |
6161 eof[([FILEHANDLE])] | |
6162 ... eq ... String equality. | |
6163 eval(EXPR) or eval { BLOCK } | |
6164 exec(LIST) | |
6165 exit(EXPR) | |
6166 exp(EXPR) | |
6167 fcntl(FILEHANDLE,FUNCTION,SCALAR) | |
6168 fileno(FILEHANDLE) | |
6169 flock(FILEHANDLE,OPERATION) | |
6170 for (EXPR;EXPR;EXPR) { ... } | |
6171 foreach [VAR] (@ARRAY) { ... } | |
6172 fork | |
6173 ... ge ... String greater than or equal. | |
6174 getc[(FILEHANDLE)] | |
6175 getgrent | |
6176 getgrgid(GID) | |
6177 getgrnam(NAME) | |
6178 gethostbyaddr(ADDR,ADDRTYPE) | |
6179 gethostbyname(NAME) | |
6180 gethostent | |
6181 getlogin | |
6182 getnetbyaddr(ADDR,ADDRTYPE) | |
6183 getnetbyname(NAME) | |
6184 getnetent | |
6185 getpeername(SOCKET) | |
6186 getpgrp(PID) | |
6187 getppid | |
6188 getpriority(WHICH,WHO) | |
6189 getprotobyname(NAME) | |
6190 getprotobynumber(NUMBER) | |
6191 getprotoent | |
6192 getpwent | |
6193 getpwnam(NAME) | |
6194 getpwuid(UID) | |
6195 getservbyname(NAME,PROTO) | |
6196 getservbyport(PORT,PROTO) | |
6197 getservent | |
6198 getsockname(SOCKET) | |
6199 getsockopt(SOCKET,LEVEL,OPTNAME) | |
6200 gmtime(EXPR) | |
6201 goto LABEL | |
6202 ... gt ... String greater than. | |
6203 hex(EXPR) | |
6204 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR | |
6205 index(STR,SUBSTR[,OFFSET]) | |
6206 int(EXPR) | |
6207 ioctl(FILEHANDLE,FUNCTION,SCALAR) | |
6208 join(EXPR,LIST) | |
6209 keys(%HASH) | |
6210 kill(LIST) | |
6211 last [LABEL] | |
6212 ... le ... String less than or equal. | |
6213 length(EXPR) | |
6214 link(OLDFILE,NEWFILE) | |
6215 listen(SOCKET,QUEUESIZE) | |
6216 local(LIST) | |
6217 localtime(EXPR) | |
6218 log(EXPR) | |
6219 lstat(EXPR|FILEHANDLE|VAR) | |
6220 ... lt ... String less than. | |
6221 m/PATTERN/iogsmx | |
6222 mkdir(FILENAME,MODE) | |
6223 msgctl(ID,CMD,ARG) | |
6224 msgget(KEY,FLAGS) | |
6225 msgrcv(ID,VAR,SIZE,TYPE.FLAGS) | |
6226 msgsnd(ID,MSG,FLAGS) | |
6227 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH). | |
6228 ... ne ... String inequality. | |
6229 next [LABEL] | |
6230 oct(EXPR) | |
6231 open(FILEHANDLE[,EXPR]) | |
6232 opendir(DIRHANDLE,EXPR) | |
6233 ord(EXPR) ASCII value of the first char of the string. | |
6234 pack(TEMPLATE,LIST) | |
6235 package NAME Introduces package context. | |
6236 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe. | |
6237 pop(ARRAY) | |
6238 print [FILEHANDLE] [(LIST)] | |
6239 printf [FILEHANDLE] (FORMAT,LIST) | |
6240 push(ARRAY,LIST) | |
6241 q/STRING/ Synonym for 'STRING' | |
6242 qq/STRING/ Synonym for \"STRING\" | |
6243 qx/STRING/ Synonym for `STRING` | |
6244 rand[(EXPR)] | |
6245 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6246 readdir(DIRHANDLE) | |
6247 readlink(EXPR) | |
6248 recv(SOCKET,SCALAR,LEN,FLAGS) | |
6249 redo [LABEL] | |
6250 rename(OLDNAME,NEWNAME) | |
6251 require [FILENAME | PERL_VERSION] | |
6252 reset[(EXPR)] | |
6253 return(LIST) | |
6254 reverse(LIST) | |
6255 rewinddir(DIRHANDLE) | |
6256 rindex(STR,SUBSTR[,OFFSET]) | |
6257 rmdir(FILENAME) | |
6258 s/PATTERN/REPLACEMENT/gieoxsm | |
6259 scalar(EXPR) | |
6260 seek(FILEHANDLE,POSITION,WHENCE) | |
6261 seekdir(DIRHANDLE,POS) | |
6262 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT) | |
6263 semctl(ID,SEMNUM,CMD,ARG) | |
6264 semget(KEY,NSEMS,SIZE,FLAGS) | |
6265 semop(KEY,...) | |
6266 send(SOCKET,MSG,FLAGS[,TO]) | |
6267 setgrent | |
6268 sethostent(STAYOPEN) | |
6269 setnetent(STAYOPEN) | |
6270 setpgrp(PID,PGRP) | |
6271 setpriority(WHICH,WHO,PRIORITY) | |
6272 setprotoent(STAYOPEN) | |
6273 setpwent | |
6274 setservent(STAYOPEN) | |
6275 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL) | |
6276 shift[(ARRAY)] | |
6277 shmctl(ID,CMD,ARG) | |
6278 shmget(KEY,SIZE,FLAGS) | |
6279 shmread(ID,VAR,POS,SIZE) | |
6280 shmwrite(ID,STRING,POS,SIZE) | |
6281 shutdown(SOCKET,HOW) | |
6282 sin(EXPR) | |
6283 sleep[(EXPR)] | |
6284 socket(SOCKET,DOMAIN,TYPE,PROTOCOL) | |
6285 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL) | |
6286 sort [SUBROUTINE] (LIST) | |
6287 splice(ARRAY,OFFSET[,LENGTH[,LIST]]) | |
6288 split[(/PATTERN/[,EXPR[,LIMIT]])] | |
6289 sprintf(FORMAT,LIST) | |
6290 sqrt(EXPR) | |
6291 srand(EXPR) | |
6292 stat(EXPR|FILEHANDLE|VAR) | |
6293 study[(SCALAR)] | |
6294 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...} | |
6295 substr(EXPR,OFFSET[,LEN]) | |
6296 symlink(OLDFILE,NEWFILE) | |
6297 syscall(LIST) | |
6298 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6299 system(LIST) | |
6300 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6301 tell[(FILEHANDLE)] | |
6302 telldir(DIRHANDLE) | |
6303 time | |
6304 times | |
6305 tr/SEARCHLIST/REPLACEMENTLIST/cds | |
6306 truncate(FILE|EXPR,LENGTH) | |
6307 umask[(EXPR)] | |
6308 undef[(EXPR)] | |
6309 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR | |
6310 unlink(LIST) | |
6311 unpack(TEMPLATE,EXPR) | |
6312 unshift(ARRAY,LIST) | |
6313 until (EXPR) { ... } EXPR until EXPR | |
6314 utime(LIST) | |
6315 values(%HASH) | |
6316 vec(EXPR,OFFSET,BITS) | |
6317 wait | |
6318 waitpid(PID,FLAGS) | |
6319 wantarray Returns true if the sub/eval is called in list context. | |
6320 warn(LIST) | |
6321 while (EXPR) { ... } EXPR while EXPR | |
6322 write[(EXPR|FILEHANDLE)] | |
6323 ... x ... Repeat string or array. | |
6324 x= ... Repetition assignment. | |
6325 y/SEARCHLIST/REPLACEMENTLIST/ | |
6326 ... | ... Bitwise or. | |
6327 ... || ... Logical or. | |
6328 ~ ... Unary bitwise complement. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6329 #! OS interpreter indicator. If contains `perl', used for options, and -x. |
20323 | 6330 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'. |
6331 CORE:: Prefix to access builtin function if imported sub obscures it. | |
6332 SUPER:: Prefix to lookup for a method in @ISA classes. | |
6333 DESTROY Shorthand for `sub DESTROY {...}'. | |
6334 ... EQ ... Obsolete synonym of `eq'. | |
6335 ... GE ... Obsolete synonym of `ge'. | |
6336 ... GT ... Obsolete synonym of `gt'. | |
6337 ... LE ... Obsolete synonym of `le'. | |
6338 ... LT ... Obsolete synonym of `lt'. | |
6339 ... NE ... Obsolete synonym of `ne'. | |
6340 abs [ EXPR ] absolute value | |
6341 ... and ... Low-precedence synonym for &&. | |
6342 bless REFERENCE [, PACKAGE] Makes reference into an object of a package. | |
6343 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''! | |
6344 chr Converts a number to char with the same ordinal. | |
6345 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
6346 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
6347 exists $HASH{KEY} True if the key exists. | |
6348 format [NAME] = Start of output format. Ended by a single dot (.) on a line. | |
6349 formline PICTURE, LIST Backdoor into \"format\" processing. | |
6350 glob EXPR Synonym of <EXPR>. | |
6351 lc [ EXPR ] Returns lowercased EXPR. | |
6352 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
|
6353 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK. |
20323 | 6354 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST. |
6355 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method. | |
6356 not ... Low-precedence synonym for ! - negation. | |
6357 ... or ... Low-precedence synonym for ||. | |
6358 pos STRING Set/Get end-position of the last match over this string, see \\G. | |
6359 quotemeta [ EXPR ] Quote regexp metacharacters. | |
6360 qw/WORD1 .../ Synonym of split('', 'WORD1 ...') | |
6361 readline FH Synonym of <FH>. | |
6362 readpipe CMD Synonym of `CMD`. | |
6363 ref [ EXPR ] Type of EXPR when dereferenced. | |
6364 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.) | |
6365 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable. | |
6366 tied Returns internal object for a tied data. | |
6367 uc [ EXPR ] Returns upcased EXPR. | |
6368 ucfirst [ EXPR ] Returns EXPR with upcased first letter. | |
6369 untie VAR Unlink an object from a simple Perl variable. | |
6370 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'. | |
6371 ... xor ... Low-precedence synonym for exclusive or. | |
6372 prototype \&SUB Returns prototype of the function given a reference. | |
6373 =head1 Top-level heading. | |
6374 =head2 Second-level heading. | |
6375 =head3 Third-level heading (is there such?). | |
6376 =over [ NUMBER ] Start list. | |
6377 =item [ TITLE ] Start new item in the list. | |
6378 =back End list. | |
6379 =cut Switch from POD to Perl. | |
6380 =pod Switch from Perl to POD. | |
6381 ") | |
6382 | |
6383 (defun cperl-switch-to-doc-buffer () | |
6384 "Go to the perl documentation buffer and insert the documentation." | |
6385 (interactive) | |
6386 (let ((buf (get-buffer-create cperl-doc-buffer))) | |
6387 (if (interactive-p) | |
6388 (switch-to-buffer-other-window buf) | |
6389 (set-buffer buf)) | |
6390 (if (= (buffer-size) 0) | |
6391 (progn | |
6392 (insert (documentation-property 'cperl-short-docs | |
6393 'variable-documentation)) | |
6394 (setq buffer-read-only t))))) | |
6395 | |
6396 (defun cperl-beautify-regexp-piece (b e embed) | |
6397 ;; b is before the starting delimiter, e before the ending | |
6398 ;; e should be a marker, may be changed, but remains "correct". | |
6399 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code) | |
6400 (if (not embed) | |
6401 (goto-char (1+ b)) | |
6402 (goto-char b) | |
6403 (cond ((looking-at "(\\?\\\\#") ; badly commented (?#) | |
6404 (forward-char 2) | |
6405 (delete-char 1) | |
6406 (forward-char 1)) | |
6407 ((looking-at "(\\?[^a-zA-Z]") | |
6408 (forward-char 3)) | |
6409 ((looking-at "(\\?") ; (?i) | |
6410 (forward-char 2)) | |
6411 (t | |
6412 (forward-char 1)))) | |
6413 (setq c (if embed (current-indentation) (1- (current-column))) | |
6414 c1 (+ c (or cperl-regexp-indent-step cperl-indent-level))) | |
6415 (or (looking-at "[ \t]*[\n#]") | |
6416 (progn | |
6417 (insert "\n"))) | |
6418 (goto-char e) | |
6419 (beginning-of-line) | |
6420 (if (re-search-forward "[^ \t]" e t) | |
6421 (progn | |
6422 (goto-char e) | |
6423 (insert "\n") | |
6424 (indent-to-column c) | |
6425 (set-marker e (point)))) | |
6426 (goto-char b) | |
6427 (end-of-line 2) | |
6428 (while (< (point) (marker-position e)) | |
6429 (beginning-of-line) | |
6430 (setq s (point) | |
6431 inline t) | |
6432 (skip-chars-forward " \t") | |
6433 (delete-region s (point)) | |
6434 (indent-to-column c1) | |
6435 (while (and | |
6436 inline | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6437 (looking-at |
20323 | 6438 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word |
6439 "\\|" ; Embedded variable | |
6440 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3 | |
6441 "\\|" ; $ ^ | |
6442 "[$^]" | |
6443 "\\|" ; simple-code simple-code*? | |
6444 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5 | |
6445 "\\|" ; Class | |
6446 "\\(\\[\\)" ; 6 | |
6447 "\\|" ; Grouping | |
6448 "\\((\\(\\?\\)?\\)" ; 7 8 | |
6449 "\\|" ; | | |
6450 "\\(|\\)" ; 9 | |
6451 ))) | |
6452 (goto-char (match-end 0)) | |
6453 (setq spaces t) | |
6454 (cond ((match-beginning 1) ; Alphanum word + junk | |
6455 (forward-char -1)) | |
6456 ((or (match-beginning 3) ; $ab[12] | |
6457 (and (match-beginning 5) ; X* X+ X{2,3} | |
6458 (eq (preceding-char) ?\{))) | |
6459 (forward-char -1) | |
6460 (forward-sexp 1)) | |
6461 ((match-beginning 6) ; [] | |
6462 (setq tmp (point)) | |
6463 (if (looking-at "\\^?\\]") | |
6464 (goto-char (match-end 0))) | |
6465 (or (re-search-forward "\\]\\([*+{?]\\)?" e t) | |
6466 (progn | |
6467 (goto-char (1- tmp)) | |
6468 (error "[]-group not terminated"))) | |
6469 (if (not (eq (preceding-char) ?\{)) nil | |
6470 (forward-char -1) | |
6471 (forward-sexp 1))) | |
6472 ((match-beginning 7) ; () | |
6473 (goto-char (match-beginning 0)) | |
6474 (or (eq (current-column) c1) | |
6475 (progn | |
6476 (insert "\n") | |
6477 (indent-to-column c1))) | |
6478 (setq tmp (point)) | |
6479 (forward-sexp 1) | |
6480 ;; (or (forward-sexp 1) | |
6481 ;; (progn | |
6482 ;; (goto-char tmp) | |
6483 ;; (error "()-group not terminated"))) | |
6484 (set-marker m (1- (point))) | |
6485 (set-marker m1 (point)) | |
6486 (cond | |
6487 ((not (match-beginning 8)) | |
6488 (cperl-beautify-regexp-piece tmp m t)) | |
6489 ((eq (char-after (+ 2 tmp)) ?\{) ; Code | |
6490 t) | |
6491 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional | |
6492 (goto-char (+ 2 tmp)) | |
6493 (forward-sexp 1) | |
6494 (cperl-beautify-regexp-piece (point) m t)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6495 ((eq (char-after (+ 2 tmp)) ?<) ; Lookbehind |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6496 (goto-char (+ 3 tmp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6497 (cperl-beautify-regexp-piece (point) m t)) |
20323 | 6498 (t |
6499 (cperl-beautify-regexp-piece tmp m t))) | |
6500 (goto-char m1) | |
6501 (cond ((looking-at "[*+?]\\??") | |
6502 (goto-char (match-end 0))) | |
6503 ((eq (following-char) ?\{) | |
6504 (forward-sexp 1) | |
6505 (if (eq (following-char) ?\?) | |
6506 (forward-char)))) | |
6507 (skip-chars-forward " \t") | |
6508 (setq spaces nil) | |
6509 (if (looking-at "[#\n]") | |
6510 (progn | |
6511 (or (eolp) (indent-for-comment)) | |
6512 (beginning-of-line 2)) | |
6513 (insert "\n")) | |
6514 (end-of-line) | |
6515 (setq inline nil)) | |
6516 ((match-beginning 9) ; | | |
6517 (forward-char -1) | |
6518 (setq tmp (point)) | |
6519 (beginning-of-line) | |
6520 (if (re-search-forward "[^ \t]" tmp t) | |
6521 (progn | |
6522 (goto-char tmp) | |
6523 (insert "\n")) | |
6524 ;; first at line | |
6525 (delete-region (point) tmp)) | |
6526 (indent-to-column c) | |
6527 (forward-char 1) | |
6528 (skip-chars-forward " \t") | |
6529 (setq spaces nil) | |
6530 (if (looking-at "[#\n]") | |
6531 (beginning-of-line 2) | |
6532 (insert "\n")) | |
6533 (end-of-line) | |
6534 (setq inline nil))) | |
6535 (or (looking-at "[ \t\n]") | |
6536 (not spaces) | |
6537 (insert " ")) | |
6538 (skip-chars-forward " \t")) | |
6539 (or (looking-at "[#\n]") | |
6540 (error "unknown code \"%s\" in a regexp" (buffer-substring (point) | |
6541 (1+ (point))))) | |
6542 (and inline (end-of-line 2))) | |
6543 ;; Special-case the last line of group | |
6544 (if (and (>= (point) (marker-position e)) | |
6545 (/= (current-indentation) c)) | |
6546 (progn | |
6547 (beginning-of-line) | |
6548 (setq s (point)) | |
6549 (skip-chars-forward " \t") | |
6550 (delete-region s (point)) | |
6551 (indent-to-column c))) | |
6552 )) | |
6553 | |
6554 (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
|
6555 ;; Returns position of the start |
20323 | 6556 (save-excursion |
6557 (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
|
6558 (error "I need to have a regexp marked!")) |
20323 | 6559 ;; Find the start |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6560 (if (looking-at "\\s|") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6561 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
|
6562 (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
|
6563 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6564 (re-search-backward "\\s|"))) ; Assume it is scanned already. |
20323 | 6565 ;;(forward-char 1) |
6566 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column)) | |
6567 (sub-p (eq (preceding-char) ?s)) s) | |
6568 (forward-sexp 1) | |
6569 (set-marker e (1- (point))) | |
6570 (setq delim (preceding-char)) | |
6571 (if (and sub-p (eq delim (char-after (- (point) 2)))) | |
6572 (error "Possible s/blah// - do not know how to deal with")) | |
6573 (if sub-p (forward-sexp 1)) | |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6574 (if (looking-at "\\sw*x") |
20323 | 6575 (setq have-x t) |
6576 (insert "x")) | |
6577 ;; Protect fragile " ", "#" | |
6578 (if have-x nil | |
6579 (goto-char (1+ b)) | |
6580 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too? | |
6581 (forward-char -1) | |
6582 (insert "\\") | |
6583 (forward-char 1))) | |
6584 b))) | |
6585 | |
6586 (defun cperl-beautify-regexp () | |
6587 "do it. (Experimental, may change semantics, recheck the result.) | |
6588 We suppose that the regexp is scanned already." | |
6589 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6590 (goto-char (cperl-make-regexp-x)) |
20323 | 6591 (let ((b (point)) (e (make-marker))) |
6592 (forward-sexp 1) | |
6593 (set-marker e (1- (point))) | |
6594 (cperl-beautify-regexp-piece b e nil))) | |
6595 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6596 (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
|
6597 "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
|
6598 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
|
6599 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6600 (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
|
6601 (while (not done) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6602 (or (eq (following-char) ?\() |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6603 (search-backward "(" (1+ limit) t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6604 (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
|
6605 (setq done |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6606 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6607 (skip-chars-backward "\\") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6608 (looking-at "\\(\\\\\\\\\\)*("))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6609 (or done (forward-char -1))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6610 |
20323 | 6611 (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
|
6612 "Find an enclosing group in regexp and contract it. |
20323 | 6613 \(Experimental, may change semantics, recheck the result.) |
6614 We suppose that the regexp is scanned already." | |
6615 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6616 (cperl-regext-to-level-start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6617 (let ((b (point)) (e (make-marker)) s c) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6618 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6619 (set-marker e (1- (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6620 (goto-char b) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6621 (while (re-search-forward "\\(#\\)\\|\n" e t) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6622 (cond |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6623 ((match-beginning 1) ; #-comment |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6624 (or c (setq c (current-indentation))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6625 (beginning-of-line 2) ; Skip |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6626 (setq s (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6627 (skip-chars-forward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6628 (delete-region s (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6629 (indent-to-column c)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6630 (t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6631 (delete-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6632 (just-one-space)))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6633 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6634 (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
|
6635 "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
|
6636 \(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
|
6637 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
|
6638 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6639 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6640 (cperl-regext-to-level-start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6641 (error ; We are outside outermost group |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6642 (goto-char (cperl-make-regexp-x)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6643 (let ((b (point)) (e (make-marker)) s c) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6644 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6645 (set-marker e (1- (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6646 (goto-char (1+ b)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6647 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6648 (cond |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6649 ((match-beginning 1) ; Skip |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6650 nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6651 (t ; Group |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6652 (cperl-contract-level)))))) |
20323 | 6653 |
6654 (defun cperl-beautify-level () | |
6655 "Find an enclosing group in regexp and beautify it. | |
6656 \(Experimental, may change semantics, recheck the result.) | |
6657 We suppose that the regexp is scanned already." | |
6658 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6659 (cperl-regext-to-level-start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6660 (let ((b (point)) (e (make-marker))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6661 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6662 (set-marker e (1- (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6663 (cperl-beautify-regexp-piece b e nil))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6664 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6665 (defun cperl-invert-if-unless () |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6666 "Change `if (A) {B}' into `B if A;' if possible." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6667 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6668 (or (looking-at "\\<") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6669 (forward-sexp -1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6670 (if (looking-at "\\<\\(if\\|unless\\|while\\|until\\)\\>") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6671 (let ((pos1 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6672 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
|
6673 (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
|
6674 (forward-sexp 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6675 (setq pos3 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6676 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6677 (setq pos2 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6678 (if (eq (following-char) ?\( ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6679 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6680 (goto-char pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6681 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6682 (setq pos5 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6683 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6684 (setq pos4 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6685 ;; 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
|
6686 (if (and (eq (following-char) ?\{ ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6687 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6688 (cperl-backward-to-noncomment pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6689 (eq (preceding-char) ?\) ))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6690 (if (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6691 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6692 (goto-char pos5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6693 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6694 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6695 (looking-at "\\<els\\(e\\|if\\)\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6696 (error nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6697 (error |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6698 "`%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
|
6699 (goto-char (1- pos5)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6700 (cperl-backward-to-noncomment pos4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6701 (if (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6702 (forward-char -1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6703 (setq pos45 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6704 (goto-char pos4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6705 (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
|
6706 (setq p (match-beginning 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6707 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
|
6708 state (parse-partial-sexp pos4 p)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6709 (or (nth 3 state) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6710 (nth 4 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6711 (nth 5 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6712 (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
|
6713 (goto-char (match-end 0))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6714 ;; Finally got it |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6715 (goto-char (1+ pos4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6716 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6717 (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
|
6718 (goto-char pos45) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6719 (or (looking-at ";?[ \t\n]*}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6720 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6721 (skip-chars-forward "; \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6722 (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
|
6723 (and (equal s2 "") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6724 (setq s2 "1")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6725 (goto-char (1- pos3)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6726 (cperl-backward-to-noncomment pos2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6727 (or (looking-at "[ \t\n]*)") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6728 (goto-char (1- pos3))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6729 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6730 (goto-char (1+ pos2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6731 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6732 (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
|
6733 (delete-region pos4 pos5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6734 (delete-region pos2 pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6735 (goto-char pos1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6736 (insert s2 " ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6737 (just-one-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6738 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6739 (setq pos1 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6740 (insert " " s1 ";") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6741 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6742 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6743 (goto-char pos1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6744 (just-one-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6745 (cperl-indent-line)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6746 (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
|
6747 (error "`%s' not with an (EXPR)" s0))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6748 (error "Not at `if', `unless', `while', or `unless'"))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6749 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6750 ;;; By Anthony Foiani <afoiani@uswest.com> |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6751 ;;; Getting help on modules in C-h f ? |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6752 ;;; This is a modified version of `man'. |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6753 ;;; Need to teach it how to lookup functions |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6754 (defun cperl-perldoc (word) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6755 "Run `perldoc' on WORD." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6756 (interactive |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6757 (list (let* ((default-entry (cperl-word-at-point)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6758 (input (read-string |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6759 (format "perldoc entry%s: " |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6760 (if (string= default-entry "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6761 "" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6762 (format " (default %s)" default-entry)))))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6763 (if (string= input "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6764 (if (string= default-entry "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6765 (error "No perldoc args given") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6766 default-entry) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6767 input)))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6768 (let* ((is-func (and |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6769 (string-match "^[a-z]+$" word) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6770 (string-match (concat "^" word "\\>") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6771 (documentation-property |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6772 'cperl-short-docs |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6773 'variable-documentation)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6774 (manual-program (if is-func "perldoc -f" "perldoc"))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6775 (require 'man) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6776 (Man-getpage-in-background word))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6777 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6778 (defun cperl-perldoc-at-point () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6779 "Run a `perldoc' on the word around point." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6780 (interactive) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6781 (cperl-perldoc (cperl-word-at-point))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6782 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6783 (defcustom pod2man-program "pod2man" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6784 "*File name for `pod2man'." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6785 :type 'file |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6786 :group 'cperl) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6787 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6788 ;;; 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
|
6789 (defun cperl-pod-to-manpage () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6790 "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
|
6791 (interactive) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6792 (require 'man) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6793 (let* ((pod2man-args (concat buffer-file-name " | nroff -man ")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6794 (bufname (concat "Man " buffer-file-name)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6795 (buffer (generate-new-buffer bufname))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6796 (save-excursion |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6797 (set-buffer buffer) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6798 (let ((process-environment (copy-sequence process-environment))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6799 ;; Prevent any attempt to use display terminal fanciness. |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6800 (setenv "TERM" "dumb") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6801 (set-process-sentinel |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6802 (start-process pod2man-program buffer "sh" "-c" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6803 (format (cperl-pod2man-build-command) pod2man-args)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6804 'Man-bgproc-sentinel))))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6805 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6806 (defun cperl-pod2man-build-command () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6807 "Builds the entire background manpage and cleaning command." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6808 (let ((command (concat pod2man-program " %s 2>/dev/null")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6809 (flist Man-filter-list)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6810 (while (and flist (car flist)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6811 (let ((pcom (car (car flist))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6812 (pargs (cdr (car flist)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6813 (setq command |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6814 (concat command " | " pcom " " |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6815 (mapconcat '(lambda (phrase) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6816 (if (not (stringp phrase)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6817 (error "Malformed Man-filter-list")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6818 phrase) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6819 pargs " "))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6820 (setq flist (cdr flist)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6821 command)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6822 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6823 (defun cperl-lazy-install ()) ; Avoid a warning |
20323 | 6824 |
6825 (if (fboundp 'run-with-idle-timer) | |
6826 (progn | |
6827 (defvar cperl-help-shown nil | |
6828 "Non-nil means that the help was already shown now.") | |
6829 | |
6830 (defvar cperl-lazy-installed nil | |
6831 "Non-nil means that the lazy-help handlers are installed now.") | |
6832 | |
6833 (defun cperl-lazy-install () | |
6834 (interactive) | |
6835 (make-variable-buffer-local 'cperl-help-shown) | |
6836 (if (and (cperl-val 'cperl-lazy-help-time) | |
6837 (not cperl-lazy-installed)) | |
6838 (progn | |
6839 (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
|
6840 (run-with-idle-timer |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6841 (cperl-val 'cperl-lazy-help-time 1000000 5) |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6842 t |
20323 | 6843 'cperl-get-help-defer) |
6844 (setq cperl-lazy-installed t)))) | |
6845 | |
6846 (defun cperl-lazy-unstall () | |
6847 (interactive) | |
6848 (remove-hook 'post-command-hook 'cperl-lazy-hook) | |
6849 (cancel-function-timers 'cperl-get-help-defer) | |
6850 (setq cperl-lazy-installed nil)) | |
6851 | |
6852 (defun cperl-lazy-hook () | |
6853 (setq cperl-help-shown nil)) | |
6854 | |
6855 (defun cperl-get-help-defer () | |
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
6856 (when (memq major-mode '(perl-mode cperl-mode)) |
20323 | 6857 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t)) |
6858 (cperl-get-help) | |
6859 (setq cperl-help-shown t)))) | |
6860 (cperl-lazy-install))) | |
6861 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6862 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6863 ;;; Plug for wrong font-lock: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6864 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6865 (defun cperl-font-lock-unfontify-region-function (beg end) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6866 (let* ((modified (buffer-modified-p)) (buffer-undo-list t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6867 (inhibit-read-only t) (inhibit-point-motion-hooks t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6868 before-change-functions after-change-functions |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6869 deactivate-mark buffer-file-name buffer-file-truename) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6870 (remove-text-properties beg end '(face nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6871 (when (and (not modified) (buffer-modified-p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6872 (set-buffer-modified-p nil)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6873 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6874 (defvar cperl-d-l nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6875 (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
|
6876 ;; Some vars for debugging only |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6877 (let (start (dbg (point)) (iend end) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6878 (istate (car cperl-syntax-state))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6879 (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
|
6880 (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
|
6881 (setq start (point)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6882 (or cperl-syntax-done-to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6883 (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
|
6884 (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
|
6885 (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
|
6886 t) ; Not debugged otherwise |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6887 ;; 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
|
6888 (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
|
6889 ;; Fontification without a change |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6890 (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
|
6891 (and (> end start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6892 (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
|
6893 (cperl-find-pods-heres start end t nil t)) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6894 ;;(setq cperl-d-l (cons (format "Syntaxifying %s..%s from %s to %s\n" |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6895 ;; dbg end start cperl-syntax-done-to) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6896 ;; cperl-d-l)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6897 ;;(let ((standard-output (get-buffer "*Messages*"))) |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6898 ;;(princ (format "Syntaxifying %s..%s from %s to %s\n" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6899 ;; dbg end start cperl-syntax-done-to))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6900 (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
|
6901 (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
|
6902 dbg iend |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6903 start end cperl-syntax-done-to |
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6904 istate (car cperl-syntax-state))) ; For debugging |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6905 nil)) ; Do not iterate |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6906 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6907 (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
|
6908 (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
|
6909 (while (< pos end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6910 (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
|
6911 (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
|
6912 (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
|
6913 (setq pos posend))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6914 nil) ; Do not iterate |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6915 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6916 (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
|
6917 (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
|
6918 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
|
6919 (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
|
6920 (< 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
|
6921 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6922 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6923 (goto-char from) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6924 (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
|
6925 |
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6926 (defvar cperl-version |
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
6927 (let ((v "Revision: 4.23")) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6928 (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
|
6929 (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
|
6930 "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
|
6931 |
20323 | 6932 (provide 'cperl-mode) |
6933 | |
6934 ;;; cperl-mode.el ends here |