Mercurial > emacs
annotate lisp/progmodes/cperl-mode.el @ 32332:70f7c8ff11ff
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 09 Oct 2000 11:12:06 +0000 |
parents | b2aecc723a3e |
children | a18be74d62e5 |
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 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
178 (defcustom 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
|
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. |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
192 If `nil', the value of `cperl-indent-level' will be used." |
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. | |
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 |
20323 | 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 |
20323 | 257 "*Non-nil (and non-null) means { after $ in CPerl buffers 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 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
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. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
302 Affects: `cperl-font-lock', `cperl-electric-lbrace-space', |
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 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
320 (defcustom cperl-clobber-mode-lists |
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 |
31821 | 366 (defcustom cperl-invalid-face 'underline |
367 "*Face for highlighting trailing whitespace." | |
368 :type 'face | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
369 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
370 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
371 (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
|
372 "*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
|
373 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
374 :group 'cperl-faces) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
375 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
376 (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
|
377 "*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
|
378 :type 'boolean |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
379 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
380 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
381 (defcustom cperl-pod-here-scan t |
20323 | 382 "*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
|
383 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
|
384 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
385 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
386 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
387 (defcustom cperl-imenu-addback nil |
20323 | 388 "*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
|
389 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
|
390 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
391 :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
|
392 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
393 (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
|
394 "*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
|
395 :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
|
396 :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
|
397 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
398 (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
|
399 "*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
|
400 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
401 :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
|
402 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
403 (defcustom cperl-info-page "perl" |
20323 | 404 "*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
|
405 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
|
406 :type 'string |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
407 :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
|
408 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
409 (defcustom cperl-use-syntax-table-text-property |
20323 | 410 (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
|
411 "*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
|
412 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
413 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
414 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
415 (defcustom cperl-use-syntax-table-text-property-for-tags |
20323 | 416 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
|
417 "*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
|
418 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
419 :group 'cperl-speed) |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
420 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
421 (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
|
422 "*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
|
423 :type 'regexp |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
424 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
425 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
426 (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
|
427 "*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
|
428 :type 'regexp |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
429 :group 'cperl) |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
430 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
431 (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
|
432 "*Indentation used when beautifying regexps. |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
433 If `nil', the value of `cperl-indent-level' will be used." |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
434 :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
|
435 :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
|
436 |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
437 (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
|
438 "*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
|
439 :type 'boolean |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
440 :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
|
441 |
26667
a11929b241ab
(cperl-under-as-char): Make nil the default value.
Richard M. Stallman <rms@gnu.org>
parents:
26455
diff
changeset
|
442 (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
|
443 "*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
|
444 :type 'boolean |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
445 :group 'cperl) |
20323 | 446 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
447 (defcustom cperl-extra-perl-args "" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
448 "*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
|
449 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
|
450 :type 'string |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
451 :group 'cperl) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
452 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
453 (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
|
454 "*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
|
455 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
456 :group 'cperl-help-system) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
457 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
458 (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
|
459 "*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
|
460 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
|
461 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
|
462 :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
|
463 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
464 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
465 (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
|
466 "*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
|
467 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
|
468 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
469 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
470 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
471 (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
|
472 "*Non-nil means that BLOCK-end `}' may be put on a separate line |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
473 when indenting a region. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
474 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
|
475 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
476 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
477 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
478 (defcustom cperl-merge-trailing-else t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
479 "*Non-nil means that BLOCK-end `}' followed by else/elsif/continue |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
480 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
|
481 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
482 :group 'cperl-indentation-details) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
483 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
484 (defcustom 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
|
485 (and window-system |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
486 (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
|
487 "*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
|
488 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
|
489 :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
|
490 :group 'cperl-speed) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
491 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
492 (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
|
493 t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
494 "*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
|
495 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
|
496 :type 'boolean |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
497 :group 'cperl-speed) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
498 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
499 (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
|
500 '((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
|
501 (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
|
502 (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
|
503 (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
|
504 (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
|
505 (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
|
506 (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
|
507 (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
|
508 (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
|
509 (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
|
510 (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
|
511 "List given as an argument to `ps-extend-face-list' in `cperl-ps-print'." |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
512 :type '(repeat (cons symbol |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
513 (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
|
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 (repeat symbol))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
516 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
517 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
518 (if window-system |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
519 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
520 (defvar cperl-dark-background |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
521 (cperl-choose-color "navy" "os2blue" "darkgreen")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
522 (defvar cperl-dark-foreground |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
523 (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
|
524 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
525 (defface cperl-nonoverridable-face |
26455 | 526 `((((class grayscale) (background light)) |
527 (:background "Gray90" :italic t :underline t)) | |
528 (((class grayscale) (background dark)) | |
529 (:foreground "Gray80" :italic t :underline t :bold t)) | |
530 (((class color) (background light)) | |
531 (:foreground "chartreuse3")) | |
532 (((class color) (background dark)) | |
533 (:foreground ,cperl-dark-foreground)) | |
534 (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
|
535 "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
|
536 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
537 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
538 (defface cperl-array-face |
26455 | 539 `((((class grayscale) (background light)) |
540 (:background "Gray90" :bold t)) | |
541 (((class grayscale) (background dark)) | |
542 (:foreground "Gray80" :bold t)) | |
543 (((class color) (background light)) | |
544 (:foreground "Blue" :background "lightyellow2" :bold t)) | |
545 (((class color) (background dark)) | |
546 (:foreground "yellow" :background ,cperl-dark-background :bold t)) | |
547 (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
|
548 "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
|
549 :group 'cperl-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
550 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
551 (defface cperl-hash-face |
26455 | 552 `((((class grayscale) (background light)) |
553 (:background "Gray90" :bold t :italic t)) | |
554 (((class grayscale) (background dark)) | |
555 (:foreground "Gray80" :bold t :italic t)) | |
556 (((class color) (background light)) | |
557 (:foreground "Red" :background "lightyellow2" :bold t :italic t)) | |
558 (((class color) (background dark)) | |
559 (:foreground "Red" :background ,cperl-dark-background :bold t :italic t)) | |
560 (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
|
561 "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
|
562 :group 'cperl-faces))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
563 |
20323 | 564 |
565 | |
566 ;;; Short extra-docs. | |
567 | |
568 (defvar cperl-tips 'please-ignore-this-line | |
569 "Get newest version of this package from | |
570 ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs | |
571 and/or | |
572 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
|
573 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
|
574 patches to related files. |
20323 | 575 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
576 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
|
577 ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode/patches |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
578 \(this upgrades syntax-parsing abilities of RMS Emaxen v19.34 and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
579 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
|
580 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
|
581 too primitive. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
582 |
20323 | 583 Get support packages choose-color.el (or font-lock-extra.el before |
584 19.30), imenu-go.el from the same place. \(Look for other files there | |
585 too... ;-). Get a patch for imenu.el in 19.29. Note that for 19.30 and | |
586 later you should use choose-color.el *instead* of font-lock-extra.el | |
587 \(and you will not get smart highlighting in C :-(). | |
588 | |
589 Note that to enable Compile choices in the menu you need to install | |
590 mode-compile.el. | |
591 | |
592 Get perl5-info from | |
593 $CPAN/doc/manual/info/perl-info.tar.gz | |
594 older version was on | |
595 http://www.metronet.com:70/9/perlinfo/perl5/manual/perl5-info.tar.gz | |
596 | |
597 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
|
598 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
|
599 Tools/Tags submenu in Perl menu. |
20323 | 600 |
601 If some class structure is too complicated, use Tools/Hierarchy-view | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
602 from Perl menu, or hierarchic view of imenu. The second one uses the |
20323 | 603 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
|
604 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
|
605 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
606 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
|
607 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
608 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
|
609 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
610 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
|
611 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
|
612 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
613 M-x norm RET |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
614 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
615 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
|
616 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
617 M-x load-l RET cperl-mode RET |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
618 M-x norm RET |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
619 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
620 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
|
621 micro-docs on what I know about CPerl problems.") |
20323 | 622 |
623 (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
|
624 "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
|
625 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
|
626 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
|
627 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
628 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
|
629 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
|
630 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
|
631 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
632 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
|
633 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
|
634 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
|
635 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
|
636 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
|
637 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
638 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
|
639 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
|
640 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
|
641 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
|
642 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
|
643 braces. |
20323 | 644 |
645 This may be confusing, since the regexp s#//#/#\; may be highlighted | |
646 as a comment, but it will be recognized as a regexp by the indentation | |
647 code. Or the opposite case, when a pod section is highlighted, but | |
648 may break the indentation of the following code (though indentation | |
649 should work if the balance of delimiters is not broken by POD). | |
650 | |
651 The main trick (to make $ a \"backslash\") makes constructions like | |
652 ${aaa} look like unbalanced braces. The only trick I can think of is | |
653 to insert it as $ {aaa} (legal in perl5, not in perl4). | |
654 | |
655 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
|
656 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
|
657 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
658 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
|
659 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
|
660 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
|
661 and on CPAN. |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
662 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
663 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
|
664 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
|
665 via `cperl-use-syntax-table-text-property'." ) |
20323 | 666 |
667 (defvar cperl-non-problems 'please-ignore-this-line | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
668 "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
|
669 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
|
670 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
|
671 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
|
672 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
673 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
|
674 \(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
|
675 not relevant on newer Emacsen, since they can do it automatically). |
20323 | 676 |
677 Try to help CPerl: add comments with embedded quotes to fix CPerl | |
678 misunderstandings about the end of quotation: | |
679 | |
680 $a='500$'; # '; | |
681 | |
682 You won't need it too often. The reason: $ \"quotes\" the following | |
683 character (this saves a life a lot of times in CPerl), thus due to | |
684 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
|
685 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
|
686 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
|
687 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
688 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
|
689 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
|
690 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
|
691 correctly. So |
20323 | 692 1 if s#//#/#; |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
693 would not break indentation, but |
20323 | 694 1 if ( s#//#/# ); |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
695 would. Upgrade. |
20323 | 696 |
697 By similar reasons | |
698 s\"abc\"def\"; | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
699 would confuse CPerl a lot. |
20323 | 700 |
701 If you still get wrong indentation in situation that you think the | |
702 code should be able to parse, try: | |
703 | |
704 a) Check what Emacs thinks about balance of your parentheses. | |
705 b) Supply the code to me (IZ). | |
706 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
707 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
|
708 treated at all (except highlighting and inhibiting indentation). Upgrade. |
20323 | 709 |
710 To speed up coloring the following compromises exist: | |
711 a) sub in $mypackage::sub may be highlighted. | |
712 b) -z in [a-z] may be highlighted. | |
713 c) if your regexp contains a keyword (like \"s\"), it may be highlighted. | |
714 | |
715 | |
716 Imenu in 19.31 is broken. Set `imenu-use-keymap-menu' to t, and remove | |
717 `car' before `imenu-choose-buffer-index' in `imenu'. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
718 `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
|
719 |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
720 A lot of things on XEmacs may be broken too, judging by bug reports I |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
721 recieve. Note that some releases of XEmacs are better than the others |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
722 as far as bugs reports I see are concerned.") |
20323 | 723 |
724 (defvar cperl-praise 'please-ignore-this-line | |
725 "RMS asked me to list good things about CPerl. Here they go: | |
726 | |
727 0) It uses the newest `syntax-table' property ;-); | |
728 | |
729 1) It does 99% of Perl syntax correct (as opposed to 80-90% in Perl | |
730 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
|
731 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
|
732 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
733 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
|
734 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
|
735 updates syntax assist hints when you edit your script. |
20323 | 736 |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
737 2) It is generally believed to be \"the most user-friendly Emacs |
20323 | 738 package\" whatever it may mean (I doubt that the people who say similar |
739 things tried _all_ the rest of Emacs ;-), but this was not a lonely | |
740 voice); | |
741 | |
742 3) Everything is customizable, one-by-one or in a big sweep; | |
743 | |
744 4) It has many easily-accessable \"tools\": | |
745 a) Can run program, check syntax, start debugger; | |
746 b) Can lineup vertically \"middles\" of rows, like `=' in | |
747 a = b; | |
748 cc = d; | |
749 c) Can insert spaces where this impoves readability (in one | |
750 interactive sweep over the buffer); | |
751 d) Has support for imenu, including: | |
752 1) Separate unordered list of \"interesting places\"; | |
753 2) Separate TOC of POD sections; | |
754 3) Separate list of packages; | |
755 4) Hierarchical view of methods in (sub)packages; | |
756 5) and functions (by the full name - with package); | |
757 e) Has an interface to INFO docs for Perl; The interface is | |
758 very flexible, including shrink-wrapping of | |
759 documentation buffer/frame; | |
760 f) Has a builtin list of one-line explanations for perl constructs. | |
761 g) Can show these explanations if you stay long enough at the | |
762 corresponding place (or on demand); | |
763 h) Has an enhanced fontification (using 3 or 4 additional faces | |
764 comparing to font-lock - basically, different | |
765 namespaces in Perl have different colors); | |
766 i) Can construct TAGS basing on its knowledge of Perl syntax, | |
767 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
|
768 TAGS (if \"by directory\", .xs files - with C-language |
20323 | 769 bindings - are included in the scan); |
770 j) Can build a hierarchical view of classes (via imenu) basing | |
771 on generated TAGS file; | |
772 k) Has electric parentheses, electric newlines, uses Abbrev | |
773 for electric logical constructs | |
774 while () {} | |
775 with different styles of expansion (context sensitive | |
776 to be not so bothering). Electric parentheses behave | |
777 \"as they should\" in a presence of a visible region. | |
778 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
|
779 m) Can convert from |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
780 if (A) { B } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
781 to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
782 B if A; |
20323 | 783 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
784 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
|
785 (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
|
786 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
|
787 |
20323 | 788 5) The indentation engine was very smart, but most of tricks may be |
789 not needed anymore with the support for `syntax-table' property. Has | |
790 progress indicator for indentation (with `imenu' loaded). | |
791 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
792 6) Indent-region improves inline-comments as well; also corrects |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
793 whitespace *inside* the conditional/loop constructs. |
20323 | 794 |
795 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
|
796 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
797 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
|
798 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
|
799 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
800 9) When doing indentation of control constructs, may correct |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
801 line-breaks/spacing between elements of the construct. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
802 ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
803 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
804 (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
|
805 "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
|
806 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
|
807 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
808 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
|
809 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
|
810 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
811 *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
|
812 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
|
813 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
|
814 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
|
815 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
|
816 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
817 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
|
818 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
|
819 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
|
820 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
821 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
|
822 PODs and HERE-documents), or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
823 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
|
824 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
|
825 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
826 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
|
827 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
828 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
|
829 `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
|
830 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
|
831 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
832 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
|
833 `cperl-pod-here-scan' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
834 to nil. |
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 B) Speed of editing operations. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
837 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
838 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
|
839 `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
|
840 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
|
841 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
|
842 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
|
843 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
|
844 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
845 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
|
846 of, say, long POD sections. |
20323 | 847 ") |
848 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
849 (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
|
850 "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
|
851 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
852 cperl-array-face Array names |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
853 cperl-hash-face Hash names |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
854 font-lock-comment-face Comments, PODs and whatever is considered |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
855 syntaxically to be not code |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
856 font-lock-constant-face HERE-doc delimiters, labels, delimiters of |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
857 2-arg operators s/y/tr/ or of RExen, |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
858 font-lock-function-name-face Special-cased m// and s//foo/, _ as |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
859 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
|
860 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
|
861 (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
|
862 package names (when recognized), format names |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
863 font-lock-keyword-face Control flow switch constructs, declarators |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
864 cperl-nonoverridable-face Non-overridable keywords, modifiers of RExen |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
865 font-lock-string-face Strings, qw() constructs, RExen, POD sections, |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
866 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
|
867 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
|
868 as string literals |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
869 font-lock-type-face Overridable keywords |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
870 font-lock-variable-name-face Variable declarations, indirect array and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
871 hash names, POD headers/item names |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
872 cperl-invalid-face Trailing whitespace |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
873 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
874 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
|
875 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
|
876 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
|
877 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
|
878 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
879 Help with best setup of these faces for printout requested (for each of |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
880 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
|
881 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
882 \(Not finished.)") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
883 |
20323 | 884 |
885 | |
886 ;;; Portability stuff: | |
887 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
888 (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
|
889 |
20323 | 890 (defmacro cperl-define-key (emacs-key definition &optional xemacs-key) |
26455 | 891 `(define-key cperl-mode-map |
892 ,(if xemacs-key | |
893 `(if cperl-xemacs-p ,xemacs-key ,emacs-key) | |
894 emacs-key) | |
895 ,definition)) | |
20323 | 896 |
897 (defvar cperl-del-back-ch | |
898 (car (append (where-is-internal 'delete-backward-char) | |
899 (where-is-internal 'backward-delete-char-untabify))) | |
900 "Character generated by key bound to delete-backward-char.") | |
901 | |
902 (and (vectorp cperl-del-back-ch) (= (length cperl-del-back-ch) 1) | |
903 (setq cperl-del-back-ch (aref cperl-del-back-ch 0))) | |
904 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
905 (defun cperl-mark-active () (mark)) ; Avoid undefined warning |
20323 | 906 (if cperl-xemacs-p |
907 (progn | |
908 ;; "Active regions" are on: use region only if active | |
909 ;; "Active regions" are off: use region unconditionally | |
910 (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
|
911 (if zmacs-regions (mark) t))) |
20323 | 912 (defun cperl-use-region-p () |
913 (if transient-mark-mode mark-active t)) | |
914 (defun cperl-mark-active () mark-active)) | |
915 | |
916 (defsubst cperl-enable-font-lock () | |
917 (or cperl-xemacs-p window-system)) | |
918 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
919 (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
|
920 (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
|
921 |
20323 | 922 (if (boundp 'unread-command-events) |
923 (if cperl-xemacs-p | |
924 (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
|
925 (setq unread-command-events (list (eval '(character-to-event c)))))) |
20323 | 926 (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
|
927 (set 'unread-command-event (eval '(character-to-event c))))) ; Avoid warnings |
20323 | 928 |
929 (or (fboundp 'uncomment-region) | |
930 (defun uncomment-region (beg end) | |
931 (interactive "r") | |
932 (comment-region beg end -1))) | |
933 | |
934 (defvar cperl-do-not-fontify | |
935 (if (string< emacs-version "19.30") | |
936 'fontified | |
937 'lazy-lock) | |
938 "Text property which inhibits refontification.") | |
939 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
940 (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
|
941 ;; 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
|
942 (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
|
943 nil |
20323 | 944 (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
|
945 to cperl-do-not-fontify t))) |
20323 | 946 |
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
947 (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
|
948 "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
|
949 :type 'hook |
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
950 :group 'cperl) |
20323 | 951 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
952 (defvar cperl-syntax-state nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
953 (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
|
954 (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
|
955 (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
|
956 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
957 ;; Make customization possible "in reverse" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
958 (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
|
959 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
960 ((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
|
961 (cperl-hairy (or hairy t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
962 (t (symbol-value symbol)))) |
20323 | 963 |
964 ;;; Probably it is too late to set these guys already, but it can help later: | |
965 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
966 ;;;(and cperl-clobber-mode-lists |
20323 | 967 ;;;(setq auto-mode-alist |
968 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist )) | |
969 ;;;(and (boundp 'interpreter-mode-alist) | |
970 ;;; (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
|
971 ;;; '(("miniperl" . perl-mode)))))) |
31821 | 972 (eval-when-compile |
973 (condition-case nil | |
974 (require 'imenu) | |
975 (error nil)) | |
976 (condition-case nil | |
977 (require 'easymenu) | |
978 (error nil)) | |
979 (condition-case nil | |
980 (require 'etags) | |
981 (error nil)) | |
982 (condition-case nil | |
983 (require 'timer) | |
984 (error nil)) | |
985 (condition-case nil | |
986 (require 'man) | |
987 (error nil)) | |
988 (condition-case nil | |
989 (require 'info) | |
990 (error nil)) | |
991 (if (fboundp 'ps-extend-face-list) | |
992 (defmacro cperl-ps-extend-face-list (arg) | |
993 `(ps-extend-face-list ,arg)) | |
994 (defmacro cperl-ps-extend-face-list (arg) | |
995 `(error "This version of Emacs has no `ps-extend-face-list'."))) | |
996 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs, | |
997 ;; macros instead of defsubsts don't work on Emacs, so we do the | |
998 ;; expansion manually. Any other suggestions? | |
999 (require 'cl)) | |
20323 | 1000 |
1001 (defvar cperl-mode-abbrev-table nil | |
1002 "Abbrev table in use in Cperl-mode buffers.") | |
1003 | |
1004 (add-hook 'edit-var-mode-alist '(perl-mode (regexp . "^cperl-"))) | |
1005 | |
1006 (defvar cperl-mode-map () "Keymap used in CPerl mode.") | |
1007 | |
1008 (if cperl-mode-map nil | |
1009 (setq cperl-mode-map (make-sparse-keymap)) | |
1010 (cperl-define-key "{" 'cperl-electric-lbrace) | |
1011 (cperl-define-key "[" 'cperl-electric-paren) | |
1012 (cperl-define-key "(" 'cperl-electric-paren) | |
1013 (cperl-define-key "<" 'cperl-electric-paren) | |
1014 (cperl-define-key "}" 'cperl-electric-brace) | |
1015 (cperl-define-key "]" 'cperl-electric-rparen) | |
1016 (cperl-define-key ")" 'cperl-electric-rparen) | |
1017 (cperl-define-key ";" 'cperl-electric-semi) | |
1018 (cperl-define-key ":" 'cperl-electric-terminator) | |
1019 (cperl-define-key "\C-j" 'newline-and-indent) | |
1020 (cperl-define-key "\C-c\C-j" 'cperl-linefeed) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1021 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless) |
20323 | 1022 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline) |
1023 (cperl-define-key "\C-c\C-k" 'cperl-toggle-abbrev) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1024 (cperl-define-key "\C-c\C-w" 'cperl-toggle-construct-fix) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1025 (cperl-define-key "\C-c\C-f" 'auto-fill-mode) |
20323 | 1026 (cperl-define-key "\C-c\C-e" 'cperl-toggle-electric) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1027 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp) |
20323 | 1028 (cperl-define-key "\e\C-q" 'cperl-indent-exp) ; Usually not bound |
1029 (cperl-define-key [?\C-\M-\|] 'cperl-lineup | |
1030 [(control meta |)]) | |
1031 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
1032 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment) | |
1033 (cperl-define-key "\177" 'cperl-electric-backspace) | |
1034 (cperl-define-key "\t" 'cperl-indent-command) | |
1035 ;; don't clobber the backspace binding: | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1036 (cperl-define-key "\C-c\C-hF" 'cperl-info-on-command |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1037 [(control c) (control h) F]) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1038 (if (cperl-val 'cperl-clobber-lisp-bindings) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1039 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1040 (cperl-define-key "\C-hf" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1041 ;;(concat (char-to-string help-char) "f") ; does not work |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1042 'cperl-info-on-command |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1043 [(control h) f]) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1044 (cperl-define-key "\C-hv" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1045 ;;(concat (char-to-string help-char) "v") ; does not work |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1046 'cperl-get-help |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1047 [(control h) v]) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1048 (cperl-define-key "\C-c\C-hf" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1049 ;;(concat (char-to-string help-char) "f") ; does not work |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1050 (key-binding "\C-hf") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1051 [(control c) (control h) f]) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1052 (cperl-define-key "\C-c\C-hv" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1053 ;;(concat (char-to-string help-char) "v") ; does not work |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1054 (key-binding "\C-hv") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1055 [(control c) (control h) v])) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1056 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-current-command |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1057 [(control c) (control h) f]) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1058 (cperl-define-key "\C-c\C-hv" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1059 ;;(concat (char-to-string help-char) "v") ; does not work |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1060 'cperl-get-help |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1061 [(control c) (control h) v])) |
20323 | 1062 (if (and cperl-xemacs-p |
1063 (<= emacs-minor-version 11) (<= emacs-major-version 19)) | |
1064 (progn | |
1065 ;; substitute-key-definition is usefulness-deenhanced... | |
1066 (cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
1067 (cperl-define-key "\e;" 'cperl-indent-for-comment) | |
1068 (cperl-define-key "\e\C-\\" 'cperl-indent-region)) | |
1069 (substitute-key-definition | |
1070 'indent-sexp 'cperl-indent-exp | |
1071 cperl-mode-map global-map) | |
1072 (substitute-key-definition | |
1073 'fill-paragraph 'cperl-fill-paragraph | |
1074 cperl-mode-map global-map) | |
1075 (substitute-key-definition | |
1076 'indent-region 'cperl-indent-region | |
1077 cperl-mode-map global-map) | |
1078 (substitute-key-definition | |
1079 'indent-for-comment 'cperl-indent-for-comment | |
1080 cperl-mode-map global-map))) | |
1081 | |
1082 (defvar cperl-menu) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1083 (defvar cperl-lazy-installed) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1084 (defvar cperl-old-style nil) |
20323 | 1085 (condition-case nil |
1086 (progn | |
1087 (require 'easymenu) | |
1088 (easy-menu-define cperl-menu cperl-mode-map "Menu for CPerl mode" | |
1089 '("Perl" | |
1090 ["Beginning of function" beginning-of-defun t] | |
1091 ["End of function" end-of-defun t] | |
1092 ["Mark function" mark-defun t] | |
1093 ["Indent expression" cperl-indent-exp t] | |
1094 ["Fill paragraph/comment" cperl-fill-paragraph t] | |
1095 "----" | |
1096 ["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
|
1097 ["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
|
1098 ("Regexp" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1099 ["Beautify" cperl-beautify-regexp |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1100 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
|
1101 ["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
|
1102 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
|
1103 ["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
|
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 ["Contract groups" cperl-contract-levels |
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]) |
20323 | 1107 ["Refresh \"hard\" constructions" cperl-find-pods-heres t] |
1108 "----" | |
1109 ["Indent region" cperl-indent-region (cperl-use-region-p)] | |
1110 ["Comment region" cperl-comment-region (cperl-use-region-p)] | |
1111 ["Uncomment region" cperl-uncomment-region (cperl-use-region-p)] | |
1112 "----" | |
1113 ["Run" mode-compile (fboundp 'mode-compile)] | |
1114 ["Kill" mode-compile-kill (and (fboundp 'mode-compile-kill) | |
1115 (get-buffer "*compilation*"))] | |
1116 ["Next error" next-error (get-buffer "*compilation*")] | |
1117 ["Check syntax" cperl-check-syntax (fboundp 'mode-compile)] | |
1118 "----" | |
1119 ["Debugger" cperl-db t] | |
1120 "----" | |
1121 ("Tools" | |
1122 ["Imenu" imenu (fboundp 'imenu)] | |
1123 ["Insert spaces if needed" cperl-find-bad-style t] | |
1124 ["Class Hierarchy from TAGS" cperl-tags-hier-init t] | |
1125 ;;["Update classes" (cperl-tags-hier-init t) 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
|
1126 ["CPerl pretty print (exprmntl)" cperl-ps-print |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1127 (fboundp 'ps-extend-face-list)] |
20323 | 1128 ["Imenu on info" cperl-imenu-on-info (featurep 'imenu)] |
1129 ("Tags" | |
1130 ;;; ["Create tags for current file" cperl-etags t] | |
1131 ;;; ["Add tags for current file" (cperl-etags t) t] | |
1132 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t] | |
1133 ;;; ["Add tags for Perl files in directory" (cperl-etags t t) t] | |
1134 ;;; ["Create tags for Perl files in (sub)directories" | |
1135 ;;; (cperl-etags nil 'recursive) t] | |
1136 ;;; ["Add tags for Perl files in (sub)directories" | |
1137 ;;; (cperl-etags t 'recursive) t]) | |
1138 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer) | |
1139 ["Create tags for current file" (cperl-write-tags nil t) t] | |
1140 ["Add tags for current file" (cperl-write-tags) t] | |
1141 ["Create tags for Perl files in directory" | |
1142 (cperl-write-tags nil t nil t) t] | |
1143 ["Add tags for Perl files in directory" | |
1144 (cperl-write-tags nil nil nil t) t] | |
1145 ["Create tags for Perl files in (sub)directories" | |
1146 (cperl-write-tags nil t t t) t] | |
1147 ["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
|
1148 (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
|
1149 ("Perl docs" |
20323 | 1150 ["Define word at point" imenu-go-find-at-position |
1151 (fboundp 'imenu-go-find-at-position)] | |
1152 ["Help on function" cperl-info-on-command t] | |
1153 ["Help on function at point" cperl-info-on-current-command t] | |
1154 ["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
|
1155 ["Perldoc" cperl-perldoc t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1156 ["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
|
1157 ["View manpage of POD in this file" cperl-pod-to-manpage t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1158 ["Auto-help on" cperl-lazy-install |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1159 (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
|
1160 (not cperl-lazy-installed))] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1161 ["Auto-help off" (eval '(cperl-lazy-unstall)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1162 (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
|
1163 cperl-lazy-installed)]) |
20323 | 1164 ("Toggle..." |
1165 ["Auto newline" cperl-toggle-auto-newline t] | |
1166 ["Electric parens" cperl-toggle-electric t] | |
1167 ["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
|
1168 ["Fix whitespace on indent" cperl-toggle-construct-fix t] |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1169 ["Auto fill" auto-fill-mode t]) |
20323 | 1170 ("Indent styles..." |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1171 ["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
|
1172 ["PerlStyle" (cperl-set-style "PerlStyle") t] |
20323 | 1173 ["GNU" (cperl-set-style "GNU") t] |
1174 ["C++" (cperl-set-style "C++") t] | |
1175 ["FSF" (cperl-set-style "FSF") t] | |
1176 ["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
|
1177 ["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
|
1178 ["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
|
1179 ["Memorized" (cperl-set-style-back) cperl-old-style]) |
20323 | 1180 ("Micro-docs" |
1181 ["Tips" (describe-variable 'cperl-tips) t] | |
1182 ["Problems" (describe-variable 'cperl-problems) t] | |
1183 ["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
|
1184 ["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
|
1185 ["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
|
1186 ["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
|
1187 ["CPerl mode" (describe-function 'cperl-mode) t] |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1188 ["CPerl version" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1189 (message "The version of master-file for this CPerl is %s" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1190 cperl-version) t])))) |
20323 | 1191 (error nil)) |
1192 | |
1193 (autoload 'c-macro-expand "cmacexp" | |
1194 "Display the result of expanding all C macros occurring in the region. | |
1195 The expansion is entirely correct because it uses the C preprocessor." | |
1196 t) | |
1197 | |
1198 (defvar cperl-mode-syntax-table nil | |
1199 "Syntax table in use in Cperl-mode buffers.") | |
1200 | |
1201 (defvar cperl-string-syntax-table nil | |
1202 "Syntax table in use in Cperl-mode string-like chunks.") | |
1203 | |
1204 (if cperl-mode-syntax-table | |
1205 () | |
1206 (setq cperl-mode-syntax-table (make-syntax-table)) | |
1207 (modify-syntax-entry ?\\ "\\" cperl-mode-syntax-table) | |
1208 (modify-syntax-entry ?/ "." cperl-mode-syntax-table) | |
1209 (modify-syntax-entry ?* "." cperl-mode-syntax-table) | |
1210 (modify-syntax-entry ?+ "." cperl-mode-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 ?\n ">" 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 (if cperl-under-as-char | |
1223 (modify-syntax-entry ?_ "w" cperl-mode-syntax-table)) | |
1224 (modify-syntax-entry ?: "_" cperl-mode-syntax-table) | |
1225 (modify-syntax-entry ?| "." cperl-mode-syntax-table) | |
1226 (setq cperl-string-syntax-table (copy-syntax-table cperl-mode-syntax-table)) | |
1227 (modify-syntax-entry ?$ "." cperl-string-syntax-table) | |
1228 (modify-syntax-entry ?# "." cperl-string-syntax-table) ; (?# comment ) | |
1229 ) | |
1230 | |
1231 | |
1232 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1233 (defvar cperl-faces-init nil) |
20323 | 1234 ;; Fix for msb.el |
1235 (defvar cperl-msb-fixed nil) | |
1236 ;;;###autoload | |
1237 (defun cperl-mode () | |
1238 "Major mode for editing Perl code. | |
1239 Expression and list commands understand all C brackets. | |
1240 Tab indents for Perl code. | |
1241 Paragraphs are separated by blank lines only. | |
1242 Delete converts tabs to spaces as it moves back. | |
1243 | |
1244 Various characters in Perl almost always come in pairs: {}, (), [], | |
1245 sometimes <>. When the user types the first, she gets the second as | |
1246 well, with optional special formatting done on {}. (Disabled by | |
1247 default.) You can always quote (with \\[quoted-insert]) the left | |
1248 \"paren\" to avoid the expansion. The processing of < is special, | |
1249 since most the time you mean \"less\". Cperl mode tries to guess | |
1250 whether you want to type pair <>, and inserts is if it | |
1251 appropriate. You can set `cperl-electric-parens-string' to the string that | |
1252 contains the parenths from the above list you want to be electrical. | |
1253 Electricity of parenths is controlled by `cperl-electric-parens'. | |
1254 You may also set `cperl-electric-parens-mark' to have electric parens | |
1255 look for active mark and \"embrace\" a region if possible.' | |
1256 | |
1257 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
|
1258 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1259 if, else, elsif, unless, while, until, continue, do, |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1260 for, foreach, formy and foreachmy. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1261 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1262 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
|
1263 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1264 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
|
1265 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
|
1266 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
|
1267 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
|
1268 } { } 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
|
1269 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
|
1270 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
|
1271 new line between the braces (if you typed \\[cperl-linefeed] in a POD |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1272 directive line, then appropriate number of new lines is inserted). |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1273 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1274 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
|
1275 |
20323 | 1276 bite if angry; |
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 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
|
1279 `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
|
1280 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
|
1281 to nil.) |
20323 | 1282 |
1283 \\[cperl-linefeed] is a convenience replacement for typing carriage | |
1284 return. It places you in the next line with proper indentation, or if | |
1285 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
|
1286 |
20323 | 1287 foreach (@lines) {print; print} |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1288 |
20323 | 1289 and you are on a boundary of a statement inside braces, it will |
1290 transform the construct into a multiline and will place you into an | |
1291 appropriately indented blank line. If you need a usual | |
1292 `newline-and-indent' behaviour, it is on \\[newline-and-indent], | |
1293 see documentation on `cperl-electric-linefeed'. | |
1294 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1295 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
|
1296 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1297 if (A) { B } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1298 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1299 into |
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 B if A; |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1302 |
20323 | 1303 \\{cperl-mode-map} |
1304 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1305 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
|
1306 \(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
|
1307 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
|
1308 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
|
1309 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'), |
20323 | 1310 setting `cperl-electric-keywords' enables electric expansion of |
1311 control structures in CPerl. `cperl-electric-linefeed' governs which | |
1312 one of two linefeed behavior is preferable. You can enable all these | |
1313 options simultaneously (recommended mode of use) by setting | |
1314 `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
|
1315 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
|
1316 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
|
1317 consequent \\[cperl-electric-backspace]. |
20323 | 1318 |
1319 If your site has perl5 documentation in info format, you can use commands | |
1320 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it. | |
1321 These keys run commands `cperl-info-on-current-command' and | |
1322 `cperl-info-on-command', which one is which is controlled by variable | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1323 `cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1324 \(in turn affected by `cperl-hairy'). |
20323 | 1325 |
1326 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
|
1327 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
|
1328 man via menu. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1329 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1330 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
|
1331 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
|
1332 `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
|
1333 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
|
1334 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'. |
20323 | 1335 |
1336 Use \\[cperl-lineup] to vertically lineup some construction - put the | |
1337 beginning of the region at the start of construction, and make region | |
1338 span the needed amount of lines. | |
1339 | |
1340 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify', | |
1341 `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
|
1342 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
|
1343 for indentation too, otherwise they are used for highlighting only. |
20323 | 1344 |
1345 Variables controlling indentation style: | |
1346 `cperl-tab-always-indent' | |
1347 Non-nil means TAB in CPerl mode should always reindent the current line, | |
1348 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
|
1349 `cperl-indent-left-aligned-comments' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1350 Non-nil means that the comment starting in leftmost column should indent. |
20323 | 1351 `cperl-auto-newline' |
1352 Non-nil means automatically newline before and after braces, | |
1353 and after colons and semicolons, inserted in Perl code. The following | |
1354 \\[cperl-electric-backspace] will remove the inserted whitespace. | |
1355 Insertion after colons requires both this variable and | |
1356 `cperl-auto-newline-after-colon' set. | |
1357 `cperl-auto-newline-after-colon' | |
1358 Non-nil means automatically newline even after colons. | |
1359 Subject to `cperl-auto-newline' setting. | |
1360 `cperl-indent-level' | |
1361 Indentation of Perl statements within surrounding block. | |
1362 The surrounding block's indentation is the indentation | |
1363 of the line on which the open-brace appears. | |
1364 `cperl-continued-statement-offset' | |
1365 Extra indentation given to a substatement, such as the | |
1366 then-clause of an if, or body of a while, or just a statement continuation. | |
1367 `cperl-continued-brace-offset' | |
1368 Extra indentation given to a brace that starts a substatement. | |
1369 This is in addition to `cperl-continued-statement-offset'. | |
1370 `cperl-brace-offset' | |
1371 Extra indentation for line if it starts with an open brace. | |
1372 `cperl-brace-imaginary-offset' | |
1373 An open brace following other text is treated as if it the line started | |
1374 this far to the right of the actual line indentation. | |
1375 `cperl-label-offset' | |
1376 Extra indentation for line that is a label. | |
1377 `cperl-min-label-indent' | |
1378 Minimal indentation for line that is a label. | |
1379 | |
1380 Settings for K&R and BSD indentation styles are | |
1381 `cperl-indent-level' 5 8 | |
1382 `cperl-continued-statement-offset' 5 8 | |
1383 `cperl-brace-offset' -5 -8 | |
1384 `cperl-label-offset' -5 -8 | |
1385 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1386 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
|
1387 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
|
1388 \\[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
|
1389 \(both available from menu). |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1390 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1391 If `cperl-indent-level' is 0, the statement after opening brace in |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1392 column 0 is indented on |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1393 `cperl-brace-offset'+`cperl-continued-statement-offset'. |
20323 | 1394 |
1395 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
|
1396 with no args. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1397 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1398 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
|
1399 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
|
1400 `cperl-non-problems', `cperl-praise', `cperl-speed'." |
20323 | 1401 (interactive) |
1402 (kill-all-local-variables) | |
1403 (use-local-map cperl-mode-map) | |
1404 (if (cperl-val 'cperl-electric-linefeed) | |
1405 (progn | |
1406 (local-set-key "\C-J" 'cperl-linefeed) | |
1407 (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
|
1408 (if (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1409 (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
|
1410 (cperl-val 'cperl-info-on-command-no-prompt)) |
20323 | 1411 (progn |
1412 ;; don't clobber the backspace binding: | |
1413 (cperl-define-key "\C-hf" 'cperl-info-on-current-command [(control h) f]) | |
1414 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command | |
1415 [(control c) (control h) f]))) | |
1416 (setq major-mode 'perl-mode) | |
1417 (setq mode-name "CPerl") | |
1418 (if (not cperl-mode-abbrev-table) | |
1419 (let ((prev-a-c abbrevs-changed)) | |
1420 (define-abbrev-table 'cperl-mode-abbrev-table '( | |
1421 ("if" "if" cperl-electric-keyword 0) | |
1422 ("elsif" "elsif" cperl-electric-keyword 0) | |
1423 ("while" "while" cperl-electric-keyword 0) | |
1424 ("until" "until" cperl-electric-keyword 0) | |
1425 ("unless" "unless" cperl-electric-keyword 0) | |
1426 ("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
|
1427 ("continue" "continue" cperl-electric-else 0) |
20323 | 1428 ("for" "for" cperl-electric-keyword 0) |
1429 ("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
|
1430 ("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
|
1431 ("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
|
1432 ("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
|
1433 ("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
|
1434 ("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
|
1435 ("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
|
1436 ("head2" "head2" cperl-electric-pod 0))) |
20323 | 1437 (setq abbrevs-changed prev-a-c))) |
1438 (setq local-abbrev-table cperl-mode-abbrev-table) | |
1439 (abbrev-mode (if (cperl-val 'cperl-electric-keywords) 1 0)) | |
1440 (set-syntax-table cperl-mode-syntax-table) | |
1441 (make-local-variable 'paragraph-start) | |
1442 (setq paragraph-start (concat "^$\\|" page-delimiter)) | |
1443 (make-local-variable 'paragraph-separate) | |
1444 (setq paragraph-separate paragraph-start) | |
1445 (make-local-variable 'paragraph-ignore-fill-prefix) | |
1446 (setq paragraph-ignore-fill-prefix t) | |
1447 (make-local-variable 'indent-line-function) | |
1448 (setq indent-line-function 'cperl-indent-line) | |
1449 (make-local-variable 'require-final-newline) | |
1450 (setq require-final-newline t) | |
1451 (make-local-variable 'comment-start) | |
1452 (setq comment-start "# ") | |
1453 (make-local-variable 'comment-end) | |
1454 (setq comment-end "") | |
1455 (make-local-variable 'comment-column) | |
1456 (setq comment-column cperl-comment-column) | |
1457 (make-local-variable 'comment-start-skip) | |
1458 (setq comment-start-skip "#+ *") | |
1459 (make-local-variable 'defun-prompt-regexp) | |
1460 (setq defun-prompt-regexp "^[ \t]*sub[ \t]+\\([^ \t\n{(;]+\\)[ \t]*") | |
1461 (make-local-variable 'comment-indent-function) | |
1462 (setq comment-indent-function 'cperl-comment-indent) | |
1463 (make-local-variable 'parse-sexp-ignore-comments) | |
1464 (setq parse-sexp-ignore-comments t) | |
1465 (make-local-variable 'indent-region-function) | |
1466 (setq indent-region-function 'cperl-indent-region) | |
1467 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off! | |
1468 (make-local-variable 'imenu-create-index-function) | |
1469 (setq imenu-create-index-function | |
31821 | 1470 (function cperl-imenu--create-perl-index)) |
20323 | 1471 (make-local-variable 'imenu-sort-function) |
1472 (setq imenu-sort-function nil) | |
1473 (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
|
1474 (set 'vc-header-alist cperl-vc-header-alist) ; Avoid warning |
20323 | 1475 (make-local-variable 'font-lock-defaults) |
1476 (setq font-lock-defaults | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1477 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1478 ((string< emacs-version "19.30") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1479 '(perl-font-lock-keywords-2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1480 ((string< emacs-version "19.33") ; Which one to use? |
20323 | 1481 '((perl-font-lock-keywords |
1482 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
|
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 (t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1485 '((cperl-load-font-lock-keywords |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1486 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
|
1487 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
|
1488 (make-local-variable 'cperl-syntax-state) |
20323 | 1489 (if cperl-use-syntax-table-text-property |
1490 (progn | |
1491 (make-variable-buffer-local 'parse-sexp-lookup-properties) | |
1492 ;; 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
|
1493 (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
|
1494 ;; Fix broken font-lock: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1495 (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
|
1496 (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
|
1497 'font-lock-default-unfontify-region)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1498 (make-variable-buffer-local 'font-lock-unfontify-region-function) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1499 (set '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 'cperl-font-lock-unfontify-region-function) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1501 (make-variable-buffer-local 'cperl-syntax-done-to) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1502 ;; 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
|
1503 ;; 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
|
1504 ;; 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
|
1505 ;; are defined |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1506 (make-variable-buffer-local 'font-lock-syntactic-keywords) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1507 (setq font-lock-syntactic-keywords |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1508 (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
|
1509 '(t (cperl-fontify-syntaxically)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1510 '(t))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1511 (make-local-variable 'cperl-old-style) |
31821 | 1512 (set (make-local-variable 'normal-auto-fill-function) |
1513 #'cperl-old-auto-fill-mode) | |
20323 | 1514 (if (cperl-enable-font-lock) |
1515 (if (cperl-val 'cperl-font-lock) | |
1516 (progn (or cperl-faces-init (cperl-init-faces)) | |
1517 (font-lock-mode 1)))) | |
1518 (and (boundp 'msb-menu-cond) | |
1519 (not cperl-msb-fixed) | |
1520 (cperl-msb-fix)) | |
1521 (if (featurep 'easymenu) | |
22392
7300e6ab99d2
(cperl-problems): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22391
diff
changeset
|
1522 (easy-menu-add cperl-menu)) ; A NOP in Emacs. |
20323 | 1523 (run-hooks 'cperl-mode-hook) |
1524 ;; After hooks since fontification will break this | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1525 (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
|
1526 (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
|
1527 ;; (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
|
1528 ;; (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
|
1529 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
|
1530 (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
|
1531 (cperl-find-pods-heres))))) |
20323 | 1532 |
1533 ;; Fix for perldb - make default reasonable | |
1534 (defun cperl-db () | |
1535 (interactive) | |
1536 (require 'gud) | |
1537 (perldb (read-from-minibuffer "Run perldb (like this): " | |
1538 (if (consp gud-perldb-history) | |
1539 (car gud-perldb-history) | |
1540 (concat "perl " ;;(file-name-nondirectory | |
1541 ;; I have problems | |
1542 ;; in OS/2 | |
1543 ;; otherwise | |
1544 (buffer-file-name))) | |
1545 nil nil | |
1546 '(gud-perldb-history . 1)))) | |
1547 | |
1548 (defun cperl-msb-fix () | |
1549 ;; Adds perl files to msb menu, supposes that msb is already loaded | |
1550 (setq cperl-msb-fixed t) | |
1551 (let* ((l (length msb-menu-cond)) | |
1552 (last (nth (1- l) msb-menu-cond)) | |
1553 (precdr (nthcdr (- l 2) msb-menu-cond)) ; cdr of this is last | |
1554 (handle (1- (nth 1 last)))) | |
1555 (setcdr precdr (list | |
1556 (list | |
1557 '(eq major-mode 'perl-mode) | |
1558 handle | |
1559 "Perl Files (%d)") | |
1560 last)))) | |
1561 | |
1562 ;; This is used by indent-for-comment | |
1563 ;; to decide how much to indent a comment in CPerl code | |
1564 ;; based on its context. Do fallback if comment is found wrong. | |
1565 | |
1566 (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
|
1567 (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
|
1568 (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
|
1569 (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
|
1570 (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
|
1571 (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
|
1572 (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
|
1573 |
20323 | 1574 |
1575 (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
|
1576 (let ((p (point)) (c (current-column)) was phony) |
20323 | 1577 (if (looking-at "^#") 0 ; Existing comment at bol stays there. |
1578 ;; Wrong comment found | |
1579 (save-excursion | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1580 (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
|
1581 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
|
1582 cperl-st-cfence)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1583 (if phony |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1584 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1585 (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
|
1586 (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
|
1587 (forward-char -1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1588 (setq was nil))) |
20323 | 1589 (if (= (point) p) |
1590 (progn | |
1591 (skip-chars-backward " \t") | |
1592 (max (1+ (current-column)) ; Else indent at comment column | |
1593 comment-column)) | |
1594 (if was nil | |
1595 (insert comment-start) | |
1596 (backward-char (length comment-start))) | |
1597 (setq cperl-wrong-comment t) | |
1598 (indent-to comment-column 1) ; Indent minimum 1 | |
1599 c))))) ; except leave at least one space. | |
1600 | |
1601 ;;;(defun cperl-comment-indent-fallback () | |
1602 ;;; "Is called if the standard comment-search procedure fails. | |
1603 ;;;Point is at start of real comment." | |
1604 ;;; (let ((c (current-column)) target cnt prevc) | |
1605 ;;; (if (= c comment-column) nil | |
1606 ;;; (setq cnt (skip-chars-backward "[ \t]")) | |
1607 ;;; (setq target (max (1+ (setq prevc | |
1608 ;;; (current-column))) ; Else indent at comment column | |
1609 ;;; comment-column)) | |
1610 ;;; (if (= c comment-column) nil | |
1611 ;;; (delete-backward-char cnt) | |
1612 ;;; (while (< prevc target) | |
1613 ;;; (insert "\t") | |
1614 ;;; (setq prevc (current-column))) | |
1615 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column)))) | |
1616 ;;; (while (< prevc target) | |
1617 ;;; (insert " ") | |
1618 ;;; (setq prevc (current-column))))))) | |
1619 | |
1620 (defun cperl-indent-for-comment () | |
1621 "Substitute for `indent-for-comment' in CPerl." | |
1622 (interactive) | |
1623 (let (cperl-wrong-comment) | |
1624 (indent-for-comment) | |
1625 (if cperl-wrong-comment | |
1626 (progn (cperl-to-comment-or-eol) | |
1627 (forward-char (length comment-start)))))) | |
1628 | |
1629 (defun cperl-comment-region (b e arg) | |
1630 "Comment or uncomment each line in the region in CPerl mode. | |
1631 See `comment-region'." | |
1632 (interactive "r\np") | |
1633 (let ((comment-start "#")) | |
1634 (comment-region b e arg))) | |
1635 | |
1636 (defun cperl-uncomment-region (b e arg) | |
1637 "Uncomment or comment each line in the region in CPerl mode. | |
1638 See `comment-region'." | |
1639 (interactive "r\np") | |
1640 (let ((comment-start "#")) | |
1641 (comment-region b e (- arg)))) | |
1642 | |
1643 (defvar cperl-brace-recursing nil) | |
1644 | |
1645 (defun cperl-electric-brace (arg &optional only-before) | |
1646 "Insert character and correct line's indentation. | |
1647 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the | |
1648 place (even in empty line), but not after. If after \")\" and the inserted | |
1649 char is \"{\", insert extra newline before only if | |
1650 `cperl-extra-newline-before-brace'." | |
1651 (interactive "P") | |
1652 (let (insertpos | |
1653 (other-end (if (and cperl-electric-parens-mark | |
1654 (cperl-mark-active) | |
1655 (< (mark) (point))) | |
1656 (mark) | |
1657 nil))) | |
1658 (if (and other-end | |
1659 (not cperl-brace-recursing) | |
1660 (cperl-val 'cperl-electric-parens) | |
1661 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))) | |
1662 ;; Need to insert a matching pair | |
1663 (progn | |
1664 (save-excursion | |
1665 (setq insertpos (point-marker)) | |
1666 (goto-char other-end) | |
1667 (setq last-command-char ?\{) | |
1668 (cperl-electric-lbrace arg insertpos)) | |
1669 (forward-char 1)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1670 ;: 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
|
1671 (if (and (eq last-command-char ?\}) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1672 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1673 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1674 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1675 (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
|
1676 ;;(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
|
1677 (cperl-after-expr-p nil "{;)")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1678 (error nil)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1679 ;; Just insert the guy |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1680 (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
|
1681 (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
|
1682 (eolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1683 (or (and (null only-before) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1684 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1685 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1686 (bolp))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1687 (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
|
1688 ;; 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
|
1689 ;; 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
|
1690 (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
|
1691 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1692 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1693 (eq (preceding-char) ?\)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1694 (if cperl-auto-newline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1695 (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
|
1696 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1697 (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
|
1698 (cperl-indent-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1699 (if cperl-auto-newline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1700 (setq insertpos (1- (point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1701 (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
|
1702 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1703 (newline) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1704 (cperl-indent-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1705 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1706 (if insertpos (progn (goto-char insertpos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1707 (search-forward (make-string |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1708 1 last-command-char)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1709 (setq insertpos (1- (point))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1710 (delete-char -1)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1711 (if insertpos |
20323 | 1712 (save-excursion |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1713 (goto-char insertpos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1714 (self-insert-command (prefix-numeric-value arg))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1715 (self-insert-command (prefix-numeric-value arg))))))) |
20323 | 1716 |
1717 (defun cperl-electric-lbrace (arg &optional end) | |
1718 "Insert character, correct line's indentation, correct quoting by space." | |
1719 (interactive "P") | |
1720 (let (pos after | |
1721 (cperl-brace-recursing t) | |
1722 (cperl-auto-newline cperl-auto-newline) | |
1723 (other-end (or end | |
1724 (if (and cperl-electric-parens-mark | |
1725 (cperl-mark-active) | |
1726 (> (mark) (point))) | |
1727 (save-excursion | |
1728 (goto-char (mark)) | |
1729 (point-marker)) | |
1730 nil)))) | |
1731 (and (cperl-val 'cperl-electric-lbrace-space) | |
1732 (eq (preceding-char) ?$) | |
1733 (save-excursion | |
1734 (skip-chars-backward "$") | |
1735 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)")) | |
1736 (insert ?\ )) | |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1737 ;; Check whether we are in comment |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1738 (if (and |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1739 (save-excursion |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1740 (beginning-of-line) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1741 (not (looking-at "[ \t]*#"))) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1742 (cperl-after-expr-p nil "{;)")) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1743 nil |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1744 (setq cperl-auto-newline nil)) |
20323 | 1745 (cperl-electric-brace arg) |
1746 (and (cperl-val 'cperl-electric-parens) | |
1747 (eq last-command-char ?{) | |
1748 (memq last-command-char | |
1749 (append cperl-electric-parens-string nil)) | |
1750 (or (if other-end (goto-char (marker-position other-end))) | |
1751 t) | |
1752 (setq last-command-char ?} pos (point)) | |
1753 (progn (cperl-electric-brace arg t) | |
1754 (goto-char pos))))) | |
1755 | |
1756 (defun cperl-electric-paren (arg) | |
1757 "Insert a matching pair of parentheses." | |
1758 (interactive "P") | |
1759 (let ((beg (save-excursion (beginning-of-line) (point))) | |
1760 (other-end (if (and cperl-electric-parens-mark | |
1761 (cperl-mark-active) | |
1762 (> (mark) (point))) | |
1763 (save-excursion | |
1764 (goto-char (mark)) | |
1765 (point-marker)) | |
1766 nil))) | |
1767 (if (and (cperl-val 'cperl-electric-parens) | |
1768 (memq last-command-char | |
1769 (append cperl-electric-parens-string nil)) | |
1770 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
1771 ;;(not (save-excursion (search-backward "#" beg t))) | |
1772 (if (eq last-command-char ?<) | |
1773 (progn | |
1774 (and abbrev-mode ; later it is too late, may be after `for' | |
1775 (expand-abbrev)) | |
1776 (cperl-after-expr-p nil "{;(,:=")) | |
1777 1)) | |
1778 (progn | |
1779 (self-insert-command (prefix-numeric-value arg)) | |
1780 (if other-end (goto-char (marker-position other-end))) | |
1781 (insert (make-string | |
1782 (prefix-numeric-value arg) | |
1783 (cdr (assoc last-command-char '((?{ .?}) | |
1784 (?[ . ?]) | |
1785 (?( . ?)) | |
1786 (?< . ?>)))))) | |
1787 (forward-char (- (prefix-numeric-value arg)))) | |
1788 (self-insert-command (prefix-numeric-value arg))))) | |
1789 | |
1790 (defun cperl-electric-rparen (arg) | |
1791 "Insert a matching pair of parentheses if marking is active. | |
1792 If not, or if we are not at the end of marking range, would self-insert." | |
1793 (interactive "P") | |
1794 (let ((beg (save-excursion (beginning-of-line) (point))) | |
1795 (other-end (if (and cperl-electric-parens-mark | |
1796 (cperl-val 'cperl-electric-parens) | |
1797 (memq last-command-char | |
1798 (append cperl-electric-parens-string nil)) | |
1799 (cperl-mark-active) | |
1800 (< (mark) (point))) | |
1801 (mark) | |
1802 nil)) | |
1803 p) | |
1804 (if (and other-end | |
1805 (cperl-val 'cperl-electric-parens) | |
1806 (memq last-command-char '( ?\) ?\] ?\} ?\> )) | |
1807 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
1808 ;;(not (save-excursion (search-backward "#" beg t))) | |
1809 ) | |
1810 (progn | |
1811 (self-insert-command (prefix-numeric-value arg)) | |
1812 (setq p (point)) | |
1813 (if other-end (goto-char other-end)) | |
1814 (insert (make-string | |
1815 (prefix-numeric-value arg) | |
1816 (cdr (assoc last-command-char '((?\} . ?\{) | |
1817 (?\] . ?\[) | |
1818 (?\) . ?\() | |
1819 (?\> . ?\<)))))) | |
1820 (goto-char (1+ p))) | |
1821 (self-insert-command (prefix-numeric-value arg))))) | |
1822 | |
1823 (defun cperl-electric-keyword () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1824 "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
|
1825 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
|
1826 to nil." |
20323 | 1827 (let ((beg (save-excursion (beginning-of-line) (point))) |
1828 (dollar (and (eq last-command-char ?$) | |
1829 (eq this-command 'self-insert-command))) | |
1830 (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
|
1831 (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
|
1832 my do) |
20323 | 1833 (and (save-excursion |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1834 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1835 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1836 (backward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1837 (setq do (looking-at "do\\>"))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1838 (error nil)) |
20323 | 1839 (cperl-after-expr-p nil "{;:")) |
1840 (save-excursion | |
1841 (not | |
1842 (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
|
1843 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
20323 | 1844 beg t))) |
1845 (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
|
1846 (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1847 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1848 (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
|
1849 (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
|
1850 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1851 'pod)))))) |
20323 | 1852 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1853 (and (eq (preceding-char) ?y) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1854 (progn ; "foreachmy" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1855 (forward-char -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1856 (insert " ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1857 (forward-char 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1858 (setq my t dollar t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1859 delete |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1860 (memq this-command '(self-insert-command newline))))) |
20323 | 1861 (and dollar (insert " $")) |
1862 (cperl-indent-line) | |
1863 ;;(insert " () {\n}") | |
1864 (cond | |
1865 (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
|
1866 (insert (if do "\n" " ()\n")) |
20323 | 1867 (insert "{") |
1868 (cperl-indent-line) | |
1869 (insert "\n") | |
1870 (cperl-indent-line) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1871 (insert "\n}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1872 (and do (insert " while ();"))) |
20323 | 1873 (t |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1874 (insert (if do " {\n} while ();" " () {\n}"))) |
20323 | 1875 ) |
1876 (or (looking-at "[ \t]\\|$") (insert " ")) | |
1877 (cperl-indent-line) | |
1878 (if dollar (progn (search-backward "$") | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1879 (if my |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1880 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1881 (delete-char 1))) |
20323 | 1882 (search-backward ")")) |
1883 (if delete | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1884 (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
|
1885 (if cperl-message-electric-keyword |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1886 (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
|
1887 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1888 (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
|
1889 "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
|
1890 (or pos (setq pos (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1891 (if (looking-at "\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1892 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1893 (insert "\n")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1894 (if (> n 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1895 (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
|
1896 (goto-char pos))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1897 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1898 (defun cperl-electric-pod () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1899 "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
|
1900 (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
|
1901 (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
|
1902 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
|
1903 (and (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1904 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1905 (backward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1906 (error nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1907 (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1908 (eq (preceding-char) ?=) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1909 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1910 (setq head1 (looking-at "head1\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1911 (setq over (looking-at "over\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1912 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1913 (bolp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1914 (or |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1915 (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
|
1916 (cperl-after-expr-p nil "{;:") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1917 (and (re-search-backward |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1918 "\\(\\`\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
|
1919 (not (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1920 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1921 (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
|
1922 (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
|
1923 'pod))))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1924 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1925 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1926 (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
|
1927 (or notlast |
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 (insert "\n\n=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1930 (cperl-ensure-newlines 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1931 (forward-sexp -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1932 (if (and head1 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1933 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1934 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1935 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1936 (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
|
1937 nil t)))) ; Only one |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1938 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1939 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1940 (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
|
1941 (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
|
1942 p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1943 (insert " NAME\n\n" name |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1944 " - \n\n=head1 SYNOPSYS\n\n\n\n" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1945 "=head1 DESCRIPTION") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1946 (cperl-ensure-newlines 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1947 (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1948 (forward-sexp 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1949 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1950 (setq really-delete t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1951 (forward-sexp 1)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1952 (if over |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1953 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1954 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1955 (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
|
1956 "=back") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1957 (cperl-ensure-newlines 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1958 (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1959 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1960 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1961 (setq really-delete t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1962 (if (and delete really-delete) |
20323 | 1963 (cperl-putback-char cperl-del-back-ch)))))) |
1964 | |
1965 (defun cperl-electric-else () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1966 "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
|
1967 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
|
1968 to nil." |
20323 | 1969 (let ((beg (save-excursion (beginning-of-line) (point)))) |
1970 (and (save-excursion | |
1971 (backward-sexp 1) | |
1972 (cperl-after-expr-p nil "{;:")) | |
1973 (save-excursion | |
1974 (not | |
1975 (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
|
1976 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
20323 | 1977 beg t))) |
1978 (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
|
1979 (looking-at "=cut") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1980 (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
|
1981 (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
|
1982 'syntax-type) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1983 'pod))))) |
20323 | 1984 (progn |
1985 (cperl-indent-line) | |
1986 ;;(insert " {\n\n}") | |
1987 (cond | |
1988 (cperl-extra-newline-before-brace | |
1989 (insert "\n") | |
1990 (insert "{") | |
1991 (cperl-indent-line) | |
1992 (insert "\n\n}")) | |
1993 (t | |
1994 (insert " {\n\n}")) | |
1995 ) | |
1996 (or (looking-at "[ \t]\\|$") (insert " ")) | |
1997 (cperl-indent-line) | |
1998 (forward-line -1) | |
1999 (cperl-indent-line) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2000 (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
|
2001 (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
|
2002 (if cperl-message-electric-keyword |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2003 (message "Precede char by C-q to avoid expansion")))))) |
20323 | 2004 |
2005 (defun cperl-linefeed () | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2006 "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
|
2007 If in POD, insert appropriate lines." |
20323 | 2008 (interactive) |
2009 (let ((beg (save-excursion (beginning-of-line) (point))) | |
2010 (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
|
2011 (pos (point)) start over cut res) |
20323 | 2012 (if (and ; Check if we need to split: |
2013 ; i.e., on a boundary and inside "{...}" | |
2014 (save-excursion (cperl-to-comment-or-eol) | |
2015 (>= (point) pos)) ; Not in a comment | |
2016 (or (save-excursion | |
2017 (skip-chars-backward " \t" beg) | |
2018 (forward-char -1) | |
2019 (looking-at "[;{]")) ; After { or ; + spaces | |
2020 (looking-at "[ \t]*}") ; Before } | |
2021 (re-search-forward "\\=[ \t]*;" end t)) ; Before spaces + ; | |
2022 (save-excursion | |
2023 (and | |
2024 (eq (car (parse-partial-sexp pos end -1)) -1) | |
2025 ; Leave the level of parens | |
2026 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr | |
2027 ; Are at end | |
2028 (progn | |
2029 (backward-sexp 1) | |
2030 (setq start (point-marker)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2031 (<= start pos))))) ; Redundant? Are after the |
20323 | 2032 ; start of parens group. |
2033 (progn | |
2034 (skip-chars-backward " \t") | |
2035 (or (memq (preceding-char) (append ";{" nil)) | |
2036 (insert ";")) | |
2037 (insert "\n") | |
2038 (forward-line -1) | |
2039 (cperl-indent-line) | |
2040 (goto-char start) | |
2041 (or (looking-at "{[ \t]*$") ; If there is a statement | |
2042 ; before, move it to separate line | |
2043 (progn | |
2044 (forward-char 1) | |
2045 (insert "\n") | |
2046 (cperl-indent-line))) | |
2047 (forward-line 1) ; We are on the target line | |
2048 (cperl-indent-line) | |
2049 (beginning-of-line) | |
2050 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement | |
2051 ; after, move it to separate line | |
2052 (progn | |
2053 (end-of-line) | |
2054 (search-backward "}" beg) | |
2055 (skip-chars-backward " \t") | |
2056 (or (memq (preceding-char) (append ";{" nil)) | |
2057 (insert ";")) | |
2058 (insert "\n") | |
2059 (cperl-indent-line) | |
2060 (forward-line -1))) | |
2061 (forward-line -1) ; We are on the line before target | |
2062 (end-of-line) | |
2063 (newline-and-indent)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2064 (end-of-line) ; else - no splitting |
20323 | 2065 (cond |
2066 ((and (looking-at "\n[ \t]*{$") | |
2067 (save-excursion | |
2068 (skip-chars-backward " \t") | |
2069 (eq (preceding-char) ?\)))) ; Probably if () {} group | |
2070 ; with an extra newline. | |
2071 (forward-line 2) | |
2072 (cperl-indent-line)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2073 ((save-excursion ; In POD header |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2074 (forward-paragraph -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2075 ;; (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
|
2076 ;; 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
|
2077 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2078 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2079 (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
|
2080 (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
|
2081 t))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2082 (if (and over |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2083 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2084 (forward-paragraph -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2085 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2086 (setq pos (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2087 (setq cut (buffer-substring (point) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2088 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2089 (end-of-line) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2090 (point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2091 (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
|
2092 (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2093 (setq res (expand-abbrev)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2094 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2095 (goto-char pos) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2096 (insert cut)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2097 res)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2098 nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2099 (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
|
2100 (forward-line 2))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2101 ((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
|
2102 (cperl-ensure-newlines 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2103 (forward-line 2)) |
20323 | 2104 ((looking-at "\n[ \t]*$") ; Next line is empty - use it. |
2105 (forward-line 1) | |
2106 (cperl-indent-line)) | |
2107 (t | |
2108 (newline-and-indent)))))) | |
2109 | |
2110 (defun cperl-electric-semi (arg) | |
2111 "Insert character and correct line's indentation." | |
2112 (interactive "P") | |
2113 (if cperl-auto-newline | |
2114 (cperl-electric-terminator arg) | |
2115 (self-insert-command (prefix-numeric-value arg)))) | |
2116 | |
2117 (defun cperl-electric-terminator (arg) | |
2118 "Insert character and correct line's indentation." | |
2119 (interactive "P") | |
2120 (let (insertpos (end (point)) | |
2121 (auto (and cperl-auto-newline | |
2122 (or (not (eq last-command-char ?:)) | |
2123 cperl-auto-newline-after-colon)))) | |
2124 (if (and ;;(not arg) | |
2125 (eolp) | |
2126 (not (save-excursion | |
2127 (beginning-of-line) | |
2128 (skip-chars-forward " \t") | |
2129 (or | |
2130 ;; Ignore in comment lines | |
2131 (= (following-char) ?#) | |
2132 ;; Colon is special only after a label | |
2133 ;; So quickly rule out most other uses of colon | |
2134 ;; and do no indentation for them. | |
2135 (and (eq last-command-char ?:) | |
2136 (save-excursion | |
2137 (forward-word 1) | |
2138 (skip-chars-forward " \t") | |
2139 (and (< (point) end) | |
2140 (progn (goto-char (- end 1)) | |
2141 (not (looking-at ":")))))) | |
2142 (progn | |
2143 (beginning-of-defun) | |
2144 (let ((pps (parse-partial-sexp (point) end))) | |
2145 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))))) | |
2146 (progn | |
2147 (self-insert-command (prefix-numeric-value arg)) | |
2148 ;;(forward-char -1) | |
2149 (if auto (setq insertpos (point-marker))) | |
2150 ;;(forward-char 1) | |
2151 (cperl-indent-line) | |
2152 (if auto | |
2153 (progn | |
2154 (newline) | |
2155 (cperl-indent-line))) | |
2156 (save-excursion | |
2157 (if insertpos (goto-char (1- (marker-position insertpos))) | |
2158 (forward-char -1)) | |
2159 (delete-char 1)))) | |
2160 (if insertpos | |
2161 (save-excursion | |
2162 (goto-char insertpos) | |
2163 (self-insert-command (prefix-numeric-value arg))) | |
2164 (self-insert-command (prefix-numeric-value arg))))) | |
2165 | |
2166 (defun cperl-electric-backspace (arg) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2167 "Backspace-untabify, or remove the whitespace around the point inserted |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2168 by an electric key." |
20323 | 2169 (interactive "p") |
2170 (if (and cperl-auto-newline | |
2171 (memq last-command '(cperl-electric-semi | |
2172 cperl-electric-terminator | |
2173 cperl-electric-lbrace)) | |
2174 (memq (preceding-char) '(?\ ?\t ?\n))) | |
2175 (let (p) | |
2176 (if (eq last-command 'cperl-electric-lbrace) | |
2177 (skip-chars-forward " \t\n")) | |
2178 (setq p (point)) | |
2179 (skip-chars-backward " \t\n") | |
2180 (delete-region (point) p)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2181 (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
|
2182 ;; 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
|
2183 (setq this-command 'cperl-electric-else-really)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2184 (if (and cperl-auto-newline |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2185 (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
|
2186 (memq (preceding-char) '(?\ ?\t ?\n))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2187 (let (p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2188 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2189 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2190 (skip-chars-backward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2191 (delete-region (point) p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2192 (backward-delete-char-untabify arg)))) |
20323 | 2193 |
2194 (defun cperl-inside-parens-p () | |
2195 (condition-case () | |
2196 (save-excursion | |
2197 (save-restriction | |
2198 (narrow-to-region (point) | |
2199 (progn (beginning-of-defun) (point))) | |
2200 (goto-char (point-max)) | |
2201 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
2202 (error nil))) | |
2203 | |
2204 (defun cperl-indent-command (&optional whole-exp) | |
2205 "Indent current line as Perl code, or in some cases insert a tab character. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2206 If `cperl-tab-always-indent' is non-nil (the default), always indent current |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2207 line. Otherwise, indent the current line only if point is at the left margin |
20323 | 2208 or in the line's indentation; otherwise insert a tab. |
2209 | |
2210 A numeric argument, regardless of its value, | |
2211 means indent rigidly all the lines of the expression starting after point | |
2212 so that this line becomes properly indented. | |
2213 The relative indentation among the lines of the expression are preserved." | |
2214 (interactive "P") | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2215 (cperl-update-syntaxification (point) (point)) |
20323 | 2216 (if whole-exp |
2217 ;; If arg, always indent this line as Perl | |
2218 ;; and shift remaining lines of expression the same amount. | |
2219 (let ((shift-amt (cperl-indent-line)) | |
2220 beg end) | |
2221 (save-excursion | |
2222 (if cperl-tab-always-indent | |
2223 (beginning-of-line)) | |
2224 (setq beg (point)) | |
2225 (forward-sexp 1) | |
2226 (setq end (point)) | |
2227 (goto-char beg) | |
2228 (forward-line 1) | |
2229 (setq beg (point))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2230 (if (and shift-amt (> end beg)) |
20323 | 2231 (indent-code-rigidly beg end shift-amt "#"))) |
2232 (if (and (not cperl-tab-always-indent) | |
2233 (save-excursion | |
2234 (skip-chars-backward " \t") | |
2235 (not (bolp)))) | |
2236 (insert-tab) | |
2237 (cperl-indent-line)))) | |
2238 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2239 (defun cperl-indent-line (&optional parse-data) |
20323 | 2240 "Indent current line as Perl code. |
2241 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
|
2242 (let (indent i beg shift-amt |
20323 | 2243 (case-fold-search nil) |
2244 (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
|
2245 (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
|
2246 i indent) |
20323 | 2247 (beginning-of-line) |
2248 (setq beg (point)) | |
2249 (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
|
2250 (setq indent (current-indentation) i nil)) |
20323 | 2251 ;;((eq indent t) ; Never? |
2252 ;; (setq indent (cperl-calculate-indent-within-comment))) | |
2253 ;;((looking-at "[ \t]*#") | |
2254 ;; (setq indent 0)) | |
2255 (t | |
2256 (skip-chars-forward " \t") | |
2257 (if (listp indent) (setq indent (car indent))) | |
2258 (cond ((looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]") | |
2259 (and (> indent 0) | |
2260 (setq indent (max cperl-min-label-indent | |
2261 (+ indent cperl-label-offset))))) | |
2262 ((= (following-char) ?}) | |
2263 (setq indent (- indent cperl-indent-level))) | |
2264 ((memq (following-char) '(?\) ?\])) ; To line up with opening paren. | |
2265 (setq indent (+ indent cperl-close-paren-offset))) | |
2266 ((= (following-char) ?{) | |
2267 (setq indent (+ indent cperl-brace-offset)))))) | |
2268 (skip-chars-forward " \t") | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2269 (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
|
2270 (if (or (not shift-amt) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2271 (zerop shift-amt)) |
20323 | 2272 (if (> (- (point-max) pos) (point)) |
2273 (goto-char (- (point-max) pos))) | |
2274 (delete-region beg (point)) | |
2275 (indent-to indent) | |
2276 ;; If initial point was within line's indentation, | |
2277 ;; position after the indentation. Else stay at same point in text. | |
2278 (if (> (- (point-max) pos) (point)) | |
2279 (goto-char (- (point-max) pos)))) | |
2280 shift-amt)) | |
2281 | |
2282 (defun cperl-after-label () | |
2283 ;; Returns true if the point is after label. Does not do save-excursion. | |
2284 (and (eq (preceding-char) ?:) | |
2285 (memq (char-syntax (char-after (- (point) 2))) | |
2286 '(?w ?_)) | |
2287 (progn | |
2288 (backward-sexp) | |
2289 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]")))) | |
2290 | |
2291 (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
|
2292 ;; 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
|
2293 ;; START is a good place to start parsing, or equal to |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2294 ;; PARSE-START if preset, |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2295 ;; 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
|
2296 ;; 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
|
2297 ;; which contains START. |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2298 ;; PRESTART is the position basing on which START was found. |
20323 | 2299 (save-excursion |
2300 (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
|
2301 (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
|
2302 (<= parse-start start-point)) |
20323 | 2303 (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
|
2304 (beginning-of-defun) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2305 (setq start-state nil)) |
20323 | 2306 (setq prestart (point)) |
2307 (if start-state nil | |
2308 ;; Try to go out, if sub is not on the outermost level | |
2309 (while (< (point) start-point) | |
2310 (setq start (point) parse-start start depth nil | |
2311 state (parse-partial-sexp start start-point -1)) | |
2312 (if (> (car state) -1) nil | |
2313 ;; The current line could start like }}}, so the indentation | |
2314 ;; corresponds to a different level than what we reached | |
2315 (setq depth t) | |
2316 (beginning-of-line 2))) ; Go to the next line. | |
2317 (if start (goto-char start))) ; Not at the start of file | |
2318 (setq start (point)) | |
2319 (or state (setq state (parse-partial-sexp start start-point -1 nil start-state))) | |
2320 (list start state depth prestart)))) | |
2321 | |
2322 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" ! | |
2323 ;; Positions is before ?\{. Checks whether it starts a block. | |
2324 ;; No save-excursion! | |
2325 (cperl-backward-to-noncomment (point-min)) | |
2326 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp | |
2327 ; Label may be mixed up with `$blah :' | |
2328 (save-excursion (cperl-after-label)) | |
2329 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
2330 (progn | |
2331 (backward-sexp) | |
2332 ;; Need take into account `bless', `return', `tr',... | |
2333 (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
|
2334 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>"))) |
20323 | 2335 (progn |
2336 (skip-chars-backward " \t\n\f") | |
2337 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
2338 (progn | |
2339 (backward-sexp) | |
2340 (looking-at | |
2341 "sub[ \t]+[a-zA-Z0-9_:]+[ \t\n\f]*\\(([^()]*)[ \t\n\f]*\\)?[#{]"))))))))) | |
2342 | |
2343 (defvar cperl-look-for-prop '((pod in-pod) (here-doc-delim here-doc-group))) | |
2344 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2345 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start |
20323 | 2346 "Return appropriate indentation for current line as Perl code. |
2347 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
|
2348 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
|
2349 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2350 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
|
2351 and closing parentheses and brackets.." |
20323 | 2352 (save-excursion |
2353 (if (or | |
2354 (memq (get-text-property (point) 'syntax-type) | |
2355 '(pod here-doc here-doc-delim format)) | |
2356 ;; before start of POD - whitespace found since do not have 'pod! | |
2357 (and (looking-at "[ \t]*\n=") | |
2358 (error "Spaces before pod section!")) | |
2359 (and (not cperl-indent-left-aligned-comments) | |
2360 (looking-at "^#"))) | |
2361 nil | |
2362 (beginning-of-line) | |
2363 (let ((indent-point (point)) | |
2364 (char-after (save-excursion | |
2365 (skip-chars-forward " \t") | |
2366 (following-char))) | |
2367 (in-pod (get-text-property (point) 'in-pod)) | |
2368 (pre-indent-point (point)) | |
2369 p prop look-prop) | |
2370 (cond | |
2371 (in-pod | |
2372 ;; In the verbatim part, probably code example. What to do??? | |
2373 ) | |
2374 (t | |
2375 (save-excursion | |
2376 ;; Not in pod | |
2377 (cperl-backward-to-noncomment nil) | |
2378 (setq p (max (point-min) (1- (point))) | |
2379 prop (get-text-property p 'syntax-type) | |
2380 look-prop (or (nth 1 (assoc prop cperl-look-for-prop)) | |
2381 'syntax-type)) | |
2382 (if (memq prop '(pod here-doc format here-doc-delim)) | |
2383 (progn | |
2384 (goto-char (or (previous-single-property-change p look-prop) | |
2385 (point-min))) | |
2386 (beginning-of-line) | |
2387 (setq pre-indent-point (point))))))) | |
2388 (goto-char pre-indent-point) | |
2389 (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
|
2390 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2391 (start (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
|
2392 (nth 0 s-s))) |
20323 | 2393 (state (nth 1 s-s)) |
2394 (containing-sexp (car (cdr state))) | |
2395 old-indent) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2396 (if (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2397 ;;containing-sexp ;; We are buggy at toplevel :-( |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2398 parse-data) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2399 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2400 (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
|
2401 (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
|
2402 (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
|
2403 (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
|
2404 ;; 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
|
2405 (setq old-indent (nth 3 parse-data)))) |
20323 | 2406 ;; (or parse-start (null symbol) |
2407 ;; (setq parse-start (symbol-value symbol) | |
2408 ;; start-indent (nth 2 parse-start) | |
2409 ;; parse-start (car parse-start))) | |
2410 ;; (if parse-start | |
2411 ;; (goto-char parse-start) | |
2412 ;; (beginning-of-defun)) | |
2413 ;; ;; Try to go out | |
2414 ;; (while (< (point) indent-point) | |
2415 ;; (setq start (point) parse-start start moved nil | |
2416 ;; state (parse-partial-sexp start indent-point -1)) | |
2417 ;; (if (> (car state) -1) nil | |
2418 ;; ;; The current line could start like }}}, so the indentation | |
2419 ;; ;; corresponds to a different level than what we reached | |
2420 ;; (setq moved t) | |
2421 ;; (beginning-of-line 2))) ; Go to the next line. | |
2422 ;; (if start ; Not at the start of file | |
2423 ;; (progn | |
2424 ;; (goto-char start) | |
2425 ;; (setq start-indent (current-indentation)) | |
2426 ;; (if moved ; Should correct... | |
2427 ;; (setq start-indent (- start-indent cperl-indent-level)))) | |
2428 ;; (setq start-indent 0)) | |
2429 ;; (if (< (point) indent-point) (setq parse-start (point))) | |
2430 ;; (or state (setq state (parse-partial-sexp | |
2431 ;; (point) indent-point -1 nil start-state))) | |
2432 ;; (setq containing-sexp | |
2433 ;; (or (car (cdr state)) | |
2434 ;; (and (>= (nth 6 state) 0) old-containing-sexp)) | |
2435 ;; old-containing-sexp nil start-state nil) | |
2436 ;;;; (while (< (point) indent-point) | |
2437 ;;;; (setq parse-start (point)) | |
2438 ;;;; (setq state (parse-partial-sexp (point) indent-point -1 nil start-state)) | |
2439 ;;;; (setq containing-sexp | |
2440 ;;;; (or (car (cdr state)) | |
2441 ;;;; (and (>= (nth 6 state) 0) old-containing-sexp)) | |
2442 ;;;; old-containing-sexp nil start-state nil)) | |
2443 ;; (if symbol (set symbol (list indent-point state start-indent))) | |
2444 ;; (goto-char indent-point) | |
2445 (cond ((or (nth 3 state) (nth 4 state)) | |
2446 ;; return nil or t if should not change this line | |
2447 (nth 4 state)) | |
2448 ((null containing-sexp) | |
2449 ;; Line is at top level. May be data or function definition, | |
2450 ;; or may be function argument declaration. | |
2451 ;; Indent like the previous top level line | |
2452 ;; unless that ends in a closeparen without semicolon, | |
2453 ;; in which case this line is the first argument decl. | |
2454 (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
|
2455 (+ (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2456 (goto-char start) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2457 (- (current-indentation) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2458 (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
|
2459 (if (= char-after ?{) cperl-continued-brace-offset 0) |
20323 | 2460 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2461 (cperl-backward-to-noncomment (or old-indent (point-min))) |
20323 | 2462 ;; Look at previous line that's at column 0 |
2463 ;; to determine whether we are in top-level decls | |
2464 ;; or function's arg decls. Set basic-indent accordingly. | |
2465 ;; Now add a little if this is a continuation line. | |
2466 (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
|
2467 (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
|
2468 (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2469 ;; Had ?\) too |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2470 (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
|
2471 (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
|
2472 (point-min))) ; Was start - too close |
20323 | 2473 (memq char-after (append ")]}" nil)) |
2474 (and (eq (preceding-char) ?\:) ; label | |
2475 (progn | |
2476 (forward-sexp -1) | |
2477 (skip-chars-backward " \t") | |
2478 (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
|
2479 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2480 (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
|
2481 (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
|
2482 (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
|
2483 (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
|
2484 0) |
20323 | 2485 cperl-continued-statement-offset)))) |
2486 ((/= (char-after containing-sexp) ?{) | |
2487 ;; line is expression, not statement: | |
2488 ;; indent to just after the surrounding open, | |
2489 ;; skip blanks if we do not close the expression. | |
2490 (goto-char (1+ containing-sexp)) | |
2491 (or (memq char-after (append ")]}" nil)) | |
2492 (looking-at "[ \t]*\\(#\\|$\\)") | |
2493 (skip-chars-forward " \t")) | |
2494 (current-column)) | |
2495 ((progn | |
2496 ;; Containing-expr starts with \{. Check whether it is a hash. | |
2497 (goto-char containing-sexp) | |
2498 (not (cperl-block-p))) | |
2499 (goto-char (1+ containing-sexp)) | |
2500 (or (eq char-after ?\}) | |
2501 (looking-at "[ \t]*\\(#\\|$\\)") | |
2502 (skip-chars-forward " \t")) | |
2503 (+ (current-column) ; Correct indentation of trailing ?\} | |
2504 (if (eq char-after ?\}) (+ cperl-indent-level | |
2505 cperl-close-paren-offset) | |
2506 0))) | |
2507 (t | |
2508 ;; Statement level. Is it a continuation or a new statement? | |
2509 ;; Find previous non-comment character. | |
2510 (goto-char pre-indent-point) | |
2511 (cperl-backward-to-noncomment containing-sexp) | |
2512 ;; Back up over label lines, since they don't | |
2513 ;; 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
|
2514 ;; (Had \, too) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2515 (while ;;(or (eq (preceding-char) ?\,) |
20323 | 2516 (and (eq (preceding-char) ?:) |
2517 (or;;(eq (char-after (- (point) 2)) ?\') ; ???? | |
2518 (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
|
2519 '(?w ?_)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2520 ;;) |
20323 | 2521 (if (eq (preceding-char) ?\,) |
2522 ;; Will go to beginning of line, essentially. | |
2523 ;; Will ignore embedded sexpr XXXX. | |
2524 (cperl-backward-to-start-of-continued-exp containing-sexp)) | |
2525 (beginning-of-line) | |
2526 (cperl-backward-to-noncomment containing-sexp)) | |
2527 ;; 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
|
2528 ;; Had \?, too: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2529 (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
|
2530 (and (eq (preceding-char) ?\}) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2531 (cperl-after-block-and-statement-beg |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2532 containing-sexp)))) ; Was ?\, |
20323 | 2533 ;; This line is continuation of preceding line's statement; |
2534 ;; indent `cperl-continued-statement-offset' more than the | |
2535 ;; 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
|
2536 ;; |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2537 ;; 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
|
2538 ;; consider it bad style and ignore it. |
20323 | 2539 (progn |
2540 (cperl-backward-to-start-of-continued-exp containing-sexp) | |
2541 (+ (if (memq char-after (append "}])" nil)) | |
2542 0 ; Closing parenth | |
2543 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
|
2544 (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
|
2545 (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
|
2546 (- (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
|
2547 ;; 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
|
2548 ;; be quick anyway (this comment comes |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2549 ;;from different location): |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2550 (cperl-calculate-indent)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2551 (current-column)) |
20323 | 2552 (if (eq char-after ?\{) |
2553 cperl-continued-brace-offset 0))) | |
2554 ;; This line starts a new statement. | |
2555 ;; Position following last unclosed open. | |
2556 (goto-char containing-sexp) | |
2557 ;; Is line first statement after an open-brace? | |
2558 (or | |
2559 ;; If no, find that first statement and indent like | |
2560 ;; it. If the first statement begins with label, do | |
2561 ;; not believe when the indentation of the label is too | |
2562 ;; small. | |
2563 (save-excursion | |
2564 (forward-char 1) | |
2565 (setq old-indent (current-indentation)) | |
2566 (let ((colon-line-end 0)) | |
2567 (while (progn (skip-chars-forward " \t\n") | |
2568 (looking-at "#\\|[a-zA-Z0-9_$]*:[^:]")) | |
2569 ;; Skip over comments and labels following openbrace. | |
2570 (cond ((= (following-char) ?\#) | |
2571 (forward-line 1)) | |
2572 ;; label: | |
2573 (t | |
2574 (save-excursion (end-of-line) | |
2575 (setq colon-line-end (point))) | |
2576 (search-forward ":")))) | |
2577 ;; The first following code counts | |
2578 ;; if it is before the line we want to indent. | |
2579 (and (< (point) indent-point) | |
2580 (if (> colon-line-end (point)) ; After label | |
2581 (if (> (current-indentation) | |
2582 cperl-min-label-indent) | |
2583 (- (current-indentation) cperl-label-offset) | |
2584 ;; Do not believe: `max' is involved | |
2585 (+ old-indent cperl-indent-level)) | |
2586 (current-column))))) | |
2587 ;; If no previous statement, | |
2588 ;; indent it relative to line brace is on. | |
2589 ;; For open brace in column zero, don't let statement | |
2590 ;; start there too. If cperl-indent-level is zero, | |
2591 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. | |
2592 ;; For open-braces not the first thing in a line, | |
2593 ;; add in cperl-brace-imaginary-offset. | |
2594 | |
2595 ;; If first thing on a line: ????? | |
2596 (+ (if (and (bolp) (zerop cperl-indent-level)) | |
2597 (+ cperl-brace-offset cperl-continued-statement-offset) | |
2598 cperl-indent-level) | |
2599 ;; Move back over whitespace before the openbrace. | |
2600 ;; If openbrace is not first nonwhite thing on the line, | |
2601 ;; add the cperl-brace-imaginary-offset. | |
2602 (progn (skip-chars-backward " \t") | |
2603 (if (bolp) 0 cperl-brace-imaginary-offset)) | |
2604 ;; If the openbrace is preceded by a parenthesized exp, | |
2605 ;; move to the beginning of that; | |
2606 ;; possibly a different line | |
2607 (progn | |
2608 (if (eq (preceding-char) ?\)) | |
2609 (forward-sexp -1)) | |
2610 ;; In the case it starts a subroutine, indent with | |
2611 ;; respect to `sub', not with respect to the the | |
2612 ;; first thing on the line, say in the case of | |
2613 ;; anonymous sub in a hash. | |
2614 ;; | |
2615 (skip-chars-backward " \t") | |
2616 (if (and (eq (preceding-char) ?b) | |
2617 (progn | |
2618 (forward-sexp -1) | |
2619 (looking-at "sub\\>")) | |
2620 (setq old-indent | |
2621 (nth 1 | |
2622 (parse-partial-sexp | |
2623 (save-excursion (beginning-of-line) (point)) | |
2624 (point))))) | |
2625 (progn (goto-char (1+ old-indent)) | |
2626 (skip-chars-forward " \t") | |
2627 (current-column)) | |
2628 ;; Get initial indentation of the line we are on. | |
2629 ;; If line starts with label, calculate label indentation | |
2630 (if (save-excursion | |
2631 (beginning-of-line) | |
2632 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) | |
2633 (if (> (current-indentation) cperl-min-label-indent) | |
2634 (- (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
|
2635 ;; 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
|
2636 ;; be quick anyway: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2637 (cperl-calculate-indent)) |
20323 | 2638 (current-indentation)))))))))))))) |
2639 | |
2640 (defvar cperl-indent-alist | |
2641 '((string nil) | |
2642 (comment nil) | |
2643 (toplevel 0) | |
2644 (toplevel-after-parenth 2) | |
2645 (toplevel-continued 2) | |
2646 (expression 1)) | |
2647 "Alist of indentation rules for CPerl mode. | |
2648 The values mean: | |
2649 nil: do not indent; | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2650 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
|
2651 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2652 Not finished, not used.") |
20323 | 2653 |
2654 (defun cperl-where-am-i (&optional parse-start start-state) | |
2655 ;; Unfinished | |
2656 "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
|
2657 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
|
2658 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2659 Not finished, not used." |
20323 | 2660 (save-excursion |
2661 (let* ((start-point (point)) | |
2662 (s-s (cperl-get-state)) | |
2663 (start (nth 0 s-s)) | |
2664 (state (nth 1 s-s)) | |
2665 (prestart (nth 3 s-s)) | |
2666 (containing-sexp (car (cdr state))) | |
2667 (case-fold-search nil) | |
2668 (res (list (list 'parse-start start) (list 'parse-prestart prestart)))) | |
2669 (cond ((nth 3 state) ; In string | |
2670 (setq res (cons (list 'string nil (nth 3 state)) res))) ; What started string | |
2671 ((nth 4 state) ; In comment | |
2672 (setq res (cons '(comment) res))) | |
2673 ((null containing-sexp) | |
2674 ;; Line is at top level. | |
2675 ;; Indent like the previous top level line | |
2676 ;; unless that ends in a closeparen without semicolon, | |
2677 ;; in which case this line is the first argument decl. | |
2678 (cperl-backward-to-noncomment (or parse-start (point-min))) | |
2679 ;;(skip-chars-backward " \t\f\n") | |
2680 (cond | |
2681 ((or (bobp) | |
2682 (memq (preceding-char) (append ";}" nil))) | |
2683 (setq res (cons (list 'toplevel start) res))) | |
2684 ((eq (preceding-char) ?\) ) | |
2685 (setq res (cons (list 'toplevel-after-parenth start) res))) | |
2686 (t | |
2687 (setq res (cons (list 'toplevel-continued start) res))))) | |
2688 ((/= (char-after containing-sexp) ?{) | |
2689 ;; line is expression, not statement: | |
2690 ;; indent to just after the surrounding open. | |
2691 ;; skip blanks if we do not close the expression. | |
2692 (setq res (cons (list 'expression-blanks | |
2693 (progn | |
2694 (goto-char (1+ containing-sexp)) | |
2695 (or (looking-at "[ \t]*\\(#\\|$\\)") | |
2696 (skip-chars-forward " \t")) | |
2697 (point))) | |
2698 (cons (list 'expression containing-sexp) res)))) | |
2699 ((progn | |
2700 ;; Containing-expr starts with \{. Check whether it is a hash. | |
2701 (goto-char containing-sexp) | |
2702 (not (cperl-block-p))) | |
2703 (setq res (cons (list 'expression-blanks | |
2704 (progn | |
2705 (goto-char (1+ containing-sexp)) | |
2706 (or (looking-at "[ \t]*\\(#\\|$\\)") | |
2707 (skip-chars-forward " \t")) | |
2708 (point))) | |
2709 (cons (list 'expression containing-sexp) res)))) | |
2710 (t | |
2711 ;; Statement level. | |
2712 (setq res (cons (list 'in-block containing-sexp) res)) | |
2713 ;; Is it a continuation or a new statement? | |
2714 ;; Find previous non-comment character. | |
2715 (cperl-backward-to-noncomment containing-sexp) | |
2716 ;; Back up over label lines, since they don't | |
2717 ;; affect whether our line is a continuation. | |
2718 ;; Back up comma-delimited lines too ????? | |
2719 (while (or (eq (preceding-char) ?\,) | |
2720 (save-excursion (cperl-after-label))) | |
2721 (if (eq (preceding-char) ?\,) | |
2722 ;; Will go to beginning of line, essentially | |
2723 ;; Will ignore embedded sexpr XXXX. | |
2724 (cperl-backward-to-start-of-continued-exp containing-sexp)) | |
2725 (beginning-of-line) | |
2726 (cperl-backward-to-noncomment containing-sexp)) | |
2727 ;; Now we get the answer. | |
2728 (if (not (memq (preceding-char) (append ";}{" '(nil)))) ; Was ?\, | |
2729 ;; This line is continuation of preceding line's statement. | |
2730 (list (list 'statement-continued containing-sexp)) | |
2731 ;; This line starts a new statement. | |
2732 ;; Position following last unclosed open. | |
2733 (goto-char containing-sexp) | |
2734 ;; Is line first statement after an open-brace? | |
2735 (or | |
2736 ;; If no, find that first statement and indent like | |
2737 ;; it. If the first statement begins with label, do | |
2738 ;; not believe when the indentation of the label is too | |
2739 ;; small. | |
2740 (save-excursion | |
2741 (forward-char 1) | |
2742 (let ((colon-line-end 0)) | |
2743 (while (progn (skip-chars-forward " \t\n" start-point) | |
2744 (and (< (point) start-point) | |
2745 (looking-at | |
2746 "#\\|[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))) | |
2747 ;; Skip over comments and labels following openbrace. | |
2748 (cond ((= (following-char) ?\#) | |
2749 ;;(forward-line 1) | |
2750 (end-of-line)) | |
2751 ;; label: | |
2752 (t | |
2753 (save-excursion (end-of-line) | |
2754 (setq colon-line-end (point))) | |
2755 (search-forward ":")))) | |
2756 ;; Now at the point, after label, or at start | |
2757 ;; of first statement in the block. | |
2758 (and (< (point) start-point) | |
2759 (if (> colon-line-end (point)) | |
2760 ;; Before statement after label | |
2761 (if (> (current-indentation) | |
2762 cperl-min-label-indent) | |
2763 (list (list 'label-in-block (point))) | |
2764 ;; Do not believe: `max' is involved | |
2765 (list | |
2766 (list 'label-in-block-min-indent (point)))) | |
2767 ;; Before statement | |
2768 (list 'statement-in-block (point)))))) | |
2769 ;; If no previous statement, | |
2770 ;; indent it relative to line brace is on. | |
2771 ;; For open brace in column zero, don't let statement | |
2772 ;; start there too. If cperl-indent-level is zero, | |
2773 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. | |
2774 ;; For open-braces not the first thing in a line, | |
2775 ;; add in cperl-brace-imaginary-offset. | |
2776 | |
2777 ;; If first thing on a line: ????? | |
2778 (+ (if (and (bolp) (zerop cperl-indent-level)) | |
2779 (+ cperl-brace-offset cperl-continued-statement-offset) | |
2780 cperl-indent-level) | |
2781 ;; Move back over whitespace before the openbrace. | |
2782 ;; If openbrace is not first nonwhite thing on the line, | |
2783 ;; add the cperl-brace-imaginary-offset. | |
2784 (progn (skip-chars-backward " \t") | |
2785 (if (bolp) 0 cperl-brace-imaginary-offset)) | |
2786 ;; If the openbrace is preceded by a parenthesized exp, | |
2787 ;; move to the beginning of that; | |
2788 ;; possibly a different line | |
2789 (progn | |
2790 (if (eq (preceding-char) ?\)) | |
2791 (forward-sexp -1)) | |
2792 ;; Get initial indentation of the line we are on. | |
2793 ;; If line starts with label, calculate label indentation | |
2794 (if (save-excursion | |
2795 (beginning-of-line) | |
2796 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) | |
2797 (if (> (current-indentation) cperl-min-label-indent) | |
2798 (- (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
|
2799 (cperl-calculate-indent)) |
20323 | 2800 (current-indentation)))))))) |
2801 res))) | |
2802 | |
2803 (defun cperl-calculate-indent-within-comment () | |
2804 "Return the indentation amount for line, assuming that | |
2805 the current line is to be regarded as part of a block comment." | |
2806 (let (end star-start) | |
2807 (save-excursion | |
2808 (beginning-of-line) | |
2809 (skip-chars-forward " \t") | |
2810 (setq end (point)) | |
2811 (and (= (following-char) ?#) | |
2812 (forward-line -1) | |
2813 (cperl-to-comment-or-eol) | |
2814 (setq end (point))) | |
2815 (goto-char end) | |
2816 (current-column)))) | |
2817 | |
2818 | |
2819 (defun cperl-to-comment-or-eol () | |
2820 "Goes to position before comment on the current line, or to end of line. | |
2821 Returns true if comment is found." | |
2822 (let (state stop-in cpoint (lim (progn (end-of-line) (point)))) | |
2823 (beginning-of-line) | |
2824 (if (or | |
2825 (eq (get-text-property (point) 'syntax-type) 'pod) | |
2826 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)) | |
2827 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t)) | |
2828 ;; Else | |
2829 (while (not stop-in) | |
2830 (setq state (parse-partial-sexp (point) lim nil nil nil t)) | |
2831 ; stop at comment | |
2832 ;; If fails (beginning-of-line inside sexp), then contains not-comment | |
2833 (if (nth 4 state) ; After `#'; | |
2834 ; (nth 2 state) can be | |
2835 ; beginning of m,s,qq and so | |
2836 ; on | |
2837 (if (nth 2 state) | |
2838 (progn | |
2839 (setq cpoint (point)) | |
2840 (goto-char (nth 2 state)) | |
2841 (cond | |
2842 ((looking-at "\\(s\\|tr\\)\\>") | |
2843 (or (re-search-forward | |
2844 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*" | |
2845 lim 'move) | |
2846 (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
|
2847 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>") |
20323 | 2848 (or (re-search-forward |
2849 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#" | |
2850 lim 'move) | |
2851 (setq stop-in t))) | |
2852 (t ; It was fair comment | |
2853 (setq stop-in t) ; Finish | |
2854 (goto-char (1- cpoint))))) | |
2855 (setq stop-in t) ; Finish | |
2856 (forward-char -1)) | |
2857 (setq stop-in t)) ; Finish | |
2858 ) | |
2859 (nth 4 state)))) | |
2860 | |
2861 (defsubst cperl-1- (p) | |
2862 (max (point-min) (1- p))) | |
2863 | |
2864 (defsubst cperl-1+ (p) | |
2865 (min (point-max) (1+ p))) | |
2866 | |
2867 (defsubst cperl-modify-syntax-type (at how) | |
2868 (if (< at (point-max)) | |
2869 (progn | |
2870 (put-text-property at (1+ at) 'syntax-table how) | |
2871 (put-text-property at (1+ at) 'rear-nonsticky t)))) | |
2872 | |
2873 (defun cperl-protect-defun-start (s e) | |
2874 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations | |
2875 (save-excursion | |
2876 (goto-char s) | |
2877 (while (re-search-forward "^\\s(" e 'to-end) | |
2878 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct)))) | |
2879 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2880 (defun cperl-commentify (bb e string &optional noface) |
20323 | 2881 (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
|
2882 (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
|
2883 nil |
20323 | 2884 ;; We suppose that e is _after_ the end of construction, as after eol. |
2885 (setq string (if string cperl-st-sfence cperl-st-cfence)) | |
2886 (cperl-modify-syntax-type bb string) | |
2887 (cperl-modify-syntax-type (1- e) string) | |
2888 (if (and (eq string cperl-st-sfence) (> (- e 2) bb)) | |
2889 (put-text-property (1+ bb) (1- e) | |
2890 '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
|
2891 (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
|
2892 ;; Fontify |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2893 (or noface |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2894 (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
|
2895 (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
|
2896 '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
|
2897 (defvar cperl-starters '(( ?\( . ?\) ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2898 ( ?\[ . ?\] ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2899 ( ?\{ . ?\} ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2900 ( ?\< . ?\> ))) |
20323 | 2901 |
2902 (defun cperl-forward-re (lim end is-2arg set-st st-l err-l argument | |
2903 &optional ostart oend) | |
2904 ;; Works *before* syntax recognition is done | |
2905 ;; May modify syntax-type text property if the situation is too hard | |
2906 (let (b starter ender st i i2 go-forward) | |
2907 (skip-chars-forward " \t") | |
2908 ;; ender means matching-char matcher. | |
2909 (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
|
2910 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
|
2911 ender (cdr (assoc starter cperl-starters))) |
20323 | 2912 ;; What if starter == ?\\ ???? |
2913 (if set-st | |
2914 (if (car st-l) | |
2915 (setq st (car st-l)) | |
2916 (setcar st-l (make-syntax-table)) | |
2917 (setq i 0 st (car st-l)) | |
2918 (while (< i 256) | |
2919 (modify-syntax-entry i "." st) | |
2920 (setq i (1+ i))) | |
2921 (modify-syntax-entry ?\\ "\\" st))) | |
2922 (setq set-st t) | |
2923 ;; Whether we have an intermediate point | |
2924 (setq i nil) | |
2925 ;; Prepare the syntax table: | |
2926 (and set-st | |
2927 (if (not ender) ; m/blah/, s/x//, s/x/y/ | |
2928 (modify-syntax-entry starter "$" st) | |
2929 (modify-syntax-entry starter (concat "(" (list ender)) st) | |
2930 (modify-syntax-entry ender (concat ")" (list starter)) st))) | |
2931 (condition-case bb | |
2932 (progn | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2933 ;; 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
|
2934 ;; is recognized the same as $, so we need to check this manually. |
20323 | 2935 (if (and (eq starter (char-after (cperl-1+ b))) |
2936 (not ender)) | |
2937 ;; $ has TeXish matching rules, so $$ equiv $... | |
2938 (forward-char 2) | |
2939 (set-syntax-table st) | |
2940 (forward-sexp 1) | |
2941 (set-syntax-table cperl-mode-syntax-table) | |
2942 ;; Now the problem is with m;blah;; | |
2943 (and (not ender) | |
2944 (eq (preceding-char) | |
2945 (char-after (- (point) 2))) | |
2946 (save-excursion | |
2947 (forward-char -2) | |
2948 (= 0 (% (skip-chars-backward "\\\\") 2))) | |
2949 (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
|
2950 ;; Now we are after the first part. |
20323 | 2951 (and is-2arg ; Have trailing part |
2952 (not ender) | |
2953 (eq (following-char) starter) ; Empty trailing part | |
2954 (progn | |
2955 (or (eq (char-syntax (following-char)) ?.) | |
2956 ;; Make trailing letter into punctuation | |
2957 (cperl-modify-syntax-type (point) cperl-st-punct)) | |
2958 (setq is-2arg nil go-forward t))) ; Ignore the tail | |
2959 (if is-2arg ; Not number => have second part | |
2960 (progn | |
2961 (setq i (point) i2 i) | |
2962 (if ender | |
2963 (if (memq (following-char) '(?\ ?\t ?\n ?\f)) | |
2964 (progn | |
2965 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
2966 (goto-char (match-end 0)) | |
2967 (skip-chars-forward " \t\n\f")) | |
2968 (setq i2 (point)))) | |
2969 (forward-char -1)) | |
2970 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
2971 (if ender (modify-syntax-entry ender "." st)) | |
2972 (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
|
2973 (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
|
2974 argument starter ender) |
20323 | 2975 ender (nth 2 ender))))) |
2976 (error (goto-char lim) | |
2977 (setq set-st nil) | |
2978 (or end | |
2979 (message | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2980 "End of `%s%s%c ... %c' string/RE not found: %s" |
20323 | 2981 argument |
2982 (if ostart (format "%c ... %c" ostart (or oend ostart)) "") | |
2983 starter (or ender starter) bb) | |
2984 (or (car err-l) (setcar err-l b))))) | |
2985 (if set-st | |
2986 (progn | |
2987 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
2988 (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
|
2989 ;; 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
|
2990 ;; 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
|
2991 ;; 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
|
2992 ;; 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
|
2993 ;; go-forward: has 2 args, and the second part is empth |
20323 | 2994 (list i i2 ender starter go-forward))) |
2995 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2996 (defsubst cperl-postpone-fontification (b e type val &optional now) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2997 ;; 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
|
2998 (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
|
2999 (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
|
3000 (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
|
3001 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3002 ;;; 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
|
3003 ;;; recognized locally) are marked: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3004 ;; a) PODs: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3005 ;; 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
|
3006 ;; 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
|
3007 ;; Each literal part is marked `syntax-type' ==> `in-pod' |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3008 ;; b) HEREs: |
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 `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
|
3010 ;; 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
|
3011 ;; The delimiter is marked `syntax-type' ==> `here-doc-delim' |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3012 ;; c) FORMATs: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3013 ;; After-initial-line--to-end is marked `syntax-type' ==> `format' |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3014 ;; d) 'Q'uoted string: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3015 ;; 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
|
3016 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3017 (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
|
3018 ;; 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
|
3019 (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
|
3020 (setq opos pos) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3021 (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
|
3022 (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
|
3023 (if pos |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3024 (if before |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3025 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3026 (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
|
3027 (beginning-of-line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3028 (setq pos (point))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3029 (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
|
3030 ;; 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
|
3031 (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
|
3032 (if end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3033 ;; 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
|
3034 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3035 (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
|
3036 (setq pos end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3037 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
|
3038 (or end pos))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3039 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3040 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max) |
20323 | 3041 "Scans the buffer for hard-to-parse Perl constructions. |
3042 If `cperl-pod-here-fontify' is not-nil after evaluation, will fontify | |
3043 the sections using `cperl-pod-head-face', `cperl-pod-face', | |
3044 `cperl-here-face'." | |
3045 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3046 (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
|
3047 cperl-syntax-state nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3048 cperl-syntax-done-to min)) |
20323 | 3049 (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
|
3050 (let* (face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3051 (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
|
3052 (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
|
3053 (modified (buffer-modified-p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3054 (after-change-functions nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3055 (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
|
3056 (>= min (car cperl-syntax-state)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3057 (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
|
3058 (car cperl-syntax-state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3059 (point-min))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3060 (state (if use-syntax-state |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3061 (cdr cperl-syntax-state))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3062 (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
|
3063 ;; 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
|
3064 (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
|
3065 font-lock-string-face |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3066 '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
|
3067 (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
|
3068 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
|
3069 '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
|
3070 (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
|
3071 (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
|
3072 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
|
3073 '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
|
3074 (cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3075 (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
|
3076 cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3077 'cperl-nonoverridable-face)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3078 (stop-point (if ignore-max |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3079 (point-max) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3080 max)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3081 (search |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3082 (concat |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3083 "\\(\\`\n?\\|\n\n\\)=" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3084 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3085 ;; One extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3086 "<<" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3087 "\\(" ; 1 + 1 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3088 ;; 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
|
3089 "\\([\"'`]\\)" ; 2 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3090 "\\([^\"'`\n]*\\)" ; 3 + 1 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3091 "\\3" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3092 "\\|" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3093 ;; 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
|
3094 "\\\\?\\(\\([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
|
3095 ;; 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
|
3096 ;; "\\([^= \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
|
3097 "\\(\\)" ; 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
|
3098 "\\)" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3099 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3100 ;; 1+6 extra () before this: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3101 "^[ \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
|
3102 (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
|
3103 (concat |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3104 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3105 ;; 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
|
3106 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3107 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3108 ;; 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
|
3109 "\\([?/<]\\)" ; /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
|
3110 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3111 ;; 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
|
3112 "\\<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
|
3113 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3114 ;; 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
|
3115 "\\$\\(['{]\\)" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3116 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3117 ;; 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
|
3118 "\\(\\<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
|
3119 ;; 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
|
3120 "\\|" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3121 "__\\(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
|
3122 ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3123 "")))) |
20323 | 3124 (unwind-protect |
3125 (progn | |
3126 (save-excursion | |
3127 (or non-inter | |
3128 (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
|
3129 (and cperl-pod-here-fontify |
20323 | 3130 ;; We had evals here, do not know why... |
3131 (setq face cperl-pod-face | |
3132 head-face cperl-pod-head-face | |
3133 here-face cperl-here-face)) | |
3134 (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
|
3135 '(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
|
3136 cperl-postpone t)) |
20323 | 3137 ;; Need to remove face as well... |
3138 (goto-char min) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3139 (and (eq system-type 'emx) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3140 (looking-at "extproc[ \t]") ; Analogue of #! |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3141 (cperl-commentify min |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3142 (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
|
3143 nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3144 (while (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3145 (< (point) max) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3146 (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
|
3147 (setq tmpend nil) ; Valid for most cases |
20323 | 3148 (cond |
3149 ((match-beginning 1) ; POD section | |
3150 ;; "\\(\\`\n?\\|\n\n\\)=" | |
3151 (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
|
3152 (if ignore-max |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3153 nil ; Doing a chunk only |
20323 | 3154 (message "=cut is not preceded by a POD section") |
3155 (or (car err-l) (setcar err-l (point)))) | |
3156 (beginning-of-line) | |
3157 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3158 (setq b (point) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3159 bb b |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3160 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
|
3161 b1 nil) ; error condition |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3162 ;; 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
|
3163 ;; 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
|
3164 (or (re-search-forward "\n\n=cut\\>" stop-point 'toend) |
20323 | 3165 (progn |
3166 (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
|
3167 (setq b1 t) |
20323 | 3168 (or (car err-l) (setcar err-l b)))) |
3169 (beginning-of-line 2) ; An empty line after =cut is not POD! | |
3170 (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
|
3171 (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
|
3172 ;; Unrecoverable error |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3173 nil |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3174 (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
|
3175 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3176 (remove-text-properties |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3177 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
|
3178 'cperl-postpone t)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3179 (setq tmpend tb))) |
20323 | 3180 (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
|
3181 (put-text-property b e 'syntax-type 'in-pod) |
20323 | 3182 (goto-char b) |
3183 (while (re-search-forward "\n\n[ \t]" e t) | |
3184 ;; We start 'pod 1 char earlier to include the preceding line | |
3185 (beginning-of-line) | |
3186 (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
|
3187 (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
|
3188 ;; 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
|
3189 (if 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
|
3190 (cperl-postpone-fontification b (point) 'face face t)) |
20323 | 3191 (re-search-forward "\n\n[^ \t\f\n]" e 'toend) |
3192 (beginning-of-line) | |
3193 (setq b (point))) | |
3194 (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
|
3195 (cperl-put-do-not-fontify (point) e t) |
20323 | 3196 (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
|
3197 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3198 ;; 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
|
3199 (cperl-postpone-fontification (point) e 'face face t) |
20323 | 3200 (goto-char bb) |
3201 (if (looking-at | |
3202 "=[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
|
3203 ;; mark the headers |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3204 (cperl-postpone-fontification |
20323 | 3205 (match-beginning 1) (match-end 1) |
3206 'face head-face)) | |
3207 (while (re-search-forward | |
3208 ;; One paragraph | |
3209 "\n\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$" | |
3210 e 'toend) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3211 ;; mark the headers |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3212 (cperl-postpone-fontification |
20323 | 3213 (match-beginning 1) (match-end 1) |
3214 'face head-face)))) | |
3215 (cperl-commentify bb e nil) | |
3216 (goto-char e) | |
3217 (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
|
3218 (forward-char -1))))) ; Prepare for immediate pod start. |
20323 | 3219 ;; Here document |
3220 ;; 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
|
3221 ;; ;; One extra () before this: |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3222 ;;"<<" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3223 ;; "\\(" ; 1 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3224 ;; ;; 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
|
3225 ;; "\\([\"'`]\\)" ; 2 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3226 ;; "\\([^\"'`\n]*\\)" ; 3 + 1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3227 ;; "\\3" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3228 ;; "\\|" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3229 ;; ;; 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
|
3230 ;; "\\\\?\\(\\([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
|
3231 ;; ;; 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
|
3232 ;; ;; "\\([^= \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
|
3233 ;; "\\(\\)" ; 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
|
3234 ;; "\\)" |
20323 | 3235 ((match-beginning 2) ; 1 + 1 |
3236 ;; Abort in comment: | |
3237 (setq b (point)) | |
3238 (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
|
3239 state-point b |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3240 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
|
3241 i (or (nth 3 state) (nth 4 state))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3242 (if i |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3243 (setq c t) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3244 (setq c (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3245 (match-beginning 5) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3246 (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
|
3247 (looking-at |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3248 "[ \t]*[=0-9$@%&(]")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3249 (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
|
3250 nil ; Skip it. |
20323 | 3251 (if (match-beginning 5) ;4 + 1 |
3252 (setq b1 (match-beginning 5) ; 4 + 1 | |
3253 e1 (match-end 5)) ; 4 + 1 | |
3254 (setq b1 (match-beginning 4) ; 3 + 1 | |
3255 e1 (match-end 4))) ; 3 + 1 | |
3256 (setq tag (buffer-substring b1 e1) | |
3257 qtag (regexp-quote tag)) | |
3258 (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
|
3259 ;; 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
|
3260 (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
|
3261 (cperl-put-do-not-fontify b1 e1 t))) |
20323 | 3262 (forward-line) |
3263 (setq b (point)) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3264 ;; 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
|
3265 ;; 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
|
3266 (cond ((re-search-forward (concat "^" qtag "$") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3267 stop-point 'toend) |
20323 | 3268 (if cperl-pod-here-fontify |
3269 (progn | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3270 ;; 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
|
3271 (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
|
3272 '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
|
3273 (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
|
3274 ;; Highlight the HERE-DOC |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3275 (cperl-postpone-fontification b (match-beginning 0) |
20323 | 3276 'face here-face))) |
3277 (setq e1 (cperl-1+ (match-end 0))) | |
3278 (put-text-property b (match-beginning 0) | |
3279 'syntax-type 'here-doc) | |
3280 (put-text-property (match-beginning 0) e1 | |
3281 'syntax-type 'here-doc-delim) | |
3282 (put-text-property b e1 | |
3283 'here-doc-group t) | |
3284 (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
|
3285 (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
|
3286 (if (> e1 max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3287 (setq tmpend tb))) |
20323 | 3288 (t (message "End of here-document `%s' not found." tag) |
3289 (or (car err-l) (setcar err-l b)))))) | |
3290 ;; format | |
3291 ((match-beginning 8) | |
3292 ;; 1+6=7 extra () before this: | |
3293 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" | |
3294 (setq b (point) | |
3295 name (if (match-beginning 8) ; 7 + 1 | |
3296 (buffer-substring (match-beginning 8) ; 7 + 1 | |
3297 (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
|
3298 "") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3299 tb (match-beginning 0)) |
20323 | 3300 (setq argument nil) |
3301 (if cperl-pod-here-fontify | |
3302 (while (and (eq (forward-line) 0) | |
3303 (not (looking-at "^[.;]$"))) | |
3304 (cond | |
3305 ((looking-at "^#")) ; Skip comments | |
3306 ((and argument ; Skip argument multi-lines | |
3307 (looking-at "^[ \t]*{")) | |
3308 (forward-sexp 1) | |
3309 (setq argument nil)) | |
3310 (argument ; Skip argument lines | |
3311 (setq argument nil)) | |
3312 (t ; Format line | |
3313 (setq b1 (point)) | |
3314 (setq argument (looking-at "^[^\n]*[@^]")) | |
3315 (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
|
3316 ;; Highlight the format line |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3317 (cperl-postpone-fontification b1 (point) |
20323 | 3318 'face font-lock-string-face) |
3319 (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
|
3320 (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
|
3321 ;; 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
|
3322 ;; 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
|
3323 (re-search-forward "^[.;]$" stop-point 'toend)) |
20323 | 3324 (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
|
3325 (if (looking-at "^\\.$") ; ";" is not supported yet |
20323 | 3326 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3327 ;; 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
|
3328 (cperl-postpone-fontification (point) (+ (point) 2) |
20323 | 3329 'face font-lock-string-face) |
3330 (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
|
3331 (cperl-put-do-not-fontify (point) (+ (point) 2) t)) |
20323 | 3332 (message "End of format `%s' not found." name) |
3333 (or (car err-l) (setcar err-l b))) | |
3334 (forward-line) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3335 (if (> (point) max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3336 (setq tmpend tb)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3337 (put-text-property b (point) 'syntax-type 'format)) |
20323 | 3338 ;; Regexp: |
3339 ((or (match-beginning 10) (match-beginning 11)) | |
3340 ;; 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
|
3341 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
20323 | 3342 ;; "\\|" |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3343 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob> |
20323 | 3344 (setq b1 (if (match-beginning 10) 10 11) |
3345 argument (buffer-substring | |
3346 (match-beginning b1) (match-end b1)) | |
3347 b (point) | |
3348 i b | |
3349 c (char-after (match-beginning b1)) | |
3350 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
|
3351 ;; 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
|
3352 bb (if (eq b1 10) ; user variables/whatever |
20323 | 3353 (or |
3354 (memq bb '(?\$ ?\@ ?\% ?\* ?\#)) ; $#y | |
3355 (and (eq bb ?-) (eq c ?s)) ; -s file test | |
3356 (and (eq bb ?\&) ; &&m/blah/ | |
3357 (not (eq (char-after | |
3358 (- (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
|
3359 ?\&)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3360 ;; <file> or <$file> |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3361 (and (eq c ?\<) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3362 ;; 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
|
3363 (save-match-data |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3364 (looking-at |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3365 "\\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
|
3366 tb (match-beginning 0)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3367 (goto-char (match-beginning b1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3368 (cperl-backward-to-noncomment (point-min)) |
20323 | 3369 (or bb |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3370 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo> |
20323 | 3371 (setq argument "" |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3372 bb ; Not a regexp? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3373 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3374 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3375 ;; What is below: regexp-p? |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3376 (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3377 (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
|
3378 (append (if (memq c '(?\? ?\<)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3379 ;; $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
|
3380 "~{(=|&*!,;:" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3381 "~{(=|&+-*!,;:") nil)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3382 (and (eq (preceding-char) ?\}) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3383 (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
|
3384 (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
|
3385 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3386 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3387 ;;; 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
|
3388 ;;; 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
|
3389 (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
|
3390 ;; -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
|
3391 (looking-at "[a-zA-Z]\\>") |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3392 (looking-at |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3393 "\\(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
|
3394 (and (eq (preceding-char) ?.) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3395 (eq (char-after (- (point) 2)) ?.)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3396 (bobp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3397 ;; m|blah| ? foo : bar; |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3398 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3399 (and (eq c ?\?) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3400 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
|
3401 (not (bobp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3402 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3403 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3404 (looking-at "\\s|"))))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3405 b (1- b)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3406 ;; s y tr m |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3407 ;; Check for $a->y |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3408 (if (and (eq (preceding-char) ?>) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3409 (eq (char-after (- (point) 2)) ?-)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3410 ;; Not a regexp |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3411 (setq bb t)))) |
20323 | 3412 (or bb (setq state (parse-partial-sexp |
3413 state-point b nil nil state) | |
3414 state-point b)) | |
3415 (goto-char b) | |
3416 (if (or bb (nth 3 state) (nth 4 state)) | |
3417 (goto-char i) | |
3418 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
3419 (goto-char (match-end 0)) | |
3420 (skip-chars-forward " \t\n\f")) | |
3421 ;; qtag means two-arg matcher, may be reset to | |
3422 ;; 2 or 3 later if some special quoting is needed. | |
3423 ;; e1 means matching-char matcher. | |
3424 (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
|
3425 ;; has 2 args |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3426 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
|
3427 ;; 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
|
3428 ;; 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
|
3429 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
|
3430 i2 |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3431 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
|
3432 ;; 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
|
3433 b1 (nth 1 i) ; start of the second part |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3434 tag (nth 2 i) ; ender-char, true if second part |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3435 ; is with matching chars [] |
20323 | 3436 go (nth 4 i) ; There is a 1-char part after the end |
3437 i (car i) ; intermediate point | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3438 e1 (point) ; end |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3439 ;; Before end of the second part if non-matching: /// |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3440 tail (if (and i (not tag)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3441 (1- e1)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3442 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
|
3443 qtag nil) ; need to preserve backslashitis |
20323 | 3444 ;; Commenting \\ is dangerous, what about ( ? |
3445 (and i tail | |
3446 (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
|
3447 (setq qtag t)) |
20323 | 3448 (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
|
3449 ;; Considered as 1arg form |
20323 | 3450 (progn |
3451 (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
|
3452 (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
|
3453 (and go |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3454 (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
|
3455 (or (eobp) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3456 (forward-char 1)))) |
20323 | 3457 (cperl-commentify b i t) |
3458 (if (looking-at "\\sw*e") ; s///e | |
3459 (progn | |
3460 (and | |
3461 ;; silent: | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3462 (cperl-find-pods-heres b1 (1- (point)) t end) |
20323 | 3463 ;; Error |
3464 (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
|
3465 (if (and tag (eq (preceding-char) ?\>)) |
20323 | 3466 (progn |
3467 (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
|
3468 (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
|
3469 (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
|
3470 (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
|
3471 (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
|
3472 (if qtag |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3473 (cperl-modify-syntax-type (1+ i) cperl-st-punct)) |
20323 | 3474 (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
|
3475 ;; Now: tail: if the second part is non-matching without ///e |
20323 | 3476 (if (eq (char-syntax (following-char)) ?w) |
3477 (progn | |
3478 (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
|
3479 (if tail (cperl-commentify tail (point) t)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3480 (cperl-postpone-fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3481 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
|
3482 ;; 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
|
3483 ;; and highlight differently |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3484 (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
|
3485 (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
|
3486 ;; <> 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
|
3487 ;; 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
|
3488 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3489 (condition-case nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3490 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3491 (goto-char tb) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3492 (forward-sexp -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3493 (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
|
3494 (error t)))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3495 (cperl-postpone-fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3496 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
|
3497 (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
|
3498 (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
|
3499 (or |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3500 (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
|
3501 (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
|
3502 (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
|
3503 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3504 (cperl-postpone-fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3505 b (cperl-1+ b) '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
|
3506 (cperl-postpone-fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3507 (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
|
3508 (if i2 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3509 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3510 (cperl-postpone-fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3511 (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
|
3512 (if (assoc (char-after b) cperl-starters) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3513 (cperl-postpone-fontification |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3514 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
|
3515 (if (> (point) max) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3516 (setq tmpend tb)))) |
20323 | 3517 ((match-beginning 13) ; sub with prototypes |
3518 (setq b (match-beginning 0)) | |
3519 (if (memq (char-after (1- b)) | |
3520 '(?\$ ?\@ ?\% ?\& ?\*)) | |
3521 nil | |
3522 (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
|
3523 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
|
3524 state-point b) |
20323 | 3525 (if (or (nth 3 state) (nth 4 state)) |
3526 nil | |
3527 ;; Mark as string | |
3528 (cperl-commentify (match-beginning 13) (match-end 13) t)) | |
3529 (goto-char (match-end 0)))) | |
3530 ;; 1+6+2+1+1+2=13 extra () before this: | |
3531 ;; "\\$\\(['{]\\)" | |
3532 ((and (match-beginning 14) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3533 (eq (preceding-char) ?\')) ; $' |
20323 | 3534 (setq b (1- (point)) |
3535 state (parse-partial-sexp | |
3536 state-point (1- b) nil nil state) | |
3537 state-point (1- b)) | |
3538 (if (nth 3 state) ; in string | |
3539 (cperl-modify-syntax-type (1- b) cperl-st-punct)) | |
3540 (goto-char (1+ b))) | |
3541 ;; 1+6+2+1+1+2=13 extra () before this: | |
3542 ;; "\\$\\(['{]\\)" | |
3543 ((match-beginning 14) ; ${ | |
3544 (setq bb (match-beginning 0)) | |
3545 (cperl-modify-syntax-type bb cperl-st-punct)) | |
3546 ;; 1+6+2+1+1+2+1=14 extra () before this: | |
3547 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'") | |
3548 ((match-beginning 15) ; old $abc'efg syntax | |
3549 (setq bb (match-end 0) | |
3550 b (match-beginning 0) | |
3551 state (parse-partial-sexp | |
3552 state-point b nil nil state) | |
3553 state-point b) | |
3554 (if (nth 3 state) ; in string | |
3555 nil | |
3556 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)) | |
3557 (goto-char bb)) | |
3558 ;; 1+6+2+1+1+2+1+1=15 extra () before this: | |
3559 ;; "__\\(END\\|DATA\\)__" | |
3560 (t ; __END__, __DATA__ | |
3561 (setq bb (match-end 0) | |
3562 b (match-beginning 0) | |
3563 state (parse-partial-sexp | |
3564 state-point b nil nil state) | |
3565 state-point b) | |
3566 (if (or (nth 3 state) (nth 4 state)) | |
3567 nil | |
3568 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat | |
3569 (cperl-commentify b bb nil) | |
3570 (setq end t)) | |
3571 (goto-char bb))) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3572 (if (> (point) stop-point) |
20323 | 3573 (progn |
3574 (if end | |
3575 (message "Garbage after __END__/__DATA__ ignored") | |
3576 (message "Unbalanced syntax found while scanning") | |
3577 (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
|
3578 (goto-char stop-point)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3579 (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
|
3580 cperl-syntax-done-to (or tmpend (max (point) max)))) |
20323 | 3581 (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
|
3582 (or non-inter |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3583 (message "Scanning for \"hard\" Perl constructions... done")))) |
20323 | 3584 (and (buffer-modified-p) |
3585 (not modified) | |
3586 (set-buffer-modified-p nil)) | |
3587 (set-syntax-table cperl-mode-syntax-table)) | |
3588 (car err-l))) | |
3589 | |
3590 (defun cperl-backward-to-noncomment (lim) | |
3591 ;; 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
|
3592 (let (stop p pr) |
20323 | 3593 (while (and (not stop) (> (point) (or lim 1))) |
3594 (skip-chars-backward " \t\n\f" lim) | |
3595 (setq p (point)) | |
3596 (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
|
3597 (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
|
3598 '(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
|
3599 (cperl-unwind-to-safe nil) |
20323 | 3600 (if (or (looking-at "^[ \t]*\\(#\\|$\\)") |
3601 (progn (cperl-to-comment-or-eol) (bolp))) | |
3602 nil ; Only comment, skip | |
3603 ;; Else | |
3604 (skip-chars-backward " \t") | |
3605 (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
|
3606 (setq stop t)))))) |
20323 | 3607 |
3608 (defun cperl-after-block-p (lim) | |
3609 ;; We suppose that the preceding char is }. | |
3610 (save-excursion | |
3611 (condition-case nil | |
3612 (progn | |
3613 (forward-sexp -1) | |
3614 (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
|
3615 (or (eq (point) lim) |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3616 (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
|
3617 (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
|
3618 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3619 (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
|
3620 (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
|
3621 ;; sub f {} |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3622 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3623 (cperl-backward-to-noncomment lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3624 (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
|
3625 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3626 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3627 (looking-at "sub\\>")))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3628 (cperl-after-expr-p lim)))) |
20323 | 3629 (error nil)))) |
3630 | |
3631 (defun cperl-after-expr-p (&optional lim chars test) | |
3632 "Returns true if the position is good for start of expression. | |
3633 TEST is the expression to evaluate at the found position. If absent, | |
3634 CHARS is a string that contains good characters to have before us (however, | |
3635 `}' is treated \"smartly\" if it is not in the list)." | |
3636 (let (stop p | |
3637 (lim (or lim (point-min)))) | |
3638 (save-excursion | |
3639 (while (and (not stop) (> (point) lim)) | |
3640 (skip-chars-backward " \t\n\f" lim) | |
3641 (setq p (point)) | |
3642 (beginning-of-line) | |
3643 (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
|
3644 ;; Else: last iteration, or a label |
20323 | 3645 (cperl-to-comment-or-eol) |
3646 (skip-chars-backward " \t") | |
3647 (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
|
3648 (setq p (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3649 (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
|
3650 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3651 (forward-char -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3652 (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
|
3653 (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
|
3654 (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
|
3655 (goto-char p) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3656 (setq stop t)))) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3657 (or (bobp) ; ???? Needed |
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3658 (eq (point) lim) |
20323 | 3659 (progn |
3660 (if test (eval test) | |
3661 (or (memq (preceding-char) (append (or chars "{;") nil)) | |
3662 (and (eq (preceding-char) ?\}) | |
3663 (cperl-after-block-p lim))))))))) | |
3664 | |
3665 (defun cperl-backward-to-start-of-continued-exp (lim) | |
3666 (if (memq (preceding-char) (append ")]}\"'`" nil)) | |
3667 (forward-sexp -1)) | |
3668 (beginning-of-line) | |
3669 (if (<= (point) lim) | |
3670 (goto-char (1+ lim))) | |
3671 (skip-chars-forward " \t")) | |
3672 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3673 (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
|
3674 ;; We assume that we are after ?\} |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3675 (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3676 (cperl-after-block-p lim) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3677 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3678 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3679 (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
|
3680 (or (bobp) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3681 (eq (point) lim) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3682 (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
|
3683 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3684 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3685 (not |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3686 (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3687 "\\(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
|
3688 |
20323 | 3689 |
3690 (defun cperl-indent-exp () | |
3691 "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
|
3692 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3693 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
|
3694 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
|
3695 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3696 If `cperl-indent-region-fix-constructs', will improve spacing on |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3697 conditional/loop constructs." |
20323 | 3698 (interactive) |
3699 (save-excursion | |
3700 (let ((tmp-end (progn (end-of-line) (point))) top done) | |
3701 (save-excursion | |
3702 (beginning-of-line) | |
3703 (while (null done) | |
3704 (setq top (point)) | |
3705 (while (= (nth 0 (parse-partial-sexp (point) tmp-end | |
3706 -1)) -1) | |
3707 (setq top (point))) ; Get the outermost parenths in line | |
3708 (goto-char top) | |
3709 (while (< (point) tmp-end) | |
3710 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol | |
3711 (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
|
3712 (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
|
3713 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3714 (end-of-line) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3715 (setq tmp-end (point))) |
20323 | 3716 (setq done t))) |
3717 (goto-char tmp-end) | |
3718 (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
|
3719 (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
|
3720 (cperl-fix-line-spacing tmp-end)) |
20323 | 3721 (cperl-indent-region (point) tmp-end)))) |
3722 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3723 (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
|
3724 "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
|
3725 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
|
3726 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3727 (or end |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3728 (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
|
3729 (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
|
3730 (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
|
3731 (cperl-indent-region-fix-constructs |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3732 (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
|
3733 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3734 (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
|
3735 (setq ret (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3736 ;; }? continue |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3737 ;; blah; } |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3738 (if (not |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3739 (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
|
3740 (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
|
3741 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
|
3742 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3743 ;; } |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3744 ;; else |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3745 (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
|
3746 (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3747 "[ \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
|
3748 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3749 (search-forward "}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3750 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3751 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3752 (delete-region p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3753 (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
|
3754 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3755 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3756 ;; } else |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3757 (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
|
3758 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3759 (search-forward "}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3760 (delete-horizontal-space) |
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 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3766 "[ \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
|
3767 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3768 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3769 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3770 (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
|
3771 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3772 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3773 ;; foreach my $var |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3774 (if (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3775 "[ \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
|
3776 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3777 (forward-word 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3778 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3779 (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
|
3780 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3781 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3782 ;; foreach my $var ( |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3783 (if (looking-at |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3784 "[ \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
|
3785 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3786 (forward-word 3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3787 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3788 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3789 (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
|
3790 (beginning-of-line))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3791 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3792 ;; } foreach my $var () { |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3793 (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
|
3794 "[ \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
|
3795 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3796 (setq ml (match-beginning 8)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3797 (re-search-forward "[({]") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3798 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3799 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3800 (if (eq (following-char) ?\( ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3801 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3802 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3803 (setq pp (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3804 ;; after `else' or nothing |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3805 (if ml ; after `else' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3806 (skip-chars-backward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3807 (beginning-of-line)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3808 (setq pp nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3809 ;; 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
|
3810 ;; Multiline expr should be special |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3811 (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
|
3812 (search-forward "\n" pp t)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3813 (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
|
3814 (looking-at "[ \t\n]*{")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3815 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3816 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3817 ((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
|
3818 nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3819 ((looking-at "\\(\t*\\| [ \t]+\\){") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3820 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3821 (if (if ml |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3822 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
|
3823 cperl-extra-newline-before-brace) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3824 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3825 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3826 (insert "\n") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3827 (setq ret (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3828 (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
|
3829 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3830 (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
|
3831 (setq ret (point))))) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3832 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3833 (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
|
3834 ((and (looking-at "[ \t]*\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3835 (not (if ml |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3836 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
|
3837 cperl-extra-newline-before-brace))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3838 (setq pp (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3839 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3840 (delete-region pp (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3841 (insert |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3842 (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
|
3843 ;; Now we are before `{' |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3844 (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
|
3845 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3846 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3847 (setq pp (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3848 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3849 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3850 (goto-char pp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3851 (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
|
3852 (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
|
3853 ;; not good: multi-line BLOCK |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3854 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3855 (goto-char (1+ pp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3856 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3857 (insert "\n") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3858 (setq ret (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3859 (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
|
3860 (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
|
3861 (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
|
3862 (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
|
3863 ;; 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
|
3864 ;; Looking at: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3865 ;; } blah |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3866 (if (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3867 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
|
3868 have-brace |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3869 (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
|
3870 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3871 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3872 (up-list 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3873 (if (and (<= (point) pp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3874 (eq (preceding-char) ?\} ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3875 (cperl-after-block-and-statement-beg (point-min))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3876 t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3877 (goto-char p) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3878 nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3879 (error nil))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3880 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3881 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3882 (skip-chars-backward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3883 (if (bolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3884 ;; `}' 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
|
3885 (progn |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3886 (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
|
3887 (search-forward "}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3888 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3889 (insert "\n")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3890 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3891 (or (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3892 (bolp) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3893 (and (eq (preceding-char) ?\} ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3894 (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
|
3895 (insert ";")) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3896 (insert "\n") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3897 (setq ret (point))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3898 (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
|
3899 (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
|
3900 (beginning-of-line))))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3901 ret)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3902 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3903 (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
|
3904 (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
|
3905 (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
|
3906 (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
|
3907 (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
|
3908 |
20323 | 3909 (defun cperl-indent-region (start end) |
3910 "Simple variant of indentation of region in CPerl mode. | |
3911 Should be slow. Will not indent comment if it starts at `comment-indent' | |
3912 or looks like continuation of the comment on the previous line. | |
3913 Indents all the lines whose first character is between START and END | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3914 inclusive. |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3915 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3916 If `cperl-indent-region-fix-constructs', will improve spacing on |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3917 conditional/loop constructs." |
20323 | 3918 (interactive "r") |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3919 (cperl-update-syntaxification end end) |
20323 | 3920 (save-excursion |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3921 (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
|
3922 (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
|
3923 (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
|
3924 (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
|
3925 nil)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3926 after-change-functions ; Speed it up! |
20323 | 3927 (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
|
3928 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook)) |
20323 | 3929 (goto-char start) |
3930 (setq old-comm-indent (and (cperl-to-comment-or-eol) | |
3931 (current-column)) | |
3932 new-comm-indent old-comm-indent) | |
3933 (goto-char start) | |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3934 (setq end (set-marker (make-marker) end)) ; indentation changes pos |
20323 | 3935 (or (bolp) (beginning-of-line 2)) |
3936 (or (fboundp 'imenu-progress-message) | |
3937 (message "Indenting... For feedback load `imenu'...")) | |
3938 (while (and (<= (point) end) (not (eobp))) ; bol to check start | |
3939 (and (fboundp 'imenu-progress-message) | |
3940 (imenu-progress-message | |
3941 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
|
3942 (setq st (point)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3943 (if (or |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3944 (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
|
3945 (and (setq comm (looking-at "[ \t]*#")) |
20323 | 3946 (or (eq (current-indentation) (or old-comm-indent |
3947 comment-column)) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3948 (setq old-comm-indent nil)))) |
20323 | 3949 (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
|
3950 (not empty) |
20323 | 3951 (= (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
|
3952 (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
|
3953 (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
|
3954 cperl-st-cfence))) |
20323 | 3955 (let ((comment-column new-comm-indent)) |
3956 (indent-for-comment))) | |
3957 (progn | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3958 (setq i (cperl-indent-line indent-info)) |
20323 | 3959 (or comm |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3960 (not i) |
20323 | 3961 (progn |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3962 (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
|
3963 (goto-char (cperl-fix-line-spacing end indent-info))) |
20323 | 3964 (if (setq old-comm-indent |
3965 (and (cperl-to-comment-or-eol) | |
3966 (not (memq (get-text-property (point) | |
3967 'syntax-type) | |
3968 '(pod here-doc))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3969 (not (eq (get-text-property (point) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3970 'syntax-table) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3971 cperl-st-cfence)) |
20323 | 3972 (current-column))) |
3973 (progn (indent-for-comment) | |
3974 (skip-chars-backward " \t") | |
3975 (skip-chars-backward "#") | |
3976 (setq new-comm-indent (current-column)))))))) | |
3977 (beginning-of-line 2)) | |
3978 (if (fboundp 'imenu-progress-message) | |
3979 (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
|
3980 (message nil))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3981 ;; 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
|
3982 (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
|
3983 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3984 (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
|
3985 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3986 (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
|
3987 (insert " ") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3988 (delete-char -1) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3989 (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
|
3990 (insert " ") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3991 (delete-char -1)))))))) |
20323 | 3992 |
3993 ;; Stolen from lisp-mode with a lot of improvements | |
3994 | |
3995 (defun cperl-fill-paragraph (&optional justify iteration) | |
3996 "Like \\[fill-paragraph], but handle CPerl comments. | |
3997 If any of the current line is a comment, fill the comment or the | |
3998 block of it that point is in, preserving the comment's initial | |
3999 indentation and initial hashes. Behaves usually outside of comment." | |
4000 (interactive "P") | |
4001 (let ( | |
4002 ;; Non-nil if the current line contains a comment. | |
4003 has-comment | |
4004 | |
4005 ;; If has-comment, the appropriate fill-prefix for the comment. | |
4006 comment-fill-prefix | |
4007 ;; Line that contains code and comment (or nil) | |
4008 start | |
4009 c spaces len dc (comment-column comment-column)) | |
4010 ;; Figure out what kind of comment we are looking at. | |
4011 (save-excursion | |
4012 (beginning-of-line) | |
4013 (cond | |
4014 | |
4015 ;; A line with nothing but a comment on it? | |
4016 ((looking-at "[ \t]*#[# \t]*") | |
4017 (setq has-comment t | |
4018 comment-fill-prefix (buffer-substring (match-beginning 0) | |
4019 (match-end 0)))) | |
4020 | |
4021 ;; A line with some code, followed by a comment? Remember that the | |
4022 ;; semi which starts the comment shouldn't be part of a string or | |
4023 ;; character. | |
4024 ((cperl-to-comment-or-eol) | |
4025 (setq has-comment t) | |
4026 (looking-at "#+[ \t]*") | |
4027 (setq start (point) c (current-column) | |
4028 comment-fill-prefix | |
4029 (concat (make-string (current-column) ?\ ) | |
4030 (buffer-substring (match-beginning 0) (match-end 0))) | |
4031 spaces (progn (skip-chars-backward " \t") | |
4032 (buffer-substring (point) start)) | |
4033 dc (- c (current-column)) len (- start (point)) | |
4034 start (point-marker)) | |
4035 (delete-char len) | |
4036 (insert (make-string dc ?-))))) | |
4037 (if (not has-comment) | |
4038 (fill-paragraph justify) ; Do the usual thing outside of comment | |
4039 ;; Narrow to include only the comment, and then fill the region. | |
4040 (save-restriction | |
4041 (narrow-to-region | |
4042 ;; Find the first line we should include in the region to fill. | |
4043 (if start (progn (beginning-of-line) (point)) | |
4044 (save-excursion | |
4045 (while (and (zerop (forward-line -1)) | |
4046 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
4047 ;; We may have gone to far. Go forward again. | |
4048 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]") | |
4049 (forward-line 1)) | |
4050 (point))) | |
4051 ;; Find the beginning of the first line past the region to fill. | |
4052 (save-excursion | |
4053 (while (progn (forward-line 1) | |
4054 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
4055 (point))) | |
4056 ;; Remove existing hashes | |
4057 (goto-char (point-min)) | |
4058 (while (progn (forward-line 1) (< (point) (point-max))) | |
4059 (skip-chars-forward " \t") | |
4060 (and (looking-at "#+") | |
4061 (delete-char (- (match-end 0) (match-beginning 0))))) | |
4062 | |
4063 ;; Lines with only hashes on them can be paragraph boundaries. | |
4064 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$")) | |
4065 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$")) | |
4066 (fill-prefix comment-fill-prefix)) | |
4067 (fill-paragraph justify))) | |
4068 (if (and start) | |
4069 (progn | |
4070 (goto-char start) | |
4071 (if (> dc 0) | |
4072 (progn (delete-char dc) (insert spaces))) | |
4073 (if (or (= (current-column) c) iteration) nil | |
4074 (setq comment-column c) | |
4075 (indent-for-comment) | |
4076 ;; Repeat once more, flagging as iteration | |
4077 (cperl-fill-paragraph justify t))))))) | |
4078 | |
4079 (defun cperl-do-auto-fill () | |
4080 ;; Break out if the line is short enough | |
4081 (if (> (save-excursion | |
4082 (end-of-line) | |
4083 (current-column)) | |
4084 fill-column) | |
4085 (let ((c (save-excursion (beginning-of-line) | |
4086 (cperl-to-comment-or-eol) (point))) | |
4087 (s (memq (following-char) '(?\ ?\t))) marker) | |
4088 (if (>= c (point)) nil | |
4089 (setq marker (point-marker)) | |
4090 (cperl-fill-paragraph) | |
4091 (goto-char marker) | |
4092 ;; Is not enough, sometimes marker is a start of line | |
4093 (if (bolp) (progn (re-search-forward "#+[ \t]*") | |
4094 (goto-char (match-end 0)))) | |
4095 ;; Following space could have gone: | |
4096 (if (or (not s) (memq (following-char) '(?\ ?\t))) nil | |
4097 (insert " ") | |
4098 (backward-char 1)) | |
4099 ;; Previous space could have gone: | |
4100 (or (memq (preceding-char) '(?\ ?\t)) (insert " ")))))) | |
4101 | |
31821 | 4102 (defvar cperl-imenu--function-name-regexp-perl |
20323 | 4103 (concat |
4104 "^\\(" | |
4105 "[ \t]*\\(sub\\|package\\)[ \t\n]+\\([a-zA-Z_0-9:']+\\)[ \t]*\\(([^()]*)[ \t]*\\)?" | |
4106 "\\|" | |
4107 "=head\\([12]\\)[ \t]+\\([^\n]+\\)$" | |
4108 "\\)")) | |
4109 | |
4110 (defun cperl-imenu-addback (lst &optional isback name) | |
4111 ;; We suppose that the lst is a DAG, unless the first element only | |
4112 ;; loops back, and ISBACK is set. Thus this function cannot be | |
4113 ;; applied twice without ISBACK set. | |
4114 (cond ((not cperl-imenu-addback) lst) | |
4115 (t | |
4116 (or name | |
4117 (setq name "+++BACK+++")) | |
4118 (mapcar (function (lambda (elt) | |
4119 (if (and (listp elt) (listp (cdr elt))) | |
4120 (progn | |
4121 ;; In the other order it goes up | |
4122 ;; one level only ;-( | |
4123 (setcdr elt (cons (cons name lst) | |
4124 (cdr elt))) | |
4125 (cperl-imenu-addback (cdr elt) t name) | |
4126 )))) | |
4127 (if isback (cdr lst) lst)) | |
4128 lst))) | |
4129 | |
31821 | 4130 (defun cperl-imenu--create-perl-index (&optional regexp) |
20323 | 4131 (require 'imenu) ; May be called from TAGS creator |
4132 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '()) | |
4133 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function)) | |
4134 (index-meth-alist '()) meth | |
4135 packages ends-ranges p | |
4136 (prev-pos 0) char fchar index index1 name (end-range 0) package) | |
4137 (goto-char (point-min)) | |
4138 (if noninteractive | |
4139 (message "Scanning Perl for index") | |
4140 (imenu-progress-message prev-pos 0)) | |
4141 ;; Search for the function | |
4142 (progn ;;save-match-data | |
4143 (while (re-search-forward | |
31821 | 4144 (or regexp cperl-imenu--function-name-regexp-perl) |
20323 | 4145 nil t) |
4146 (or noninteractive | |
4147 (imenu-progress-message prev-pos)) | |
4148 (cond | |
4149 ((and ; Skip some noise if building tags | |
4150 (match-beginning 2) ; package or sub | |
4151 (eq (char-after (match-beginning 2)) ?p) ; package | |
4152 (not (save-match-data | |
4153 (looking-at "[ \t\n]*;")))) ; Plain text word 'package' | |
4154 nil) | |
4155 ((and | |
4156 (match-beginning 2) ; package or sub | |
4157 ;; Skip if quoted (will not skip multi-line ''-comments :-(): | |
4158 (null (get-text-property (match-beginning 1) 'syntax-table)) | |
4159 (null (get-text-property (match-beginning 1) 'syntax-type)) | |
4160 (null (get-text-property (match-beginning 1) 'in-pod))) | |
4161 (save-excursion | |
4162 (goto-char (match-beginning 2)) | |
4163 (setq fchar (following-char)) | |
4164 ) | |
4165 ;; (if (looking-at "([^()]*)[ \t\n\f]*") | |
4166 ;; (goto-char (match-end 0))) ; Messes what follows | |
4167 (setq char (following-char) | |
4168 meth nil | |
4169 p (point)) | |
4170 (while (and ends-ranges (>= p (car ends-ranges))) | |
4171 ;; delete obsolete entries | |
4172 (setq ends-ranges (cdr ends-ranges) packages (cdr packages))) | |
4173 (setq package (or (car packages) "") | |
4174 end-range (or (car ends-ranges) 0)) | |
4175 (if (eq fchar ?p) | |
4176 (setq name (buffer-substring (match-beginning 3) (match-end 3)) | |
4177 name (progn | |
4178 (set-text-properties 0 (length name) nil name) | |
4179 name) | |
4180 package (concat name "::") | |
4181 name (concat "package " name) | |
4182 end-range | |
4183 (save-excursion | |
4184 (parse-partial-sexp (point) (point-max) -1) (point)) | |
4185 ends-ranges (cons end-range ends-ranges) | |
4186 packages (cons package packages))) | |
4187 ;; ) | |
4188 ;; Skip this function name if it is a prototype declaration. | |
4189 (if (and (eq fchar ?s) (eq char ?\;)) nil | |
4190 (setq index (imenu-example--name-and-position)) | |
4191 (if (eq fchar ?p) nil | |
4192 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
4193 (set-text-properties 0 (length name) nil name) | |
4194 (cond ((string-match "[:']" name) | |
4195 (setq meth t)) | |
4196 ((> p end-range) nil) | |
4197 (t | |
4198 (setq name (concat package name) meth t)))) | |
4199 (setcar index name) | |
4200 (if (eq fchar ?p) | |
4201 (push index index-pack-alist) | |
4202 (push index index-alist)) | |
4203 (if meth (push index index-meth-alist)) | |
4204 (push index index-unsorted-alist))) | |
4205 ((match-beginning 5) ; Pod section | |
4206 ;; (beginning-of-line) | |
4207 (setq index (imenu-example--name-and-position) | |
4208 name (buffer-substring (match-beginning 6) (match-end 6))) | |
4209 (set-text-properties 0 (length name) nil name) | |
4210 (if (eq (char-after (match-beginning 5)) ?2) | |
4211 (setq name (concat " " name))) | |
4212 (setcar index name) | |
4213 (setq index1 (cons (concat "=" name) (cdr index))) | |
4214 (push index index-pod-alist) | |
4215 (push index1 index-unsorted-alist))))) | |
4216 (or noninteractive | |
4217 (imenu-progress-message prev-pos 100)) | |
4218 (setq index-alist | |
4219 (if (default-value 'imenu-sort-function) | |
4220 (sort index-alist (default-value 'imenu-sort-function)) | |
4221 (nreverse index-alist))) | |
4222 (and index-pod-alist | |
4223 (push (cons "+POD headers+..." | |
4224 (nreverse index-pod-alist)) | |
4225 index-alist)) | |
4226 (and (or index-pack-alist index-meth-alist) | |
4227 (let ((lst index-pack-alist) hier-list pack elt group name) | |
4228 ;; Remove "package ", reverse and uniquify. | |
4229 (while lst | |
4230 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8)) | |
4231 (if (assoc name hier-list) nil | |
4232 (setq hier-list (cons (cons name (cdr elt)) hier-list)))) | |
4233 (setq lst index-meth-alist) | |
4234 (while lst | |
4235 (setq elt (car lst) lst (cdr lst)) | |
4236 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt)) | |
4237 (setq pack (substring (car elt) 0 (match-beginning 0))) | |
4238 (if (setq group (assoc pack hier-list)) | |
4239 (if (listp (cdr group)) | |
4240 ;; Have some functions already | |
4241 (setcdr group | |
4242 (cons (cons (substring | |
4243 (car elt) | |
4244 (+ 2 (match-beginning 0))) | |
4245 (cdr elt)) | |
4246 (cdr group))) | |
4247 (setcdr group (list (cons (substring | |
4248 (car elt) | |
4249 (+ 2 (match-beginning 0))) | |
4250 (cdr elt))))) | |
4251 (setq hier-list | |
4252 (cons (cons pack | |
4253 (list (cons (substring | |
4254 (car elt) | |
4255 (+ 2 (match-beginning 0))) | |
4256 (cdr elt)))) | |
4257 hier-list)))))) | |
4258 (push (cons "+Hierarchy+..." | |
4259 hier-list) | |
4260 index-alist))) | |
4261 (and index-pack-alist | |
4262 (push (cons "+Packages+..." | |
4263 (nreverse index-pack-alist)) | |
4264 index-alist)) | |
4265 (and (or index-pack-alist index-pod-alist | |
4266 (default-value 'imenu-sort-function)) | |
4267 index-unsorted-alist | |
4268 (push (cons "+Unsorted List+..." | |
4269 (nreverse index-unsorted-alist)) | |
4270 index-alist)) | |
4271 (cperl-imenu-addback index-alist))) | |
4272 | |
4273 (defvar cperl-compilation-error-regexp-alist | |
4274 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORK). | |
4275 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]" | |
4276 2 3)) | |
4277 "Alist that specifies how to match errors in perl output.") | |
4278 | |
4279 (if (fboundp 'eval-after-load) | |
4280 (eval-after-load | |
4281 "mode-compile" | |
4282 '(setq perl-compilation-error-regexp-alist | |
4283 cperl-compilation-error-regexp-alist))) | |
4284 | |
4285 | |
4286 (defun cperl-windowed-init () | |
4287 "Initialization under windowed version." | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4288 (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
|
4289 ;; Need to init anyway: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4290 (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
|
4291 (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
|
4292 (function |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4293 (lambda () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4294 (if (or |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4295 (eq major-mode 'perl-mode) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4296 (eq major-mode 'cperl-mode)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4297 (progn |
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 (if (fboundp 'eval-after-load) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4300 (eval-after-load |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4301 "ps-print" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4302 '(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
|
4303 |
31821 | 4304 (defvar perl-font-lock-keywords-1 nil |
4305 "Additional expressions to highlight in Perl mode. Minimal set.") | |
4306 (defvar perl-font-lock-keywords nil | |
4307 "Additional expressions to highlight in Perl mode. Default set.") | |
4308 (defvar perl-font-lock-keywords-2 nil | |
4309 "Additional expressions to highlight in Perl mode. Maximal set") | |
4310 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4311 (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
|
4312 (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
|
4313 perl-font-lock-keywords) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4314 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4315 (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
|
4316 (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
|
4317 perl-font-lock-keywords-1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4318 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4319 (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
|
4320 (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
|
4321 perl-font-lock-keywords-2) |
20323 | 4322 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4323 (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
|
4324 ;; 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
|
4325 (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
|
4326 (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
|
4327 "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
|
4328 ;;(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
|
4329 )) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4330 |
20323 | 4331 (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
|
4332 (condition-case errs |
20323 | 4333 (progn |
4334 (require 'font-lock) | |
4335 (and (fboundp 'font-lock-fontify-anchored-keywords) | |
4336 (featurep 'font-lock-extra) | |
4337 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'.")) | |
4338 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored) | |
4339 (if (fboundp 'font-lock-fontify-anchored-keywords) | |
4340 (setq font-lock-anchored t)) | |
4341 (setq | |
4342 t-font-lock-keywords | |
4343 (list | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4344 (list "[ \t]+$" 0 cperl-invalid-face t) |
20323 | 4345 (cons |
4346 (concat | |
4347 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4348 (mapconcat | |
4349 'identity | |
4350 '("if" "until" "while" "elsif" "else" "unless" "for" | |
4351 "foreach" "continue" "exit" "die" "last" "goto" "next" | |
4352 "redo" "return" "local" "exec" "sub" "do" "dump" "use" | |
4353 "require" "package" "eval" "my" "BEGIN" "END") | |
4354 "\\|") ; Flow control | |
4355 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]" | |
4356 ; In what follows we use `type' style | |
4357 ; for overwritable builtins | |
4358 (list | |
4359 (concat | |
4360 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4361 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm" | |
4362 ;; "and" "atan2" "bind" "binmode" "bless" "caller" | |
4363 ;; "chdir" "chmod" "chown" "chr" "chroot" "close" | |
4364 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt" | |
4365 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent" | |
4366 ;; "endhostent" "endnetent" "endprotoent" "endpwent" | |
4367 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl" | |
4368 ;; "fileno" "flock" "fork" "formline" "ge" "getc" | |
4369 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr" | |
4370 ;; "gethostbyname" "gethostent" "getlogin" | |
4371 ;; "getnetbyaddr" "getnetbyname" "getnetent" | |
4372 ;; "getpeername" "getpgrp" "getppid" "getpriority" | |
4373 ;; "getprotobyname" "getprotobynumber" "getprotoent" | |
4374 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname" | |
4375 ;; "getservbyport" "getservent" "getsockname" | |
4376 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int" | |
4377 ;; "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
|
4378 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt" |
20323 | 4379 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne" |
4380 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe" | |
4381 ;; "quotemeta" "rand" "read" "readdir" "readline" | |
4382 ;; "readlink" "readpipe" "recv" "ref" "rename" "require" | |
4383 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek" | |
4384 ;; "seekdir" "select" "semctl" "semget" "semop" "send" | |
4385 ;; "setgrent" "sethostent" "setnetent" "setpgrp" | |
4386 ;; "setpriority" "setprotoent" "setpwent" "setservent" | |
4387 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite" | |
4388 ;; "shutdown" "sin" "sleep" "socket" "socketpair" | |
4389 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink" | |
4390 ;; "syscall" "sysread" "system" "syswrite" "tell" | |
4391 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst" | |
4392 ;; "umask" "unlink" "unpack" "utime" "values" "vec" | |
4393 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor" | |
4394 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|" | |
4395 "b\\(in\\(d\\|mode\\)\\|less\\)\\|" | |
4396 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|" | |
4397 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|" | |
4398 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|" | |
4399 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|" | |
4400 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|" | |
4401 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|" | |
4402 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|" | |
4403 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w" | |
4404 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|" | |
4405 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|" | |
4406 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|" | |
4407 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|" | |
4408 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|" | |
4409 "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
|
4410 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|" |
20323 | 4411 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|" |
4412 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|" | |
4413 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin" | |
4414 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name" | |
4415 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r" | |
4416 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|" | |
4417 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|" | |
4418 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|" | |
4419 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|tem\\|write\\)\\|" | |
4420 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|" | |
4421 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|" | |
4422 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|" | |
4423 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|" | |
4424 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)" | |
4425 "\\)\\>") 2 'font-lock-type-face) | |
4426 ;; In what follows we use `other' style | |
4427 ;; for nonoverwritable builtins | |
4428 ;; Somehow 's', 'm' are not auto-generated??? | |
4429 (list | |
4430 (concat | |
4431 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
4432 ;; "AUTOLOAD" "BEGIN" "DESTROY" "END" "__END__" "chomp" | |
4433 ;; "chop" "defined" "delete" "do" "each" "else" "elsif" | |
4434 ;; "eval" "exists" "for" "foreach" "format" "goto" | |
4435 ;; "grep" "if" "keys" "last" "local" "map" "my" "next" | |
4436 ;; "no" "package" "pop" "pos" "print" "printf" "push" | |
4437 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift" | |
4438 ;; "sort" "splice" "split" "study" "sub" "tie" "tr" | |
4439 ;; "undef" "unless" "unshift" "untie" "until" "use" | |
4440 ;; "while" "y" | |
4441 "AUTOLOAD\\|BEGIN\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|" | |
4442 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|" | |
4443 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|if\\|keys\\|" | |
4444 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|" | |
4445 "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
|
4446 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|" |
20323 | 4447 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|" |
4448 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|" | |
4449 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually | |
4450 "\\|[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
|
4451 "\\)\\>") 2 'cperl-nonoverridable-face) |
20323 | 4452 ;; (mapconcat 'identity |
4453 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if" | |
4454 ;; "#include" "#define" "#undef") | |
4455 ;; "\\|") | |
4456 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0 | |
4457 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
|
4458 '("\\<sub[ \t]+\\([^ \t{;()]+\\)[ \t]*\\(([^()]*)[ \t]*\\)?[#{\n]" 1 |
20323 | 4459 font-lock-function-name-face) |
4460 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B; | |
4461 2 font-lock-function-name-face) | |
4462 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$" | |
4463 1 font-lock-function-name-face) | |
4464 (cond ((featurep 'font-lock-extra) | |
4465 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4466 (2 font-lock-string-face t) | |
4467 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef} | |
4468 (font-lock-anchored | |
4469 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4470 (2 font-lock-string-face t) | |
4471 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4472 nil nil | |
4473 (1 font-lock-string-face t)))) | |
4474 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
4475 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
|
4476 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1 |
20323 | 4477 font-lock-string-face t) |
4478 '("^[ \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
|
4479 font-lock-constant-face) ; labels |
20323 | 4480 '("\\<\\(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
|
4481 2 font-lock-constant-face) |
20323 | 4482 (cond ((featurep 'font-lock-extra) |
4483 '("^[ \t]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
4484 (3 font-lock-variable-name-face) | |
4485 (4 '(another 4 nil | |
4486 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
4487 (1 font-lock-variable-name-face) | |
4488 (2 '(restart 2 nil) nil t))) | |
4489 nil t))) ; local variables, multiple | |
4490 (font-lock-anchored | |
4491 '("^[ \t{}]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4492 (3 font-lock-variable-name-face) | |
4493 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4494 nil nil | |
4495 (1 font-lock-variable-name-face)))) | |
4496 (t '("^[ \t{}]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" | |
4497 3 font-lock-variable-name-face))) | |
4498 '("\\<for\\(each\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*(" | |
4499 2 font-lock-variable-name-face))) | |
4500 (setq | |
4501 t-font-lock-keywords-1 | |
4502 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock | |
4503 (not cperl-xemacs-p) ; not yet as of XEmacs 19.12 | |
4504 '( | |
4505 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1 | |
4506 (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
|
4507 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4508 cperl-array-face) |
20323 | 4509 t) ; arrays and hashes |
4510 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)" | |
4511 1 | |
4512 (if (= (- (match-end 2) (match-beginning 2)) 1) | |
4513 (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
|
4514 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4515 cperl-array-face) ; arrays and hashes |
20323 | 4516 font-lock-variable-name-face) ; Just to put something |
4517 t) | |
4518 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2") | |
4519 ;;; Too much noise from \s* @s[ and friends | |
4520 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)" | |
4521 ;;(3 font-lock-function-name-face t t) | |
4522 ;;(4 | |
4523 ;; (if (cperl-slash-is-regexp) | |
4524 ;; font-lock-function-name-face 'default) nil t)) | |
4525 ))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4526 (setq perl-font-lock-keywords-1 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4527 (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
|
4528 (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
|
4529 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
|
4530 t-font-lock-keywords) |
20323 | 4531 perl-font-lock-keywords perl-font-lock-keywords-1 |
4532 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
|
4533 perl-font-lock-keywords-1 |
20323 | 4534 t-font-lock-keywords-1))) |
4535 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init)) | |
4536 (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
|
4537 (eval ; Avoid a warning |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4538 '(font-lock-require-faces |
20323 | 4539 (list |
4540 ;; Color-light Color-dark Gray-light Gray-dark Mono | |
4541 (list 'font-lock-comment-face | |
4542 ["Firebrick" "OrangeRed" "DimGray" "Gray80"] | |
4543 nil | |
4544 [nil nil t t t] | |
4545 [nil nil t t t] | |
4546 nil) | |
4547 (list 'font-lock-string-face | |
4548 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"] | |
4549 nil | |
4550 nil | |
4551 [nil nil t t t] | |
4552 nil) | |
4553 (list 'font-lock-function-name-face | |
4554 (vector | |
4555 "Blue" "LightSkyBlue" "Gray50" "LightGray" | |
4556 (cdr (assq 'background-color ; if mono | |
4557 (frame-parameters)))) | |
4558 (vector | |
4559 nil nil nil nil | |
4560 (cdr (assq 'foreground-color ; if mono | |
4561 (frame-parameters)))) | |
4562 [nil nil t t t] | |
4563 nil | |
4564 nil) | |
4565 (list 'font-lock-variable-name-face | |
4566 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"] | |
4567 nil | |
4568 [nil nil t t t] | |
4569 [nil nil t t t] | |
4570 nil) | |
4571 (list 'font-lock-type-face | |
4572 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"] | |
4573 nil | |
4574 [nil nil t t t] | |
4575 nil | |
4576 [nil nil t t t] | |
4577 ) | |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
4578 (list 'font-lock-constant-face |
20323 | 4579 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"] |
4580 nil | |
4581 [nil nil t t t] | |
4582 nil | |
4583 [nil nil t t t] | |
4584 ) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4585 (list 'cperl-nonoverridable-face |
20323 | 4586 ["chartreuse3" ("orchid1" "orange") |
4587 nil "Gray80"] | |
4588 [nil nil "gray90"] | |
4589 [nil nil nil t t] | |
4590 [nil nil t t] | |
4591 [nil nil t t t] | |
4592 ) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4593 (list 'cperl-array-face |
20323 | 4594 ["blue" "yellow" nil "Gray80"] |
4595 ["lightyellow2" ("navy" "os2blue" "darkgreen") | |
4596 "gray90"] | |
4597 t | |
4598 nil | |
4599 nil) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4600 (list 'cperl-hash-face |
20323 | 4601 ["red" "red" nil "Gray80"] |
4602 ["lightyellow2" ("navy" "os2blue" "darkgreen") | |
4603 "gray90"] | |
4604 t | |
4605 t | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4606 nil)))) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4607 ;; Do it the dull way, without choose-color |
20323 | 4608 (defvar cperl-guessed-background nil |
4609 "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
|
4610 ;; (or (fboundp 'x-color-defined-p) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4611 ;; (defalias 'x-color-defined-p |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4612 ;; (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
|
4613 ;; ;; XEmacs >= 19.12 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4614 ;; ((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
|
4615 ;; ;; XEmacs 19.11 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4616 ;; (t 'x-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
|
4617 (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
|
4618 "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
|
4619 (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
|
4620 "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
|
4621 (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
|
4622 "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
|
4623 (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
|
4624 "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
|
4625 (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
|
4626 "Face for comments") |
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-function-name-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 function names") |
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-hash-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 hashes") |
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 cperl-array-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 arrays") |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4633 ;;(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
|
4634 ;;(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
|
4635 ;;(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
|
4636 ;; (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
|
4637 ;; '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
|
4638 ;; "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
|
4639 ;;(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
|
4640 ;; (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
|
4641 ;; 'cperl-nonoverridable-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4642 ;; "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
|
4643 ;;(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
|
4644 ;; (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
|
4645 ;; (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
|
4646 ;; '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
|
4647 ;; "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
|
4648 ;; (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
|
4649 ;; (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
|
4650 ;; '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
|
4651 ;; "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
|
4652 ;; (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
|
4653 ;; (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
|
4654 ;; '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
|
4655 ;; "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
|
4656 (if (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4657 (not (cperl-is-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
|
4658 (cperl-is-face '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
|
4659 (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
|
4660 (if (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4661 (not (cperl-is-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
|
4662 (cperl-is-face '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
|
4663 (copy-face '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
|
4664 'cperl-hash-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4665 (if (and |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4666 (not (cperl-is-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
|
4667 (cperl-is-face 'font-lock-other-type-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4668 (copy-face 'font-lock-other-type-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4669 'cperl-nonoverridable-face)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4670 ;;(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
|
4671 ;; (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
|
4672 ;; 'cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4673 ;; "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
|
4674 ;;(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
|
4675 ;; (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
|
4676 ;; 'cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4677 ;; "Face to use for arrays.")) |
20323 | 4678 ;; Here we try to guess background |
4679 (let ((background | |
4680 (if (boundp 'font-lock-background-mode) | |
4681 font-lock-background-mode | |
4682 'light)) | |
4683 (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
|
4684 ;; cperl-is-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4685 ) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4686 ;;;; (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
|
4687 ;;;; (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
|
4688 ;;;; (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
|
4689 ;;;; (face-list |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4690 ;;;; (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
|
4691 ;;;; (t |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4692 ;;;; (function (lambda (face) (boundp face)))))) |
20323 | 4693 (defvar cperl-guessed-background |
4694 (if (and (boundp 'font-lock-display-type) | |
4695 (eq font-lock-display-type 'grayscale)) | |
4696 'gray | |
4697 background) | |
4698 "Background as guessed by CPerl mode") | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4699 (if (and |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4700 (not (cperl-is-face 'font-lock-constant-face)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4701 (cperl-is-face 'font-lock-reference-face)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4702 (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
|
4703 (if (cperl-is-face 'font-lock-type-face) nil |
20323 | 4704 (copy-face 'default 'font-lock-type-face) |
4705 (cond | |
4706 ((eq background 'light) | |
4707 (set-face-foreground 'font-lock-type-face | |
4708 (if (x-color-defined-p "seagreen") | |
4709 "seagreen" | |
4710 "sea green"))) | |
4711 ((eq background 'dark) | |
4712 (set-face-foreground 'font-lock-type-face | |
4713 (if (x-color-defined-p "os2pink") | |
4714 "os2pink" | |
4715 "pink"))) | |
4716 (t | |
4717 (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
|
4718 (if (cperl-is-face 'cperl-nonoverridable-face) |
20323 | 4719 nil |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4720 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face) |
20323 | 4721 (cond |
4722 ((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
|
4723 (set-face-foreground 'cperl-nonoverridable-face |
20323 | 4724 (if (x-color-defined-p "chartreuse3") |
4725 "chartreuse3" | |
4726 "chartreuse"))) | |
4727 ((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
|
4728 (set-face-foreground 'cperl-nonoverridable-face |
20323 | 4729 (if (x-color-defined-p "orchid1") |
4730 "orchid1" | |
4731 "orange"))))) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4732 ;;; (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
|
4733 ;;; (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
|
4734 ;;; (cond |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4735 ;;; ((eq background 'light) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4736 ;;; (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
|
4737 ;;; (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
|
4738 ;;; "lightyellow2" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4739 ;;; (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
|
4740 ;;; "lightyellow" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4741 ;;; "light yellow")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4742 ;;; ((eq background 'dark) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4743 ;;; (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
|
4744 ;;; (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
|
4745 ;;; "navy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4746 ;;; (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
|
4747 ;;; "darkgreen" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4748 ;;; "dark green")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4749 ;;; (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
|
4750 ;;; (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
|
4751 ;;; (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
|
4752 ;;; (cond |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4753 ;;; ((eq background 'light) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4754 ;;; (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
|
4755 ;;; (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
|
4756 ;;; "lightyellow2" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4757 ;;; "lightyellow"))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4758 ;;; ((eq background 'dark) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4759 ;;; (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
|
4760 ;;; (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
|
4761 ;;; "navy" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4762 ;;; (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
|
4763 ;;; "darkgreen" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4764 ;;; "dark green")))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4765 ;;; (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
|
4766 (if (cperl-is-face 'font-lock-variable-name-face) nil |
20323 | 4767 (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
|
4768 (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
|
4769 (copy-face 'italic 'font-lock-constant-face)))) |
20323 | 4770 (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
|
4771 (error (message "cperl-init-faces (ignored): %s" errs)))) |
20323 | 4772 |
4773 | |
4774 (defun cperl-ps-print-init () | |
4775 "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
|
4776 (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
|
4777 '(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
|
4778 ;; 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
|
4779 ;; 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
|
4780 (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
|
4781 cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4782 ps-bold-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4783 ps-italic-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4784 ;; 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
|
4785 (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
|
4786 cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4787 ps-italic-faces) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4788 ps-underlined-faces |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4789 ;; 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
|
4790 (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
|
4791 cperl-hash-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4792 underline |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4793 cperl-nonoverridable-face) |
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 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4796 (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
|
4797 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4798 (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
|
4799 "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
|
4800 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
|
4801 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
|
4802 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4803 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
|
4804 (interactive) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4805 (or file |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4806 (setq file (read-from-minibuffer |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4807 "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
|
4808 (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
|
4809 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
|
4810 (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
|
4811 (setq file nil)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4812 (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
|
4813 (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
|
4814 (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
|
4815 (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
|
4816 (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
|
4817 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4818 ;;; (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
|
4819 ;;; "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
|
4820 ;;; ;; 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
|
4821 ;;; (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
|
4822 ;;; (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
|
4823 ;;; (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
|
4824 ;;; (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
|
4825 ;;; (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
|
4826 ;;; cperl-array-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4827 ;;; 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
|
4828 ;;; 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
|
4829 ;;; 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
|
4830 ;;; font-lock-reference-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4831 ;;; 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
|
4832 ;;; cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4833 ;;; ps-bold-faces)) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4834 ;;; (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
|
4835 ;;; (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
|
4836 ;;; 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
|
4837 ;;; font-lock-reference-face |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4838 ;;; 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
|
4839 ;;; cperl-hash-face) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4840 ;;; 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 ;;; (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
|
4842 ;;; (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
|
4843 ;;; cperl-array-face |
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 ;;; 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
|
4847 ;;; 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 ;;; (cons 'font-lock-type-face ps-underlined-faces)) |
20323 | 4849 |
4850 | |
4851 (if (cperl-enable-font-lock) (cperl-windowed-init)) | |
4852 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4853 (defconst cperl-styles-entries |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4854 '(cperl-indent-level cperl-brace-offset cperl-continued-brace-offset |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4855 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
|
4856 cperl-merge-trailing-else |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4857 cperl-continued-statement-offset)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4858 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4859 (defconst cperl-style-alist |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4860 '(("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
|
4861 (cperl-indent-level . 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4862 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4863 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4864 (cperl-label-offset . -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4865 (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
|
4866 (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
|
4867 (cperl-continued-statement-offset . 2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4868 ("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
|
4869 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4870 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4871 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4872 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4873 (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
|
4874 (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
|
4875 (cperl-continued-statement-offset . 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4876 ("GNU" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4877 (cperl-indent-level . 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4878 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4879 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4880 (cperl-label-offset . -2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4881 (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
|
4882 (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
|
4883 (cperl-continued-statement-offset . 2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4884 ("K&R" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4885 (cperl-indent-level . 5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4886 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4887 (cperl-continued-brace-offset . -5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4888 (cperl-label-offset . -5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4889 ;;(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
|
4890 (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
|
4891 (cperl-continued-statement-offset . 5)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4892 ("BSD" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4893 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4894 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4895 (cperl-continued-brace-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4896 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4897 ;;(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
|
4898 (cperl-continued-statement-offset . 4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4899 ("C++" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4900 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4901 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4902 (cperl-continued-brace-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4903 (cperl-label-offset . -4) |
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) |
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
4905 (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
|
4906 (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
|
4907 ("Current") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4908 ("Whitesmith" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4909 (cperl-indent-level . 4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4910 (cperl-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4911 (cperl-continued-brace-offset . 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4912 (cperl-label-offset . -4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4913 ;;(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
|
4914 (cperl-continued-statement-offset . 4))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4915 "(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
|
4916 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
|
4917 |
20323 | 4918 (defun cperl-set-style (style) |
4919 "Set CPerl-mode variables to use one of several different indentation styles. | |
4920 The arguments are a string representing the desired style. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4921 The list of styles is in `cperl-style-alist', available styles |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4922 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
|
4923 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4924 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
|
4925 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
|
4926 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4927 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
|
4928 side-effect of memorizing only." |
20323 | 4929 (interactive |
4930 (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
|
4931 cperl-style-alist))) |
20323 | 4932 (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
|
4933 (or cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4934 (setq cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4935 (mapcar (function |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4936 (lambda (name) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4937 (cons name (eval name)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4938 cperl-styles-entries))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4939 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym) |
20323 | 4940 (while style |
4941 (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
|
4942 (set (car setting) (cdr setting))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4943 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4944 (defun cperl-set-style-back () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4945 "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
|
4946 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4947 (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
|
4948 (let (setting) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4949 (while cperl-old-style |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4950 (setq setting (car cperl-old-style) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4951 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
|
4952 (set (car setting) (cdr setting))))) |
20323 | 4953 |
4954 (defun cperl-check-syntax () | |
4955 (interactive) | |
4956 (require 'mode-compile) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4957 (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
|
4958 (eval '(mode-compile)))) ; Avoid a warning |
20323 | 4959 |
4960 (defun cperl-info-buffer (type) | |
4961 ;; Returns buffer with documentation. Creates if missing. | |
4962 ;; If TYPE, this vars buffer. | |
4963 ;; Special care is taken to not stomp over an existing info buffer | |
4964 (let* ((bname (if type "*info-perl-var*" "*info-perl*")) | |
4965 (info (get-buffer bname)) | |
4966 (oldbuf (get-buffer "*info*"))) | |
4967 (if info info | |
4968 (save-window-excursion | |
4969 ;; Get Info running | |
4970 (require 'info) | |
4971 (cond (oldbuf | |
4972 (set-buffer oldbuf) | |
4973 (rename-buffer "*info-perl-tmp*"))) | |
4974 (save-window-excursion | |
4975 (info)) | |
4976 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc")) | |
4977 (set-buffer "*info*") | |
4978 (rename-buffer bname) | |
4979 (cond (oldbuf | |
4980 (set-buffer "*info-perl-tmp*") | |
4981 (rename-buffer "*info*") | |
4982 (set-buffer bname))) | |
4983 (make-variable-buffer-local 'window-min-height) | |
4984 (setq window-min-height 2) | |
4985 (current-buffer))))) | |
4986 | |
4987 (defun cperl-word-at-point (&optional p) | |
4988 ;; Returns the word at point or at P. | |
4989 (save-excursion | |
4990 (if p (goto-char p)) | |
4991 (or (cperl-word-at-point-hard) | |
4992 (progn | |
4993 (require 'etags) | |
4994 (funcall (or (and (boundp 'find-tag-default-function) | |
4995 find-tag-default-function) | |
4996 (get major-mode 'find-tag-default-function) | |
4997 ;; XEmacs 19.12 has `find-tag-default-hook'; it is | |
4998 ;; automatically used within `find-tag-default': | |
4999 'find-tag-default)))))) | |
5000 | |
5001 (defun cperl-info-on-command (command) | |
5002 "Shows documentation for Perl command in other window. | |
5003 If perl-info buffer is shown in some frame, uses this frame. | |
5004 Customized by setting variables `cperl-shrink-wrap-info-frame', | |
5005 `cperl-max-help-size'." | |
5006 (interactive | |
5007 (let* ((default (cperl-word-at-point)) | |
5008 (read (read-string | |
5009 (format "Find doc for Perl function (default %s): " | |
5010 default)))) | |
5011 (list (if (equal read "") | |
5012 default | |
5013 read)))) | |
5014 | |
5015 (let ((buffer (current-buffer)) | |
5016 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///" | |
5017 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner | |
5018 max-height char-height buf-list) | |
5019 (if (string-match "^-[a-zA-Z]$" command) | |
5020 (setq cmd-desc "^-X[ \t\n]")) | |
5021 (setq isvar (string-match "^[$@%]" command) | |
5022 buf (cperl-info-buffer isvar) | |
5023 iniwin (selected-window) | |
5024 fr1 (window-frame iniwin)) | |
5025 (set-buffer buf) | |
5026 (beginning-of-buffer) | |
5027 (or isvar | |
5028 (progn (re-search-forward "^-X[ \t\n]") | |
5029 (forward-line -1))) | |
5030 (if (re-search-forward cmd-desc nil t) | |
5031 (progn | |
5032 ;; Go back to beginning of the group (ex, for qq) | |
5033 (if (re-search-backward "^[ \t\n\f]") | |
5034 (forward-line 1)) | |
5035 (beginning-of-line) | |
5036 ;; Get some of | |
5037 (setq pos (point) | |
5038 buf-list (list buf "*info-perl-var*" "*info-perl*")) | |
5039 (while (and (not win) buf-list) | |
5040 (setq win (get-buffer-window (car buf-list) t)) | |
5041 (setq buf-list (cdr buf-list))) | |
5042 (or (not win) | |
5043 (eq (window-buffer win) buf) | |
5044 (set-window-buffer win buf)) | |
5045 (and win (setq fr2 (window-frame win))) | |
5046 (if (or (not fr2) (eq fr1 fr2)) | |
5047 (pop-to-buffer buf) | |
5048 (special-display-popup-frame buf) ; Make it visible | |
5049 (select-window win)) | |
5050 (goto-char pos) ; Needed (?!). | |
5051 ;; Resize | |
5052 (setq iniheight (window-height) | |
5053 frheight (frame-height) | |
5054 not-loner (< iniheight (1- frheight))) ; Are not alone | |
5055 (cond ((if not-loner cperl-max-help-size | |
5056 cperl-shrink-wrap-info-frame) | |
5057 (setq height | |
5058 (+ 2 | |
5059 (count-lines | |
5060 pos | |
5061 (save-excursion | |
5062 (if (re-search-forward | |
5063 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t) | |
5064 (match-beginning 0) (point-max))))) | |
5065 max-height | |
5066 (if not-loner | |
5067 (/ (* (- frheight 3) cperl-max-help-size) 100) | |
5068 (setq char-height (frame-char-height)) | |
5069 ;; Non-functioning under OS/2: | |
5070 (if (eq char-height 1) (setq char-height 18)) | |
5071 ;; Title, menubar, + 2 for slack | |
5072 (- (/ (x-display-pixel-height) char-height) 4) | |
5073 )) | |
5074 (if (> height max-height) (setq height max-height)) | |
5075 ;;(message "was %s doing %s" iniheight height) | |
5076 (if not-loner | |
5077 (enlarge-window (- height iniheight)) | |
5078 (set-frame-height (window-frame win) (1+ height))))) | |
5079 (set-window-start (selected-window) pos)) | |
5080 (message "No entry for %s found." command)) | |
5081 ;;(pop-to-buffer buffer) | |
5082 (select-window iniwin))) | |
5083 | |
5084 (defun cperl-info-on-current-command () | |
5085 "Shows documentation for Perl command at point in other window." | |
5086 (interactive) | |
5087 (cperl-info-on-command (cperl-word-at-point))) | |
5088 | |
5089 (defun cperl-imenu-info-imenu-search () | |
5090 (if (looking-at "^-X[ \t\n]") nil | |
5091 (re-search-backward | |
5092 "^\n\\([-a-zA-Z_]+\\)[ \t\n]") | |
5093 (forward-line 1))) | |
5094 | |
5095 (defun cperl-imenu-info-imenu-name () | |
5096 (buffer-substring | |
5097 (match-beginning 1) (match-end 1))) | |
5098 | |
5099 (defun cperl-imenu-on-info () | |
5100 (interactive) | |
5101 (let* ((buffer (current-buffer)) | |
5102 imenu-create-index-function | |
5103 imenu-prev-index-position-function | |
5104 imenu-extract-index-name-function | |
5105 (index-item (save-restriction | |
5106 (save-window-excursion | |
5107 (set-buffer (cperl-info-buffer nil)) | |
5108 (setq imenu-create-index-function | |
5109 'imenu-default-create-index-function | |
5110 imenu-prev-index-position-function | |
5111 'cperl-imenu-info-imenu-search | |
5112 imenu-extract-index-name-function | |
5113 'cperl-imenu-info-imenu-name) | |
5114 (imenu-choose-buffer-index))))) | |
5115 (and index-item | |
5116 (progn | |
5117 (push-mark) | |
5118 (pop-to-buffer "*info-perl*") | |
5119 (cond | |
5120 ((markerp (cdr index-item)) | |
5121 (goto-char (marker-position (cdr index-item)))) | |
5122 (t | |
5123 (goto-char (cdr index-item)))) | |
5124 (set-window-start (selected-window) (point)) | |
5125 (pop-to-buffer buffer))))) | |
5126 | |
5127 (defun cperl-lineup (beg end &optional step minshift) | |
5128 "Lineup construction in a region. | |
5129 Beginning of region should be at the start of a construction. | |
5130 All first occurrences of this construction in the lines that are | |
5131 partially contained in the region are lined up at the same column. | |
5132 | |
5133 MINSHIFT is the minimal amount of space to insert before the construction. | |
5134 STEP is the tabwidth to position constructions. | |
5135 If STEP is `nil', `cperl-lineup-step' will be used | |
5136 \(or `cperl-indent-level', if `cperl-lineup-step' is `nil'). | |
5137 Will not move the position at the start to the left." | |
5138 (interactive "r") | |
5139 (let (search col tcol seen b e) | |
5140 (save-excursion | |
5141 (goto-char end) | |
5142 (end-of-line) | |
5143 (setq end (point-marker)) | |
5144 (goto-char beg) | |
5145 (skip-chars-forward " \t\f") | |
5146 (setq beg (point-marker)) | |
5147 (indent-region beg end nil) | |
5148 (goto-char beg) | |
5149 (setq col (current-column)) | |
5150 (if (looking-at "[a-zA-Z0-9_]") | |
5151 (if (looking-at "\\<[a-zA-Z0-9_]+\\>") | |
5152 (setq search | |
5153 (concat "\\<" | |
5154 (regexp-quote | |
5155 (buffer-substring (match-beginning 0) | |
5156 (match-end 0))) "\\>")) | |
5157 (error "Cannot line up in a middle of the word")) | |
5158 (if (looking-at "$") | |
5159 (error "Cannot line up end of line")) | |
5160 (setq search (regexp-quote (char-to-string (following-char))))) | |
5161 (setq step (or step cperl-lineup-step cperl-indent-level)) | |
5162 (or minshift (setq minshift 1)) | |
5163 (while (progn | |
5164 (beginning-of-line 2) | |
5165 (and (< (point) end) | |
5166 (re-search-forward search end t) | |
5167 (goto-char (match-beginning 0)))) | |
5168 (setq tcol (current-column) seen t) | |
5169 (if (> tcol col) (setq col tcol))) | |
5170 (or seen | |
5171 (error "The construction to line up occurred only once")) | |
5172 (goto-char beg) | |
5173 (setq col (+ col minshift)) | |
5174 (if (/= (% col step) 0) (setq step (* step (1+ (/ col step))))) | |
5175 (while | |
5176 (progn | |
5177 (setq e (point)) | |
5178 (skip-chars-backward " \t") | |
5179 (delete-region (point) e) | |
5180 (indent-to-column col); (make-string (- col (current-column)) ?\ )) | |
5181 (beginning-of-line 2) | |
5182 (and (< (point) end) | |
5183 (re-search-forward search end t) | |
5184 (goto-char (match-beginning 0)))))))) ; No body | |
5185 | |
5186 (defun cperl-etags (&optional add all files) | |
5187 "Run etags with appropriate options for Perl files. | |
5188 If optional argument ALL is `recursive', will process Perl files | |
5189 in subdirectories too." | |
5190 (interactive) | |
5191 (let ((cmd "etags") | |
5192 (args '("-l" "none" "-r" "/\\<\\(package\\|sub\\)[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([{#]\\|$\\)\\)/\\4/")) | |
5193 res) | |
5194 (if add (setq args (cons "-a" args))) | |
5195 (or files (setq files (list buffer-file-name))) | |
5196 (cond | |
5197 ((eq all 'recursive) | |
5198 ;;(error "Not implemented: recursive") | |
5199 (setq args (append (list "-e" | |
5200 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/} | |
5201 use File::Find; | |
5202 find(\\&wanted, '.'); | |
5203 exec @ARGV;" | |
5204 cmd) args) | |
5205 cmd "perl")) | |
5206 (all | |
5207 ;;(error "Not implemented: all") | |
5208 (setq args (append (list "-e" | |
5209 "push @ARGV, <*.PL *.pl *.pm>; | |
5210 exec @ARGV;" | |
5211 cmd) args) | |
5212 cmd "perl")) | |
5213 (t | |
5214 (setq args (append args files)))) | |
5215 (setq res (apply 'call-process cmd nil nil nil args)) | |
5216 (or (eq res 0) | |
5217 (message "etags returned \"%s\"" res)))) | |
5218 | |
5219 (defun cperl-toggle-auto-newline () | |
5220 "Toggle the state of `cperl-auto-newline'." | |
5221 (interactive) | |
5222 (setq cperl-auto-newline (not cperl-auto-newline)) | |
5223 (message "Newlines will %sbe auto-inserted now." | |
5224 (if cperl-auto-newline "" "not "))) | |
5225 | |
5226 (defun cperl-toggle-abbrev () | |
5227 "Toggle the state of automatic keyword expansion in CPerl mode." | |
5228 (interactive) | |
5229 (abbrev-mode (if abbrev-mode 0 1)) | |
5230 (message "Perl control structure will %sbe auto-inserted now." | |
5231 (if abbrev-mode "" "not "))) | |
5232 | |
5233 | |
5234 (defun cperl-toggle-electric () | |
5235 "Toggle the state of parentheses doubling in CPerl mode." | |
5236 (interactive) | |
5237 (setq cperl-electric-parens (if (cperl-val 'cperl-electric-parens) 'null t)) | |
5238 (message "Parentheses will %sbe auto-doubled now." | |
5239 (if (cperl-val 'cperl-electric-parens) "" "not "))) | |
5240 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5241 (defun cperl-toggle-autohelp () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5242 "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
|
5243 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
|
5244 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5245 (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
|
5246 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5247 (if cperl-lazy-installed |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5248 (eval '(cperl-lazy-unstall)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5249 (cperl-lazy-install)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5250 (message "Perl help messages will %sbe automatically shown now." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5251 (if cperl-lazy-installed "" "not "))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5252 (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
|
5253 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5254 (defun cperl-toggle-construct-fix () |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5255 "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
|
5256 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5257 (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
|
5258 (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
|
5259 nil |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5260 1)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5261 (message "indent-region/indent-sexp will %sbe automatically fix whitespace." |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5262 (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
|
5263 |
20323 | 5264 ;;;; Tags file creation. |
5265 | |
5266 (defvar cperl-tmp-buffer " *cperl-tmp*") | |
5267 | |
5268 (defun cperl-setup-tmp-buf () | |
5269 (set-buffer (get-buffer-create cperl-tmp-buffer)) | |
5270 (set-syntax-table cperl-mode-syntax-table) | |
5271 (buffer-disable-undo) | |
5272 (auto-fill-mode 0) | |
5273 (if cperl-use-syntax-table-text-property-for-tags | |
5274 (progn | |
5275 (make-variable-buffer-local 'parse-sexp-lookup-properties) | |
5276 ;; Do not introduce variable if not needed, we check it! | |
5277 (set 'parse-sexp-lookup-properties t)))) | |
5278 | |
5279 (defun cperl-xsub-scan () | |
5280 (require 'imenu) | |
5281 (let ((index-alist '()) | |
5282 (prev-pos 0) index index1 name package prefix) | |
5283 (goto-char (point-min)) | |
5284 (if noninteractive | |
5285 (message "Scanning XSUB for index") | |
5286 (imenu-progress-message prev-pos 0)) | |
5287 ;; Search for the function | |
5288 (progn ;;save-match-data | |
5289 (while (re-search-forward | |
5290 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)" | |
5291 nil t) | |
5292 (or noninteractive | |
5293 (imenu-progress-message prev-pos)) | |
5294 (cond | |
5295 ((match-beginning 2) ; SECTION | |
5296 (setq package (buffer-substring (match-beginning 2) (match-end 2))) | |
5297 (goto-char (match-beginning 0)) | |
5298 (skip-chars-forward " \t") | |
5299 (forward-char 1) | |
5300 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>") | |
5301 (setq prefix (buffer-substring (match-beginning 1) (match-end 1))) | |
5302 (setq prefix nil))) | |
5303 ((not package) nil) ; C language section | |
5304 ((match-beginning 3) ; XSUB | |
5305 (goto-char (1+ (match-beginning 3))) | |
5306 (setq index (imenu-example--name-and-position)) | |
5307 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
5308 (if (and prefix (string-match (concat "^" prefix) name)) | |
5309 (setq name (substring name (length prefix)))) | |
5310 (cond ((string-match "::" name) nil) | |
5311 (t | |
5312 (setq index1 (cons (concat package "::" name) (cdr index))) | |
5313 (push index1 index-alist))) | |
5314 (setcar index name) | |
5315 (push index index-alist)) | |
5316 (t ; BOOT: section | |
5317 ;; (beginning-of-line) | |
5318 (setq index (imenu-example--name-and-position)) | |
5319 (setcar index (concat package "::BOOT:")) | |
5320 (push index index-alist))))) | |
5321 (or noninteractive | |
5322 (imenu-progress-message prev-pos 100)) | |
5323 index-alist)) | |
5324 | |
5325 (defun cperl-find-tags (file xs topdir) | |
5326 (let (ind (b (get-buffer cperl-tmp-buffer)) lst elt pos ret rel | |
5327 (cperl-pod-here-fontify nil)) | |
5328 (save-excursion | |
5329 (if b (set-buffer b) | |
5330 (cperl-setup-tmp-buf)) | |
5331 (erase-buffer) | |
5332 (setq file (car (insert-file-contents file))) | |
5333 (message "Scanning file %s ..." file) | |
5334 (if (and cperl-use-syntax-table-text-property-for-tags | |
5335 (not xs)) | |
5336 (condition-case err ; after __END__ may have garbage | |
5337 (cperl-find-pods-heres) | |
5338 (error (message "While scanning for syntax: %s" err)))) | |
5339 (if xs | |
5340 (setq lst (cperl-xsub-scan)) | |
31821 | 5341 (setq ind (cperl-imenu--create-perl-index)) |
20323 | 5342 (setq lst (cdr (assoc "+Unsorted List+..." ind)))) |
5343 (setq lst | |
5344 (mapcar | |
5345 (function | |
5346 (lambda (elt) | |
5347 (cond ((string-match "^[_a-zA-Z]" (car elt)) | |
5348 (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
|
5349 (beginning-of-line) ; pos should be of the start of the line |
20323 | 5350 (list (car elt) |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5351 (point) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5352 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l |
20323 | 5353 (buffer-substring (progn |
5354 (skip-chars-forward | |
5355 ":_a-zA-Z0-9") | |
5356 (or (eolp) (forward-char 1)) | |
5357 (point)) | |
5358 (progn | |
5359 (beginning-of-line) | |
5360 (point)))))))) | |
5361 lst)) | |
5362 (erase-buffer) | |
5363 (while lst | |
5364 (setq elt (car lst) lst (cdr lst)) | |
5365 (if elt | |
5366 (progn | |
5367 (insert (elt elt 3) | |
5368 127 | |
5369 (if (string-match "^package " (car elt)) | |
5370 (substring (car elt) 8) | |
5371 (car elt) ) | |
5372 1 | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5373 (number-to-string (elt elt 2)) ; Line |
20323 | 5374 "," |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5375 (number-to-string (1- (elt elt 1))) ; Char pos 0-based |
20323 | 5376 "\n") |
5377 (if (and (string-match "^[_a-zA-Z]+::" (car elt)) | |
5378 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]" | |
5379 (elt elt 3))) | |
5380 ;; Need to insert the name without package as well | |
5381 (setq lst (cons (cons (substring (elt elt 3) | |
5382 (match-beginning 1) | |
5383 (match-end 1)) | |
5384 (cdr elt)) | |
5385 lst)))))) | |
5386 (setq pos (point)) | |
5387 (goto-char 1) | |
5388 (setq rel file) | |
5389 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties | |
5390 (set-text-properties 0 (length rel) nil rel) | |
5391 (and (equal topdir (substring rel 0 (length topdir))) | |
5392 (setq rel (substring file (length topdir)))) | |
5393 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n") | |
5394 (setq ret (buffer-substring 1 (point-max))) | |
5395 (erase-buffer) | |
5396 (or noninteractive | |
5397 (message "Scanning file %s finished" file)) | |
5398 ret))) | |
5399 | |
5400 (defun cperl-add-tags-recurse-noxs () | |
5401 "Add to TAGS data for Perl and XSUB files in the current directory and kids. | |
5402 Use as | |
5403 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \ | |
5404 -f cperl-add-tags-recurse | |
5405 " | |
5406 (cperl-write-tags nil nil t t nil t)) | |
5407 | |
5408 (defun cperl-add-tags-recurse () | |
5409 "Add to TAGS file data for Perl files in the current directory and kids. | |
5410 Use as | |
5411 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \ | |
5412 -f cperl-add-tags-recurse | |
5413 " | |
5414 (cperl-write-tags nil nil t t)) | |
5415 | |
5416 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir) | |
5417 ;; If INBUFFER, do not select buffer, and do not save | |
5418 ;; If ERASE is `ignore', do not erase, and do not try to delete old info. | |
5419 (require 'etags) | |
5420 (if file nil | |
5421 (setq file (if dir default-directory (buffer-file-name))) | |
5422 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!"))) | |
5423 (or topdir | |
5424 (setq topdir default-directory)) | |
5425 (let ((tags-file-name "TAGS") | |
5426 (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
|
5427 xs rel) |
20323 | 5428 (save-excursion |
5429 (cond (inbuffer nil) ; Already there | |
5430 ((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
|
5431 (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
|
5432 (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
|
5433 (visit-tags-table-buffer tags-file-name))) |
20323 | 5434 (t (set-buffer (find-file-noselect tags-file-name)))) |
5435 (cond | |
5436 (dir | |
5437 (cond ((eq erase 'ignore)) | |
5438 (erase | |
5439 (erase-buffer) | |
5440 (setq erase 'ignore))) | |
5441 (let ((files | |
5442 (directory-files file t | |
5443 (if recurse nil cperl-scan-files-regexp) | |
5444 t))) | |
5445 (mapcar (function (lambda (file) | |
5446 (cond | |
5447 ((string-match cperl-noscan-files-regexp file) | |
5448 nil) | |
5449 ((not (file-directory-p file)) | |
5450 (if (string-match cperl-scan-files-regexp file) | |
5451 (cperl-write-tags file erase recurse nil t noxs topdir))) | |
5452 ((not recurse) nil) | |
5453 (t (cperl-write-tags file erase recurse t t noxs topdir))))) | |
5454 files)) | |
5455 ) | |
5456 (t | |
5457 (setq xs (string-match "\\.xs$" file)) | |
5458 (if (not (and xs noxs)) | |
5459 (progn | |
5460 (cond ((eq erase 'ignore) (goto-char (point-max))) | |
5461 (erase (erase-buffer)) | |
5462 (t | |
5463 (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
|
5464 (setq rel file) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5465 ;; 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
|
5466 (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
|
5467 (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
|
5468 (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
|
5469 (if (search-forward (concat "\f\n" rel ",") nil t) |
20323 | 5470 (progn |
5471 (search-backward "\f\n") | |
5472 (delete-region (point) | |
5473 (save-excursion | |
5474 (forward-char 1) | |
5475 (if (search-forward "\f\n" | |
5476 nil 'toend) | |
5477 (- (point) 2) | |
5478 (point-max))))) | |
5479 (goto-char (point-max))))) | |
5480 (insert (cperl-find-tags file xs topdir)))))) | |
5481 (if inbuffer nil ; Delegate to the caller | |
5482 (save-buffer 0) ; No backup | |
5483 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs? | |
5484 (initialize-new-tags-table)))))) | |
5485 | |
5486 (defvar cperl-tags-hier-regexp-list | |
5487 (concat | |
5488 "^\\(" | |
5489 "\\(package\\)\\>" | |
5490 "\\|" | |
5491 "sub\\>[^\n]+::" | |
5492 "\\|" | |
5493 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB? | |
5494 "\\|" | |
5495 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section | |
5496 "\\)")) | |
5497 | |
5498 (defvar cperl-hierarchy '(() ()) | |
5499 "Global hierarchy of classes") | |
5500 | |
5501 (defun cperl-tags-hier-fill () | |
5502 ;; Suppose we are in a tag table cooked by cperl. | |
5503 (goto-char 1) | |
5504 (let (type pack name pos line chunk ord cons1 file str info fileind) | |
5505 (while (re-search-forward cperl-tags-hier-regexp-list nil t) | |
5506 (setq pos (match-beginning 0) | |
5507 pack (match-beginning 2)) | |
5508 (beginning-of-line) | |
5509 (if (looking-at (concat | |
5510 "\\([^\n]+\\)" | |
5511 "\C-?" | |
5512 "\\([^\n]+\\)" | |
5513 "\C-a" | |
5514 "\\([0-9]+\\)" | |
5515 "," | |
5516 "\\([0-9]+\\)")) | |
5517 (progn | |
5518 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1)) | |
5519 name (buffer-substring (match-beginning 2) (match-end 2)) | |
5520 ;;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
|
5521 line (buffer-substring (match-beginning 3) (match-end 3)) |
20323 | 5522 ord (if pack 1 0) |
5523 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
|
5524 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
|
5525 ;; 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
|
5526 info (cperl-etags-snarf-tag file line)) |
20323 | 5527 ;; Move back |
5528 (forward-char -1) | |
5529 ;; Make new member of hierarchy name ==> file ==> pos if needed | |
5530 (if (setq cons1 (assoc name (nth ord cperl-hierarchy))) | |
5531 ;; Name known | |
5532 (setcdr cons1 (cons (cons fileind (vector file info)) | |
5533 (cdr cons1))) | |
5534 ;; First occurrence of the name, start alist | |
5535 (setq cons1 (cons name (list (cons fileind (vector file info))))) | |
5536 (if pack | |
5537 (setcar (cdr cperl-hierarchy) | |
5538 (cons cons1 (nth 1 cperl-hierarchy))) | |
5539 (setcar cperl-hierarchy | |
5540 (cons cons1 (car cperl-hierarchy))))))) | |
5541 (end-of-line)))) | |
5542 | |
5543 (defun cperl-tags-hier-init (&optional update) | |
5544 "Show hierarchical menu of classes and methods. | |
5545 Finds info about classes by a scan of loaded TAGS files. | |
5546 Supposes that the TAGS files contain fully qualified function names. | |
5547 One may build such TAGS files from CPerl mode menu." | |
5548 (interactive) | |
5549 (require 'etags) | |
5550 (require 'imenu) | |
5551 (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
|
5552 (let (pack name cons1 to l1 l2 l3 l4 b |
20323 | 5553 (remover (function (lambda (elt) ; (name (file1...) (file2..)) |
5554 (or (nthcdr 2 elt) | |
5555 ;; Only in one file | |
5556 (setcdr elt (cdr (nth 1 elt)))))))) | |
5557 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later! | |
5558 (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
|
5559 (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
|
5560 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5561 (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
|
5562 ;; Does this work in XEmacs? |
20323 | 5563 (call-interactively 'visit-tags-table)) |
5564 (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
|
5565 (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
|
5566 (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
|
5567 (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
|
5568 (call-interactively 'visit-tags-table)) |
20323 | 5569 (mapcar |
5570 (function | |
5571 (lambda (tagsfile) | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5572 (message "Updating list of classes... %s" tagsfile) |
20323 | 5573 (set-buffer (get-file-buffer tagsfile)) |
5574 (cperl-tags-hier-fill))) | |
5575 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
|
5576 (message "Updating list of classes... postprocessing...")) |
20323 | 5577 (mapcar remover (car cperl-hierarchy)) |
5578 (mapcar remover (nth 1 cperl-hierarchy)) | |
5579 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy)) | |
5580 (cons "Methods: " (car cperl-hierarchy)))) | |
5581 (cperl-tags-treeify to 1) | |
5582 (setcar (nthcdr 2 cperl-hierarchy) | |
5583 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to)))) | |
5584 (message "Updating list of classes: done, requesting display...") | |
5585 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy)) | |
5586 )) | |
5587 (or (nth 2 cperl-hierarchy) | |
5588 (error "No items found")) | |
5589 (setq update | |
5590 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy)) | |
5591 (if window-system | |
5592 (x-popup-menu t (nth 2 cperl-hierarchy)) | |
5593 (require 'tmm) | |
5594 (tmm-prompt (nth 2 cperl-hierarchy)))) | |
5595 (if (and update (listp update)) | |
5596 (progn (while (cdr update) (setq update (cdr update))) | |
5597 (setq update (car update)))) ; Get the last from the list | |
5598 (if (vectorp update) | |
5599 (progn | |
5600 (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
|
5601 (cperl-etags-goto-tag-location (elt update 1)))) |
20323 | 5602 (if (eq update -999) (cperl-tags-hier-init t))) |
5603 | |
5604 (defun cperl-tags-treeify (to level) | |
5605 ;; cadr of `to' is read-write. On start it is a cons | |
5606 (let* ((regexp (concat "^\\(" (mapconcat | |
5607 'identity | |
5608 (make-list level "[_a-zA-Z0-9]+") | |
5609 "::") | |
5610 "\\)\\(::\\)?")) | |
5611 (packages (cdr (nth 1 to))) | |
5612 (methods (cdr (nth 2 to))) | |
5613 l1 head tail cons1 cons2 ord writeto packs recurse | |
5614 root-packages root-functions ms many_ms same_name ps | |
5615 (move-deeper | |
5616 (function | |
5617 (lambda (elt) | |
5618 (cond ((and (string-match regexp (car elt)) | |
5619 (or (eq ord 1) (match-end 2))) | |
5620 (setq head (substring (car elt) 0 (match-end 1)) | |
5621 tail (if (match-end 2) (substring (car elt) | |
5622 (match-end 2))) | |
5623 recurse t) | |
5624 (if (setq cons1 (assoc head writeto)) nil | |
5625 ;; Need to init new head | |
5626 (setcdr writeto (cons (list head (list "Packages: ") | |
5627 (list "Methods: ")) | |
5628 (cdr writeto))) | |
5629 (setq cons1 (nth 1 writeto))) | |
5630 (setq cons2 (nth ord cons1)) ; Either packs or meths | |
5631 (setcdr cons2 (cons elt (cdr cons2)))) | |
5632 ((eq ord 2) | |
5633 (setq root-functions (cons elt root-functions))) | |
5634 (t | |
5635 (setq root-packages (cons elt root-packages)))))))) | |
5636 (setcdr to l1) ; Init to dynamic space | |
5637 (setq writeto to) | |
5638 (setq ord 1) | |
5639 (mapcar move-deeper packages) | |
5640 (setq ord 2) | |
5641 (mapcar move-deeper methods) | |
5642 (if recurse | |
5643 (mapcar (function (lambda (elt) | |
5644 (cperl-tags-treeify elt (1+ level)))) | |
5645 (cdr to))) | |
5646 ;;Now clean up leaders with one child only | |
5647 (mapcar (function (lambda (elt) | |
5648 (if (not (and (listp (cdr elt)) | |
5649 (eq (length elt) 2))) nil | |
5650 (setcar elt (car (nth 1 elt))) | |
5651 (setcdr elt (cdr (nth 1 elt)))))) | |
5652 (cdr to)) | |
5653 ;; Sort the roots of subtrees | |
5654 (if (default-value 'imenu-sort-function) | |
5655 (setcdr to | |
5656 (sort (cdr to) (default-value 'imenu-sort-function)))) | |
5657 ;; Now add back functions removed from display | |
5658 (mapcar (function (lambda (elt) | |
5659 (setcdr to (cons elt (cdr to))))) | |
5660 (if (default-value 'imenu-sort-function) | |
5661 (nreverse | |
5662 (sort root-functions (default-value 'imenu-sort-function))) | |
5663 root-functions)) | |
5664 ;; Now add back packages removed from display | |
5665 (mapcar (function (lambda (elt) | |
5666 (setcdr to (cons (cons (concat "package " (car elt)) | |
5667 (cdr elt)) | |
5668 (cdr to))))) | |
5669 (if (default-value 'imenu-sort-function) | |
5670 (nreverse | |
5671 (sort root-packages (default-value 'imenu-sort-function))) | |
5672 root-packages)) | |
5673 )) | |
5674 | |
5675 ;;;(x-popup-menu t | |
5676 ;;; '(keymap "Name1" | |
5677 ;;; ("Ret1" "aa") | |
5678 ;;; ("Head1" "ab" | |
5679 ;;; keymap "Name2" | |
5680 ;;; ("Tail1" "x") ("Tail2" "y")))) | |
5681 | |
5682 (defun cperl-list-fold (list name limit) | |
5683 (let (list1 list2 elt1 (num 0)) | |
5684 (if (<= (length list) limit) list | |
5685 (setq list1 nil list2 nil) | |
5686 (while list | |
5687 (setq num (1+ num) | |
5688 elt1 (car list) | |
5689 list (cdr list)) | |
5690 (if (<= num imenu-max-items) | |
5691 (setq list2 (cons elt1 list2)) | |
5692 (setq list1 (cons (cons name | |
5693 (nreverse list2)) | |
5694 list1) | |
5695 list2 (list elt1) | |
5696 num 1))) | |
5697 (nreverse (cons (cons name | |
5698 (nreverse list2)) | |
5699 list1))))) | |
5700 | |
5701 (defun cperl-menu-to-keymap (menu &optional name) | |
5702 (let (list) | |
5703 (cons 'keymap | |
5704 (mapcar | |
5705 (function | |
5706 (lambda (elt) | |
5707 (cond ((listp (cdr elt)) | |
5708 (setq list (cperl-list-fold | |
5709 (cdr elt) (car elt) imenu-max-items)) | |
5710 (cons nil | |
5711 (cons (car elt) | |
5712 (cperl-menu-to-keymap list)))) | |
5713 (t | |
5714 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34 | |
5715 (cperl-list-fold menu "Root" imenu-max-items))))) | |
5716 | |
5717 | |
5718 (defvar cperl-bad-style-regexp | |
5719 (mapconcat 'identity | |
5720 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign | |
5721 "[-<>=+^&|]+[^- \t\n=+<>~]" ; sign+ char | |
5722 ) | |
5723 "\\|") | |
5724 "Finds places such that insertion of a whitespace may help a lot.") | |
5725 | |
5726 (defvar cperl-not-bad-style-regexp | |
5727 (mapconcat 'identity | |
5728 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++ | |
5729 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used. | |
5730 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field) | |
5731 "<\\$?\\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
|
5732 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN |
20323 | 5733 "-[0-9]" ; -5 |
5734 "\\+\\+" ; ++var | |
5735 "--" ; --var | |
5736 ".->" ; a->b | |
5737 "->" ; a SPACE ->b | |
5738 "\\[-" ; a[-1] | |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5739 "\\\\[&$@*\\\\]" ; \&func |
20323 | 5740 "^=" ; =head |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5741 "\\$." ; $| |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5742 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO' |
20323 | 5743 "||" |
5744 "&&" | |
5745 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text> | |
5746 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value | |
5747 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below | |
5748 ;;"[*/+-|&<.]+=" | |
5749 ) | |
5750 "\\|") | |
5751 "If matches at the start of match found by `my-bad-c-style-regexp', | |
5752 insertion of a whitespace will not help.") | |
5753 | |
5754 (defvar found-bad) | |
5755 | |
5756 (defun cperl-find-bad-style () | |
5757 "Find places in the buffer where insertion of a whitespace may help. | |
5758 Prompts user for insertion of spaces. | |
5759 Currently it is tuned to C and Perl syntax." | |
5760 (interactive) | |
5761 (let (found-bad (p (point))) | |
5762 (setq last-nonmenu-event 13) ; To disable popup | |
5763 (beginning-of-buffer) | |
5764 (map-y-or-n-p "Insert space here? " | |
5765 (function (lambda (arg) (insert " "))) | |
5766 'cperl-next-bad-style | |
5767 '("location" "locations" "insert a space into") | |
5768 '((?\C-r (lambda (arg) | |
5769 (let ((buffer-quit-function | |
5770 'exit-recursive-edit)) | |
5771 (message "Exit with Esc Esc") | |
5772 (recursive-edit) | |
5773 t)) ; Consider acted upon | |
5774 "edit, exit with Esc Esc") | |
5775 (?e (lambda (arg) | |
5776 (let ((buffer-quit-function | |
5777 'exit-recursive-edit)) | |
5778 (message "Exit with Esc Esc") | |
5779 (recursive-edit) | |
5780 t)) ; Consider acted upon | |
5781 "edit, exit with Esc Esc")) | |
5782 t) | |
5783 (if found-bad (goto-char found-bad) | |
5784 (goto-char p) | |
5785 (message "No appropriate place found")))) | |
5786 | |
5787 (defun cperl-next-bad-style () | |
5788 (let (p (not-found t) (point (point)) found) | |
5789 (while (and not-found | |
5790 (re-search-forward cperl-bad-style-regexp nil 'to-end)) | |
5791 (setq p (point)) | |
5792 (goto-char (match-beginning 0)) | |
5793 (if (or | |
5794 (looking-at cperl-not-bad-style-regexp) | |
5795 ;; Check for a < -b and friends | |
5796 (and (eq (following-char) ?\-) | |
5797 (save-excursion | |
5798 (skip-chars-backward " \t\n") | |
5799 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\(, ?\[, ?\{)))) | |
5800 ;; Now check for syntax type | |
5801 (save-match-data | |
5802 (setq found (point)) | |
5803 (beginning-of-defun) | |
5804 (let ((pps (parse-partial-sexp (point) found))) | |
5805 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))) | |
5806 (goto-char (match-end 0)) | |
5807 (goto-char (1- p)) | |
5808 (setq not-found nil | |
5809 found-bad found))) | |
5810 (not not-found))) | |
5811 | |
27248 | 5812 |
20323 | 5813 ;;; Getting help |
5814 (defvar cperl-have-help-regexp | |
5815 ;;(concat "\\(" | |
5816 (mapconcat | |
5817 'identity | |
5818 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable | |
5819 "[$@]\\^[a-zA-Z]" ; Special variable | |
5820 "[$@][^ \n\t]" ; Special variable | |
5821 "-[a-zA-Z]" ; File test | |
5822 "\\\\[a-zA-Z0]" ; Special chars | |
5823 "^=[a-z][a-zA-Z0-9_]*" ; Pod sections | |
5824 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator | |
5825 "[a-zA-Z_0-9:]+" ; symbol or number | |
5826 "x=" | |
5827 "#!" | |
5828 ) | |
5829 ;;"\\)\\|\\(" | |
5830 "\\|" | |
5831 ) | |
5832 ;;"\\)" | |
5833 ;;) | |
5834 "Matches places in the buffer we can find help for.") | |
5835 | |
5836 (defvar cperl-message-on-help-error t) | |
5837 (defvar cperl-help-from-timer nil) | |
5838 | |
5839 (defun cperl-word-at-point-hard () | |
5840 ;; Does not save-excursion | |
5841 ;; Get to the something meaningful | |
5842 (or (eobp) (eolp) (forward-char 1)) | |
5843 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]" | |
5844 (save-excursion (beginning-of-line) (point)) | |
5845 'to-beg) | |
5846 ;; (cond | |
5847 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol | |
5848 ;; (skip-chars-backward " \n\t\r({[]});,") | |
5849 ;; (or (bobp) (backward-char 1)))) | |
5850 ;; Try to backtrace | |
5851 (cond | |
5852 ((looking-at "[a-zA-Z0-9_:]") ; symbol | |
5853 (skip-chars-backward "a-zA-Z0-9_:") | |
5854 (cond | |
5855 ((and (eq (preceding-char) ?^) ; $^I | |
5856 (eq (char-after (- (point) 2)) ?\$)) | |
5857 (forward-char -2)) | |
5858 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob | |
5859 (forward-char -1)) | |
5860 ((and (eq (preceding-char) ?\=) | |
5861 (eq (current-column) 1)) | |
5862 (forward-char -1))) ; =head1 | |
5863 (if (and (eq (preceding-char) ?\<) | |
5864 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH> | |
5865 (forward-char -1))) | |
5866 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x= | |
5867 (forward-char -1)) | |
5868 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I | |
5869 (forward-char -1)) | |
5870 ((looking-at "[-!&*+,-./<=>?\\\\^|~]") | |
5871 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~") | |
5872 (cond | |
5873 ((and (eq (preceding-char) ?\$) | |
5874 (not (eq (char-after (- (point) 2)) ?\$))) ; $- | |
5875 (forward-char -1)) | |
5876 ((and (eq (following-char) ?\>) | |
5877 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char))) | |
5878 (save-excursion | |
5879 (forward-sexp -1) | |
5880 (and (eq (preceding-char) ?\<) | |
5881 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH> | |
5882 (search-backward "<")))) | |
5883 ((and (eq (following-char) ?\$) | |
5884 (eq (preceding-char) ?\<) | |
5885 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh> | |
5886 (forward-char -1))) | |
5887 (if (looking-at cperl-have-help-regexp) | |
5888 (buffer-substring (match-beginning 0) (match-end 0)))) | |
5889 | |
5890 (defun cperl-get-help () | |
5891 "Get one-line docs on the symbol at the point. | |
5892 The data for these docs is a little bit obsolete and may be in fact longer | |
5893 than a line. Your contribution to update/shorten it is appreciated." | |
5894 (interactive) | |
5895 (save-match-data ; May be called "inside" query-replace | |
5896 (save-excursion | |
5897 (let ((word (cperl-word-at-point-hard))) | |
5898 (if word | |
5899 (if (and cperl-help-from-timer ; Bail out if not in mainland | |
5900 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings. | |
5901 (or (memq (get-text-property (point) 'face) | |
5902 '(font-lock-comment-face font-lock-string-face)) | |
5903 (memq (get-text-property (point) 'syntax-type) | |
5904 '(pod here-doc format)))) | |
5905 nil | |
5906 (cperl-describe-perl-symbol word)) | |
5907 (if cperl-message-on-help-error | |
5908 (message "Nothing found for %s..." | |
5909 (buffer-substring (point) (min (+ 5 (point)) (point-max)))))))))) | |
5910 | |
5911 ;;; Stolen from perl-descr.el by Johan Vromans: | |
5912 | |
5913 (defvar cperl-doc-buffer " *perl-doc*" | |
5914 "Where the documentation can be found.") | |
5915 | |
5916 (defun cperl-describe-perl-symbol (val) | |
5917 "Display the documentation of symbol at point, a Perl operator." | |
5918 (let ((enable-recursive-minibuffers t) | |
5919 args-file regexp) | |
5920 (cond | |
5921 ((string-match "^[&*][a-zA-Z_]" val) | |
5922 (setq val (concat (substring val 0 1) "NAME"))) | |
5923 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val) | |
5924 (setq val (concat "@" (substring val 1 (match-end 1))))) | |
5925 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val) | |
5926 (setq val (concat "%" (substring val 1 (match-end 1))))) | |
5927 ((and (string= val "x") (string-match "^x=" val)) | |
5928 (setq val "x=")) | |
5929 ((string-match "^\\$[\C-a-\C-z]" val) | |
5930 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1)))))) | |
5931 ((string-match "^CORE::" val) | |
5932 (setq val "CORE::")) | |
5933 ((string-match "^SUPER::" val) | |
5934 (setq val "SUPER::")) | |
5935 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val)) | |
5936 (setq val "<NAME>"))) | |
5937 (setq regexp (concat "^" | |
5938 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?" | |
5939 (regexp-quote val) | |
5940 "\\([ \t([/]\\|$\\)")) | |
5941 | |
5942 ;; get the buffer with the documentation text | |
5943 (cperl-switch-to-doc-buffer) | |
5944 | |
5945 ;; lookup in the doc | |
5946 (goto-char (point-min)) | |
5947 (let ((case-fold-search nil)) | |
5948 (list | |
5949 (if (re-search-forward regexp (point-max) t) | |
5950 (save-excursion | |
5951 (beginning-of-line 1) | |
5952 (let ((lnstart (point))) | |
5953 (end-of-line) | |
5954 (message "%s" (buffer-substring lnstart (point))))) | |
5955 (if cperl-message-on-help-error | |
5956 (message "No definition for %s" val))))))) | |
5957 | |
5958 (defvar cperl-short-docs "Ignore my value" | |
5959 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl) | |
5960 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5] | |
5961 ! ... Logical negation. | |
5962 ... != ... Numeric inequality. | |
5963 ... !~ ... Search pattern, substitution, or translation (negated). | |
5964 $! In numeric context: errno. In a string context: error string. | |
5965 $\" The separator which joins elements of arrays interpolated in strings. | |
5966 $# The output format for printed numbers. Initial value is %.15g or close. | |
5967 $$ Process number of this script. Changes in the fork()ed child process. | |
5968 $% The current page number of the currently selected output channel. | |
5969 | |
5970 The following variables are always local to the current block: | |
5971 | |
5972 $1 Match of the 1st set of parentheses in the last match (auto-local). | |
5973 $2 Match of the 2nd set of parentheses in the last match (auto-local). | |
5974 $3 Match of the 3rd set of parentheses in the last match (auto-local). | |
5975 $4 Match of the 4th set of parentheses in the last match (auto-local). | |
5976 $5 Match of the 5th set of parentheses in the last match (auto-local). | |
5977 $6 Match of the 6th set of parentheses in the last match (auto-local). | |
5978 $7 Match of the 7th set of parentheses in the last match (auto-local). | |
5979 $8 Match of the 8th set of parentheses in the last match (auto-local). | |
5980 $9 Match of the 9th set of parentheses in the last match (auto-local). | |
5981 $& The string matched by the last pattern match (auto-local). | |
5982 $' The string after what was matched by the last match (auto-local). | |
5983 $` The string before what was matched by the last match (auto-local). | |
5984 | |
5985 $( The real gid of this process. | |
5986 $) The effective gid of this process. | |
5987 $* Deprecated: Set to 1 to do multiline matching within a string. | |
5988 $+ The last bracket matched by the last search pattern. | |
5989 $, The output field separator for the print operator. | |
5990 $- The number of lines left on the page. | |
5991 $. The current input line number of the last filehandle that was read. | |
5992 $/ The input record separator, newline by default. | |
5993 $0 Name of the file containing the perl script being executed. May be set. | |
5994 $: String may be broken after these characters to fill ^-lines in a format. | |
5995 $; Subscript separator for multi-dim array emulation. Default \"\\034\". | |
5996 $< The real uid of this process. | |
5997 $= The page length of the current output channel. Default is 60 lines. | |
5998 $> The effective uid of this process. | |
5999 $? The status returned by the last ``, pipe close or `system'. | |
6000 $@ The perl error message from the last eval or do @var{EXPR} command. | |
6001 $ARGV The name of the current file used with <> . | |
6002 $[ Deprecated: The index of the first element/char in an array/string. | |
6003 $\\ The output record separator for the print operator. | |
6004 $] The perl version string as displayed with perl -v. | |
6005 $^ The name of the current top-of-page format. | |
6006 $^A The current value of the write() accumulator for format() lines. | |
6007 $^D The value of the perl debug (-D) flags. | |
6008 $^E Information about the last system error other than that provided by $!. | |
6009 $^F The highest system file descriptor, ordinarily 2. | |
6010 $^H The current set of syntax checks enabled by `use strict'. | |
6011 $^I The value of the in-place edit extension (perl -i option). | |
6012 $^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
|
6013 $^M A buffer for emergency memory allocation when running out of memory. |
20323 | 6014 $^O The operating system name under which this copy of Perl was built. |
6015 $^P Internal debugging flag. | |
6016 $^T The time the script was started. Used by -A/-M/-C file tests. | |
6017 $^W True if warnings are requested (perl -w flag). | |
6018 $^X The name under which perl was invoked (argv[0] in C-speech). | |
6019 $_ The default input and pattern-searching space. | |
6020 $| Auto-flush after write/print on current output channel? Default 0. | |
6021 $~ The name of the current report format. | |
6022 ... % ... Modulo division. | |
6023 ... %= ... Modulo division assignment. | |
6024 %ENV Contains the current environment. | |
6025 %INC List of files that have been require-d or do-ne. | |
6026 %SIG Used to set signal handlers for various signals. | |
6027 ... & ... Bitwise and. | |
6028 ... && ... Logical and. | |
6029 ... &&= ... Logical and assignment. | |
6030 ... &= ... Bitwise and assignment. | |
6031 ... * ... Multiplication. | |
6032 ... ** ... Exponentiation. | |
6033 *NAME Glob: all objects refered by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2. | |
6034 &NAME(arg0, ...) Subroutine call. Arguments go to @_. | |
6035 ... + ... Addition. +EXPR Makes EXPR into scalar context. | |
6036 ++ Auto-increment (magical on strings). ++EXPR EXPR++ | |
6037 ... += ... Addition assignment. | |
6038 , Comma operator. | |
6039 ... - ... Subtraction. | |
6040 -- Auto-decrement (NOT magical on strings). --EXPR EXPR-- | |
6041 ... -= ... Subtraction assignment. | |
6042 -A Access time in days since script started. | |
6043 -B File is a non-text (binary) file. | |
6044 -C Inode change time in days since script started. | |
6045 -M Age in days since script started. | |
6046 -O File is owned by real uid. | |
6047 -R File is readable by real uid. | |
6048 -S File is a socket . | |
6049 -T File is a text file. | |
6050 -W File is writable by real uid. | |
6051 -X File is executable by real uid. | |
6052 -b File is a block special file. | |
6053 -c File is a character special file. | |
6054 -d File is a directory. | |
6055 -e File exists . | |
6056 -f File is a plain file. | |
6057 -g File has setgid bit set. | |
6058 -k File has sticky bit set. | |
6059 -l File is a symbolic link. | |
6060 -o File is owned by effective uid. | |
6061 -p File is a named pipe (FIFO). | |
6062 -r File is readable by effective uid. | |
6063 -s File has non-zero size. | |
6064 -t Tests if filehandle (STDIN by default) is opened to a tty. | |
6065 -u File has setuid bit set. | |
6066 -w File is writable by effective uid. | |
6067 -x File is executable by effective uid. | |
6068 -z File has zero size. | |
6069 . Concatenate strings. | |
6070 .. Alternation, also range operator. | |
6071 .= Concatenate assignment strings | |
6072 ... / ... Division. /PATTERN/ioxsmg Pattern match | |
6073 ... /= ... Division assignment. | |
6074 /PATTERN/ioxsmg Pattern match. | |
6075 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well. | |
6076 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword). | |
6077 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>). | |
6078 <> Reads line from union of files in @ARGV (= command line) and STDIN. | |
6079 ... << ... Bitwise shift left. << start of HERE-DOCUMENT. | |
6080 ... <= ... Numeric less than or equal to. | |
6081 ... <=> ... Numeric compare. | |
6082 ... = ... Assignment. | |
6083 ... == ... Numeric equality. | |
6084 ... =~ ... Search pattern, substitution, or translation | |
6085 ... > ... Numeric greater than. | |
6086 ... >= ... Numeric greater than or equal to. | |
6087 ... >> ... Bitwise shift right. | |
6088 ... >>= ... Bitwise shift right assignment. | |
6089 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match. | |
6090 ?PATTERN? One-time pattern match. | |
6091 @ARGV Command line arguments (not including the command name - see $0). | |
6092 @INC List of places to look for perl scripts during do/include/use. | |
6093 @_ Parameter array for subroutines. Also used by split unless in array context. | |
6094 \\ Creates reference to what follows, like \$var, or quotes non-\w in strings. | |
6095 \\0 Octal char, e.g. \\033. | |
6096 \\E Case modification terminator. See \\Q, \\L, and \\U. | |
6097 \\L Lowercase until \\E . See also \l, lc. | |
6098 \\U Upcase until \\E . See also \u, uc. | |
6099 \\Q Quote metacharacters until \\E . See also quotemeta. | |
6100 \\a Alarm character (octal 007). | |
6101 \\b Backspace character (octal 010). | |
6102 \\c Control character, e.g. \\c[ . | |
6103 \\e Escape character (octal 033). | |
6104 \\f Formfeed character (octal 014). | |
6105 \\l Lowercase the next character. See also \\L and \\u, lcfirst. | |
6106 \\n Newline character (octal 012 on most systems). | |
6107 \\r Return character (octal 015 on most systems). | |
6108 \\t Tab character (octal 011). | |
6109 \\u Upcase the next character. See also \\U and \\l, ucfirst. | |
6110 \\x Hex character, e.g. \\x1b. | |
6111 ... ^ ... Bitwise exclusive or. | |
6112 __END__ Ends program source. | |
6113 __DATA__ Ends program source. | |
6114 __FILE__ Current (source) filename. | |
6115 __LINE__ Current line in current source. | |
6116 __PACKAGE__ Current package. | |
6117 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>. | |
6118 ARGVOUT Output filehandle with -i flag. | |
6119 BEGIN { ... } Immediately executed (during compilation) piece of code. | |
6120 END { ... } Pseudo-subroutine executed after the script finishes. | |
6121 DATA Input filehandle for what follows after __END__ or __DATA__. | |
6122 accept(NEWSOCKET,GENERICSOCKET) | |
6123 alarm(SECONDS) | |
6124 atan2(X,Y) | |
6125 bind(SOCKET,NAME) | |
6126 binmode(FILEHANDLE) | |
6127 caller[(LEVEL)] | |
6128 chdir(EXPR) | |
6129 chmod(LIST) | |
6130 chop[(LIST|VAR)] | |
6131 chown(LIST) | |
6132 chroot(FILENAME) | |
6133 close(FILEHANDLE) | |
6134 closedir(DIRHANDLE) | |
6135 ... cmp ... String compare. | |
6136 connect(SOCKET,NAME) | |
6137 continue of { block } continue { block }. Is executed after `next' or at end. | |
6138 cos(EXPR) | |
6139 crypt(PLAINTEXT,SALT) | |
6140 dbmclose(%HASH) | |
6141 dbmopen(%HASH,DBNAME,MODE) | |
6142 defined(EXPR) | |
6143 delete($HASH{KEY}) | |
6144 die(LIST) | |
6145 do { ... }|SUBR while|until EXPR executes at least once | |
6146 do(EXPR|SUBR([LIST])) (with while|until executes at least once) | |
6147 dump LABEL | |
6148 each(%HASH) | |
6149 endgrent | |
6150 endhostent | |
6151 endnetent | |
6152 endprotoent | |
6153 endpwent | |
6154 endservent | |
6155 eof[([FILEHANDLE])] | |
6156 ... eq ... String equality. | |
6157 eval(EXPR) or eval { BLOCK } | |
6158 exec(LIST) | |
6159 exit(EXPR) | |
6160 exp(EXPR) | |
6161 fcntl(FILEHANDLE,FUNCTION,SCALAR) | |
6162 fileno(FILEHANDLE) | |
6163 flock(FILEHANDLE,OPERATION) | |
6164 for (EXPR;EXPR;EXPR) { ... } | |
6165 foreach [VAR] (@ARRAY) { ... } | |
6166 fork | |
6167 ... ge ... String greater than or equal. | |
6168 getc[(FILEHANDLE)] | |
6169 getgrent | |
6170 getgrgid(GID) | |
6171 getgrnam(NAME) | |
6172 gethostbyaddr(ADDR,ADDRTYPE) | |
6173 gethostbyname(NAME) | |
6174 gethostent | |
6175 getlogin | |
6176 getnetbyaddr(ADDR,ADDRTYPE) | |
6177 getnetbyname(NAME) | |
6178 getnetent | |
6179 getpeername(SOCKET) | |
6180 getpgrp(PID) | |
6181 getppid | |
6182 getpriority(WHICH,WHO) | |
6183 getprotobyname(NAME) | |
6184 getprotobynumber(NUMBER) | |
6185 getprotoent | |
6186 getpwent | |
6187 getpwnam(NAME) | |
6188 getpwuid(UID) | |
6189 getservbyname(NAME,PROTO) | |
6190 getservbyport(PORT,PROTO) | |
6191 getservent | |
6192 getsockname(SOCKET) | |
6193 getsockopt(SOCKET,LEVEL,OPTNAME) | |
6194 gmtime(EXPR) | |
6195 goto LABEL | |
6196 ... gt ... String greater than. | |
6197 hex(EXPR) | |
6198 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR | |
6199 index(STR,SUBSTR[,OFFSET]) | |
6200 int(EXPR) | |
6201 ioctl(FILEHANDLE,FUNCTION,SCALAR) | |
6202 join(EXPR,LIST) | |
6203 keys(%HASH) | |
6204 kill(LIST) | |
6205 last [LABEL] | |
6206 ... le ... String less than or equal. | |
6207 length(EXPR) | |
6208 link(OLDFILE,NEWFILE) | |
6209 listen(SOCKET,QUEUESIZE) | |
6210 local(LIST) | |
6211 localtime(EXPR) | |
6212 log(EXPR) | |
6213 lstat(EXPR|FILEHANDLE|VAR) | |
6214 ... lt ... String less than. | |
6215 m/PATTERN/iogsmx | |
6216 mkdir(FILENAME,MODE) | |
6217 msgctl(ID,CMD,ARG) | |
6218 msgget(KEY,FLAGS) | |
6219 msgrcv(ID,VAR,SIZE,TYPE.FLAGS) | |
6220 msgsnd(ID,MSG,FLAGS) | |
6221 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH). | |
6222 ... ne ... String inequality. | |
6223 next [LABEL] | |
6224 oct(EXPR) | |
6225 open(FILEHANDLE[,EXPR]) | |
6226 opendir(DIRHANDLE,EXPR) | |
6227 ord(EXPR) ASCII value of the first char of the string. | |
6228 pack(TEMPLATE,LIST) | |
6229 package NAME Introduces package context. | |
6230 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe. | |
6231 pop(ARRAY) | |
6232 print [FILEHANDLE] [(LIST)] | |
6233 printf [FILEHANDLE] (FORMAT,LIST) | |
6234 push(ARRAY,LIST) | |
6235 q/STRING/ Synonym for 'STRING' | |
6236 qq/STRING/ Synonym for \"STRING\" | |
6237 qx/STRING/ Synonym for `STRING` | |
6238 rand[(EXPR)] | |
6239 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6240 readdir(DIRHANDLE) | |
6241 readlink(EXPR) | |
6242 recv(SOCKET,SCALAR,LEN,FLAGS) | |
6243 redo [LABEL] | |
6244 rename(OLDNAME,NEWNAME) | |
6245 require [FILENAME | PERL_VERSION] | |
6246 reset[(EXPR)] | |
6247 return(LIST) | |
6248 reverse(LIST) | |
6249 rewinddir(DIRHANDLE) | |
6250 rindex(STR,SUBSTR[,OFFSET]) | |
6251 rmdir(FILENAME) | |
6252 s/PATTERN/REPLACEMENT/gieoxsm | |
6253 scalar(EXPR) | |
6254 seek(FILEHANDLE,POSITION,WHENCE) | |
6255 seekdir(DIRHANDLE,POS) | |
6256 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT) | |
6257 semctl(ID,SEMNUM,CMD,ARG) | |
6258 semget(KEY,NSEMS,SIZE,FLAGS) | |
6259 semop(KEY,...) | |
6260 send(SOCKET,MSG,FLAGS[,TO]) | |
6261 setgrent | |
6262 sethostent(STAYOPEN) | |
6263 setnetent(STAYOPEN) | |
6264 setpgrp(PID,PGRP) | |
6265 setpriority(WHICH,WHO,PRIORITY) | |
6266 setprotoent(STAYOPEN) | |
6267 setpwent | |
6268 setservent(STAYOPEN) | |
6269 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL) | |
6270 shift[(ARRAY)] | |
6271 shmctl(ID,CMD,ARG) | |
6272 shmget(KEY,SIZE,FLAGS) | |
6273 shmread(ID,VAR,POS,SIZE) | |
6274 shmwrite(ID,STRING,POS,SIZE) | |
6275 shutdown(SOCKET,HOW) | |
6276 sin(EXPR) | |
6277 sleep[(EXPR)] | |
6278 socket(SOCKET,DOMAIN,TYPE,PROTOCOL) | |
6279 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL) | |
6280 sort [SUBROUTINE] (LIST) | |
6281 splice(ARRAY,OFFSET[,LENGTH[,LIST]]) | |
6282 split[(/PATTERN/[,EXPR[,LIMIT]])] | |
6283 sprintf(FORMAT,LIST) | |
6284 sqrt(EXPR) | |
6285 srand(EXPR) | |
6286 stat(EXPR|FILEHANDLE|VAR) | |
6287 study[(SCALAR)] | |
6288 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...} | |
6289 substr(EXPR,OFFSET[,LEN]) | |
6290 symlink(OLDFILE,NEWFILE) | |
6291 syscall(LIST) | |
6292 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6293 system(LIST) | |
6294 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
6295 tell[(FILEHANDLE)] | |
6296 telldir(DIRHANDLE) | |
6297 time | |
6298 times | |
6299 tr/SEARCHLIST/REPLACEMENTLIST/cds | |
6300 truncate(FILE|EXPR,LENGTH) | |
6301 umask[(EXPR)] | |
6302 undef[(EXPR)] | |
6303 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR | |
6304 unlink(LIST) | |
6305 unpack(TEMPLATE,EXPR) | |
6306 unshift(ARRAY,LIST) | |
6307 until (EXPR) { ... } EXPR until EXPR | |
6308 utime(LIST) | |
6309 values(%HASH) | |
6310 vec(EXPR,OFFSET,BITS) | |
6311 wait | |
6312 waitpid(PID,FLAGS) | |
6313 wantarray Returns true if the sub/eval is called in list context. | |
6314 warn(LIST) | |
6315 while (EXPR) { ... } EXPR while EXPR | |
6316 write[(EXPR|FILEHANDLE)] | |
6317 ... x ... Repeat string or array. | |
6318 x= ... Repetition assignment. | |
6319 y/SEARCHLIST/REPLACEMENTLIST/ | |
6320 ... | ... Bitwise or. | |
6321 ... || ... Logical or. | |
6322 ~ ... Unary bitwise complement. | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6323 #! OS interpreter indicator. If contains `perl', used for options, and -x. |
20323 | 6324 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'. |
6325 CORE:: Prefix to access builtin function if imported sub obscures it. | |
6326 SUPER:: Prefix to lookup for a method in @ISA classes. | |
6327 DESTROY Shorthand for `sub DESTROY {...}'. | |
6328 ... EQ ... Obsolete synonym of `eq'. | |
6329 ... GE ... Obsolete synonym of `ge'. | |
6330 ... GT ... Obsolete synonym of `gt'. | |
6331 ... LE ... Obsolete synonym of `le'. | |
6332 ... LT ... Obsolete synonym of `lt'. | |
6333 ... NE ... Obsolete synonym of `ne'. | |
6334 abs [ EXPR ] absolute value | |
6335 ... and ... Low-precedence synonym for &&. | |
6336 bless REFERENCE [, PACKAGE] Makes reference into an object of a package. | |
6337 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''! | |
6338 chr Converts a number to char with the same ordinal. | |
6339 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
6340 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
6341 exists $HASH{KEY} True if the key exists. | |
6342 format [NAME] = Start of output format. Ended by a single dot (.) on a line. | |
6343 formline PICTURE, LIST Backdoor into \"format\" processing. | |
6344 glob EXPR Synonym of <EXPR>. | |
6345 lc [ EXPR ] Returns lowercased EXPR. | |
6346 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
|
6347 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK. |
20323 | 6348 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST. |
6349 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method. | |
6350 not ... Low-precedence synonym for ! - negation. | |
6351 ... or ... Low-precedence synonym for ||. | |
6352 pos STRING Set/Get end-position of the last match over this string, see \\G. | |
6353 quotemeta [ EXPR ] Quote regexp metacharacters. | |
6354 qw/WORD1 .../ Synonym of split('', 'WORD1 ...') | |
6355 readline FH Synonym of <FH>. | |
6356 readpipe CMD Synonym of `CMD`. | |
6357 ref [ EXPR ] Type of EXPR when dereferenced. | |
6358 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.) | |
6359 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable. | |
6360 tied Returns internal object for a tied data. | |
6361 uc [ EXPR ] Returns upcased EXPR. | |
6362 ucfirst [ EXPR ] Returns EXPR with upcased first letter. | |
6363 untie VAR Unlink an object from a simple Perl variable. | |
6364 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'. | |
6365 ... xor ... Low-precedence synonym for exclusive or. | |
6366 prototype \&SUB Returns prototype of the function given a reference. | |
6367 =head1 Top-level heading. | |
6368 =head2 Second-level heading. | |
6369 =head3 Third-level heading (is there such?). | |
6370 =over [ NUMBER ] Start list. | |
6371 =item [ TITLE ] Start new item in the list. | |
6372 =back End list. | |
6373 =cut Switch from POD to Perl. | |
6374 =pod Switch from Perl to POD. | |
6375 ") | |
6376 | |
6377 (defun cperl-switch-to-doc-buffer () | |
6378 "Go to the perl documentation buffer and insert the documentation." | |
6379 (interactive) | |
6380 (let ((buf (get-buffer-create cperl-doc-buffer))) | |
6381 (if (interactive-p) | |
6382 (switch-to-buffer-other-window buf) | |
6383 (set-buffer buf)) | |
6384 (if (= (buffer-size) 0) | |
6385 (progn | |
6386 (insert (documentation-property 'cperl-short-docs | |
6387 'variable-documentation)) | |
6388 (setq buffer-read-only t))))) | |
6389 | |
6390 (defun cperl-beautify-regexp-piece (b e embed) | |
6391 ;; b is before the starting delimiter, e before the ending | |
6392 ;; e should be a marker, may be changed, but remains "correct". | |
6393 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code) | |
6394 (if (not embed) | |
6395 (goto-char (1+ b)) | |
6396 (goto-char b) | |
6397 (cond ((looking-at "(\\?\\\\#") ; badly commented (?#) | |
6398 (forward-char 2) | |
6399 (delete-char 1) | |
6400 (forward-char 1)) | |
6401 ((looking-at "(\\?[^a-zA-Z]") | |
6402 (forward-char 3)) | |
6403 ((looking-at "(\\?") ; (?i) | |
6404 (forward-char 2)) | |
6405 (t | |
6406 (forward-char 1)))) | |
6407 (setq c (if embed (current-indentation) (1- (current-column))) | |
6408 c1 (+ c (or cperl-regexp-indent-step cperl-indent-level))) | |
6409 (or (looking-at "[ \t]*[\n#]") | |
6410 (progn | |
6411 (insert "\n"))) | |
6412 (goto-char e) | |
6413 (beginning-of-line) | |
6414 (if (re-search-forward "[^ \t]" e t) | |
6415 (progn | |
6416 (goto-char e) | |
6417 (insert "\n") | |
6418 (indent-to-column c) | |
6419 (set-marker e (point)))) | |
6420 (goto-char b) | |
6421 (end-of-line 2) | |
6422 (while (< (point) (marker-position e)) | |
6423 (beginning-of-line) | |
6424 (setq s (point) | |
6425 inline t) | |
6426 (skip-chars-forward " \t") | |
6427 (delete-region s (point)) | |
6428 (indent-to-column c1) | |
6429 (while (and | |
6430 inline | |
6431 (looking-at | |
6432 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word | |
6433 "\\|" ; Embedded variable | |
6434 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3 | |
6435 "\\|" ; $ ^ | |
6436 "[$^]" | |
6437 "\\|" ; simple-code simple-code*? | |
6438 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5 | |
6439 "\\|" ; Class | |
6440 "\\(\\[\\)" ; 6 | |
6441 "\\|" ; Grouping | |
6442 "\\((\\(\\?\\)?\\)" ; 7 8 | |
6443 "\\|" ; | | |
6444 "\\(|\\)" ; 9 | |
6445 ))) | |
6446 (goto-char (match-end 0)) | |
6447 (setq spaces t) | |
6448 (cond ((match-beginning 1) ; Alphanum word + junk | |
6449 (forward-char -1)) | |
6450 ((or (match-beginning 3) ; $ab[12] | |
6451 (and (match-beginning 5) ; X* X+ X{2,3} | |
6452 (eq (preceding-char) ?\{))) | |
6453 (forward-char -1) | |
6454 (forward-sexp 1)) | |
6455 ((match-beginning 6) ; [] | |
6456 (setq tmp (point)) | |
6457 (if (looking-at "\\^?\\]") | |
6458 (goto-char (match-end 0))) | |
6459 (or (re-search-forward "\\]\\([*+{?]\\)?" e t) | |
6460 (progn | |
6461 (goto-char (1- tmp)) | |
6462 (error "[]-group not terminated"))) | |
6463 (if (not (eq (preceding-char) ?\{)) nil | |
6464 (forward-char -1) | |
6465 (forward-sexp 1))) | |
6466 ((match-beginning 7) ; () | |
6467 (goto-char (match-beginning 0)) | |
6468 (or (eq (current-column) c1) | |
6469 (progn | |
6470 (insert "\n") | |
6471 (indent-to-column c1))) | |
6472 (setq tmp (point)) | |
6473 (forward-sexp 1) | |
6474 ;; (or (forward-sexp 1) | |
6475 ;; (progn | |
6476 ;; (goto-char tmp) | |
6477 ;; (error "()-group not terminated"))) | |
6478 (set-marker m (1- (point))) | |
6479 (set-marker m1 (point)) | |
6480 (cond | |
6481 ((not (match-beginning 8)) | |
6482 (cperl-beautify-regexp-piece tmp m t)) | |
6483 ((eq (char-after (+ 2 tmp)) ?\{) ; Code | |
6484 t) | |
6485 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional | |
6486 (goto-char (+ 2 tmp)) | |
6487 (forward-sexp 1) | |
6488 (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
|
6489 ((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
|
6490 (goto-char (+ 3 tmp)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6491 (cperl-beautify-regexp-piece (point) m t)) |
20323 | 6492 (t |
6493 (cperl-beautify-regexp-piece tmp m t))) | |
6494 (goto-char m1) | |
6495 (cond ((looking-at "[*+?]\\??") | |
6496 (goto-char (match-end 0))) | |
6497 ((eq (following-char) ?\{) | |
6498 (forward-sexp 1) | |
6499 (if (eq (following-char) ?\?) | |
6500 (forward-char)))) | |
6501 (skip-chars-forward " \t") | |
6502 (setq spaces nil) | |
6503 (if (looking-at "[#\n]") | |
6504 (progn | |
6505 (or (eolp) (indent-for-comment)) | |
6506 (beginning-of-line 2)) | |
6507 (insert "\n")) | |
6508 (end-of-line) | |
6509 (setq inline nil)) | |
6510 ((match-beginning 9) ; | | |
6511 (forward-char -1) | |
6512 (setq tmp (point)) | |
6513 (beginning-of-line) | |
6514 (if (re-search-forward "[^ \t]" tmp t) | |
6515 (progn | |
6516 (goto-char tmp) | |
6517 (insert "\n")) | |
6518 ;; first at line | |
6519 (delete-region (point) tmp)) | |
6520 (indent-to-column c) | |
6521 (forward-char 1) | |
6522 (skip-chars-forward " \t") | |
6523 (setq spaces nil) | |
6524 (if (looking-at "[#\n]") | |
6525 (beginning-of-line 2) | |
6526 (insert "\n")) | |
6527 (end-of-line) | |
6528 (setq inline nil))) | |
6529 (or (looking-at "[ \t\n]") | |
6530 (not spaces) | |
6531 (insert " ")) | |
6532 (skip-chars-forward " \t")) | |
6533 (or (looking-at "[#\n]") | |
6534 (error "unknown code \"%s\" in a regexp" (buffer-substring (point) | |
6535 (1+ (point))))) | |
6536 (and inline (end-of-line 2))) | |
6537 ;; Special-case the last line of group | |
6538 (if (and (>= (point) (marker-position e)) | |
6539 (/= (current-indentation) c)) | |
6540 (progn | |
6541 (beginning-of-line) | |
6542 (setq s (point)) | |
6543 (skip-chars-forward " \t") | |
6544 (delete-region s (point)) | |
6545 (indent-to-column c))) | |
6546 )) | |
6547 | |
6548 (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
|
6549 ;; Returns position of the start |
20323 | 6550 (save-excursion |
6551 (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
|
6552 (error "I need to have a regexp marked!")) |
20323 | 6553 ;; Find the start |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6554 (if (looking-at "\\s|") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6555 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
|
6556 (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
|
6557 (forward-char 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6558 (re-search-backward "\\s|"))) ; Assume it is scanned already. |
20323 | 6559 ;;(forward-char 1) |
6560 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column)) | |
6561 (sub-p (eq (preceding-char) ?s)) s) | |
6562 (forward-sexp 1) | |
6563 (set-marker e (1- (point))) | |
6564 (setq delim (preceding-char)) | |
6565 (if (and sub-p (eq delim (char-after (- (point) 2)))) | |
6566 (error "Possible s/blah// - do not know how to deal with")) | |
6567 (if sub-p (forward-sexp 1)) | |
6568 (if (looking-at "\\sw*x") | |
6569 (setq have-x t) | |
6570 (insert "x")) | |
6571 ;; Protect fragile " ", "#" | |
6572 (if have-x nil | |
6573 (goto-char (1+ b)) | |
6574 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too? | |
6575 (forward-char -1) | |
6576 (insert "\\") | |
6577 (forward-char 1))) | |
6578 b))) | |
6579 | |
6580 (defun cperl-beautify-regexp () | |
6581 "do it. (Experimental, may change semantics, recheck the result.) | |
6582 We suppose that the regexp is scanned already." | |
6583 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6584 (goto-char (cperl-make-regexp-x)) |
20323 | 6585 (let ((b (point)) (e (make-marker))) |
6586 (forward-sexp 1) | |
6587 (set-marker e (1- (point))) | |
6588 (cperl-beautify-regexp-piece b e nil))) | |
6589 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6590 (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
|
6591 "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
|
6592 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
|
6593 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6594 (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
|
6595 (while (not done) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6596 (or (eq (following-char) ?\() |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6597 (search-backward "(" (1+ limit) t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6598 (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
|
6599 (setq done |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6600 (save-excursion |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6601 (skip-chars-backward "\\") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6602 (looking-at "\\(\\\\\\\\\\)*("))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6603 (or done (forward-char -1))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6604 |
20323 | 6605 (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
|
6606 "Find an enclosing group in regexp and contract it. |
20323 | 6607 \(Experimental, may change semantics, recheck the result.) |
6608 We suppose that the regexp is scanned already." | |
6609 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6610 (cperl-regext-to-level-start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6611 (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
|
6612 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6613 (set-marker e (1- (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6614 (goto-char b) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6615 (while (re-search-forward "\\(#\\)\\|\n" e t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6616 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6617 ((match-beginning 1) ; #-comment |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6618 (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
|
6619 (beginning-of-line 2) ; Skip |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6620 (setq s (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6621 (skip-chars-forward " \t") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6622 (delete-region s (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6623 (indent-to-column c)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6624 (t |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6625 (delete-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6626 (just-one-space)))))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6627 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6628 (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
|
6629 "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
|
6630 \(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
|
6631 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
|
6632 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6633 (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6634 (cperl-regext-to-level-start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6635 (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
|
6636 (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
|
6637 (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
|
6638 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6639 (set-marker e (1- (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6640 (goto-char (1+ b)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6641 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6642 (cond |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6643 ((match-beginning 1) ; Skip |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6644 nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6645 (t ; Group |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6646 (cperl-contract-level)))))) |
20323 | 6647 |
6648 (defun cperl-beautify-level () | |
6649 "Find an enclosing group in regexp and beautify it. | |
6650 \(Experimental, may change semantics, recheck the result.) | |
6651 We suppose that the regexp is scanned already." | |
6652 (interactive) | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6653 (cperl-regext-to-level-start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6654 (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
|
6655 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6656 (set-marker e (1- (point))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6657 (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
|
6658 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6659 (defun cperl-invert-if-unless () |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6660 "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
|
6661 (interactive) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6662 (or (looking-at "\\<") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6663 (forward-sexp -1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6664 (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
|
6665 (let ((pos1 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6666 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
|
6667 (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
|
6668 (forward-sexp 2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6669 (setq pos3 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6670 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6671 (setq pos2 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6672 (if (eq (following-char) ?\( ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6673 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6674 (goto-char pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6675 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6676 (setq pos5 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6677 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6678 (setq pos4 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6679 ;; 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
|
6680 (if (and (eq (following-char) ?\{ ) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6681 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6682 (cperl-backward-to-noncomment pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6683 (eq (preceding-char) ?\) ))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6684 (if (condition-case nil |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6685 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6686 (goto-char pos5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6687 (forward-sexp 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6688 (forward-sexp -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6689 (looking-at "\\<els\\(e\\|if\\)\\>")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6690 (error nil)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6691 (error |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6692 "`%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
|
6693 (goto-char (1- pos5)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6694 (cperl-backward-to-noncomment pos4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6695 (if (eq (preceding-char) ?\;) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6696 (forward-char -1)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6697 (setq pos45 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6698 (goto-char pos4) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6699 (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
|
6700 (setq p (match-beginning 0) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6701 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
|
6702 state (parse-partial-sexp pos4 p)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6703 (or (nth 3 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6704 (nth 4 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6705 (nth 5 state) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6706 (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
|
6707 (goto-char (match-end 0))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6708 ;; Finally got it |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6709 (goto-char (1+ pos4)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6710 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6711 (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
|
6712 (goto-char pos45) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6713 (or (looking-at ";?[ \t\n]*}") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6714 (progn |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6715 (skip-chars-forward "; \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6716 (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
|
6717 (and (equal s2 "") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6718 (setq s2 "1")) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6719 (goto-char (1- pos3)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6720 (cperl-backward-to-noncomment pos2) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6721 (or (looking-at "[ \t\n]*)") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6722 (goto-char (1- pos3))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6723 (setq p (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6724 (goto-char (1+ pos2)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6725 (skip-chars-forward " \t\n") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6726 (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
|
6727 (delete-region pos4 pos5) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6728 (delete-region pos2 pos3) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6729 (goto-char pos1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6730 (insert s2 " ") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6731 (just-one-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6732 (forward-word 1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6733 (setq pos1 (point)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6734 (insert " " s1 ";") |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6735 (forward-char -1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6736 (delete-horizontal-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6737 (goto-char pos1) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6738 (just-one-space) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6739 (cperl-indent-line)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6740 (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
|
6741 (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
|
6742 (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
|
6743 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6744 ;;; By Anthony Foiani <afoiani@uswest.com> |
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6745 ;;; Getting help on modules in C-h f ? |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6746 ;;; This is a modified version of `man'. |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6747 ;;; Need to teach it how to lookup functions |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6748 (defun cperl-perldoc (word) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6749 "Run `perldoc' on WORD." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6750 (interactive |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6751 (list (let* ((default-entry (cperl-word-at-point)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6752 (input (read-string |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6753 (format "perldoc entry%s: " |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6754 (if (string= default-entry "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6755 "" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6756 (format " (default %s)" default-entry)))))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6757 (if (string= input "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6758 (if (string= default-entry "") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6759 (error "No perldoc args given") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6760 default-entry) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6761 input)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6762 (let* ((is-func (and |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6763 (string-match "^[a-z]+$" word) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6764 (string-match (concat "^" word "\\>") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6765 (documentation-property |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6766 'cperl-short-docs |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6767 'variable-documentation)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6768 (manual-program (if is-func "perldoc -f" "perldoc"))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6769 (require 'man) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6770 (Man-getpage-in-background word))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6771 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6772 (defun cperl-perldoc-at-point () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6773 "Run a `perldoc' on the word around point." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6774 (interactive) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6775 (cperl-perldoc (cperl-word-at-point))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6776 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6777 (defcustom pod2man-program "pod2man" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6778 "*File name for `pod2man'." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6779 :type 'file |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6780 :group 'cperl) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6781 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6782 ;;; 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
|
6783 (defun cperl-pod-to-manpage () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6784 "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
|
6785 (interactive) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6786 (require 'man) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6787 (let* ((pod2man-args (concat buffer-file-name " | nroff -man ")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6788 (bufname (concat "Man " buffer-file-name)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6789 (buffer (generate-new-buffer bufname))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6790 (save-excursion |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6791 (set-buffer buffer) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6792 (let ((process-environment (copy-sequence process-environment))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6793 ;; Prevent any attempt to use display terminal fanciness. |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6794 (setenv "TERM" "dumb") |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6795 (set-process-sentinel |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6796 (start-process pod2man-program buffer "sh" "-c" |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6797 (format (cperl-pod2man-build-command) pod2man-args)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6798 'Man-bgproc-sentinel))))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6799 |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6800 (defun cperl-pod2man-build-command () |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6801 "Builds the entire background manpage and cleaning command." |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6802 (let ((command (concat pod2man-program " %s 2>/dev/null")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6803 (flist Man-filter-list)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6804 (while (and flist (car flist)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6805 (let ((pcom (car (car flist))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6806 (pargs (cdr (car flist)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6807 (setq command |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6808 (concat command " | " pcom " " |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6809 (mapconcat '(lambda (phrase) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6810 (if (not (stringp phrase)) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6811 (error "Malformed Man-filter-list")) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6812 phrase) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6813 pargs " "))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6814 (setq flist (cdr flist)))) |
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6815 command)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6816 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6817 (defun cperl-lazy-install ()) ; Avoid a warning |
20323 | 6818 |
6819 (if (fboundp 'run-with-idle-timer) | |
6820 (progn | |
6821 (defvar cperl-help-shown nil | |
6822 "Non-nil means that the help was already shown now.") | |
6823 | |
6824 (defvar cperl-lazy-installed nil | |
6825 "Non-nil means that the lazy-help handlers are installed now.") | |
6826 | |
6827 (defun cperl-lazy-install () | |
6828 (interactive) | |
6829 (make-variable-buffer-local 'cperl-help-shown) | |
6830 (if (and (cperl-val 'cperl-lazy-help-time) | |
6831 (not cperl-lazy-installed)) | |
6832 (progn | |
6833 (add-hook 'post-command-hook 'cperl-lazy-hook) | |
6834 (run-with-idle-timer | |
6835 (cperl-val 'cperl-lazy-help-time 1000000 5) | |
6836 t | |
6837 'cperl-get-help-defer) | |
6838 (setq cperl-lazy-installed t)))) | |
6839 | |
6840 (defun cperl-lazy-unstall () | |
6841 (interactive) | |
6842 (remove-hook 'post-command-hook 'cperl-lazy-hook) | |
6843 (cancel-function-timers 'cperl-get-help-defer) | |
6844 (setq cperl-lazy-installed nil)) | |
6845 | |
6846 (defun cperl-lazy-hook () | |
6847 (setq cperl-help-shown nil)) | |
6848 | |
6849 (defun cperl-get-help-defer () | |
6850 (if (not (eq major-mode 'perl-mode)) nil | |
6851 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t)) | |
6852 (cperl-get-help) | |
6853 (setq cperl-help-shown t)))) | |
6854 (cperl-lazy-install))) | |
6855 | |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6856 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6857 ;;; Plug for wrong font-lock: |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6858 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6859 (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
|
6860 (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
|
6861 (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
|
6862 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
|
6863 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
|
6864 (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
|
6865 (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
|
6866 (set-buffer-modified-p nil)))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6867 |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6868 (defvar cperl-d-l nil) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6869 (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
|
6870 ;; Some vars for debugging only |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6871 (let (start (dbg (point)) (iend end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6872 (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
|
6873 (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
|
6874 (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
|
6875 (setq start (point)) |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6876 (or cperl-syntax-done-to |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6877 (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
|
6878 (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
|
6879 (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
|
6880 t) ; Not debugged otherwise |
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6881 ;; 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
|
6882 (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
|
6883 ;; Fontification without a change |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6884 (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
|
6885 (and (> end start) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6886 (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
|
6887 (cperl-find-pods-heres start end t nil t)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6888 ;;(setq cperl-d-l (cons (format "Syntaxifying %s..%s from %s to %s\n" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6889 ;; dbg end start cperl-syntax-done-to) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6890 ;; cperl-d-l)) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6891 ;;(let ((standard-output (get-buffer "*Messages*"))) |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6892 ;;(princ (format "Syntaxifying %s..%s from %s to %s\n" |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6893 ;; 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
|
6894 (if (eq cperl-syntaxify-by-font-lock 'message) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6895 (message "Syntaxified %s..%s from %s to %s(%s), state %s-->%s" |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6896 dbg iend |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6897 start end 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
|
6898 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
|
6899 nil)) ; Do not iterate |
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6900 |
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6901 (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
|
6902 (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
|
6903 (while (< pos end) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6904 (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
|
6905 (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
|
6906 (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
|
6907 (setq pos posend))) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6908 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
|
6909 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6910 (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
|
6911 (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
|
6912 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
|
6913 (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
|
6914 (< 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
|
6915 (progn |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6916 (save-excursion |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6917 (goto-char from) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6918 (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
|
6919 |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6920 (defvar cperl-version |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6921 (let ((v "Revision: 4.21")) |
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6922 (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
|
6923 (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
|
6924 "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
|
6925 |
20323 | 6926 (provide 'cperl-mode) |
6927 | |
6928 ;;; cperl-mode.el ends here |