Mercurial > emacs
annotate lisp/progmodes/cperl-mode.el @ 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 11 May 2001 10:53:56 +0000 |
| parents | 44748506225d |
| children | b174db545cfd |
| rev | line source |
|---|---|
| 20323 | 1 ;;; cperl-mode.el --- Perl code editing commands for Emacs |
| 2 | |
| 3 ;; Copyright (C) 1985, 86, 87, 91, 92, 93, 94, 95, 96, 1997 | |
| 4 ;; Free Software Foundation, Inc. | |
| 5 | |
| 6 ;; Author: Ilya Zakharevich and Bob Olson | |
| 7 ;; Maintainer: Ilya Zakharevich <ilya@math.ohio-state.edu> | |
| 8 ;; Keywords: languages, Perl | |
| 9 | |
| 10 ;; This file is part of GNU Emacs. | |
| 11 | |
| 12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 13 ;; it under the terms of the GNU General Public License as published by | |
| 14 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 15 ;; any later version. | |
| 16 | |
| 17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 ;; GNU General Public License for more details. | |
| 21 | |
| 22 ;; You should have received a copy of the GNU General Public License | |
| 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
| 24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 25 ;; Boston, MA 02111-1307, USA. | |
| 26 | |
| 27 ;;; Corrections made by Ilya Zakharevich ilya@math.mps.ohio-state.edu | |
| 28 | |
| 29 ;;; Commentary: | |
| 30 | |
| 31 ;;; You can either fine-tune the bells and whistles of this mode or | |
| 32 ;;; bulk enable them by putting | |
| 33 | |
| 34 ;; (setq cperl-hairy t) | |
| 35 | |
| 36 ;;; in your .emacs file. (Emacs rulers do not consider it politically | |
| 37 ;;; correct to make whistles enabled by default.) | |
| 38 | |
| 39 ;;; DO NOT FORGET to read micro-docs (available from `Perl' menu) <<<<<< | |
| 40 ;;; or as help on variables `cperl-tips', `cperl-problems', <<<<<< | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
41 ;;; `cperl-non-problems', `cperl-praise', `cperl-speed'. <<<<<< |
| 20323 | 42 |
| 43 ;;; The mode information (on C-h m) provides some customization help. | |
| 44 ;;; If you use font-lock feature of this mode, it is advisable to use | |
| 45 ;;; either lazy-lock-mode or fast-lock-mode. I prefer lazy-lock. | |
| 46 | |
| 47 ;;; Faces used now: three faces for first-class and second-class keywords | |
| 48 ;;; and control flow words, one for each: comments, string, labels, | |
| 49 ;;; functions definitions and packages, arrays, hashes, and variable | |
| 50 ;;; definitions. If you do not see all these faces, your font-lock does | |
| 51 ;;; not define them, so you need to define them manually. | |
| 52 | |
| 53 ;;; into your .emacs file. | |
| 54 | |
| 55 ;;;; This mode supports font-lock, imenu and mode-compile. In the | |
| 56 ;;;; hairy version font-lock is on, but you should activate imenu | |
| 57 ;;;; yourself (note that mode-compile is not standard yet). Well, you | |
| 58 ;;;; can use imenu from keyboard anyway (M-x imenu), but it is better | |
| 59 ;;;; to bind it like that: | |
| 60 | |
| 61 ;; (define-key global-map [M-S-down-mouse-3] 'imenu) | |
| 62 | |
| 63 ;;; Code: | |
| 64 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
65 ;; Some macros are needed for `defcustom' |
| 31821 | 66 (eval-when-compile |
| 67 (require 'font-lock) | |
| 68 (defvar msb-menu-cond) | |
| 69 (defvar gud-perldb-history) | |
| 70 (defvar font-lock-background-mode) ; not in Emacs | |
| 71 (defvar font-lock-display-type) ; ditto | |
| 72 (defconst cperl-xemacs-p (string-match "XEmacs\\|Lucid" emacs-version)) | |
| 73 (defmacro cperl-is-face (arg) ; Takes quoted arg | |
| 74 (cond ((fboundp 'find-face) | |
| 75 `(find-face ,arg)) | |
| 76 (;;(and (fboundp 'face-list) | |
| 77 ;; (face-list)) | |
| 78 (fboundp 'face-list) | |
| 79 `(member ,arg (and (fboundp 'face-list) | |
| 80 (face-list)))) | |
| 81 (t | |
| 82 `(boundp ,arg)))) | |
| 83 (defmacro cperl-make-face (arg descr) ; Takes unquoted arg | |
| 84 (cond ((fboundp 'make-face) | |
| 85 `(make-face (quote ,arg))) | |
| 86 (t | |
| 87 `(defconst ,arg (quote ,arg) ,descr)))) | |
| 88 (defmacro cperl-force-face (arg descr) ; Takes unquoted arg | |
| 89 `(progn | |
| 90 (or (cperl-is-face (quote ,arg)) | |
| 91 (cperl-make-face ,arg ,descr)) | |
| 92 (or (boundp (quote ,arg)) ; We use unquoted variants too | |
| 93 (defconst ,arg (quote ,arg) ,descr)))) | |
| 94 (if cperl-xemacs-p | |
| 95 (defmacro cperl-etags-snarf-tag (file line) | |
| 26455 | 96 `(progn |
| 31821 | 97 (beginning-of-line 2) |
| 98 (list ,file ,line))) | |
| 99 (defmacro cperl-etags-snarf-tag (file line) | |
| 100 `(etags-snarf-tag))) | |
| 101 (if cperl-xemacs-p | |
| 102 (defmacro cperl-etags-goto-tag-location (elt) | |
| 103 ;;(progn | |
| 104 ;; (switch-to-buffer (get-file-buffer (elt (, elt) 0))) | |
| 105 ;; (set-buffer (get-file-buffer (elt (, elt) 0))) | |
| 106 ;; Probably will not work due to some save-excursion??? | |
| 107 ;; Or save-file-position? | |
| 108 ;; (message "Did I get to line %s?" (elt (, elt) 1)) | |
| 109 `(goto-line (string-to-int (elt ,elt 1)))) | |
| 110 ;;) | |
| 111 (defmacro cperl-etags-goto-tag-location (elt) | |
| 112 `(etags-goto-tag-location ,elt))) | |
| 113 (autoload 'tmm-prompt "tmm")) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
114 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
115 (defun cperl-choose-color (&rest list) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
116 (let (answer) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
117 (while list |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
118 (or answer |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
119 (if (or (x-color-defined-p (car list)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
120 (null (cdr list))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
121 (setq answer (car list)))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
122 (setq list (cdr list))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
123 answer)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
124 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
125 (defgroup cperl nil |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
126 "Major mode for editing Perl code." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
127 :prefix "cperl-" |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
128 :group 'languages |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
129 :version "20.3") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
130 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
131 (defgroup cperl-indentation-details nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
132 "Indentation." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
133 :prefix "cperl-" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
134 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
135 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
136 (defgroup cperl-affected-by-hairy nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
137 "Variables affected by `cperl-hairy'." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
138 :prefix "cperl-" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
139 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
140 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
141 (defgroup cperl-autoinsert-details nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
142 "Auto-insert tuneup." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
143 :prefix "cperl-" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
144 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
145 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
146 (defgroup cperl-faces nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
147 "Fontification colors." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
148 :prefix "cperl-" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
149 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
150 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
151 (defgroup cperl-speed nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
152 "Speed vs. validity tuneup." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
153 :prefix "cperl-" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
154 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
155 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
156 (defgroup cperl-help-system nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
157 "Help system tuneup." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
158 :prefix "cperl-" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
159 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
160 |
| 20323 | 161 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
162 (defcustom cperl-extra-newline-before-brace nil |
| 20323 | 163 "*Non-nil means that if, elsif, while, until, else, for, foreach |
| 164 and do constructs look like: | |
| 165 | |
| 166 if () | |
| 167 { | |
| 168 } | |
| 169 | |
| 170 instead of: | |
| 171 | |
| 172 if () { | |
| 173 } | |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
174 " |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
175 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
176 :group 'cperl-autoinsert-details) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
177 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
178 (defcustom cperl-extra-newline-before-brace-multiline |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
179 cperl-extra-newline-before-brace |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
180 "*Non-nil means the same as `cperl-extra-newline-before-brace', but |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
181 for constructs with multiline if/unless/while/until/for/foreach condition." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
182 :type 'boolean |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
183 :group 'cperl-autoinsert-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
184 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
185 (defcustom cperl-indent-level 2 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
186 "*Indentation of CPerl statements with respect to containing block." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
187 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
188 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
189 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
190 (defcustom cperl-lineup-step nil |
| 20323 | 191 "*`cperl-lineup' will always lineup at multiple of this number. |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
192 If nil, the value of `cperl-indent-level' will be used." |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
193 :type '(choice (const nil) integer) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
194 :group 'cperl-indentation-details) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
195 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
196 (defcustom cperl-brace-imaginary-offset 0 |
| 20323 | 197 "*Imagined indentation of a Perl open brace that actually follows a statement. |
| 198 An open brace following other text is treated as if it were this far | |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
199 to the right of the start of its line." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
200 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
201 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
202 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
203 (defcustom cperl-brace-offset 0 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
204 "*Extra indentation for braces, compared with other text in same context." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
205 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
206 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
207 (defcustom cperl-label-offset -2 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
208 "*Offset of CPerl label lines relative to usual indentation." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
209 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
210 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
211 (defcustom cperl-min-label-indent 1 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
212 "*Minimal offset of CPerl label lines." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
213 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
214 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
215 (defcustom cperl-continued-statement-offset 2 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
216 "*Extra indent for lines not starting new statements." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
217 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
218 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
219 (defcustom cperl-continued-brace-offset 0 |
| 20323 | 220 "*Extra indent for substatements that start with open-braces. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
221 This is in addition to cperl-continued-statement-offset." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
222 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
223 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
224 (defcustom cperl-close-paren-offset -1 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
225 "*Extra indent for substatements that start with close-parenthesis." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
226 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
227 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
228 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
229 (defcustom cperl-auto-newline nil |
| 20323 | 230 "*Non-nil means automatically newline before and after braces, |
| 231 and after colons and semicolons, inserted in CPerl code. The following | |
| 232 \\[cperl-electric-backspace] will remove the inserted whitespace. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
233 Insertion after colons requires both this variable and |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
234 `cperl-auto-newline-after-colon' set." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
235 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
236 :group 'cperl-autoinsert-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
237 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
238 (defcustom cperl-auto-newline-after-colon nil |
| 20323 | 239 "*Non-nil means automatically newline even after colons. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
240 Subject to `cperl-auto-newline' setting." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
241 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
242 :group 'cperl-autoinsert-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
243 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
244 (defcustom cperl-tab-always-indent t |
| 20323 | 245 "*Non-nil means TAB in CPerl mode should always reindent the current line, |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
246 regardless of where in the line point is when the TAB command is used." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
247 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
248 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
249 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
250 (defcustom cperl-font-lock nil |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
251 "*Non-nil (and non-null) means CPerl buffers will use `font-lock-mode'. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
252 Can be overwritten by `cperl-hairy' if nil." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
253 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
254 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
255 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
256 (defcustom cperl-electric-lbrace-space nil |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
257 "*Non-nil (and non-null) means { after $ should be preceded by ` '. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
258 Can be overwritten by `cperl-hairy' if nil." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
259 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
260 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
261 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
262 (defcustom cperl-electric-parens-string "({[]})<" |
| 20323 | 263 "*String of parentheses that should be electric in CPerl. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
264 Closing ones are electric only if the region is highlighted." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
265 :type 'string |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
266 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
267 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
268 (defcustom cperl-electric-parens nil |
| 20323 | 269 "*Non-nil (and non-null) means parentheses should be electric in CPerl. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
270 Can be overwritten by `cperl-hairy' if nil." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
271 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
272 :group 'cperl-affected-by-hairy) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
273 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
274 (defvar zmacs-regions) ; Avoid warning |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
275 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
276 (defcustom cperl-electric-parens-mark |
| 20323 | 277 (and window-system |
| 278 (or (and (boundp 'transient-mark-mode) ; For Emacs | |
| 279 transient-mark-mode) | |
| 280 (and (boundp 'zmacs-regions) ; For XEmacs | |
| 281 zmacs-regions))) | |
| 282 "*Not-nil means that electric parens look for active mark. | |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
283 Default is yes if there is visual feedback on mark." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
284 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
285 :group 'cperl-autoinsert-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
286 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
287 (defcustom cperl-electric-linefeed nil |
| 20323 | 288 "*If true, LFD should be hairy in CPerl, otherwise C-c LFD is hairy. |
| 289 In any case these two mean plain and hairy linefeeds together. | |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
290 Can be overwritten by `cperl-hairy' if nil." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
291 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
292 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
293 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
294 (defcustom cperl-electric-keywords nil |
| 20323 | 295 "*Not-nil (and non-null) means keywords are electric in CPerl. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
296 Can be overwritten by `cperl-hairy' if nil." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
297 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
298 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
299 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
300 (defcustom cperl-hairy nil |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
301 "*Not-nil means most of the bells and whistles are enabled in CPerl. |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
302 Affects: `cperl-font-lock', `cperl-electric-lbrace-space', |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
303 `cperl-electric-parens', `cperl-electric-linefeed', `cperl-electric-keywords', |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
304 `cperl-info-on-command-no-prompt', `cperl-clobber-lisp-bindings', |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
305 `cperl-lazy-help-time'." |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
306 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
307 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
308 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
309 (defcustom cperl-comment-column 32 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
310 "*Column to put comments in CPerl (use \\[cperl-indent] to lineup with code)." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
311 :type 'integer |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
312 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
313 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
314 (defcustom cperl-vc-header-alist '((SCCS "$sccs = '%W\%' ;") |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
315 (RCS "$rcs = ' $Id\$ ' ;")) |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
316 "*What to use as `vc-header-alist' in CPerl." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
317 :type '(repeat (list symbol string)) |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
318 :group 'cperl) |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
319 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
320 (defcustom cperl-clobber-mode-lists |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
321 (not |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
322 (and |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
323 (boundp 'interpreter-mode-alist) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
324 (assoc "miniperl" interpreter-mode-alist) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
325 (assoc "\\.\\([pP][Llm]\\|al\\)$" auto-mode-alist))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
326 "*Whether to install us into `interpreter-' and `extension' mode lists." |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
327 :type 'boolean |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
328 :group 'cperl) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
329 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
330 (defcustom cperl-info-on-command-no-prompt nil |
| 20323 | 331 "*Not-nil (and non-null) means not to prompt on C-h f. |
| 332 The opposite behaviour is always available if prefixed with C-c. | |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
333 Can be overwritten by `cperl-hairy' if nil." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
334 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
335 :group 'cperl-affected-by-hairy) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
336 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
337 (defcustom cperl-clobber-lisp-bindings nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
338 "*Not-nil (and non-null) means not overwrite C-h f. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
339 The function is available on \\[cperl-info-on-command], \\[cperl-get-help]. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
340 Can be overwritten by `cperl-hairy' if nil." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
341 :type '(choice (const null) boolean) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
342 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
343 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
344 (defcustom cperl-lazy-help-time nil |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
345 "*Not-nil (and non-null) means to show lazy help after given idle time. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
346 Can be overwritten by `cperl-hairy' to be 5 sec if nil." |
|
23270
fe5ca8d66639
(cperl-lazy-help-time): Fix customize
Andreas Schwab <schwab@suse.de>
parents:
22409
diff
changeset
|
347 :type '(choice (const null) (const nil) integer) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
348 :group 'cperl-affected-by-hairy) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
349 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
350 (defcustom cperl-pod-face 'font-lock-comment-face |
| 31821 | 351 "*Face for pod highlighting." |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
352 :type 'face |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
353 :group 'cperl-faces) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
354 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
355 (defcustom cperl-pod-head-face 'font-lock-variable-name-face |
| 31821 | 356 "*Face for pod highlighting. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
357 Font for POD headers." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
358 :type 'face |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
359 :group 'cperl-faces) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
360 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
361 (defcustom cperl-here-face 'font-lock-string-face |
| 31821 | 362 "*Face for here-docs highlighting." |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
363 :type 'face |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
364 :group 'cperl-faces) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
365 |
|
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
366 (defcustom cperl-invalid-face 'underline |
| 31821 | 367 "*Face for highlighting trailing whitespace." |
| 368 :type 'face | |
|
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
369 :version "21.1" |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
370 :group 'cperl-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
371 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
372 (defcustom cperl-pod-here-fontify '(featurep 'font-lock) |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
373 "*Not-nil after evaluation means to highlight pod and here-docs sections." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
374 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
375 :group 'cperl-faces) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
376 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
377 (defcustom cperl-fontify-m-as-s t |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
378 "*Not-nil means highlight 1arg regular expressions operators same as 2arg." |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
379 :type 'boolean |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
380 :group 'cperl-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
381 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
382 (defcustom cperl-pod-here-scan t |
| 20323 | 383 "*Not-nil means look for pod and here-docs sections during startup. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
384 You can always make lookup from menu or using \\[cperl-find-pods-heres]." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
385 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
386 :group 'cperl-speed) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
387 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
388 (defcustom cperl-imenu-addback nil |
| 20323 | 389 "*Not-nil means add backreferences to generated `imenu's. |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
390 May require patched `imenu' and `imenu-go'. Obsolete." |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
391 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
392 :group 'cperl-help-system) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
393 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
394 (defcustom cperl-max-help-size 66 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
395 "*Non-nil means shrink-wrapping of info-buffer allowed up to these percents." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
396 :type '(choice integer (const nil)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
397 :group 'cperl-help-system) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
398 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
399 (defcustom cperl-shrink-wrap-info-frame t |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
400 "*Non-nil means shrink-wrapping of info-buffer-frame allowed." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
401 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
402 :group 'cperl-help-system) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
403 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
404 (defcustom cperl-info-page "perl" |
| 20323 | 405 "*Name of the info page containing perl docs. |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
406 Older version of this page was called `perl5', newer `perl'." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
407 :type 'string |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
408 :group 'cperl-help-system) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
409 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
410 (defcustom cperl-use-syntax-table-text-property |
| 20323 | 411 (boundp 'parse-sexp-lookup-properties) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
412 "*Non-nil means CPerl sets up and uses `syntax-table' text property." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
413 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
414 :group 'cperl-speed) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
415 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
416 (defcustom cperl-use-syntax-table-text-property-for-tags |
| 20323 | 417 cperl-use-syntax-table-text-property |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
418 "*Non-nil means: set up and use `syntax-table' text property generating TAGS." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
419 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
420 :group 'cperl-speed) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
421 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
422 (defcustom cperl-scan-files-regexp "\\.\\([pP][Llm]\\|xs\\)$" |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
423 "*Regexp to match files to scan when generating TAGS." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
424 :type 'regexp |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
425 :group 'cperl) |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
426 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
427 (defcustom cperl-noscan-files-regexp "/\\(\\.\\.?\\|SCCS\\|RCS\\|blib\\)$" |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
428 "*Regexp to match files/dirs to skip when generating TAGS." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
429 :type 'regexp |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
430 :group 'cperl) |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
431 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
432 (defcustom cperl-regexp-indent-step nil |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
433 "*Indentation used when beautifying regexps. |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
434 If nil, the value of `cperl-indent-level' will be used." |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
435 :type '(choice integer (const nil)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
436 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
437 |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
438 (defcustom cperl-indent-left-aligned-comments t |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
439 "*Non-nil means that the comment starting in leftmost column should indent." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
440 :type 'boolean |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
441 :group 'cperl-indentation-details) |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
442 |
|
26667
a11929b241ab
(cperl-under-as-char): Make nil the default value.
Richard M. Stallman <rms@gnu.org>
parents:
26455
diff
changeset
|
443 (defcustom cperl-under-as-char nil |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
444 "*Non-nil means that the _ (underline) should be treated as word char." |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
445 :type 'boolean |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
446 :group 'cperl) |
| 20323 | 447 |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
448 (defcustom cperl-extra-perl-args "" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
449 "*Extra arguments to use when starting Perl. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
450 Currently used with `cperl-check-syntax' only." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
451 :type 'string |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
452 :group 'cperl) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
453 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
454 (defcustom cperl-message-electric-keyword t |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
455 "*Non-nil means that the `cperl-electric-keyword' prints a help message." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
456 :type 'boolean |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
457 :group 'cperl-help-system) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
458 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
459 (defcustom cperl-indent-region-fix-constructs 1 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
460 "*Amount of space to insert between `}' and `else' or `elsif' |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
461 in `cperl-indent-region'. Set to nil to leave as is. Values other |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
462 than 1 and nil will probably not work." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
463 :type '(choice (const nil) (const 1)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
464 :group 'cperl-indentation-details) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
465 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
466 (defcustom cperl-break-one-line-blocks-when-indent t |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
467 "*Non-nil means that one-line if/unless/while/until/for/foreach BLOCKs |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
468 need to be reformated into multiline ones when indenting a region." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
469 :type 'boolean |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
470 :group 'cperl-indentation-details) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
471 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
472 (defcustom cperl-fix-hanging-brace-when-indent t |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
473 "*Non-nil means that BLOCK-end `}' may be put on a separate line |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
474 when indenting a region. |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
475 Braces followed by else/elsif/while/until are excepted." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
476 :type 'boolean |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
477 :group 'cperl-indentation-details) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
478 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
479 (defcustom cperl-merge-trailing-else t |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
480 "*Non-nil means that BLOCK-end `}' followed by else/elsif/continue |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
481 may be merged to be on the same line when indenting a region." |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
482 :type 'boolean |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
483 :group 'cperl-indentation-details) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
484 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
485 (defcustom cperl-syntaxify-by-font-lock |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
486 (and window-system |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
487 (boundp 'parse-sexp-lookup-properties)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
488 "*Non-nil means that CPerl uses `font-lock's routines for syntaxification. |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
489 Having it TRUE may be not completely debugged yet." |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
490 :type '(choice (const message) boolean) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
491 :group 'cperl-speed) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
492 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
493 (defcustom cperl-syntaxify-unwind |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
494 t |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
495 "*Non-nil means that CPerl unwinds to a start of along construction |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
496 when syntaxifying a chunk of buffer." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
497 :type 'boolean |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
498 :group 'cperl-speed) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
499 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
500 (defcustom cperl-ps-print-face-properties |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
501 '((font-lock-keyword-face nil nil bold shadow) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
502 (font-lock-variable-name-face nil nil bold) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
503 (font-lock-function-name-face nil nil bold italic box) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
504 (font-lock-constant-face nil "LightGray" bold) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
505 (cperl-array-face nil "LightGray" bold underline) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
506 (cperl-hash-face nil "LightGray" bold italic underline) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
507 (font-lock-comment-face nil "LightGray" italic) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
508 (font-lock-string-face nil nil italic underline) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
509 (cperl-nonoverridable-face nil nil italic underline) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
510 (font-lock-type-face nil nil underline) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
511 (underline nil "LightGray" strikeout)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
512 "List given as an argument to `ps-extend-face-list' in `cperl-ps-print'." |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
513 :type '(repeat (cons symbol |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
514 (cons (choice (const nil) string) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
515 (cons (choice (const nil) string) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
516 (repeat symbol))))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
517 :group 'cperl-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
518 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
519 (if window-system |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
520 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
521 (defvar cperl-dark-background |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
522 (cperl-choose-color "navy" "os2blue" "darkgreen")) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
523 (defvar cperl-dark-foreground |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
524 (cperl-choose-color "orchid1" "orange")) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
525 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
526 (defface cperl-nonoverridable-face |
| 26455 | 527 `((((class grayscale) (background light)) |
| 528 (:background "Gray90" :italic t :underline t)) | |
| 529 (((class grayscale) (background dark)) | |
| 530 (:foreground "Gray80" :italic t :underline t :bold t)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
531 (((class color) (background light)) |
| 26455 | 532 (:foreground "chartreuse3")) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
533 (((class color) (background dark)) |
| 26455 | 534 (:foreground ,cperl-dark-foreground)) |
| 535 (t (:bold t :underline t))) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
536 "Font Lock mode face used to highlight array names." |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
537 :group 'cperl-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
538 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
539 (defface cperl-array-face |
| 26455 | 540 `((((class grayscale) (background light)) |
| 541 (:background "Gray90" :bold t)) | |
| 542 (((class grayscale) (background dark)) | |
| 543 (:foreground "Gray80" :bold t)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
544 (((class color) (background light)) |
| 26455 | 545 (:foreground "Blue" :background "lightyellow2" :bold t)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
546 (((class color) (background dark)) |
| 26455 | 547 (:foreground "yellow" :background ,cperl-dark-background :bold t)) |
| 548 (t (:bold t))) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
549 "Font Lock mode face used to highlight array names." |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
550 :group 'cperl-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
551 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
552 (defface cperl-hash-face |
| 26455 | 553 `((((class grayscale) (background light)) |
| 554 (:background "Gray90" :bold t :italic t)) | |
| 555 (((class grayscale) (background dark)) | |
| 556 (:foreground "Gray80" :bold t :italic t)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
557 (((class color) (background light)) |
| 26455 | 558 (:foreground "Red" :background "lightyellow2" :bold t :italic t)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
559 (((class color) (background dark)) |
| 26455 | 560 (:foreground "Red" :background ,cperl-dark-background :bold t :italic t)) |
| 561 (t (:bold t :italic t))) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
562 "Font Lock mode face used to highlight hash names." |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
563 :group 'cperl-faces))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
564 |
| 20323 | 565 |
| 566 | |
| 567 ;;; Short extra-docs. | |
| 568 | |
| 569 (defvar cperl-tips 'please-ignore-this-line | |
| 570 "Get newest version of this package from | |
| 571 ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs | |
| 572 and/or | |
| 573 ftp://ftp.math.ohio-state.edu/pub/users/ilya/perl | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
574 Subdirectory `cperl-mode' may contain yet newer development releases and/or |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
575 patches to related files. |
| 20323 | 576 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
577 For best results apply to an older Emacs the patches from |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
578 ftp://ftp.math.ohio-state.edu/pub/users/ilya/cperl-mode/patches |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
579 \(this upgrades syntax-parsing abilities of RMS Emaxen v19.34 and |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
580 v20.2 up to the level of RMS Emacs v20.3 - a must for a good Perl |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
581 mode.) You will not get much from XEmacs, it's syntax abilities are |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
582 too primitive. |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
583 |
| 20323 | 584 Get support packages choose-color.el (or font-lock-extra.el before |
| 585 19.30), imenu-go.el from the same place. \(Look for other files there | |
| 586 too... ;-). Get a patch for imenu.el in 19.29. Note that for 19.30 and | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
587 later you should use choose-color.el *instead* of font-lock-extra.el |
| 20323 | 588 \(and you will not get smart highlighting in C :-(). |
| 589 | |
| 590 Note that to enable Compile choices in the menu you need to install | |
| 591 mode-compile.el. | |
| 592 | |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
593 If your Emacs does not default to `cperl-mode' on Perl files, and you |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
594 want it to: put the following into your .emacs file: |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
595 |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
596 (defalias 'perl-mode 'cperl-mode) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
597 |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
598 Get perl5-info from |
| 20323 | 599 $CPAN/doc/manual/info/perl-info.tar.gz |
| 600 older version was on | |
| 601 http://www.metronet.com:70/9/perlinfo/perl5/manual/perl5-info.tar.gz | |
| 602 | |
| 603 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
|
604 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
|
605 Tools/Tags submenu in Perl menu. |
| 20323 | 606 |
| 607 If some class structure is too complicated, use Tools/Hierarchy-view | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
608 from Perl menu, or hierarchic view of imenu. The second one uses the |
| 20323 | 609 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
|
610 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
|
611 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
612 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
|
613 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
614 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
|
615 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
616 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
|
617 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
|
618 |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
619 \\[normal-mode] |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
620 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
621 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
|
622 |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
623 \\[load-library] cperl-mode RET |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
624 \\[normal-mode] |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
625 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
626 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
|
627 micro-docs on what I know about CPerl problems.") |
| 20323 | 628 |
| 629 (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
|
630 "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
|
631 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
|
632 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
|
633 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
634 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
|
635 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
|
636 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
|
637 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
638 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
|
639 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
|
640 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
|
641 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
|
642 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
|
643 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
644 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
|
645 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
|
646 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
|
647 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
|
648 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
|
649 braces. |
| 20323 | 650 |
| 651 This may be confusing, since the regexp s#//#/#\; may be highlighted | |
| 652 as a comment, but it will be recognized as a regexp by the indentation | |
| 653 code. Or the opposite case, when a pod section is highlighted, but | |
| 654 may break the indentation of the following code (though indentation | |
| 655 should work if the balance of delimiters is not broken by POD). | |
| 656 | |
| 657 The main trick (to make $ a \"backslash\") makes constructions like | |
| 658 ${aaa} look like unbalanced braces. The only trick I can think of is | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
659 to insert it as $ {aaa} (legal in perl5, not in perl4). |
| 20323 | 660 |
| 661 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
|
662 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
|
663 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
664 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
|
665 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
|
666 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
|
667 and on CPAN. |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
668 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
669 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
|
670 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
|
671 via `cperl-use-syntax-table-text-property'." ) |
| 20323 | 672 |
| 673 (defvar cperl-non-problems 'please-ignore-this-line | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
674 "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
|
675 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
|
676 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
|
677 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
|
678 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
679 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
|
680 \(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
|
681 not relevant on newer Emacsen, since they can do it automatically). |
| 20323 | 682 |
| 683 Try to help CPerl: add comments with embedded quotes to fix CPerl | |
| 684 misunderstandings about the end of quotation: | |
| 685 | |
| 686 $a='500$'; # '; | |
| 687 | |
| 688 You won't need it too often. The reason: $ \"quotes\" the following | |
| 689 character (this saves a life a lot of times in CPerl), thus due to | |
| 690 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
|
691 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
|
692 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
|
693 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
694 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
|
695 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
|
696 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
|
697 correctly. So |
| 20323 | 698 1 if s#//#/#; |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
699 would not break indentation, but |
| 20323 | 700 1 if ( s#//#/# ); |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
701 would. Upgrade. |
| 20323 | 702 |
| 703 By similar reasons | |
| 704 s\"abc\"def\"; | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
705 would confuse CPerl a lot. |
| 20323 | 706 |
| 707 If you still get wrong indentation in situation that you think the | |
| 708 code should be able to parse, try: | |
| 709 | |
| 710 a) Check what Emacs thinks about balance of your parentheses. | |
| 711 b) Supply the code to me (IZ). | |
| 712 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
713 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
|
714 treated at all (except highlighting and inhibiting indentation). Upgrade. |
| 20323 | 715 |
| 716 To speed up coloring the following compromises exist: | |
| 717 a) sub in $mypackage::sub may be highlighted. | |
| 718 b) -z in [a-z] may be highlighted. | |
| 719 c) if your regexp contains a keyword (like \"s\"), it may be highlighted. | |
| 720 | |
| 721 | |
| 722 Imenu in 19.31 is broken. Set `imenu-use-keymap-menu' to t, and remove | |
| 723 `car' before `imenu-choose-buffer-index' in `imenu'. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
724 `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
|
725 |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
726 A lot of things on XEmacs may be broken too, judging by bug reports I |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
727 receive. Note that some releases of XEmacs are better than the others |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
728 as far as bugs reports I see are concerned.") |
| 20323 | 729 |
| 730 (defvar cperl-praise 'please-ignore-this-line | |
| 731 "RMS asked me to list good things about CPerl. Here they go: | |
| 732 | |
| 733 0) It uses the newest `syntax-table' property ;-); | |
| 734 | |
| 735 1) It does 99% of Perl syntax correct (as opposed to 80-90% in Perl | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
736 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
|
737 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
|
738 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
739 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
|
740 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
|
741 updates syntax assist hints when you edit your script. |
| 20323 | 742 |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
743 2) It is generally believed to be \"the most user-friendly Emacs |
| 20323 | 744 package\" whatever it may mean (I doubt that the people who say similar |
| 745 things tried _all_ the rest of Emacs ;-), but this was not a lonely | |
| 746 voice); | |
| 747 | |
| 748 3) Everything is customizable, one-by-one or in a big sweep; | |
| 749 | |
| 750 4) It has many easily-accessable \"tools\": | |
| 751 a) Can run program, check syntax, start debugger; | |
| 752 b) Can lineup vertically \"middles\" of rows, like `=' in | |
| 753 a = b; | |
| 754 cc = d; | |
| 755 c) Can insert spaces where this impoves readability (in one | |
| 756 interactive sweep over the buffer); | |
| 757 d) Has support for imenu, including: | |
| 758 1) Separate unordered list of \"interesting places\"; | |
| 759 2) Separate TOC of POD sections; | |
| 760 3) Separate list of packages; | |
| 761 4) Hierarchical view of methods in (sub)packages; | |
| 762 5) and functions (by the full name - with package); | |
| 763 e) Has an interface to INFO docs for Perl; The interface is | |
| 764 very flexible, including shrink-wrapping of | |
| 765 documentation buffer/frame; | |
| 766 f) Has a builtin list of one-line explanations for perl constructs. | |
| 767 g) Can show these explanations if you stay long enough at the | |
| 768 corresponding place (or on demand); | |
| 769 h) Has an enhanced fontification (using 3 or 4 additional faces | |
| 770 comparing to font-lock - basically, different | |
| 771 namespaces in Perl have different colors); | |
| 772 i) Can construct TAGS basing on its knowledge of Perl syntax, | |
| 773 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
|
774 TAGS (if \"by directory\", .xs files - with C-language |
| 20323 | 775 bindings - are included in the scan); |
| 776 j) Can build a hierarchical view of classes (via imenu) basing | |
| 777 on generated TAGS file; | |
| 778 k) Has electric parentheses, electric newlines, uses Abbrev | |
| 779 for electric logical constructs | |
| 780 while () {} | |
| 781 with different styles of expansion (context sensitive | |
| 782 to be not so bothering). Electric parentheses behave | |
| 783 \"as they should\" in a presence of a visible region. | |
| 784 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
|
785 m) Can convert from |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
786 if (A) { B } |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
787 to |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
788 B if A; |
| 20323 | 789 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
790 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
|
791 (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
|
792 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
|
793 |
| 20323 | 794 5) The indentation engine was very smart, but most of tricks may be |
| 795 not needed anymore with the support for `syntax-table' property. Has | |
| 796 progress indicator for indentation (with `imenu' loaded). | |
| 797 | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
798 6) Indent-region improves inline-comments as well; also corrects |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
799 whitespace *inside* the conditional/loop constructs. |
| 20323 | 800 |
| 801 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
|
802 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
803 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
|
804 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
|
805 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
806 9) When doing indentation of control constructs, may correct |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
807 line-breaks/spacing between elements of the construct. |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
808 |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
809 10) Uses a linear-time algorith for indentation of regions (on Emaxen with |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
810 capable syntax engines). |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
811 ") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
812 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
813 (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
|
814 "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
|
815 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
|
816 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
817 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
|
818 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
|
819 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
820 *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
|
821 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
|
822 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
|
823 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
|
824 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
|
825 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
826 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
|
827 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
|
828 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
|
829 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
830 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
|
831 PODs and HERE-documents), or |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
832 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
|
833 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
|
834 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
835 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
|
836 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
837 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
|
838 `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
|
839 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
|
840 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
841 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
|
842 `cperl-pod-here-scan' |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
843 to nil. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
844 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
845 B) Speed of editing operations. |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
846 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
847 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
|
848 `cperl-use-syntax-table-text-property' |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
849 variable to nil (if it is set to t). This will disable |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
850 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
|
851 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
|
852 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
|
853 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
854 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
|
855 of, say, long POD sections. |
| 20323 | 856 ") |
| 857 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
858 (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
|
859 "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
|
860 |
| 32422 | 861 `cperl-array-face' Array names |
| 862 `cperl-hash-face' Hash names | |
| 863 `font-lock-comment-face' Comments, PODs and whatever is considered | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
864 syntaxically to be not code |
| 32422 | 865 `font-lock-constant-face' HERE-doc delimiters, labels, delimiters of |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
866 2-arg operators s/y/tr/ or of RExen, |
| 32422 | 867 `font-lock-function-name-face' Special-cased m// and s//foo/, _ as |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
868 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
|
869 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
|
870 (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
|
871 package names (when recognized), format names |
| 32422 | 872 `font-lock-keyword-face' Control flow switch constructs, declarators |
| 873 `cperl-nonoverridable-face' Non-overridable keywords, modifiers of RExen | |
| 874 `font-lock-string-face' Strings, qw() constructs, RExen, POD sections, | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
875 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
|
876 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
|
877 as string literals |
| 32422 | 878 `font-lock-type-face' Overridable keywords |
| 879 `font-lock-variable-name-face' Variable declarations, indirect array and | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
880 hash names, POD headers/item names |
| 32422 | 881 `cperl-invalid-face' Trailing whitespace |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
882 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
883 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
|
884 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
|
885 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
|
886 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
|
887 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
888 Help with best setup of these faces for printout requested (for each of |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
889 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
|
890 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
891 \(Not finished.)") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
892 |
| 20323 | 893 |
| 894 | |
| 895 ;;; Portability stuff: | |
| 896 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
897 (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
|
898 |
| 20323 | 899 (defmacro cperl-define-key (emacs-key definition &optional xemacs-key) |
| 26455 | 900 `(define-key cperl-mode-map |
| 901 ,(if xemacs-key | |
| 902 `(if cperl-xemacs-p ,xemacs-key ,emacs-key) | |
| 903 emacs-key) | |
| 904 ,definition)) | |
| 20323 | 905 |
| 906 (defvar cperl-del-back-ch | |
| 907 (car (append (where-is-internal 'delete-backward-char) | |
| 908 (where-is-internal 'backward-delete-char-untabify))) | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
909 "Character generated by key bound to `delete-backward-char'.") |
| 20323 | 910 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
911 (and (vectorp cperl-del-back-ch) (= (length cperl-del-back-ch) 1) |
| 20323 | 912 (setq cperl-del-back-ch (aref cperl-del-back-ch 0))) |
| 913 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
914 (defun cperl-mark-active () (mark)) ; Avoid undefined warning |
| 20323 | 915 (if cperl-xemacs-p |
| 916 (progn | |
| 917 ;; "Active regions" are on: use region only if active | |
| 918 ;; "Active regions" are off: use region unconditionally | |
| 919 (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
|
920 (if zmacs-regions (mark) t))) |
| 20323 | 921 (defun cperl-use-region-p () |
| 922 (if transient-mark-mode mark-active t)) | |
| 923 (defun cperl-mark-active () mark-active)) | |
| 924 | |
| 925 (defsubst cperl-enable-font-lock () | |
| 926 (or cperl-xemacs-p window-system)) | |
| 927 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
928 (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
|
929 (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
|
930 |
| 20323 | 931 (if (boundp 'unread-command-events) |
| 932 (if cperl-xemacs-p | |
| 933 (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
|
934 (setq unread-command-events (list (eval '(character-to-event c)))))) |
| 20323 | 935 (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
|
936 (set 'unread-command-event (eval '(character-to-event c))))) ; Avoid warnings |
| 20323 | 937 |
| 938 (or (fboundp 'uncomment-region) | |
| 939 (defun uncomment-region (beg end) | |
| 940 (interactive "r") | |
| 941 (comment-region beg end -1))) | |
| 942 | |
| 943 (defvar cperl-do-not-fontify | |
| 944 (if (string< emacs-version "19.30") | |
| 945 'fontified | |
| 946 'lazy-lock) | |
| 947 "Text property which inhibits refontification.") | |
| 948 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
949 (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
|
950 ;; 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
|
951 (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
|
952 nil |
| 20323 | 953 (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
|
954 to cperl-do-not-fontify t))) |
| 20323 | 955 |
|
20961
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
956 (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
|
957 "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
|
958 :type 'hook |
|
79530a618cd3
Commented out line 471 (miniperl entry in interpreter-mode-alist)
Stephen Eglen <stephen@gnu.org>
parents:
20953
diff
changeset
|
959 :group 'cperl) |
| 20323 | 960 |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
961 (defvar cperl-syntax-state nil) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
962 (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
|
963 (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
|
964 (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
|
965 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
966 ;; Make customization possible "in reverse" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
967 (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
|
968 (cond |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
969 ((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
|
970 (cperl-hairy (or hairy t)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
971 (t (symbol-value symbol)))) |
| 20323 | 972 |
| 973 ;;; Probably it is too late to set these guys already, but it can help later: | |
| 974 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
975 ;;;(and cperl-clobber-mode-lists |
| 20323 | 976 ;;;(setq auto-mode-alist |
| 977 ;;; (append '(("\\.\\([pP][Llm]\\|al\\)$" . perl-mode)) auto-mode-alist )) | |
| 978 ;;;(and (boundp 'interpreter-mode-alist) | |
| 979 ;;; (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
|
980 ;;; '(("miniperl" . perl-mode)))))) |
| 31821 | 981 (eval-when-compile |
| 982 (condition-case nil | |
| 983 (require 'imenu) | |
| 984 (error nil)) | |
| 985 (condition-case nil | |
| 986 (require 'easymenu) | |
| 987 (error nil)) | |
| 988 (condition-case nil | |
| 989 (require 'etags) | |
| 990 (error nil)) | |
| 991 (condition-case nil | |
| 992 (require 'timer) | |
| 993 (error nil)) | |
| 994 (condition-case nil | |
| 995 (require 'man) | |
| 996 (error nil)) | |
| 997 (condition-case nil | |
| 998 (require 'info) | |
| 999 (error nil)) | |
| 1000 (if (fboundp 'ps-extend-face-list) | |
| 1001 (defmacro cperl-ps-extend-face-list (arg) | |
| 1002 `(ps-extend-face-list ,arg)) | |
| 1003 (defmacro cperl-ps-extend-face-list (arg) | |
| 1004 `(error "This version of Emacs has no `ps-extend-face-list'."))) | |
| 1005 ;; Calling `cperl-enable-font-lock' below doesn't compile on XEmacs, | |
| 1006 ;; macros instead of defsubsts don't work on Emacs, so we do the | |
| 1007 ;; expansion manually. Any other suggestions? | |
| 1008 (require 'cl)) | |
| 20323 | 1009 |
| 1010 (defvar cperl-mode-abbrev-table nil | |
| 1011 "Abbrev table in use in Cperl-mode buffers.") | |
| 1012 | |
| 1013 (add-hook 'edit-var-mode-alist '(perl-mode (regexp . "^cperl-"))) | |
| 1014 | |
| 1015 (defvar cperl-mode-map () "Keymap used in CPerl mode.") | |
| 1016 | |
| 1017 (if cperl-mode-map nil | |
| 1018 (setq cperl-mode-map (make-sparse-keymap)) | |
| 1019 (cperl-define-key "{" 'cperl-electric-lbrace) | |
| 1020 (cperl-define-key "[" 'cperl-electric-paren) | |
| 1021 (cperl-define-key "(" 'cperl-electric-paren) | |
| 1022 (cperl-define-key "<" 'cperl-electric-paren) | |
| 1023 (cperl-define-key "}" 'cperl-electric-brace) | |
| 1024 (cperl-define-key "]" 'cperl-electric-rparen) | |
| 1025 (cperl-define-key ")" 'cperl-electric-rparen) | |
| 1026 (cperl-define-key ";" 'cperl-electric-semi) | |
| 1027 (cperl-define-key ":" 'cperl-electric-terminator) | |
| 1028 (cperl-define-key "\C-j" 'newline-and-indent) | |
| 1029 (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
|
1030 (cperl-define-key "\C-c\C-t" 'cperl-invert-if-unless) |
| 20323 | 1031 (cperl-define-key "\C-c\C-a" 'cperl-toggle-auto-newline) |
| 1032 (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
|
1033 (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
|
1034 (cperl-define-key "\C-c\C-f" 'auto-fill-mode) |
| 20323 | 1035 (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
|
1036 (cperl-define-key "\C-c\C-ha" 'cperl-toggle-autohelp) |
| 20323 | 1037 (cperl-define-key "\e\C-q" 'cperl-indent-exp) ; Usually not bound |
| 1038 (cperl-define-key [?\C-\M-\|] 'cperl-lineup | |
| 1039 [(control meta |)]) | |
| 1040 ;;(cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
| 1041 ;;(cperl-define-key "\e;" 'cperl-indent-for-comment) | |
| 1042 (cperl-define-key "\177" 'cperl-electric-backspace) | |
| 1043 (cperl-define-key "\t" 'cperl-indent-command) | |
| 1044 ;; 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
|
1045 (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
|
1046 [(control c) (control h) F]) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1047 (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
|
1048 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1049 (cperl-define-key "\C-hf" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1050 ;;(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
|
1051 'cperl-info-on-command |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1052 [(control h) f]) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1053 (cperl-define-key "\C-hv" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1054 ;;(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
|
1055 '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
|
1056 [(control h) v]) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1057 (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
|
1058 ;;(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
|
1059 (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
|
1060 [(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
|
1061 (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
|
1062 ;;(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
|
1063 (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
|
1064 [(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
|
1065 (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
|
1066 [(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
|
1067 (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
|
1068 ;;(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
|
1069 'cperl-get-help |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1070 [(control c) (control h) v])) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1071 (if (and cperl-xemacs-p |
| 20323 | 1072 (<= emacs-minor-version 11) (<= emacs-major-version 19)) |
| 1073 (progn | |
| 1074 ;; substitute-key-definition is usefulness-deenhanced... | |
| 1075 (cperl-define-key "\M-q" 'cperl-fill-paragraph) | |
| 1076 (cperl-define-key "\e;" 'cperl-indent-for-comment) | |
| 1077 (cperl-define-key "\e\C-\\" 'cperl-indent-region)) | |
| 1078 (substitute-key-definition | |
| 1079 'indent-sexp 'cperl-indent-exp | |
| 1080 cperl-mode-map global-map) | |
| 1081 (substitute-key-definition | |
| 1082 'fill-paragraph 'cperl-fill-paragraph | |
| 1083 cperl-mode-map global-map) | |
| 1084 (substitute-key-definition | |
| 1085 'indent-region 'cperl-indent-region | |
| 1086 cperl-mode-map global-map) | |
| 1087 (substitute-key-definition | |
| 1088 'indent-for-comment 'cperl-indent-for-comment | |
| 1089 cperl-mode-map global-map))) | |
| 1090 | |
| 1091 (defvar cperl-menu) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1092 (defvar cperl-lazy-installed) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1093 (defvar cperl-old-style nil) |
| 20323 | 1094 (condition-case nil |
| 1095 (progn | |
| 1096 (require 'easymenu) | |
| 1097 (easy-menu-define cperl-menu cperl-mode-map "Menu for CPerl mode" | |
| 1098 '("Perl" | |
| 1099 ["Beginning of function" beginning-of-defun t] | |
| 1100 ["End of function" end-of-defun t] | |
| 1101 ["Mark function" mark-defun t] | |
| 1102 ["Indent expression" cperl-indent-exp t] | |
| 1103 ["Fill paragraph/comment" cperl-fill-paragraph t] | |
| 1104 "----" | |
| 1105 ["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
|
1106 ["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
|
1107 ("Regexp" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1108 ["Beautify" cperl-beautify-regexp |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1109 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
|
1110 ["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
|
1111 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
|
1112 ["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
|
1113 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
|
1114 ["Contract groups" cperl-contract-levels |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1115 cperl-use-syntax-table-text-property]) |
| 20323 | 1116 ["Refresh \"hard\" constructions" cperl-find-pods-heres t] |
| 1117 "----" | |
| 1118 ["Indent region" cperl-indent-region (cperl-use-region-p)] | |
| 1119 ["Comment region" cperl-comment-region (cperl-use-region-p)] | |
| 1120 ["Uncomment region" cperl-uncomment-region (cperl-use-region-p)] | |
| 1121 "----" | |
| 1122 ["Run" mode-compile (fboundp 'mode-compile)] | |
| 1123 ["Kill" mode-compile-kill (and (fboundp 'mode-compile-kill) | |
| 1124 (get-buffer "*compilation*"))] | |
| 1125 ["Next error" next-error (get-buffer "*compilation*")] | |
| 1126 ["Check syntax" cperl-check-syntax (fboundp 'mode-compile)] | |
| 1127 "----" | |
| 1128 ["Debugger" cperl-db t] | |
| 1129 "----" | |
| 1130 ("Tools" | |
| 1131 ["Imenu" imenu (fboundp 'imenu)] | |
| 1132 ["Insert spaces if needed" cperl-find-bad-style t] | |
| 1133 ["Class Hierarchy from TAGS" cperl-tags-hier-init t] | |
| 1134 ;;["Update classes" (cperl-tags-hier-init t) tags-table-list] | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1135 ["CPerl pretty print (exprmntl)" cperl-ps-print |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1136 (fboundp 'ps-extend-face-list)] |
| 20323 | 1137 ["Imenu on info" cperl-imenu-on-info (featurep 'imenu)] |
| 1138 ("Tags" | |
| 1139 ;;; ["Create tags for current file" cperl-etags t] | |
| 1140 ;;; ["Add tags for current file" (cperl-etags t) t] | |
| 1141 ;;; ["Create tags for Perl files in directory" (cperl-etags nil t) t] | |
| 1142 ;;; ["Add tags for Perl files in directory" (cperl-etags t t) t] | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1143 ;;; ["Create tags for Perl files in (sub)directories" |
| 20323 | 1144 ;;; (cperl-etags nil 'recursive) t] |
| 1145 ;;; ["Add tags for Perl files in (sub)directories" | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1146 ;;; (cperl-etags t 'recursive) t]) |
| 20323 | 1147 ;;;; cperl-write-tags (&optional file erase recurse dir inbuffer) |
| 1148 ["Create tags for current file" (cperl-write-tags nil t) t] | |
| 1149 ["Add tags for current file" (cperl-write-tags) t] | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1150 ["Create tags for Perl files in directory" |
| 20323 | 1151 (cperl-write-tags nil t nil t) t] |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1152 ["Add tags for Perl files in directory" |
| 20323 | 1153 (cperl-write-tags nil nil nil t) t] |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1154 ["Create tags for Perl files in (sub)directories" |
| 20323 | 1155 (cperl-write-tags nil t t t) t] |
| 1156 ["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
|
1157 (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
|
1158 ("Perl docs" |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1159 ["Define word at point" imenu-go-find-at-position |
| 20323 | 1160 (fboundp 'imenu-go-find-at-position)] |
| 1161 ["Help on function" cperl-info-on-command t] | |
| 1162 ["Help on function at point" cperl-info-on-current-command t] | |
| 1163 ["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
|
1164 ["Perldoc" cperl-perldoc t] |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1165 ["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
|
1166 ["View manpage of POD in this file" cperl-pod-to-manpage t] |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1167 ["Auto-help on" cperl-lazy-install |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1168 (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
|
1169 (not cperl-lazy-installed))] |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1170 ["Auto-help off" (eval '(cperl-lazy-unstall)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1171 (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
|
1172 cperl-lazy-installed)]) |
| 20323 | 1173 ("Toggle..." |
| 1174 ["Auto newline" cperl-toggle-auto-newline t] | |
| 1175 ["Electric parens" cperl-toggle-electric t] | |
| 1176 ["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
|
1177 ["Fix whitespace on indent" cperl-toggle-construct-fix t] |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1178 ["Auto fill" auto-fill-mode t]) |
| 20323 | 1179 ("Indent styles..." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1180 ["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
|
1181 ["PerlStyle" (cperl-set-style "PerlStyle") t] |
| 20323 | 1182 ["GNU" (cperl-set-style "GNU") t] |
| 1183 ["C++" (cperl-set-style "C++") t] | |
| 1184 ["FSF" (cperl-set-style "FSF") t] | |
| 1185 ["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
|
1186 ["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
|
1187 ["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
|
1188 ["Memorized" (cperl-set-style-back) cperl-old-style]) |
| 20323 | 1189 ("Micro-docs" |
| 1190 ["Tips" (describe-variable 'cperl-tips) t] | |
| 1191 ["Problems" (describe-variable 'cperl-problems) t] | |
| 1192 ["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
|
1193 ["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
|
1194 ["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
|
1195 ["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
|
1196 ["CPerl mode" (describe-function 'cperl-mode) t] |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1197 ["CPerl version" |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1198 (message "The version of master-file for this CPerl is %s" |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1199 cperl-version) t])))) |
| 20323 | 1200 (error nil)) |
| 1201 | |
| 1202 (autoload 'c-macro-expand "cmacexp" | |
| 1203 "Display the result of expanding all C macros occurring in the region. | |
| 1204 The expansion is entirely correct because it uses the C preprocessor." | |
| 1205 t) | |
| 1206 | |
| 1207 (defvar cperl-mode-syntax-table nil | |
| 1208 "Syntax table in use in Cperl-mode buffers.") | |
| 1209 | |
| 1210 (defvar cperl-string-syntax-table nil | |
| 1211 "Syntax table in use in Cperl-mode string-like chunks.") | |
| 1212 | |
| 1213 (if cperl-mode-syntax-table | |
| 1214 () | |
| 1215 (setq cperl-mode-syntax-table (make-syntax-table)) | |
| 1216 (modify-syntax-entry ?\\ "\\" cperl-mode-syntax-table) | |
| 1217 (modify-syntax-entry ?/ "." cperl-mode-syntax-table) | |
| 1218 (modify-syntax-entry ?* "." cperl-mode-syntax-table) | |
| 1219 (modify-syntax-entry ?+ "." cperl-mode-syntax-table) | |
| 1220 (modify-syntax-entry ?- "." cperl-mode-syntax-table) | |
| 1221 (modify-syntax-entry ?= "." cperl-mode-syntax-table) | |
| 1222 (modify-syntax-entry ?% "." cperl-mode-syntax-table) | |
| 1223 (modify-syntax-entry ?< "." cperl-mode-syntax-table) | |
| 1224 (modify-syntax-entry ?> "." cperl-mode-syntax-table) | |
| 1225 (modify-syntax-entry ?& "." cperl-mode-syntax-table) | |
| 1226 (modify-syntax-entry ?$ "\\" cperl-mode-syntax-table) | |
| 1227 (modify-syntax-entry ?\n ">" cperl-mode-syntax-table) | |
| 1228 (modify-syntax-entry ?# "<" cperl-mode-syntax-table) | |
| 1229 (modify-syntax-entry ?' "\"" cperl-mode-syntax-table) | |
| 1230 (modify-syntax-entry ?` "\"" cperl-mode-syntax-table) | |
| 1231 (if cperl-under-as-char | |
| 1232 (modify-syntax-entry ?_ "w" cperl-mode-syntax-table)) | |
| 1233 (modify-syntax-entry ?: "_" cperl-mode-syntax-table) | |
| 1234 (modify-syntax-entry ?| "." cperl-mode-syntax-table) | |
| 1235 (setq cperl-string-syntax-table (copy-syntax-table cperl-mode-syntax-table)) | |
| 1236 (modify-syntax-entry ?$ "." cperl-string-syntax-table) | |
| 1237 (modify-syntax-entry ?# "." cperl-string-syntax-table) ; (?# comment ) | |
| 1238 ) | |
| 1239 | |
| 1240 | |
| 1241 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1242 (defvar cperl-faces-init nil) |
| 20323 | 1243 ;; Fix for msb.el |
| 1244 (defvar cperl-msb-fixed nil) | |
| 1245 ;;;###autoload | |
| 1246 (defun cperl-mode () | |
| 1247 "Major mode for editing Perl code. | |
| 1248 Expression and list commands understand all C brackets. | |
| 1249 Tab indents for Perl code. | |
| 1250 Paragraphs are separated by blank lines only. | |
| 1251 Delete converts tabs to spaces as it moves back. | |
| 1252 | |
| 1253 Various characters in Perl almost always come in pairs: {}, (), [], | |
| 1254 sometimes <>. When the user types the first, she gets the second as | |
| 1255 well, with optional special formatting done on {}. (Disabled by | |
| 1256 default.) You can always quote (with \\[quoted-insert]) the left | |
| 1257 \"paren\" to avoid the expansion. The processing of < is special, | |
| 1258 since most the time you mean \"less\". Cperl mode tries to guess | |
| 1259 whether you want to type pair <>, and inserts is if it | |
| 1260 appropriate. You can set `cperl-electric-parens-string' to the string that | |
| 1261 contains the parenths from the above list you want to be electrical. | |
| 1262 Electricity of parenths is controlled by `cperl-electric-parens'. | |
| 1263 You may also set `cperl-electric-parens-mark' to have electric parens | |
| 1264 look for active mark and \"embrace\" a region if possible.' | |
| 1265 | |
| 1266 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
|
1267 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1268 if, else, elsif, unless, while, until, continue, do, |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1269 for, foreach, formy and foreachmy. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1270 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1271 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
|
1272 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1273 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
|
1274 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
|
1275 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
|
1276 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
|
1277 } { } 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
|
1278 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
|
1279 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
|
1280 new line between the braces (if you typed \\[cperl-linefeed] in a POD |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1281 directive line, then appropriate number of new lines is inserted). |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1282 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1283 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
|
1284 |
| 20323 | 1285 bite if angry; |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1286 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1287 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
|
1288 `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
|
1289 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
|
1290 to nil.) |
| 20323 | 1291 |
| 1292 \\[cperl-linefeed] is a convenience replacement for typing carriage | |
| 1293 return. It places you in the next line with proper indentation, or if | |
| 1294 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
|
1295 |
| 20323 | 1296 foreach (@lines) {print; print} |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1297 |
| 20323 | 1298 and you are on a boundary of a statement inside braces, it will |
| 1299 transform the construct into a multiline and will place you into an | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1300 appropriately indented blank line. If you need a usual |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1301 `newline-and-indent' behaviour, it is on \\[newline-and-indent], |
| 20323 | 1302 see documentation on `cperl-electric-linefeed'. |
| 1303 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1304 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
|
1305 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1306 if (A) { B } |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1307 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1308 into |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1309 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1310 B if A; |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1311 |
| 20323 | 1312 \\{cperl-mode-map} |
| 1313 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1314 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
|
1315 \(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
|
1316 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
|
1317 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
|
1318 \(see also `cperl-electric-parens-mark' and `cperl-electric-parens'), |
| 20323 | 1319 setting `cperl-electric-keywords' enables electric expansion of |
| 1320 control structures in CPerl. `cperl-electric-linefeed' governs which | |
| 1321 one of two linefeed behavior is preferable. You can enable all these | |
| 1322 options simultaneously (recommended mode of use) by setting | |
| 1323 `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
|
1324 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
|
1325 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
|
1326 consequent \\[cperl-electric-backspace]. |
| 20323 | 1327 |
| 1328 If your site has perl5 documentation in info format, you can use commands | |
| 1329 \\[cperl-info-on-current-command] and \\[cperl-info-on-command] to access it. | |
| 1330 These keys run commands `cperl-info-on-current-command' and | |
| 1331 `cperl-info-on-command', which one is which is controlled by variable | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1332 `cperl-info-on-command-no-prompt' and `cperl-clobber-lisp-bindings' |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1333 \(in turn affected by `cperl-hairy'). |
| 20323 | 1334 |
| 1335 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
|
1336 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
|
1337 man via menu. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1338 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1339 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
|
1340 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
|
1341 `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
|
1342 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
|
1343 menu, or via \\[cperl-toggle-autohelp]. Requires `run-with-idle-timer'. |
| 20323 | 1344 |
| 1345 Use \\[cperl-lineup] to vertically lineup some construction - put the | |
| 1346 beginning of the region at the start of construction, and make region | |
| 1347 span the needed amount of lines. | |
| 1348 | |
| 1349 Variables `cperl-pod-here-scan', `cperl-pod-here-fontify', | |
| 1350 `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
|
1351 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
|
1352 for indentation too, otherwise they are used for highlighting only. |
| 20323 | 1353 |
| 1354 Variables controlling indentation style: | |
| 1355 `cperl-tab-always-indent' | |
| 1356 Non-nil means TAB in CPerl mode should always reindent the current line, | |
| 1357 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
|
1358 `cperl-indent-left-aligned-comments' |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1359 Non-nil means that the comment starting in leftmost column should indent. |
| 20323 | 1360 `cperl-auto-newline' |
| 1361 Non-nil means automatically newline before and after braces, | |
| 1362 and after colons and semicolons, inserted in Perl code. The following | |
| 1363 \\[cperl-electric-backspace] will remove the inserted whitespace. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1364 Insertion after colons requires both this variable and |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1365 `cperl-auto-newline-after-colon' set. |
| 20323 | 1366 `cperl-auto-newline-after-colon' |
| 1367 Non-nil means automatically newline even after colons. | |
| 1368 Subject to `cperl-auto-newline' setting. | |
| 1369 `cperl-indent-level' | |
| 1370 Indentation of Perl statements within surrounding block. | |
| 1371 The surrounding block's indentation is the indentation | |
| 1372 of the line on which the open-brace appears. | |
| 1373 `cperl-continued-statement-offset' | |
| 1374 Extra indentation given to a substatement, such as the | |
| 1375 then-clause of an if, or body of a while, or just a statement continuation. | |
| 1376 `cperl-continued-brace-offset' | |
| 1377 Extra indentation given to a brace that starts a substatement. | |
| 1378 This is in addition to `cperl-continued-statement-offset'. | |
| 1379 `cperl-brace-offset' | |
| 1380 Extra indentation for line if it starts with an open brace. | |
| 1381 `cperl-brace-imaginary-offset' | |
| 1382 An open brace following other text is treated as if it the line started | |
| 1383 this far to the right of the actual line indentation. | |
| 1384 `cperl-label-offset' | |
| 1385 Extra indentation for line that is a label. | |
| 1386 `cperl-min-label-indent' | |
| 1387 Minimal indentation for line that is a label. | |
| 1388 | |
| 1389 Settings for K&R and BSD indentation styles are | |
| 1390 `cperl-indent-level' 5 8 | |
| 1391 `cperl-continued-statement-offset' 5 8 | |
| 1392 `cperl-brace-offset' -5 -8 | |
| 1393 `cperl-label-offset' -5 -8 | |
| 1394 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1395 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
|
1396 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
|
1397 \\[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
|
1398 \(both available from menu). |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1399 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1400 If `cperl-indent-level' is 0, the statement after opening brace in |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1401 column 0 is indented on |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1402 `cperl-brace-offset'+`cperl-continued-statement-offset'. |
| 20323 | 1403 |
| 1404 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
|
1405 with no args. |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1406 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1407 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
|
1408 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
|
1409 `cperl-non-problems', `cperl-praise', `cperl-speed'." |
| 20323 | 1410 (interactive) |
| 1411 (kill-all-local-variables) | |
| 1412 (use-local-map cperl-mode-map) | |
| 1413 (if (cperl-val 'cperl-electric-linefeed) | |
| 1414 (progn | |
| 1415 (local-set-key "\C-J" 'cperl-linefeed) | |
| 1416 (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
|
1417 (if (and |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1418 (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
|
1419 (cperl-val 'cperl-info-on-command-no-prompt)) |
| 20323 | 1420 (progn |
| 1421 ;; don't clobber the backspace binding: | |
| 1422 (cperl-define-key "\C-hf" 'cperl-info-on-current-command [(control h) f]) | |
| 1423 (cperl-define-key "\C-c\C-hf" 'cperl-info-on-command | |
| 1424 [(control c) (control h) f]))) | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1425 (setq major-mode 'cperl-mode) |
| 20323 | 1426 (setq mode-name "CPerl") |
| 1427 (if (not cperl-mode-abbrev-table) | |
| 1428 (let ((prev-a-c abbrevs-changed)) | |
| 1429 (define-abbrev-table 'cperl-mode-abbrev-table '( | |
| 1430 ("if" "if" cperl-electric-keyword 0) | |
| 1431 ("elsif" "elsif" cperl-electric-keyword 0) | |
| 1432 ("while" "while" cperl-electric-keyword 0) | |
| 1433 ("until" "until" cperl-electric-keyword 0) | |
| 1434 ("unless" "unless" cperl-electric-keyword 0) | |
| 1435 ("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
|
1436 ("continue" "continue" cperl-electric-else 0) |
| 20323 | 1437 ("for" "for" cperl-electric-keyword 0) |
| 1438 ("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
|
1439 ("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
|
1440 ("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
|
1441 ("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
|
1442 ("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
|
1443 ("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
|
1444 ("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
|
1445 ("head2" "head2" cperl-electric-pod 0))) |
| 20323 | 1446 (setq abbrevs-changed prev-a-c))) |
| 1447 (setq local-abbrev-table cperl-mode-abbrev-table) | |
| 1448 (abbrev-mode (if (cperl-val 'cperl-electric-keywords) 1 0)) | |
| 1449 (set-syntax-table cperl-mode-syntax-table) | |
| 1450 (make-local-variable 'paragraph-start) | |
| 1451 (setq paragraph-start (concat "^$\\|" page-delimiter)) | |
| 1452 (make-local-variable 'paragraph-separate) | |
| 1453 (setq paragraph-separate paragraph-start) | |
| 1454 (make-local-variable 'paragraph-ignore-fill-prefix) | |
| 1455 (setq paragraph-ignore-fill-prefix t) | |
| 1456 (make-local-variable 'indent-line-function) | |
| 1457 (setq indent-line-function 'cperl-indent-line) | |
| 1458 (make-local-variable 'require-final-newline) | |
| 1459 (setq require-final-newline t) | |
| 1460 (make-local-variable 'comment-start) | |
| 1461 (setq comment-start "# ") | |
| 1462 (make-local-variable 'comment-end) | |
| 1463 (setq comment-end "") | |
| 1464 (make-local-variable 'comment-column) | |
| 1465 (setq comment-column cperl-comment-column) | |
| 1466 (make-local-variable 'comment-start-skip) | |
| 1467 (setq comment-start-skip "#+ *") | |
| 1468 (make-local-variable 'defun-prompt-regexp) | |
| 1469 (setq defun-prompt-regexp "^[ \t]*sub[ \t]+\\([^ \t\n{(;]+\\)[ \t]*") | |
| 1470 (make-local-variable 'comment-indent-function) | |
| 1471 (setq comment-indent-function 'cperl-comment-indent) | |
| 1472 (make-local-variable 'parse-sexp-ignore-comments) | |
| 1473 (setq parse-sexp-ignore-comments t) | |
| 1474 (make-local-variable 'indent-region-function) | |
| 1475 (setq indent-region-function 'cperl-indent-region) | |
| 1476 ;;(setq auto-fill-function 'cperl-do-auto-fill) ; Need to switch on and off! | |
| 1477 (make-local-variable 'imenu-create-index-function) | |
| 1478 (setq imenu-create-index-function | |
| 31821 | 1479 (function cperl-imenu--create-perl-index)) |
| 20323 | 1480 (make-local-variable 'imenu-sort-function) |
| 1481 (setq imenu-sort-function nil) | |
| 1482 (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
|
1483 (set 'vc-header-alist cperl-vc-header-alist) ; Avoid warning |
| 20323 | 1484 (make-local-variable 'font-lock-defaults) |
| 1485 (setq font-lock-defaults | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1486 (cond |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1487 ((string< emacs-version "19.30") |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1488 '(cperl-font-lock-keywords-2)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1489 ((string< emacs-version "19.33") ; Which one to use? |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1490 '((cperl-font-lock-keywords |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1491 cperl-font-lock-keywords-1 |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
1492 cperl-font-lock-keywords-2))) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1493 (t |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1494 '((cperl-load-font-lock-keywords |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1495 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
|
1496 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
|
1497 (make-local-variable 'cperl-syntax-state) |
| 20323 | 1498 (if cperl-use-syntax-table-text-property |
| 1499 (progn | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1500 (make-local-variable 'parse-sexp-lookup-properties) |
| 20323 | 1501 ;; 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
|
1502 (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
|
1503 ;; Fix broken font-lock: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1504 (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
|
1505 (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
|
1506 'font-lock-default-unfontify-region)) |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1507 (make-local-variable 'font-lock-unfontify-region-function) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1508 (set 'font-lock-unfontify-region-function |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1509 'cperl-font-lock-unfontify-region-function) |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1510 (make-local-variable 'cperl-syntax-done-to) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1511 ;; 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
|
1512 ;; 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
|
1513 ;; 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
|
1514 ;; are defined |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1515 (make-local-variable 'font-lock-syntactic-keywords) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1516 (setq font-lock-syntactic-keywords |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1517 (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
|
1518 '(t (cperl-fontify-syntaxically)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1519 '(t))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1520 (make-local-variable 'cperl-old-style) |
| 31821 | 1521 (set (make-local-variable 'normal-auto-fill-function) |
| 32880 | 1522 #'cperl-do-auto-fill) |
| 20323 | 1523 (if (cperl-enable-font-lock) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1524 (if (cperl-val 'cperl-font-lock) |
| 20323 | 1525 (progn (or cperl-faces-init (cperl-init-faces)) |
| 1526 (font-lock-mode 1)))) | |
| 1527 (and (boundp 'msb-menu-cond) | |
| 1528 (not cperl-msb-fixed) | |
| 1529 (cperl-msb-fix)) | |
| 1530 (if (featurep 'easymenu) | |
|
22392
7300e6ab99d2
(cperl-problems): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22391
diff
changeset
|
1531 (easy-menu-add cperl-menu)) ; A NOP in Emacs. |
| 20323 | 1532 (run-hooks 'cperl-mode-hook) |
| 1533 ;; After hooks since fontification will break this | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1534 (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
|
1535 (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
|
1536 ;; (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
|
1537 ;; (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
|
1538 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
|
1539 (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
|
1540 (cperl-find-pods-heres))))) |
| 20323 | 1541 |
| 1542 ;; Fix for perldb - make default reasonable | |
| 1543 (defun cperl-db () | |
| 1544 (interactive) | |
| 1545 (require 'gud) | |
| 1546 (perldb (read-from-minibuffer "Run perldb (like this): " | |
| 1547 (if (consp gud-perldb-history) | |
| 1548 (car gud-perldb-history) | |
| 1549 (concat "perl " ;;(file-name-nondirectory | |
| 1550 ;; I have problems | |
| 1551 ;; in OS/2 | |
| 1552 ;; otherwise | |
| 1553 (buffer-file-name))) | |
| 1554 nil nil | |
| 1555 '(gud-perldb-history . 1)))) | |
| 1556 | |
| 1557 (defun cperl-msb-fix () | |
| 1558 ;; Adds perl files to msb menu, supposes that msb is already loaded | |
| 1559 (setq cperl-msb-fixed t) | |
| 1560 (let* ((l (length msb-menu-cond)) | |
| 1561 (last (nth (1- l) msb-menu-cond)) | |
| 1562 (precdr (nthcdr (- l 2) msb-menu-cond)) ; cdr of this is last | |
| 1563 (handle (1- (nth 1 last)))) | |
| 1564 (setcdr precdr (list | |
| 1565 (list | |
|
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
1566 '(memq major-mode '(cperl-mode perl-mode)) |
| 20323 | 1567 handle |
| 1568 "Perl Files (%d)") | |
| 1569 last)))) | |
| 1570 | |
| 1571 ;; This is used by indent-for-comment | |
| 1572 ;; to decide how much to indent a comment in CPerl code | |
| 1573 ;; based on its context. Do fallback if comment is found wrong. | |
| 1574 | |
| 1575 (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
|
1576 (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
|
1577 (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
|
1578 (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
|
1579 (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
|
1580 (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
|
1581 (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
|
1582 |
| 20323 | 1583 |
| 1584 (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
|
1585 (let ((p (point)) (c (current-column)) was phony) |
| 20323 | 1586 (if (looking-at "^#") 0 ; Existing comment at bol stays there. |
| 1587 ;; Wrong comment found | |
| 1588 (save-excursion | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1589 (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
|
1590 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
|
1591 cperl-st-cfence)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1592 (if phony |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1593 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1594 (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
|
1595 (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
|
1596 (forward-char -1)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1597 (setq was nil))) |
| 20323 | 1598 (if (= (point) p) |
| 1599 (progn | |
| 1600 (skip-chars-backward " \t") | |
| 1601 (max (1+ (current-column)) ; Else indent at comment column | |
| 1602 comment-column)) | |
| 1603 (if was nil | |
| 1604 (insert comment-start) | |
| 1605 (backward-char (length comment-start))) | |
| 1606 (setq cperl-wrong-comment t) | |
| 1607 (indent-to comment-column 1) ; Indent minimum 1 | |
| 1608 c))))) ; except leave at least one space. | |
| 1609 | |
| 1610 ;;;(defun cperl-comment-indent-fallback () | |
| 1611 ;;; "Is called if the standard comment-search procedure fails. | |
| 1612 ;;;Point is at start of real comment." | |
| 1613 ;;; (let ((c (current-column)) target cnt prevc) | |
| 1614 ;;; (if (= c comment-column) nil | |
| 1615 ;;; (setq cnt (skip-chars-backward "[ \t]")) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1616 ;;; (setq target (max (1+ (setq prevc |
| 20323 | 1617 ;;; (current-column))) ; Else indent at comment column |
| 1618 ;;; comment-column)) | |
| 1619 ;;; (if (= c comment-column) nil | |
| 1620 ;;; (delete-backward-char cnt) | |
| 1621 ;;; (while (< prevc target) | |
| 1622 ;;; (insert "\t") | |
| 1623 ;;; (setq prevc (current-column))) | |
| 1624 ;;; (if (> prevc target) (progn (delete-char -1) (setq prevc (current-column)))) | |
| 1625 ;;; (while (< prevc target) | |
| 1626 ;;; (insert " ") | |
| 1627 ;;; (setq prevc (current-column))))))) | |
| 1628 | |
| 1629 (defun cperl-indent-for-comment () | |
| 1630 "Substitute for `indent-for-comment' in CPerl." | |
| 1631 (interactive) | |
| 1632 (let (cperl-wrong-comment) | |
| 1633 (indent-for-comment) | |
| 1634 (if cperl-wrong-comment | |
| 1635 (progn (cperl-to-comment-or-eol) | |
| 1636 (forward-char (length comment-start)))))) | |
| 1637 | |
| 1638 (defun cperl-comment-region (b e arg) | |
| 1639 "Comment or uncomment each line in the region in CPerl mode. | |
| 1640 See `comment-region'." | |
| 1641 (interactive "r\np") | |
| 1642 (let ((comment-start "#")) | |
| 1643 (comment-region b e arg))) | |
| 1644 | |
| 1645 (defun cperl-uncomment-region (b e arg) | |
| 1646 "Uncomment or comment each line in the region in CPerl mode. | |
| 1647 See `comment-region'." | |
| 1648 (interactive "r\np") | |
| 1649 (let ((comment-start "#")) | |
| 1650 (comment-region b e (- arg)))) | |
| 1651 | |
| 1652 (defvar cperl-brace-recursing nil) | |
| 1653 | |
| 1654 (defun cperl-electric-brace (arg &optional only-before) | |
| 1655 "Insert character and correct line's indentation. | |
| 1656 If ONLY-BEFORE and `cperl-auto-newline', will insert newline before the | |
| 1657 place (even in empty line), but not after. If after \")\" and the inserted | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1658 char is \"{\", insert extra newline before only if |
| 20323 | 1659 `cperl-extra-newline-before-brace'." |
| 1660 (interactive "P") | |
| 1661 (let (insertpos | |
| 1662 (other-end (if (and cperl-electric-parens-mark | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1663 (cperl-mark-active) |
| 20323 | 1664 (< (mark) (point))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1665 (mark) |
| 20323 | 1666 nil))) |
| 1667 (if (and other-end | |
| 1668 (not cperl-brace-recursing) | |
| 1669 (cperl-val 'cperl-electric-parens) | |
| 1670 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point))) | |
| 1671 ;; Need to insert a matching pair | |
| 1672 (progn | |
| 1673 (save-excursion | |
| 1674 (setq insertpos (point-marker)) | |
| 1675 (goto-char other-end) | |
| 1676 (setq last-command-char ?\{) | |
| 1677 (cperl-electric-lbrace arg insertpos)) | |
| 1678 (forward-char 1)) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1679 ;: 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
|
1680 (if (and (eq last-command-char ?\}) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1681 (not |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1682 (condition-case nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1683 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1684 (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
|
1685 ;;(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
|
1686 (cperl-after-expr-p nil "{;)")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1687 (error nil)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1688 ;; Just insert the guy |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1689 (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
|
1690 (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
|
1691 (eolp) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1692 (or (and (null only-before) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1693 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1694 (skip-chars-backward " \t") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1695 (bolp))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1696 (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
|
1697 ;; 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
|
1698 ;; 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
|
1699 (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
|
1700 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1701 (skip-chars-backward " \t") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1702 (eq (preceding-char) ?\)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1703 (if cperl-auto-newline |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1704 (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
|
1705 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1706 (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
|
1707 (cperl-indent-line) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1708 (if cperl-auto-newline |
|
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 (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
|
1711 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1712 (newline) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1713 (cperl-indent-line))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1714 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1715 (if insertpos (progn (goto-char insertpos) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1716 (search-forward (make-string |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1717 1 last-command-char)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1718 (setq insertpos (1- (point))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1719 (delete-char -1)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1720 (if insertpos |
| 20323 | 1721 (save-excursion |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1722 (goto-char insertpos) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1723 (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
|
1724 (self-insert-command (prefix-numeric-value arg))))))) |
| 20323 | 1725 |
| 1726 (defun cperl-electric-lbrace (arg &optional end) | |
| 1727 "Insert character, correct line's indentation, correct quoting by space." | |
| 1728 (interactive "P") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1729 (let (pos after |
| 20323 | 1730 (cperl-brace-recursing t) |
| 1731 (cperl-auto-newline cperl-auto-newline) | |
| 1732 (other-end (or end | |
| 1733 (if (and cperl-electric-parens-mark | |
| 1734 (cperl-mark-active) | |
| 1735 (> (mark) (point))) | |
| 1736 (save-excursion | |
| 1737 (goto-char (mark)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1738 (point-marker)) |
| 20323 | 1739 nil)))) |
| 1740 (and (cperl-val 'cperl-electric-lbrace-space) | |
| 1741 (eq (preceding-char) ?$) | |
| 1742 (save-excursion | |
| 1743 (skip-chars-backward "$") | |
| 1744 (looking-at "\\(\\$\\$\\)*\\$\\([^\\$]\\|$\\)")) | |
| 1745 (insert ?\ )) | |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1746 ;; Check whether we are in comment |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1747 (if (and |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1748 (save-excursion |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1749 (beginning-of-line) |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1750 (not (looking-at "[ \t]*#"))) |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1751 (cperl-after-expr-p nil "{;)")) |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1752 nil |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
1753 (setq cperl-auto-newline nil)) |
| 20323 | 1754 (cperl-electric-brace arg) |
| 1755 (and (cperl-val 'cperl-electric-parens) | |
| 1756 (eq last-command-char ?{) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1757 (memq last-command-char |
| 20323 | 1758 (append cperl-electric-parens-string nil)) |
| 1759 (or (if other-end (goto-char (marker-position other-end))) | |
| 1760 t) | |
| 1761 (setq last-command-char ?} pos (point)) | |
| 1762 (progn (cperl-electric-brace arg t) | |
| 1763 (goto-char pos))))) | |
| 1764 | |
| 1765 (defun cperl-electric-paren (arg) | |
| 1766 "Insert a matching pair of parentheses." | |
| 1767 (interactive "P") | |
| 1768 (let ((beg (save-excursion (beginning-of-line) (point))) | |
| 1769 (other-end (if (and cperl-electric-parens-mark | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1770 (cperl-mark-active) |
| 20323 | 1771 (> (mark) (point))) |
| 1772 (save-excursion | |
| 1773 (goto-char (mark)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1774 (point-marker)) |
| 20323 | 1775 nil))) |
| 1776 (if (and (cperl-val 'cperl-electric-parens) | |
| 1777 (memq last-command-char | |
| 1778 (append cperl-electric-parens-string nil)) | |
| 1779 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
| 1780 ;;(not (save-excursion (search-backward "#" beg t))) | |
| 1781 (if (eq last-command-char ?<) | |
| 1782 (progn | |
| 1783 (and abbrev-mode ; later it is too late, may be after `for' | |
| 1784 (expand-abbrev)) | |
| 1785 (cperl-after-expr-p nil "{;(,:=")) | |
| 1786 1)) | |
| 1787 (progn | |
| 1788 (self-insert-command (prefix-numeric-value arg)) | |
| 1789 (if other-end (goto-char (marker-position other-end))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1790 (insert (make-string |
| 20323 | 1791 (prefix-numeric-value arg) |
| 1792 (cdr (assoc last-command-char '((?{ .?}) | |
| 1793 (?[ . ?]) | |
| 1794 (?( . ?)) | |
| 1795 (?< . ?>)))))) | |
| 1796 (forward-char (- (prefix-numeric-value arg)))) | |
| 1797 (self-insert-command (prefix-numeric-value arg))))) | |
| 1798 | |
| 1799 (defun cperl-electric-rparen (arg) | |
| 1800 "Insert a matching pair of parentheses if marking is active. | |
| 1801 If not, or if we are not at the end of marking range, would self-insert." | |
| 1802 (interactive "P") | |
| 1803 (let ((beg (save-excursion (beginning-of-line) (point))) | |
| 1804 (other-end (if (and cperl-electric-parens-mark | |
| 1805 (cperl-val 'cperl-electric-parens) | |
| 1806 (memq last-command-char | |
| 1807 (append cperl-electric-parens-string nil)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1808 (cperl-mark-active) |
| 20323 | 1809 (< (mark) (point))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1810 (mark) |
| 20323 | 1811 nil)) |
| 1812 p) | |
| 1813 (if (and other-end | |
| 1814 (cperl-val 'cperl-electric-parens) | |
| 1815 (memq last-command-char '( ?\) ?\] ?\} ?\> )) | |
| 1816 (>= (save-excursion (cperl-to-comment-or-eol) (point)) (point)) | |
| 1817 ;;(not (save-excursion (search-backward "#" beg t))) | |
| 1818 ) | |
| 1819 (progn | |
| 1820 (self-insert-command (prefix-numeric-value arg)) | |
| 1821 (setq p (point)) | |
| 1822 (if other-end (goto-char other-end)) | |
| 1823 (insert (make-string | |
| 1824 (prefix-numeric-value arg) | |
| 1825 (cdr (assoc last-command-char '((?\} . ?\{) | |
| 1826 (?\] . ?\[) | |
| 1827 (?\) . ?\() | |
| 1828 (?\> . ?\<)))))) | |
| 1829 (goto-char (1+ p))) | |
| 1830 (self-insert-command (prefix-numeric-value arg))))) | |
| 1831 | |
| 1832 (defun cperl-electric-keyword () | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1833 "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
|
1834 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
|
1835 to nil." |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1836 (let ((beg (save-excursion (beginning-of-line) (point))) |
| 20323 | 1837 (dollar (and (eq last-command-char ?$) |
| 1838 (eq this-command 'self-insert-command))) | |
| 1839 (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
|
1840 (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
|
1841 my do) |
| 20323 | 1842 (and (save-excursion |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1843 (condition-case nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1844 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1845 (backward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1846 (setq do (looking-at "do\\>"))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1847 (error nil)) |
| 20323 | 1848 (cperl-after-expr-p nil "{;:")) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1849 (save-excursion |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1850 (not |
| 20323 | 1851 (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
|
1852 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
| 20323 | 1853 beg t))) |
| 1854 (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
|
1855 (or |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1856 (looking-at "=cut") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1857 (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
|
1858 (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
|
1859 'syntax-type) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1860 'pod)))))) |
| 20323 | 1861 (progn |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1862 (and (eq (preceding-char) ?y) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1863 (progn ; "foreachmy" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1864 (forward-char -2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1865 (insert " ") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1866 (forward-char 2) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1867 (setq my t dollar t |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1868 delete |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1869 (memq this-command '(self-insert-command newline))))) |
| 20323 | 1870 (and dollar (insert " $")) |
| 1871 (cperl-indent-line) | |
| 1872 ;;(insert " () {\n}") | |
| 1873 (cond | |
| 1874 (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
|
1875 (insert (if do "\n" " ()\n")) |
| 20323 | 1876 (insert "{") |
| 1877 (cperl-indent-line) | |
| 1878 (insert "\n") | |
| 1879 (cperl-indent-line) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1880 (insert "\n}") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1881 (and do (insert " while ();"))) |
| 20323 | 1882 (t |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1883 (insert (if do " {\n} while ();" " () {\n}"))) |
| 20323 | 1884 ) |
| 1885 (or (looking-at "[ \t]\\|$") (insert " ")) | |
| 1886 (cperl-indent-line) | |
| 1887 (if dollar (progn (search-backward "$") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1888 (if my |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1889 (forward-char 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1890 (delete-char 1))) |
| 20323 | 1891 (search-backward ")")) |
| 1892 (if delete | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1893 (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
|
1894 (if cperl-message-electric-keyword |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1895 (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
|
1896 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1897 (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
|
1898 "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
|
1899 (or pos (setq pos (point))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1900 (if (looking-at "\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1901 (forward-char 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1902 (insert "\n")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1903 (if (> n 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1904 (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
|
1905 (goto-char pos))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1906 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1907 (defun cperl-electric-pod () |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1908 "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
|
1909 (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
|
1910 (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
|
1911 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
|
1912 (and (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1913 (condition-case nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1914 (backward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1915 (error nil)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1916 (and |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1917 (eq (preceding-char) ?=) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1918 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1919 (setq head1 (looking-at "head1\\>")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1920 (setq over (looking-at "over\\>")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1921 (forward-char -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1922 (bolp)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1923 (or |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
1924 (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
|
1925 (cperl-after-expr-p nil "{;:") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1926 (and (re-search-backward |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1927 "\\(\\`\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
|
1928 (not (or |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1929 (looking-at "=cut") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1930 (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
|
1931 (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
|
1932 'pod))))))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1933 (progn |
|
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 (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
|
1936 (or notlast |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1937 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1938 (insert "\n\n=cut") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1939 (cperl-ensure-newlines 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1940 (forward-sexp -2) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1941 (if (and head1 |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1942 (not |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1943 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1944 (forward-char -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1945 (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
|
1946 nil t)))) ; Only one |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1947 (progn |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1948 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1949 (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
|
1950 (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
|
1951 p (point)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1952 (insert " NAME\n\n" name |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
1953 " - \n\n=head1 SYNOPSIS\n\n\n\n" |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1954 "=head1 DESCRIPTION") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1955 (cperl-ensure-newlines 4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1956 (goto-char p) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1957 (forward-sexp 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1958 (end-of-line) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1959 (setq really-delete t)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1960 (forward-sexp 1)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1961 (if over |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1962 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1963 (setq p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1964 (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
|
1965 "=back") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1966 (cperl-ensure-newlines 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1967 (goto-char p) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1968 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1969 (end-of-line) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1970 (setq really-delete t))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1971 (if (and delete really-delete) |
| 20323 | 1972 (cperl-putback-char cperl-del-back-ch)))))) |
| 1973 | |
| 1974 (defun cperl-electric-else () | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1975 "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
|
1976 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
|
1977 to nil." |
| 20323 | 1978 (let ((beg (save-excursion (beginning-of-line) (point)))) |
| 1979 (and (save-excursion | |
| 1980 (backward-sexp 1) | |
| 1981 (cperl-after-expr-p nil "{;:")) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1982 (save-excursion |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
1983 (not |
| 20323 | 1984 (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
|
1985 "[#\"'`]\\|\\<q\\(\\|[wqxr]\\)\\>" |
| 20323 | 1986 beg t))) |
| 1987 (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
|
1988 (looking-at "=cut") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1989 (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
|
1990 (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
|
1991 'syntax-type) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
1992 'pod))))) |
| 20323 | 1993 (progn |
| 1994 (cperl-indent-line) | |
| 1995 ;;(insert " {\n\n}") | |
| 1996 (cond | |
| 1997 (cperl-extra-newline-before-brace | |
| 1998 (insert "\n") | |
| 1999 (insert "{") | |
| 2000 (cperl-indent-line) | |
| 2001 (insert "\n\n}")) | |
| 2002 (t | |
| 2003 (insert " {\n\n}")) | |
| 2004 ) | |
| 2005 (or (looking-at "[ \t]\\|$") (insert " ")) | |
| 2006 (cperl-indent-line) | |
| 2007 (forward-line -1) | |
| 2008 (cperl-indent-line) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2009 (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
|
2010 (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
|
2011 (if cperl-message-electric-keyword |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2012 (message "Precede char by C-q to avoid expansion")))))) |
| 20323 | 2013 |
| 2014 (defun cperl-linefeed () | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2015 "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
|
2016 If in POD, insert appropriate lines." |
| 20323 | 2017 (interactive) |
| 2018 (let ((beg (save-excursion (beginning-of-line) (point))) | |
| 2019 (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
|
2020 (pos (point)) start over cut res) |
| 20323 | 2021 (if (and ; Check if we need to split: |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2022 ; i.e., on a boundary and inside "{...}" |
| 20323 | 2023 (save-excursion (cperl-to-comment-or-eol) |
| 2024 (>= (point) pos)) ; Not in a comment | |
| 2025 (or (save-excursion | |
| 2026 (skip-chars-backward " \t" beg) | |
| 2027 (forward-char -1) | |
| 2028 (looking-at "[;{]")) ; After { or ; + spaces | |
| 2029 (looking-at "[ \t]*}") ; Before } | |
| 2030 (re-search-forward "\\=[ \t]*;" end t)) ; Before spaces + ; | |
| 2031 (save-excursion | |
| 2032 (and | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2033 (eq (car (parse-partial-sexp pos end -1)) -1) |
| 20323 | 2034 ; Leave the level of parens |
| 2035 (looking-at "[,; \t]*\\($\\|#\\)") ; Comma to allow anon subr | |
| 2036 ; Are at end | |
| 2037 (progn | |
| 2038 (backward-sexp 1) | |
| 2039 (setq start (point-marker)) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2040 (<= start pos))))) ; Redundant? Are after the |
| 20323 | 2041 ; start of parens group. |
| 2042 (progn | |
| 2043 (skip-chars-backward " \t") | |
| 2044 (or (memq (preceding-char) (append ";{" nil)) | |
| 2045 (insert ";")) | |
| 2046 (insert "\n") | |
| 2047 (forward-line -1) | |
| 2048 (cperl-indent-line) | |
| 2049 (goto-char start) | |
| 2050 (or (looking-at "{[ \t]*$") ; If there is a statement | |
| 2051 ; before, move it to separate line | |
| 2052 (progn | |
| 2053 (forward-char 1) | |
| 2054 (insert "\n") | |
| 2055 (cperl-indent-line))) | |
| 2056 (forward-line 1) ; We are on the target line | |
| 2057 (cperl-indent-line) | |
| 2058 (beginning-of-line) | |
| 2059 (or (looking-at "[ \t]*}[,; \t]*$") ; If there is a statement | |
| 2060 ; after, move it to separate line | |
| 2061 (progn | |
| 2062 (end-of-line) | |
| 2063 (search-backward "}" beg) | |
| 2064 (skip-chars-backward " \t") | |
| 2065 (or (memq (preceding-char) (append ";{" nil)) | |
| 2066 (insert ";")) | |
| 2067 (insert "\n") | |
| 2068 (cperl-indent-line) | |
| 2069 (forward-line -1))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2070 (forward-line -1) ; We are on the line before target |
| 20323 | 2071 (end-of-line) |
| 2072 (newline-and-indent)) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2073 (end-of-line) ; else - no splitting |
| 20323 | 2074 (cond |
| 2075 ((and (looking-at "\n[ \t]*{$") | |
| 2076 (save-excursion | |
| 2077 (skip-chars-backward " \t") | |
| 2078 (eq (preceding-char) ?\)))) ; Probably if () {} group | |
| 2079 ; with an extra newline. | |
| 2080 (forward-line 2) | |
| 2081 (cperl-indent-line)) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2082 ((save-excursion ; In POD header |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2083 (forward-paragraph -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2084 ;; (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
|
2085 ;; 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
|
2086 (if (looking-at "\\(\\`\n?\\|\n\\)=\\sw+") |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2087 (progn |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2088 (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
|
2089 (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
|
2090 t))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2091 (if (and over |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2092 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2093 (forward-paragraph -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2094 (forward-word 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2095 (setq pos (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2096 (setq cut (buffer-substring (point) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2097 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2098 (end-of-line) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2099 (point)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2100 (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
|
2101 (point))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2102 (setq res (expand-abbrev)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2103 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2104 (goto-char pos) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2105 (insert cut)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2106 res)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2107 nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2108 (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
|
2109 (forward-line 2))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2110 ((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
|
2111 (cperl-ensure-newlines 4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2112 (forward-line 2)) |
| 20323 | 2113 ((looking-at "\n[ \t]*$") ; Next line is empty - use it. |
| 2114 (forward-line 1) | |
| 2115 (cperl-indent-line)) | |
| 2116 (t | |
| 2117 (newline-and-indent)))))) | |
| 2118 | |
| 2119 (defun cperl-electric-semi (arg) | |
| 2120 "Insert character and correct line's indentation." | |
| 2121 (interactive "P") | |
| 2122 (if cperl-auto-newline | |
| 2123 (cperl-electric-terminator arg) | |
| 2124 (self-insert-command (prefix-numeric-value arg)))) | |
| 2125 | |
| 2126 (defun cperl-electric-terminator (arg) | |
| 2127 "Insert character and correct line's indentation." | |
| 2128 (interactive "P") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2129 (let (insertpos (end (point)) |
| 20323 | 2130 (auto (and cperl-auto-newline |
| 2131 (or (not (eq last-command-char ?:)) | |
| 2132 cperl-auto-newline-after-colon)))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2133 (if (and ;;(not arg) |
| 20323 | 2134 (eolp) |
| 2135 (not (save-excursion | |
| 2136 (beginning-of-line) | |
| 2137 (skip-chars-forward " \t") | |
| 2138 (or | |
| 2139 ;; Ignore in comment lines | |
| 2140 (= (following-char) ?#) | |
| 2141 ;; Colon is special only after a label | |
| 2142 ;; So quickly rule out most other uses of colon | |
| 2143 ;; and do no indentation for them. | |
| 2144 (and (eq last-command-char ?:) | |
| 2145 (save-excursion | |
| 2146 (forward-word 1) | |
| 2147 (skip-chars-forward " \t") | |
| 2148 (and (< (point) end) | |
| 2149 (progn (goto-char (- end 1)) | |
| 2150 (not (looking-at ":")))))) | |
| 2151 (progn | |
| 2152 (beginning-of-defun) | |
| 2153 (let ((pps (parse-partial-sexp (point) end))) | |
| 2154 (or (nth 3 pps) (nth 4 pps) (nth 5 pps)))))))) | |
| 2155 (progn | |
| 2156 (self-insert-command (prefix-numeric-value arg)) | |
| 2157 ;;(forward-char -1) | |
| 2158 (if auto (setq insertpos (point-marker))) | |
| 2159 ;;(forward-char 1) | |
| 2160 (cperl-indent-line) | |
| 2161 (if auto | |
| 2162 (progn | |
| 2163 (newline) | |
| 2164 (cperl-indent-line))) | |
| 2165 (save-excursion | |
| 2166 (if insertpos (goto-char (1- (marker-position insertpos))) | |
| 2167 (forward-char -1)) | |
| 2168 (delete-char 1)))) | |
| 2169 (if insertpos | |
| 2170 (save-excursion | |
| 2171 (goto-char insertpos) | |
| 2172 (self-insert-command (prefix-numeric-value arg))) | |
| 2173 (self-insert-command (prefix-numeric-value arg))))) | |
| 2174 | |
| 2175 (defun cperl-electric-backspace (arg) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2176 "Backspace-untabify, or remove the whitespace around the point inserted |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2177 by an electric key." |
| 20323 | 2178 (interactive "p") |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2179 (if (and cperl-auto-newline |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2180 (memq last-command '(cperl-electric-semi |
| 20323 | 2181 cperl-electric-terminator |
| 2182 cperl-electric-lbrace)) | |
| 2183 (memq (preceding-char) '(?\ ?\t ?\n))) | |
| 2184 (let (p) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2185 (if (eq last-command 'cperl-electric-lbrace) |
| 20323 | 2186 (skip-chars-forward " \t\n")) |
| 2187 (setq p (point)) | |
| 2188 (skip-chars-backward " \t\n") | |
| 2189 (delete-region (point) p)) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2190 (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
|
2191 ;; 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
|
2192 (setq this-command 'cperl-electric-else-really)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2193 (if (and cperl-auto-newline |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2194 (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
|
2195 (memq (preceding-char) '(?\ ?\t ?\n))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2196 (let (p) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2197 (skip-chars-forward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2198 (setq p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2199 (skip-chars-backward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2200 (delete-region (point) p)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2201 (backward-delete-char-untabify arg)))) |
| 20323 | 2202 |
| 2203 (defun cperl-inside-parens-p () | |
| 2204 (condition-case () | |
| 2205 (save-excursion | |
| 2206 (save-restriction | |
| 2207 (narrow-to-region (point) | |
| 2208 (progn (beginning-of-defun) (point))) | |
| 2209 (goto-char (point-max)) | |
| 2210 (= (char-after (or (scan-lists (point) -1 1) (point-min))) ?\())) | |
| 2211 (error nil))) | |
| 2212 | |
| 2213 (defun cperl-indent-command (&optional whole-exp) | |
| 2214 "Indent current line as Perl code, or in some cases insert a tab character. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2215 If `cperl-tab-always-indent' is non-nil (the default), always indent current |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2216 line. Otherwise, indent the current line only if point is at the left margin |
| 20323 | 2217 or in the line's indentation; otherwise insert a tab. |
| 2218 | |
| 2219 A numeric argument, regardless of its value, | |
| 2220 means indent rigidly all the lines of the expression starting after point | |
| 2221 so that this line becomes properly indented. | |
| 2222 The relative indentation among the lines of the expression are preserved." | |
| 2223 (interactive "P") | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2224 (cperl-update-syntaxification (point) (point)) |
| 20323 | 2225 (if whole-exp |
| 2226 ;; If arg, always indent this line as Perl | |
| 2227 ;; and shift remaining lines of expression the same amount. | |
| 2228 (let ((shift-amt (cperl-indent-line)) | |
| 2229 beg end) | |
| 2230 (save-excursion | |
| 2231 (if cperl-tab-always-indent | |
| 2232 (beginning-of-line)) | |
| 2233 (setq beg (point)) | |
| 2234 (forward-sexp 1) | |
| 2235 (setq end (point)) | |
| 2236 (goto-char beg) | |
| 2237 (forward-line 1) | |
| 2238 (setq beg (point))) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2239 (if (and shift-amt (> end beg)) |
| 20323 | 2240 (indent-code-rigidly beg end shift-amt "#"))) |
| 2241 (if (and (not cperl-tab-always-indent) | |
| 2242 (save-excursion | |
| 2243 (skip-chars-backward " \t") | |
| 2244 (not (bolp)))) | |
| 2245 (insert-tab) | |
| 2246 (cperl-indent-line)))) | |
| 2247 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2248 (defun cperl-indent-line (&optional parse-data) |
| 20323 | 2249 "Indent current line as Perl code. |
| 2250 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
|
2251 (let (indent i beg shift-amt |
| 20323 | 2252 (case-fold-search nil) |
| 2253 (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
|
2254 (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
|
2255 i indent) |
| 20323 | 2256 (beginning-of-line) |
| 2257 (setq beg (point)) | |
| 2258 (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
|
2259 (setq indent (current-indentation) i nil)) |
| 20323 | 2260 ;;((eq indent t) ; Never? |
| 2261 ;; (setq indent (cperl-calculate-indent-within-comment))) | |
| 2262 ;;((looking-at "[ \t]*#") | |
| 2263 ;; (setq indent 0)) | |
| 2264 (t | |
| 2265 (skip-chars-forward " \t") | |
| 2266 (if (listp indent) (setq indent (car indent))) | |
| 2267 (cond ((looking-at "[A-Za-z_][A-Za-z_0-9]*:[^:]") | |
| 2268 (and (> indent 0) | |
| 2269 (setq indent (max cperl-min-label-indent | |
| 2270 (+ indent cperl-label-offset))))) | |
| 2271 ((= (following-char) ?}) | |
| 2272 (setq indent (- indent cperl-indent-level))) | |
| 2273 ((memq (following-char) '(?\) ?\])) ; To line up with opening paren. | |
| 2274 (setq indent (+ indent cperl-close-paren-offset))) | |
| 2275 ((= (following-char) ?{) | |
| 2276 (setq indent (+ indent cperl-brace-offset)))))) | |
| 2277 (skip-chars-forward " \t") | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2278 (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
|
2279 (if (or (not shift-amt) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2280 (zerop shift-amt)) |
| 20323 | 2281 (if (> (- (point-max) pos) (point)) |
| 2282 (goto-char (- (point-max) pos))) | |
| 2283 (delete-region beg (point)) | |
| 2284 (indent-to indent) | |
| 2285 ;; If initial point was within line's indentation, | |
| 2286 ;; position after the indentation. Else stay at same point in text. | |
| 2287 (if (> (- (point-max) pos) (point)) | |
| 2288 (goto-char (- (point-max) pos)))) | |
| 2289 shift-amt)) | |
| 2290 | |
| 2291 (defun cperl-after-label () | |
| 2292 ;; Returns true if the point is after label. Does not do save-excursion. | |
| 2293 (and (eq (preceding-char) ?:) | |
| 2294 (memq (char-syntax (char-after (- (point) 2))) | |
| 2295 '(?w ?_)) | |
| 2296 (progn | |
| 2297 (backward-sexp) | |
| 2298 (looking-at "[a-zA-Z_][a-zA-Z0-9_]*:[^:]")))) | |
| 2299 | |
| 2300 (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
|
2301 ;; 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
|
2302 ;; START is a good place to start parsing, or equal to |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2303 ;; PARSE-START if preset, |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2304 ;; 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
|
2305 ;; 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
|
2306 ;; which contains START. |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2307 ;; PRESTART is the position basing on which START was found. |
| 20323 | 2308 (save-excursion |
| 2309 (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
|
2310 (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
|
2311 (<= parse-start start-point)) |
| 20323 | 2312 (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
|
2313 (beginning-of-defun) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2314 (setq start-state nil)) |
| 20323 | 2315 (setq prestart (point)) |
| 2316 (if start-state nil | |
| 2317 ;; Try to go out, if sub is not on the outermost level | |
| 2318 (while (< (point) start-point) | |
| 2319 (setq start (point) parse-start start depth nil | |
| 2320 state (parse-partial-sexp start start-point -1)) | |
| 2321 (if (> (car state) -1) nil | |
| 2322 ;; The current line could start like }}}, so the indentation | |
| 2323 ;; corresponds to a different level than what we reached | |
| 2324 (setq depth t) | |
| 2325 (beginning-of-line 2))) ; Go to the next line. | |
| 2326 (if start (goto-char start))) ; Not at the start of file | |
| 2327 (setq start (point)) | |
| 2328 (or state (setq state (parse-partial-sexp start start-point -1 nil start-state))) | |
| 2329 (list start state depth prestart)))) | |
| 2330 | |
| 2331 (defun cperl-block-p () ; Do not C-M-q ! One string contains ";" ! | |
| 2332 ;; Positions is before ?\{. Checks whether it starts a block. | |
| 2333 ;; No save-excursion! | |
| 2334 (cperl-backward-to-noncomment (point-min)) | |
| 2335 (or (memq (preceding-char) (append ";){}$@&%\C-@" nil)) ; Or label! \C-@ at bobp | |
| 2336 ; Label may be mixed up with `$blah :' | |
| 2337 (save-excursion (cperl-after-label)) | |
| 2338 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
| 2339 (progn | |
| 2340 (backward-sexp) | |
| 2341 ;; Need take into account `bless', `return', `tr',... | |
| 2342 (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
|
2343 (not (looking-at "\\(bless\\|return\\|q[wqrx]?\\|tr\\|[smy]\\)\\>"))) |
| 20323 | 2344 (progn |
| 2345 (skip-chars-backward " \t\n\f") | |
| 2346 (and (memq (char-syntax (preceding-char)) '(?w ?_)) | |
| 2347 (progn | |
| 2348 (backward-sexp) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2349 (looking-at |
| 20323 | 2350 "sub[ \t]+[a-zA-Z0-9_:]+[ \t\n\f]*\\(([^()]*)[ \t\n\f]*\\)?[#{]"))))))))) |
| 2351 | |
| 2352 (defvar cperl-look-for-prop '((pod in-pod) (here-doc-delim here-doc-group))) | |
| 2353 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2354 (defun cperl-calculate-indent (&optional parse-data) ; was parse-start |
| 20323 | 2355 "Return appropriate indentation for current line as Perl code. |
| 2356 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
|
2357 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
|
2358 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2359 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
|
2360 and closing parentheses and brackets.." |
| 20323 | 2361 (save-excursion |
| 2362 (if (or | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2363 (memq (get-text-property (point) 'syntax-type) |
| 20323 | 2364 '(pod here-doc here-doc-delim format)) |
| 2365 ;; before start of POD - whitespace found since do not have 'pod! | |
| 2366 (and (looking-at "[ \t]*\n=") | |
| 2367 (error "Spaces before pod section!")) | |
| 2368 (and (not cperl-indent-left-aligned-comments) | |
| 2369 (looking-at "^#"))) | |
| 2370 nil | |
| 2371 (beginning-of-line) | |
| 2372 (let ((indent-point (point)) | |
| 2373 (char-after (save-excursion | |
| 2374 (skip-chars-forward " \t") | |
| 2375 (following-char))) | |
| 2376 (in-pod (get-text-property (point) 'in-pod)) | |
| 2377 (pre-indent-point (point)) | |
| 2378 p prop look-prop) | |
| 2379 (cond | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2380 (in-pod |
| 20323 | 2381 ;; In the verbatim part, probably code example. What to do??? |
| 2382 ) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2383 (t |
| 20323 | 2384 (save-excursion |
| 2385 ;; Not in pod | |
| 2386 (cperl-backward-to-noncomment nil) | |
| 2387 (setq p (max (point-min) (1- (point))) | |
| 2388 prop (get-text-property p 'syntax-type) | |
| 2389 look-prop (or (nth 1 (assoc prop cperl-look-for-prop)) | |
| 2390 'syntax-type)) | |
| 2391 (if (memq prop '(pod here-doc format here-doc-delim)) | |
| 2392 (progn | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2393 (goto-char (or (previous-single-property-change p look-prop) |
| 20323 | 2394 (point-min))) |
| 2395 (beginning-of-line) | |
| 2396 (setq pre-indent-point (point))))))) | |
| 2397 (goto-char pre-indent-point) | |
| 2398 (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
|
2399 (s-s (cperl-get-state (car parse-data) (nth 1 parse-data))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2400 (start (or (nth 2 parse-data) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2401 (nth 0 s-s))) |
| 20323 | 2402 (state (nth 1 s-s)) |
| 2403 (containing-sexp (car (cdr state))) | |
| 2404 old-indent) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2405 (if (and |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2406 ;;containing-sexp ;; We are buggy at toplevel :-( |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2407 parse-data) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2408 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2409 (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
|
2410 (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
|
2411 (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
|
2412 (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
|
2413 ;; 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
|
2414 (setq old-indent (nth 3 parse-data)))) |
| 20323 | 2415 ;; (or parse-start (null symbol) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2416 ;; (setq parse-start (symbol-value symbol) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2417 ;; start-indent (nth 2 parse-start) |
| 20323 | 2418 ;; parse-start (car parse-start))) |
| 2419 ;; (if parse-start | |
| 2420 ;; (goto-char parse-start) | |
| 2421 ;; (beginning-of-defun)) | |
| 2422 ;; ;; Try to go out | |
| 2423 ;; (while (< (point) indent-point) | |
| 2424 ;; (setq start (point) parse-start start moved nil | |
| 2425 ;; state (parse-partial-sexp start indent-point -1)) | |
| 2426 ;; (if (> (car state) -1) nil | |
| 2427 ;; ;; The current line could start like }}}, so the indentation | |
| 2428 ;; ;; corresponds to a different level than what we reached | |
| 2429 ;; (setq moved t) | |
| 2430 ;; (beginning-of-line 2))) ; Go to the next line. | |
| 2431 ;; (if start ; Not at the start of file | |
| 2432 ;; (progn | |
| 2433 ;; (goto-char start) | |
| 2434 ;; (setq start-indent (current-indentation)) | |
| 2435 ;; (if moved ; Should correct... | |
| 2436 ;; (setq start-indent (- start-indent cperl-indent-level)))) | |
| 2437 ;; (setq start-indent 0)) | |
| 2438 ;; (if (< (point) indent-point) (setq parse-start (point))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2439 ;; (or state (setq state (parse-partial-sexp |
| 20323 | 2440 ;; (point) indent-point -1 nil start-state))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2441 ;; (setq containing-sexp |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2442 ;; (or (car (cdr state)) |
| 20323 | 2443 ;; (and (>= (nth 6 state) 0) old-containing-sexp)) |
| 2444 ;; old-containing-sexp nil start-state nil) | |
| 2445 ;;;; (while (< (point) indent-point) | |
| 2446 ;;;; (setq parse-start (point)) | |
| 2447 ;;;; (setq state (parse-partial-sexp (point) indent-point -1 nil start-state)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2448 ;;;; (setq containing-sexp |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2449 ;;;; (or (car (cdr state)) |
| 20323 | 2450 ;;;; (and (>= (nth 6 state) 0) old-containing-sexp)) |
| 2451 ;;;; old-containing-sexp nil start-state nil)) | |
| 2452 ;; (if symbol (set symbol (list indent-point state start-indent))) | |
| 2453 ;; (goto-char indent-point) | |
| 2454 (cond ((or (nth 3 state) (nth 4 state)) | |
| 2455 ;; return nil or t if should not change this line | |
| 2456 (nth 4 state)) | |
| 2457 ((null containing-sexp) | |
| 2458 ;; Line is at top level. May be data or function definition, | |
| 2459 ;; or may be function argument declaration. | |
| 2460 ;; Indent like the previous top level line | |
| 2461 ;; unless that ends in a closeparen without semicolon, | |
| 2462 ;; in which case this line is the first argument decl. | |
| 2463 (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
|
2464 (+ (save-excursion |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2465 (goto-char start) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2466 (- (current-indentation) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2467 (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
|
2468 (if (= char-after ?{) cperl-continued-brace-offset 0) |
| 20323 | 2469 (progn |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2470 (cperl-backward-to-noncomment (or old-indent (point-min))) |
| 20323 | 2471 ;; Look at previous line that's at column 0 |
| 2472 ;; to determine whether we are in top-level decls | |
| 2473 ;; or function's arg decls. Set basic-indent accordingly. | |
| 2474 ;; Now add a little if this is a continuation line. | |
| 2475 (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
|
2476 (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
|
2477 (eq (preceding-char) ?\;) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2478 ;; Had ?\) too |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2479 (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
|
2480 (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
|
2481 (point-min))) ; Was start - too close |
| 20323 | 2482 (memq char-after (append ")]}" nil)) |
| 2483 (and (eq (preceding-char) ?\:) ; label | |
| 2484 (progn | |
| 2485 (forward-sexp -1) | |
| 2486 (skip-chars-backward " \t") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2487 (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
|
2488 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2489 (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
|
2490 (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
|
2491 (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
|
2492 (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
|
2493 0) |
| 20323 | 2494 cperl-continued-statement-offset)))) |
| 2495 ((/= (char-after containing-sexp) ?{) | |
| 2496 ;; line is expression, not statement: | |
| 2497 ;; indent to just after the surrounding open, | |
| 2498 ;; skip blanks if we do not close the expression. | |
| 2499 (goto-char (1+ containing-sexp)) | |
| 2500 (or (memq char-after (append ")]}" nil)) | |
| 2501 (looking-at "[ \t]*\\(#\\|$\\)") | |
| 2502 (skip-chars-forward " \t")) | |
| 2503 (current-column)) | |
| 2504 ((progn | |
| 2505 ;; Containing-expr starts with \{. Check whether it is a hash. | |
| 2506 (goto-char containing-sexp) | |
| 2507 (not (cperl-block-p))) | |
| 2508 (goto-char (1+ containing-sexp)) | |
| 2509 (or (eq char-after ?\}) | |
| 2510 (looking-at "[ \t]*\\(#\\|$\\)") | |
| 2511 (skip-chars-forward " \t")) | |
| 2512 (+ (current-column) ; Correct indentation of trailing ?\} | |
| 2513 (if (eq char-after ?\}) (+ cperl-indent-level | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2514 cperl-close-paren-offset) |
| 20323 | 2515 0))) |
| 2516 (t | |
| 2517 ;; Statement level. Is it a continuation or a new statement? | |
| 2518 ;; Find previous non-comment character. | |
| 2519 (goto-char pre-indent-point) | |
| 2520 (cperl-backward-to-noncomment containing-sexp) | |
| 2521 ;; Back up over label lines, since they don't | |
| 2522 ;; 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
|
2523 ;; (Had \, too) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2524 (while ;;(or (eq (preceding-char) ?\,) |
| 20323 | 2525 (and (eq (preceding-char) ?:) |
| 2526 (or;;(eq (char-after (- (point) 2)) ?\') ; ???? | |
| 2527 (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
|
2528 '(?w ?_)))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2529 ;;) |
| 20323 | 2530 (if (eq (preceding-char) ?\,) |
| 2531 ;; Will go to beginning of line, essentially. | |
| 2532 ;; Will ignore embedded sexpr XXXX. | |
| 2533 (cperl-backward-to-start-of-continued-exp containing-sexp)) | |
| 2534 (beginning-of-line) | |
| 2535 (cperl-backward-to-noncomment containing-sexp)) | |
| 2536 ;; 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
|
2537 ;; Had \?, too: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2538 (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
|
2539 (and (eq (preceding-char) ?\}) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2540 (cperl-after-block-and-statement-beg |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2541 containing-sexp)))) ; Was ?\, |
| 20323 | 2542 ;; This line is continuation of preceding line's statement; |
| 2543 ;; indent `cperl-continued-statement-offset' more than the | |
| 2544 ;; 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
|
2545 ;; |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2546 ;; 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
|
2547 ;; consider it bad style and ignore it. |
| 20323 | 2548 (progn |
| 2549 (cperl-backward-to-start-of-continued-exp containing-sexp) | |
| 2550 (+ (if (memq char-after (append "}])" nil)) | |
| 2551 0 ; Closing parenth | |
| 2552 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
|
2553 (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
|
2554 (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
|
2555 (- (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
|
2556 ;; Do not move `parse-data', this should |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2557 ;; be quick anyway (this comment comes |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2558 ;;from different location): |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2559 (cperl-calculate-indent)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2560 (current-column)) |
| 20323 | 2561 (if (eq char-after ?\{) |
| 2562 cperl-continued-brace-offset 0))) | |
| 2563 ;; This line starts a new statement. | |
| 2564 ;; Position following last unclosed open. | |
| 2565 (goto-char containing-sexp) | |
| 2566 ;; Is line first statement after an open-brace? | |
| 2567 (or | |
| 2568 ;; If no, find that first statement and indent like | |
| 2569 ;; it. If the first statement begins with label, do | |
| 2570 ;; not believe when the indentation of the label is too | |
| 2571 ;; small. | |
| 2572 (save-excursion | |
| 2573 (forward-char 1) | |
| 2574 (setq old-indent (current-indentation)) | |
| 2575 (let ((colon-line-end 0)) | |
| 2576 (while (progn (skip-chars-forward " \t\n") | |
| 2577 (looking-at "#\\|[a-zA-Z0-9_$]*:[^:]")) | |
| 2578 ;; Skip over comments and labels following openbrace. | |
| 2579 (cond ((= (following-char) ?\#) | |
| 2580 (forward-line 1)) | |
| 2581 ;; label: | |
| 2582 (t | |
| 2583 (save-excursion (end-of-line) | |
| 2584 (setq colon-line-end (point))) | |
| 2585 (search-forward ":")))) | |
| 2586 ;; The first following code counts | |
| 2587 ;; if it is before the line we want to indent. | |
| 2588 (and (< (point) indent-point) | |
| 2589 (if (> colon-line-end (point)) ; After label | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2590 (if (> (current-indentation) |
| 20323 | 2591 cperl-min-label-indent) |
| 2592 (- (current-indentation) cperl-label-offset) | |
| 2593 ;; Do not believe: `max' is involved | |
| 2594 (+ old-indent cperl-indent-level)) | |
| 2595 (current-column))))) | |
| 2596 ;; If no previous statement, | |
| 2597 ;; indent it relative to line brace is on. | |
| 2598 ;; For open brace in column zero, don't let statement | |
| 2599 ;; start there too. If cperl-indent-level is zero, | |
| 2600 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. | |
| 2601 ;; For open-braces not the first thing in a line, | |
| 2602 ;; add in cperl-brace-imaginary-offset. | |
| 2603 | |
| 2604 ;; If first thing on a line: ????? | |
| 2605 (+ (if (and (bolp) (zerop cperl-indent-level)) | |
| 2606 (+ cperl-brace-offset cperl-continued-statement-offset) | |
| 2607 cperl-indent-level) | |
| 2608 ;; Move back over whitespace before the openbrace. | |
| 2609 ;; If openbrace is not first nonwhite thing on the line, | |
| 2610 ;; add the cperl-brace-imaginary-offset. | |
| 2611 (progn (skip-chars-backward " \t") | |
| 2612 (if (bolp) 0 cperl-brace-imaginary-offset)) | |
| 2613 ;; If the openbrace is preceded by a parenthesized exp, | |
| 2614 ;; move to the beginning of that; | |
| 2615 ;; possibly a different line | |
| 2616 (progn | |
| 2617 (if (eq (preceding-char) ?\)) | |
| 2618 (forward-sexp -1)) | |
| 2619 ;; In the case it starts a subroutine, indent with | |
| 2620 ;; respect to `sub', not with respect to the the | |
| 2621 ;; first thing on the line, say in the case of | |
| 2622 ;; anonymous sub in a hash. | |
| 2623 ;; | |
| 2624 (skip-chars-backward " \t") | |
| 2625 (if (and (eq (preceding-char) ?b) | |
| 2626 (progn | |
| 2627 (forward-sexp -1) | |
| 2628 (looking-at "sub\\>")) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2629 (setq old-indent |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2630 (nth 1 |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2631 (parse-partial-sexp |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2632 (save-excursion (beginning-of-line) (point)) |
| 20323 | 2633 (point))))) |
| 2634 (progn (goto-char (1+ old-indent)) | |
| 2635 (skip-chars-forward " \t") | |
| 2636 (current-column)) | |
| 2637 ;; Get initial indentation of the line we are on. | |
| 2638 ;; If line starts with label, calculate label indentation | |
| 2639 (if (save-excursion | |
| 2640 (beginning-of-line) | |
| 2641 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) | |
| 2642 (if (> (current-indentation) cperl-min-label-indent) | |
| 2643 (- (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
|
2644 ;; 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
|
2645 ;; be quick anyway: |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2646 (cperl-calculate-indent)) |
| 20323 | 2647 (current-indentation)))))))))))))) |
| 2648 | |
| 2649 (defvar cperl-indent-alist | |
| 2650 '((string nil) | |
| 2651 (comment nil) | |
| 2652 (toplevel 0) | |
| 2653 (toplevel-after-parenth 2) | |
| 2654 (toplevel-continued 2) | |
| 2655 (expression 1)) | |
| 2656 "Alist of indentation rules for CPerl mode. | |
| 2657 The values mean: | |
| 2658 nil: do not indent; | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2659 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
|
2660 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2661 Not finished, not used.") |
| 20323 | 2662 |
| 2663 (defun cperl-where-am-i (&optional parse-start start-state) | |
| 2664 ;; Unfinished | |
| 2665 "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
|
2666 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
|
2667 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
2668 Not finished, not used." |
| 20323 | 2669 (save-excursion |
| 2670 (let* ((start-point (point)) | |
| 2671 (s-s (cperl-get-state)) | |
| 2672 (start (nth 0 s-s)) | |
| 2673 (state (nth 1 s-s)) | |
| 2674 (prestart (nth 3 s-s)) | |
| 2675 (containing-sexp (car (cdr state))) | |
| 2676 (case-fold-search nil) | |
| 2677 (res (list (list 'parse-start start) (list 'parse-prestart prestart)))) | |
| 2678 (cond ((nth 3 state) ; In string | |
| 2679 (setq res (cons (list 'string nil (nth 3 state)) res))) ; What started string | |
| 2680 ((nth 4 state) ; In comment | |
| 2681 (setq res (cons '(comment) res))) | |
| 2682 ((null containing-sexp) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2683 ;; Line is at top level. |
| 20323 | 2684 ;; Indent like the previous top level line |
| 2685 ;; unless that ends in a closeparen without semicolon, | |
| 2686 ;; in which case this line is the first argument decl. | |
| 2687 (cperl-backward-to-noncomment (or parse-start (point-min))) | |
| 2688 ;;(skip-chars-backward " \t\f\n") | |
| 2689 (cond | |
| 2690 ((or (bobp) | |
| 2691 (memq (preceding-char) (append ";}" nil))) | |
| 2692 (setq res (cons (list 'toplevel start) res))) | |
| 2693 ((eq (preceding-char) ?\) ) | |
| 2694 (setq res (cons (list 'toplevel-after-parenth start) res))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2695 (t |
| 20323 | 2696 (setq res (cons (list 'toplevel-continued start) res))))) |
| 2697 ((/= (char-after containing-sexp) ?{) | |
| 2698 ;; line is expression, not statement: | |
| 2699 ;; indent to just after the surrounding open. | |
| 2700 ;; skip blanks if we do not close the expression. | |
| 2701 (setq res (cons (list 'expression-blanks | |
| 2702 (progn | |
| 2703 (goto-char (1+ containing-sexp)) | |
| 2704 (or (looking-at "[ \t]*\\(#\\|$\\)") | |
| 2705 (skip-chars-forward " \t")) | |
| 2706 (point))) | |
| 2707 (cons (list 'expression containing-sexp) res)))) | |
| 2708 ((progn | |
| 2709 ;; Containing-expr starts with \{. Check whether it is a hash. | |
| 2710 (goto-char containing-sexp) | |
| 2711 (not (cperl-block-p))) | |
| 2712 (setq res (cons (list 'expression-blanks | |
| 2713 (progn | |
| 2714 (goto-char (1+ containing-sexp)) | |
| 2715 (or (looking-at "[ \t]*\\(#\\|$\\)") | |
| 2716 (skip-chars-forward " \t")) | |
| 2717 (point))) | |
| 2718 (cons (list 'expression containing-sexp) res)))) | |
| 2719 (t | |
| 2720 ;; Statement level. | |
| 2721 (setq res (cons (list 'in-block containing-sexp) res)) | |
| 2722 ;; Is it a continuation or a new statement? | |
| 2723 ;; Find previous non-comment character. | |
| 2724 (cperl-backward-to-noncomment containing-sexp) | |
| 2725 ;; Back up over label lines, since they don't | |
| 2726 ;; affect whether our line is a continuation. | |
| 2727 ;; Back up comma-delimited lines too ????? | |
| 2728 (while (or (eq (preceding-char) ?\,) | |
| 2729 (save-excursion (cperl-after-label))) | |
| 2730 (if (eq (preceding-char) ?\,) | |
| 2731 ;; Will go to beginning of line, essentially | |
| 2732 ;; Will ignore embedded sexpr XXXX. | |
| 2733 (cperl-backward-to-start-of-continued-exp containing-sexp)) | |
| 2734 (beginning-of-line) | |
| 2735 (cperl-backward-to-noncomment containing-sexp)) | |
| 2736 ;; Now we get the answer. | |
| 2737 (if (not (memq (preceding-char) (append ";}{" '(nil)))) ; Was ?\, | |
| 2738 ;; This line is continuation of preceding line's statement. | |
| 2739 (list (list 'statement-continued containing-sexp)) | |
| 2740 ;; This line starts a new statement. | |
| 2741 ;; Position following last unclosed open. | |
| 2742 (goto-char containing-sexp) | |
| 2743 ;; Is line first statement after an open-brace? | |
| 2744 (or | |
| 2745 ;; If no, find that first statement and indent like | |
| 2746 ;; it. If the first statement begins with label, do | |
| 2747 ;; not believe when the indentation of the label is too | |
| 2748 ;; small. | |
| 2749 (save-excursion | |
| 2750 (forward-char 1) | |
| 2751 (let ((colon-line-end 0)) | |
| 2752 (while (progn (skip-chars-forward " \t\n" start-point) | |
| 2753 (and (< (point) start-point) | |
| 2754 (looking-at | |
| 2755 "#\\|[a-zA-Z_][a-zA-Z0-9_]*:[^:]"))) | |
| 2756 ;; Skip over comments and labels following openbrace. | |
| 2757 (cond ((= (following-char) ?\#) | |
| 2758 ;;(forward-line 1) | |
| 2759 (end-of-line)) | |
| 2760 ;; label: | |
| 2761 (t | |
| 2762 (save-excursion (end-of-line) | |
| 2763 (setq colon-line-end (point))) | |
| 2764 (search-forward ":")))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2765 ;; Now at the point, after label, or at start |
| 20323 | 2766 ;; of first statement in the block. |
| 2767 (and (< (point) start-point) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2768 (if (> colon-line-end (point)) |
| 20323 | 2769 ;; Before statement after label |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2770 (if (> (current-indentation) |
| 20323 | 2771 cperl-min-label-indent) |
| 2772 (list (list 'label-in-block (point))) | |
| 2773 ;; Do not believe: `max' is involved | |
| 2774 (list | |
| 2775 (list 'label-in-block-min-indent (point)))) | |
| 2776 ;; Before statement | |
| 2777 (list 'statement-in-block (point)))))) | |
| 2778 ;; If no previous statement, | |
| 2779 ;; indent it relative to line brace is on. | |
| 2780 ;; For open brace in column zero, don't let statement | |
| 2781 ;; start there too. If cperl-indent-level is zero, | |
| 2782 ;; use cperl-brace-offset + cperl-continued-statement-offset instead. | |
| 2783 ;; For open-braces not the first thing in a line, | |
| 2784 ;; add in cperl-brace-imaginary-offset. | |
| 2785 | |
| 2786 ;; If first thing on a line: ????? | |
| 2787 (+ (if (and (bolp) (zerop cperl-indent-level)) | |
| 2788 (+ cperl-brace-offset cperl-continued-statement-offset) | |
| 2789 cperl-indent-level) | |
| 2790 ;; Move back over whitespace before the openbrace. | |
| 2791 ;; If openbrace is not first nonwhite thing on the line, | |
| 2792 ;; add the cperl-brace-imaginary-offset. | |
| 2793 (progn (skip-chars-backward " \t") | |
| 2794 (if (bolp) 0 cperl-brace-imaginary-offset)) | |
| 2795 ;; If the openbrace is preceded by a parenthesized exp, | |
| 2796 ;; move to the beginning of that; | |
| 2797 ;; possibly a different line | |
| 2798 (progn | |
| 2799 (if (eq (preceding-char) ?\)) | |
| 2800 (forward-sexp -1)) | |
| 2801 ;; Get initial indentation of the line we are on. | |
| 2802 ;; If line starts with label, calculate label indentation | |
| 2803 (if (save-excursion | |
| 2804 (beginning-of-line) | |
| 2805 (looking-at "[ \t]*[a-zA-Z_][a-zA-Z_0-9]*:[^:]")) | |
| 2806 (if (> (current-indentation) cperl-min-label-indent) | |
| 2807 (- (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
|
2808 (cperl-calculate-indent)) |
| 20323 | 2809 (current-indentation)))))))) |
| 2810 res))) | |
| 2811 | |
| 2812 (defun cperl-calculate-indent-within-comment () | |
| 2813 "Return the indentation amount for line, assuming that | |
| 2814 the current line is to be regarded as part of a block comment." | |
| 2815 (let (end star-start) | |
| 2816 (save-excursion | |
| 2817 (beginning-of-line) | |
| 2818 (skip-chars-forward " \t") | |
| 2819 (setq end (point)) | |
| 2820 (and (= (following-char) ?#) | |
| 2821 (forward-line -1) | |
| 2822 (cperl-to-comment-or-eol) | |
| 2823 (setq end (point))) | |
| 2824 (goto-char end) | |
| 2825 (current-column)))) | |
| 2826 | |
| 2827 | |
| 2828 (defun cperl-to-comment-or-eol () | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
2829 "Go to position before comment on the current line, or to end of line. |
| 20323 | 2830 Returns true if comment is found." |
| 2831 (let (state stop-in cpoint (lim (progn (end-of-line) (point)))) | |
| 2832 (beginning-of-line) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2833 (if (or |
| 20323 | 2834 (eq (get-text-property (point) 'syntax-type) 'pod) |
| 2835 (re-search-forward "\\=[ \t]*\\(#\\|$\\)" lim t)) | |
| 2836 (if (eq (preceding-char) ?\#) (progn (backward-char 1) t)) | |
| 2837 ;; Else | |
| 2838 (while (not stop-in) | |
| 2839 (setq state (parse-partial-sexp (point) lim nil nil nil t)) | |
| 2840 ; stop at comment | |
| 2841 ;; If fails (beginning-of-line inside sexp), then contains not-comment | |
| 2842 (if (nth 4 state) ; After `#'; | |
| 2843 ; (nth 2 state) can be | |
| 2844 ; beginning of m,s,qq and so | |
| 2845 ; on | |
| 2846 (if (nth 2 state) | |
| 2847 (progn | |
| 2848 (setq cpoint (point)) | |
| 2849 (goto-char (nth 2 state)) | |
| 2850 (cond | |
| 2851 ((looking-at "\\(s\\|tr\\)\\>") | |
| 2852 (or (re-search-forward | |
| 2853 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*" | |
| 2854 lim 'move) | |
| 2855 (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
|
2856 ((looking-at "\\(m\\|q\\([qxwr]\\)?\\)\\>") |
| 20323 | 2857 (or (re-search-forward |
| 2858 "\\=\\w+[ \t]*#\\([^\n\\\\#]\\|\\\\[\\\\#]\\)*#" | |
| 2859 lim 'move) | |
| 2860 (setq stop-in t))) | |
| 2861 (t ; It was fair comment | |
| 2862 (setq stop-in t) ; Finish | |
| 2863 (goto-char (1- cpoint))))) | |
| 2864 (setq stop-in t) ; Finish | |
| 2865 (forward-char -1)) | |
| 2866 (setq stop-in t)) ; Finish | |
| 2867 ) | |
| 2868 (nth 4 state)))) | |
| 2869 | |
| 2870 (defsubst cperl-1- (p) | |
| 2871 (max (point-min) (1- p))) | |
| 2872 | |
| 2873 (defsubst cperl-1+ (p) | |
| 2874 (min (point-max) (1+ p))) | |
| 2875 | |
| 2876 (defsubst cperl-modify-syntax-type (at how) | |
| 2877 (if (< at (point-max)) | |
| 2878 (progn | |
| 2879 (put-text-property at (1+ at) 'syntax-table how) | |
| 2880 (put-text-property at (1+ at) 'rear-nonsticky t)))) | |
| 2881 | |
| 2882 (defun cperl-protect-defun-start (s e) | |
| 2883 ;; C code looks for "^\\s(" to skip comment backward in "hard" situations | |
| 2884 (save-excursion | |
| 2885 (goto-char s) | |
| 2886 (while (re-search-forward "^\\s(" e 'to-end) | |
| 2887 (put-text-property (1- (point)) (point) 'syntax-table cperl-st-punct)))) | |
| 2888 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2889 (defun cperl-commentify (bb e string &optional noface) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2890 (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
|
2891 (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
|
2892 nil |
| 20323 | 2893 ;; We suppose that e is _after_ the end of construction, as after eol. |
| 2894 (setq string (if string cperl-st-sfence cperl-st-cfence)) | |
| 2895 (cperl-modify-syntax-type bb string) | |
| 2896 (cperl-modify-syntax-type (1- e) string) | |
| 2897 (if (and (eq string cperl-st-sfence) (> (- e 2) bb)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2898 (put-text-property (1+ bb) (1- e) |
| 20323 | 2899 '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
|
2900 (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
|
2901 ;; Fontify |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2902 (or noface |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2903 (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
|
2904 (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
|
2905 '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
|
2906 (defvar cperl-starters '(( ?\( . ?\) ) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2907 ( ?\[ . ?\] ) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2908 ( ?\{ . ?\} ) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2909 ( ?\< . ?\> ))) |
| 20323 | 2910 |
| 2911 (defun cperl-forward-re (lim end is-2arg set-st st-l err-l argument | |
| 2912 &optional ostart oend) | |
| 2913 ;; Works *before* syntax recognition is done | |
| 2914 ;; May modify syntax-type text property if the situation is too hard | |
| 2915 (let (b starter ender st i i2 go-forward) | |
| 2916 (skip-chars-forward " \t") | |
| 2917 ;; ender means matching-char matcher. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2918 (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
|
2919 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
|
2920 ender (cdr (assoc starter cperl-starters))) |
| 20323 | 2921 ;; What if starter == ?\\ ???? |
| 2922 (if set-st | |
| 2923 (if (car st-l) | |
| 2924 (setq st (car st-l)) | |
| 2925 (setcar st-l (make-syntax-table)) | |
| 2926 (setq i 0 st (car st-l)) | |
| 2927 (while (< i 256) | |
| 2928 (modify-syntax-entry i "." st) | |
| 2929 (setq i (1+ i))) | |
| 2930 (modify-syntax-entry ?\\ "\\" st))) | |
| 2931 (setq set-st t) | |
| 2932 ;; Whether we have an intermediate point | |
| 2933 (setq i nil) | |
| 2934 ;; Prepare the syntax table: | |
| 2935 (and set-st | |
| 2936 (if (not ender) ; m/blah/, s/x//, s/x/y/ | |
| 2937 (modify-syntax-entry starter "$" st) | |
| 2938 (modify-syntax-entry starter (concat "(" (list ender)) st) | |
| 2939 (modify-syntax-entry ender (concat ")" (list starter)) st))) | |
| 2940 (condition-case bb | |
| 2941 (progn | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2942 ;; 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
|
2943 ;; is recognized the same as $, so we need to check this manually. |
| 20323 | 2944 (if (and (eq starter (char-after (cperl-1+ b))) |
| 2945 (not ender)) | |
| 2946 ;; $ has TeXish matching rules, so $$ equiv $... | |
| 2947 (forward-char 2) | |
| 2948 (set-syntax-table st) | |
| 2949 (forward-sexp 1) | |
| 2950 (set-syntax-table cperl-mode-syntax-table) | |
| 2951 ;; Now the problem is with m;blah;; | |
| 2952 (and (not ender) | |
| 2953 (eq (preceding-char) | |
| 2954 (char-after (- (point) 2))) | |
| 2955 (save-excursion | |
| 2956 (forward-char -2) | |
| 2957 (= 0 (% (skip-chars-backward "\\\\") 2))) | |
| 2958 (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
|
2959 ;; Now we are after the first part. |
| 20323 | 2960 (and is-2arg ; Have trailing part |
| 2961 (not ender) | |
| 2962 (eq (following-char) starter) ; Empty trailing part | |
| 2963 (progn | |
| 2964 (or (eq (char-syntax (following-char)) ?.) | |
| 2965 ;; Make trailing letter into punctuation | |
| 2966 (cperl-modify-syntax-type (point) cperl-st-punct)) | |
| 2967 (setq is-2arg nil go-forward t))) ; Ignore the tail | |
| 2968 (if is-2arg ; Not number => have second part | |
| 2969 (progn | |
| 2970 (setq i (point) i2 i) | |
| 2971 (if ender | |
| 2972 (if (memq (following-char) '(?\ ?\t ?\n ?\f)) | |
| 2973 (progn | |
| 2974 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
| 2975 (goto-char (match-end 0)) | |
| 2976 (skip-chars-forward " \t\n\f")) | |
| 2977 (setq i2 (point)))) | |
| 2978 (forward-char -1)) | |
| 2979 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
2980 (if ender (modify-syntax-entry ender "." st)) |
| 20323 | 2981 (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
|
2982 (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
|
2983 argument starter ender) |
| 20323 | 2984 ender (nth 2 ender))))) |
| 2985 (error (goto-char lim) | |
| 2986 (setq set-st nil) | |
| 2987 (or end | |
| 2988 (message | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
2989 "End of `%s%s%c ... %c' string/RE not found: %s" |
| 20323 | 2990 argument |
| 2991 (if ostart (format "%c ... %c" ostart (or oend ostart)) "") | |
| 2992 starter (or ender starter) bb) | |
| 2993 (or (car err-l) (setcar err-l b))))) | |
| 2994 (if set-st | |
| 2995 (progn | |
| 2996 (modify-syntax-entry starter (if (eq starter ?\\) "\\" ".") st) | |
| 2997 (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
|
2998 ;; 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
|
2999 ;; 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
|
3000 ;; 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
|
3001 ;; starter: the starting delimiter of the first arg |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3002 ;; go-forward: has 2 args, and the second part is empty |
| 20323 | 3003 (list i i2 ender starter go-forward))) |
| 3004 | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3005 (defsubst cperl-postpone-fontification (b e type val &optional now) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3006 ;; 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
|
3007 (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
|
3008 (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
|
3009 (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
|
3010 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3011 ;;; 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
|
3012 ;;; recognized locally) are marked: |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3013 ;; a) PODs: |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3014 ;; 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
|
3015 ;; 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
|
3016 ;; Each literal part is marked `syntax-type' ==> `in-pod' |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3017 ;; b) HEREs: |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3018 ;; 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
|
3019 ;; 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
|
3020 ;; The delimiter is marked `syntax-type' ==> `here-doc-delim' |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3021 ;; c) FORMATs: |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3022 ;; After-initial-line--to-end is marked `syntax-type' ==> `format' |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3023 ;; d) 'Q'uoted string: |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3024 ;; 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
|
3025 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3026 (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
|
3027 ;; 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
|
3028 (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
|
3029 (setq opos pos) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3030 (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
|
3031 (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
|
3032 (if pos |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3033 (if before |
|
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 (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
|
3036 (beginning-of-line) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3037 (setq pos (point))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3038 (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
|
3039 ;; 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
|
3040 (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
|
3041 (if end |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3042 ;; 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
|
3043 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3044 (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
|
3045 (setq pos end |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3046 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
|
3047 (or end pos))))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3048 |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3049 (defun cperl-find-pods-heres (&optional min max non-inter end ignore-max) |
| 20323 | 3050 "Scans the buffer for hard-to-parse Perl constructions. |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3051 If `cperl-pod-here-fontify' is not-nil after evaluation, will fontify |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3052 the sections using `cperl-pod-head-face', `cperl-pod-face', |
| 20323 | 3053 `cperl-here-face'." |
| 3054 (interactive) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3055 (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
|
3056 cperl-syntax-state nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3057 cperl-syntax-done-to min)) |
| 20323 | 3058 (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
|
3059 (let* (face head-face here-face b e bb tag qtag b1 e1 argument i c tail tb |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3060 (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
|
3061 (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
|
3062 (modified (buffer-modified-p)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3063 (after-change-functions nil) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3064 (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
|
3065 (>= min (car cperl-syntax-state)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3066 (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
|
3067 (car cperl-syntax-state) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3068 (point-min))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3069 (state (if use-syntax-state |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3070 (cdr cperl-syntax-state))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3071 (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
|
3072 ;; 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
|
3073 (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
|
3074 font-lock-string-face |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3075 '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
|
3076 (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
|
3077 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
|
3078 'font-lock-constant-face)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3079 (font-lock-function-name-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3080 (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
|
3081 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
|
3082 'font-lock-function-name-face)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3083 (cperl-nonoverridable-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3084 (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
|
3085 cperl-nonoverridable-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3086 'cperl-nonoverridable-face)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3087 (stop-point (if ignore-max |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3088 (point-max) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3089 max)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3090 (search |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3091 (concat |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3092 "\\(\\`\n?\\|\n\n\\)=" |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3093 "\\|" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3094 ;; One extra () before this: |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3095 "<<" |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3096 "\\(" ; 1 + 1 |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3097 ;; 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
|
3098 "\\([\"'`]\\)" ; 2 + 1 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3099 "\\([^\"'`\n]*\\)" ; 3 + 1 |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3100 "\\3" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3101 "\\|" |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3102 ;; 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
|
3103 "\\\\?\\(\\([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
|
3104 ;; 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
|
3105 ;; "\\([^= \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
|
3106 "\\(\\)" ; 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
|
3107 "\\)" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3108 "\\|" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3109 ;; 1+6 extra () before this: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3110 "^[ \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
|
3111 (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
|
3112 (concat |
|
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=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
|
3115 "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
|
22293
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=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
|
3118 "\\([?/<]\\)" ; /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
|
3119 "\\|" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3120 ;; 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
|
3121 "\\<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
|
3122 "\\|" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3123 ;; 1+6+2+1+1+2=13 extra () before this: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3124 "\\$\\(['{]\\)" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3125 "\\|" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3126 ;; 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
|
3127 "\\(\\<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
|
3128 ;; 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
|
3129 "\\|" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3130 "__\\(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
|
3131 ) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3132 "")))) |
| 20323 | 3133 (unwind-protect |
| 3134 (progn | |
| 3135 (save-excursion | |
| 3136 (or non-inter | |
| 3137 (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
|
3138 (and cperl-pod-here-fontify |
| 20323 | 3139 ;; We had evals here, do not know why... |
| 3140 (setq face cperl-pod-face | |
| 3141 head-face cperl-pod-head-face | |
| 3142 here-face cperl-here-face)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3143 (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
|
3144 '(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
|
3145 cperl-postpone t)) |
| 20323 | 3146 ;; Need to remove face as well... |
| 3147 (goto-char min) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3148 (and (eq system-type 'emx) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3149 (looking-at "extproc[ \t]") ; Analogue of #! |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3150 (cperl-commentify min |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3151 (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
|
3152 nil)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3153 (while (and |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3154 (< (point) max) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3155 (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
|
3156 (setq tmpend nil) ; Valid for most cases |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3157 (cond |
| 20323 | 3158 ((match-beginning 1) ; POD section |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3159 ;; "\\(\\`\n?\\|\n\n\\)=" |
| 20323 | 3160 (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
|
3161 (if ignore-max |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3162 nil ; Doing a chunk only |
| 20323 | 3163 (message "=cut is not preceded by a POD section") |
| 3164 (or (car err-l) (setcar err-l (point)))) | |
| 3165 (beginning-of-line) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3166 |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3167 (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
|
3168 bb b |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3169 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
|
3170 b1 nil) ; error condition |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3171 ;; 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
|
3172 ;; 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
|
3173 (or (re-search-forward "\n\n=cut\\>" stop-point 'toend) |
| 20323 | 3174 (progn |
| 3175 (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
|
3176 (setq b1 t) |
| 20323 | 3177 (or (car err-l) (setcar err-l b)))) |
| 3178 (beginning-of-line 2) ; An empty line after =cut is not POD! | |
| 3179 (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
|
3180 (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
|
3181 ;; Unrecoverable error |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3182 nil |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3183 (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
|
3184 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3185 (remove-text-properties |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3186 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
|
3187 'cperl-postpone t)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3188 (setq tmpend tb))) |
| 20323 | 3189 (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
|
3190 (put-text-property b e 'syntax-type 'in-pod) |
| 20323 | 3191 (goto-char b) |
| 3192 (while (re-search-forward "\n\n[ \t]" e t) | |
| 3193 ;; We start 'pod 1 char earlier to include the preceding line | |
| 3194 (beginning-of-line) | |
| 3195 (put-text-property (cperl-1- b) (point) 'syntax-type 'pod) | |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3196 (cperl-put-do-not-fontify b (point) t) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3197 ;; mark the non-literal parts as PODs |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3198 (if cperl-pod-here-fontify |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3199 (cperl-postpone-fontification b (point) 'face face t)) |
| 20323 | 3200 (re-search-forward "\n\n[^ \t\f\n]" e 'toend) |
| 3201 (beginning-of-line) | |
| 3202 (setq b (point))) | |
| 3203 (put-text-property (cperl-1- (point)) e 'syntax-type 'pod) | |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3204 (cperl-put-do-not-fontify (point) e t) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3205 (if cperl-pod-here-fontify |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3206 (progn |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3207 ;; mark the non-literal parts as PODs |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3208 (cperl-postpone-fontification (point) e 'face face t) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3209 (goto-char bb) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3210 (if (looking-at |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3211 "=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$") |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3212 ;; mark the headers |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3213 (cperl-postpone-fontification |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3214 (match-beginning 1) (match-end 1) |
| 20323 | 3215 'face head-face)) |
| 3216 (while (re-search-forward | |
| 3217 ;; One paragraph | |
| 3218 "\n\n=[a-zA-Z0-9_]+\\>[ \t]*\\(\\(\n?[^\n]\\)+\\)$" | |
| 3219 e 'toend) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3220 ;; mark the headers |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3221 (cperl-postpone-fontification |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3222 (match-beginning 1) (match-end 1) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
3223 'face head-face)))) |
| 20323 | 3224 (cperl-commentify bb e nil) |
| 3225 (goto-char e) | |
| 3226 (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
|
3227 (forward-char -1))))) ; Prepare for immediate pod start. |
| 20323 | 3228 ;; Here document |
| 3229 ;; 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
|
3230 ;; ;; One extra () before this: |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3231 ;;"<<" |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3232 ;; "\\(" ; 1 + 1 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3233 ;; ;; 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
|
3234 ;; "\\([\"'`]\\)" ; 2 + 1 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3235 ;; "\\([^\"'`\n]*\\)" ; 3 + 1 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3236 ;; "\\3" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3237 ;; "\\|" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3238 ;; ;; 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
|
3239 ;; "\\\\?\\(\\([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
|
3240 ;; ;; 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
|
3241 ;; ;; "\\([^= \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
|
3242 ;; "\\(\\)" ; 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
|
3243 ;; "\\)" |
| 20323 | 3244 ((match-beginning 2) ; 1 + 1 |
| 3245 ;; Abort in comment: | |
| 3246 (setq b (point)) | |
| 3247 (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
|
3248 state-point b |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3249 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
|
3250 i (or (nth 3 state) (nth 4 state))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3251 (if i |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3252 (setq c t) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3253 (setq c (and |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3254 (match-beginning 5) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3255 (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
|
3256 (looking-at |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3257 "[ \t]*[=0-9$@%&(]")))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3258 (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
|
3259 nil ; Skip it. |
| 20323 | 3260 (if (match-beginning 5) ;4 + 1 |
| 3261 (setq b1 (match-beginning 5) ; 4 + 1 | |
| 3262 e1 (match-end 5)) ; 4 + 1 | |
| 3263 (setq b1 (match-beginning 4) ; 3 + 1 | |
| 3264 e1 (match-end 4))) ; 3 + 1 | |
| 3265 (setq tag (buffer-substring b1 e1) | |
| 3266 qtag (regexp-quote tag)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3267 (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
|
3268 ;; 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
|
3269 (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
|
3270 (cperl-put-do-not-fontify b1 e1 t))) |
| 20323 | 3271 (forward-line) |
| 3272 (setq b (point)) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3273 ;; 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
|
3274 ;; some hook of fontification, and max is random |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3275 (cond ((re-search-forward (concat "^" qtag "$") |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3276 stop-point 'toend) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3277 (if cperl-pod-here-fontify |
| 20323 | 3278 (progn |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3279 ;; Highlight the ending delimiter |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3280 (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
|
3281 '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
|
3282 (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
|
3283 ;; Highlight the HERE-DOC |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3284 (cperl-postpone-fontification b (match-beginning 0) |
| 20323 | 3285 'face here-face))) |
| 3286 (setq e1 (cperl-1+ (match-end 0))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3287 (put-text-property b (match-beginning 0) |
| 20323 | 3288 'syntax-type 'here-doc) |
| 3289 (put-text-property (match-beginning 0) e1 | |
| 3290 'syntax-type 'here-doc-delim) | |
| 3291 (put-text-property b e1 | |
| 3292 'here-doc-group t) | |
| 3293 (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
|
3294 (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
|
3295 (if (> e1 max) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3296 (setq tmpend tb))) |
| 20323 | 3297 (t (message "End of here-document `%s' not found." tag) |
| 3298 (or (car err-l) (setcar err-l b)))))) | |
| 3299 ;; format | |
| 3300 ((match-beginning 8) | |
| 3301 ;; 1+6=7 extra () before this: | |
| 3302 ;;"^[ \t]*\\(format\\)[ \t]*\\([a-zA-Z0-9_]+\\)?[ \t]*=[ \t]*$" | |
| 3303 (setq b (point) | |
| 3304 name (if (match-beginning 8) ; 7 + 1 | |
| 3305 (buffer-substring (match-beginning 8) ; 7 + 1 | |
| 3306 (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
|
3307 "") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3308 tb (match-beginning 0)) |
| 20323 | 3309 (setq argument nil) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3310 (if cperl-pod-here-fontify |
| 20323 | 3311 (while (and (eq (forward-line) 0) |
| 3312 (not (looking-at "^[.;]$"))) | |
| 3313 (cond | |
| 3314 ((looking-at "^#")) ; Skip comments | |
| 3315 ((and argument ; Skip argument multi-lines | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3316 (looking-at "^[ \t]*{")) |
| 20323 | 3317 (forward-sexp 1) |
| 3318 (setq argument nil)) | |
| 3319 (argument ; Skip argument lines | |
| 3320 (setq argument nil)) | |
| 3321 (t ; Format line | |
| 3322 (setq b1 (point)) | |
| 3323 (setq argument (looking-at "^[^\n]*[@^]")) | |
| 3324 (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
|
3325 ;; Highlight the format line |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3326 (cperl-postpone-fontification b1 (point) |
| 20323 | 3327 'face font-lock-string-face) |
| 3328 (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
|
3329 (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
|
3330 ;; 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
|
3331 ;; 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
|
3332 (re-search-forward "^[.;]$" stop-point 'toend)) |
| 20323 | 3333 (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
|
3334 (if (looking-at "^\\.$") ; ";" is not supported yet |
| 20323 | 3335 (progn |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3336 ;; 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
|
3337 (cperl-postpone-fontification (point) (+ (point) 2) |
| 20323 | 3338 'face font-lock-string-face) |
| 3339 (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
|
3340 (cperl-put-do-not-fontify (point) (+ (point) 2) t)) |
| 20323 | 3341 (message "End of format `%s' not found." name) |
| 3342 (or (car err-l) (setcar err-l b))) | |
| 3343 (forward-line) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3344 (if (> (point) max) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3345 (setq tmpend tb)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3346 (put-text-property b (point) 'syntax-type 'format)) |
| 20323 | 3347 ;; Regexp: |
| 3348 ((or (match-beginning 10) (match-beginning 11)) | |
| 3349 ;; 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
|
3350 ;; "\\<\\(q[wxqr]?\\|[msy]\\|tr\\)\\>" |
| 20323 | 3351 ;; "\\|" |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3352 ;; "\\([?/<]\\)" ; /blah/ or ?blah? or <file*glob> |
| 20323 | 3353 (setq b1 (if (match-beginning 10) 10 11) |
| 3354 argument (buffer-substring | |
| 3355 (match-beginning b1) (match-end b1)) | |
| 3356 b (point) | |
| 3357 i b | |
| 3358 c (char-after (match-beginning b1)) | |
| 3359 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
|
3360 ;; 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
|
3361 bb (if (eq b1 10) ; user variables/whatever |
| 20323 | 3362 (or |
| 3363 (memq bb '(?\$ ?\@ ?\% ?\* ?\#)) ; $#y | |
| 3364 (and (eq bb ?-) (eq c ?s)) ; -s file test | |
| 3365 (and (eq bb ?\&) ; &&m/blah/ | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3366 (not (eq (char-after |
| 20323 | 3367 (- (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
|
3368 ?\&)))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3369 ;; <file> or <$file> |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3370 (and (eq c ?\<) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3371 ;; 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
|
3372 (save-match-data |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3373 (looking-at |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3374 "\\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
|
3375 tb (match-beginning 0)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3376 (goto-char (match-beginning b1)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3377 (cperl-backward-to-noncomment (point-min)) |
| 20323 | 3378 (or bb |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3379 (if (eq b1 11) ; bare /blah/ or ?blah? or <foo> |
| 20323 | 3380 (setq argument "" |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3381 bb ; Not a regexp? |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3382 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3383 (not |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3384 ;; What is below: regexp-p? |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3385 (and |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3386 (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
|
3387 (append (if (memq c '(?\? ?\<)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3388 ;; $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
|
3389 "~{(=|&*!,;:" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3390 "~{(=|&+-*!,;:") nil)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3391 (and (eq (preceding-char) ?\}) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3392 (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
|
3393 (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
|
3394 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3395 (forward-sexp -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3396 ;;; 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
|
3397 ;;; 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
|
3398 (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
|
3399 ;; -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
|
3400 (looking-at "[a-zA-Z]\\>") |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3401 (and |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3402 (not (memq (preceding-char) |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3403 '(?$ ?@ ?& ?%))) |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3404 (looking-at |
|
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3405 "\\(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
|
3406 (and (eq (preceding-char) ?.) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3407 (eq (char-after (- (point) 2)) ?.)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3408 (bobp)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3409 ;; m|blah| ? foo : bar; |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3410 (not |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3411 (and (eq c ?\?) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3412 cperl-use-syntax-table-text-property |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3413 (not (bobp)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3414 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3415 (forward-char -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3416 (looking-at "\\s|"))))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3417 b (1- b)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3418 ;; s y tr m |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3419 ;; Check for $a->y |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3420 (if (and (eq (preceding-char) ?>) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3421 (eq (char-after (- (point) 2)) ?-)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3422 ;; Not a regexp |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3423 (setq bb t)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3424 (or bb (setq state (parse-partial-sexp |
| 20323 | 3425 state-point b nil nil state) |
| 3426 state-point b)) | |
| 3427 (goto-char b) | |
| 3428 (if (or bb (nth 3 state) (nth 4 state)) | |
| 3429 (goto-char i) | |
| 3430 (if (looking-at "[ \t\n\f]+\\(#[^\n]*\n[ \t\n\f]*\\)+") | |
| 3431 (goto-char (match-end 0)) | |
| 3432 (skip-chars-forward " \t\n\f")) | |
| 3433 ;; qtag means two-arg matcher, may be reset to | |
| 3434 ;; 2 or 3 later if some special quoting is needed. | |
| 3435 ;; e1 means matching-char matcher. | |
| 3436 (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
|
3437 ;; has 2 args |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3438 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
|
3439 ;; 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
|
3440 ;; 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
|
3441 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
|
3442 i2 |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3443 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
|
3444 ;; 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
|
3445 b1 (nth 1 i) ; start of the second part |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3446 tag (nth 2 i) ; ender-char, true if second part |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3447 ; is with matching chars [] |
| 20323 | 3448 go (nth 4 i) ; There is a 1-char part after the end |
| 3449 i (car i) ; intermediate point | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3450 e1 (point) ; end |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3451 ;; Before end of the second part if non-matching: /// |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3452 tail (if (and i (not tag)) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3453 (1- e1)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3454 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
|
3455 qtag nil) ; need to preserve backslashitis |
| 20323 | 3456 ;; Commenting \\ is dangerous, what about ( ? |
| 3457 (and i tail | |
| 3458 (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
|
3459 (setq qtag t)) |
| 20323 | 3460 (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
|
3461 ;; Considered as 1arg form |
| 20323 | 3462 (progn |
| 3463 (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
|
3464 (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
|
3465 (and go |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3466 (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
|
3467 (or (eobp) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3468 (forward-char 1)))) |
| 20323 | 3469 (cperl-commentify b i t) |
| 3470 (if (looking-at "\\sw*e") ; s///e | |
| 3471 (progn | |
| 3472 (and | |
| 3473 ;; silent: | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3474 (cperl-find-pods-heres b1 (1- (point)) t end) |
| 20323 | 3475 ;; Error |
| 3476 (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
|
3477 (if (and tag (eq (preceding-char) ?\>)) |
| 20323 | 3478 (progn |
| 3479 (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
|
3480 (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
|
3481 (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
|
3482 (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
|
3483 (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
|
3484 (if qtag |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3485 (cperl-modify-syntax-type (1+ i) cperl-st-punct)) |
| 20323 | 3486 (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
|
3487 ;; Now: tail: if the second part is non-matching without ///e |
| 20323 | 3488 (if (eq (char-syntax (following-char)) ?w) |
| 3489 (progn | |
| 3490 (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
|
3491 (if tail (cperl-commentify tail (point) t)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3492 (cperl-postpone-fontification |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3493 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
|
3494 ;; 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
|
3495 ;; and highlight differently |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3496 (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
|
3497 (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
|
3498 ;; <> 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
|
3499 ;; 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
|
3500 (save-excursion |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3501 (condition-case nil |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3502 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3503 (goto-char tb) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3504 (forward-sexp -1) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3505 (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
|
3506 (error t)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3507 (cperl-postpone-fontification |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3508 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
|
3509 (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
|
3510 (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
|
3511 (or |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3512 (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
|
3513 (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
|
3514 (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
|
3515 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3516 (cperl-postpone-fontification |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3517 b (cperl-1+ b) 'face font-lock-constant-face) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3518 (cperl-postpone-fontification |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3519 (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
|
3520 (if i2 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3521 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3522 (cperl-postpone-fontification |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3523 (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
|
3524 (if (assoc (char-after b) cperl-starters) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3525 (cperl-postpone-fontification |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3526 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
|
3527 (if (> (point) max) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3528 (setq tmpend tb)))) |
| 20323 | 3529 ((match-beginning 13) ; sub with prototypes |
| 3530 (setq b (match-beginning 0)) | |
| 3531 (if (memq (char-after (1- b)) | |
| 3532 '(?\$ ?\@ ?\% ?\& ?\*)) | |
| 3533 nil | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3534 (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
|
3535 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
|
3536 state-point b) |
| 20323 | 3537 (if (or (nth 3 state) (nth 4 state)) |
| 3538 nil | |
| 3539 ;; Mark as string | |
| 3540 (cperl-commentify (match-beginning 13) (match-end 13) t)) | |
| 3541 (goto-char (match-end 0)))) | |
| 3542 ;; 1+6+2+1+1+2=13 extra () before this: | |
| 3543 ;; "\\$\\(['{]\\)" | |
| 3544 ((and (match-beginning 14) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3545 (eq (preceding-char) ?\')) ; $' |
| 20323 | 3546 (setq b (1- (point)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3547 state (parse-partial-sexp |
| 20323 | 3548 state-point (1- b) nil nil state) |
| 3549 state-point (1- b)) | |
| 3550 (if (nth 3 state) ; in string | |
| 3551 (cperl-modify-syntax-type (1- b) cperl-st-punct)) | |
| 3552 (goto-char (1+ b))) | |
| 3553 ;; 1+6+2+1+1+2=13 extra () before this: | |
| 3554 ;; "\\$\\(['{]\\)" | |
| 3555 ((match-beginning 14) ; ${ | |
| 3556 (setq bb (match-beginning 0)) | |
| 3557 (cperl-modify-syntax-type bb cperl-st-punct)) | |
| 3558 ;; 1+6+2+1+1+2+1=14 extra () before this: | |
| 3559 ;; "\\(\\<sub[ \t\n\f]+\\|[&*$@%]\\)[a-zA-Z0-9_]*'") | |
| 3560 ((match-beginning 15) ; old $abc'efg syntax | |
| 3561 (setq bb (match-end 0) | |
| 3562 b (match-beginning 0) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3563 state (parse-partial-sexp |
| 20323 | 3564 state-point b nil nil state) |
| 3565 state-point b) | |
| 3566 (if (nth 3 state) ; in string | |
| 3567 nil | |
| 3568 (put-text-property (1- bb) bb 'syntax-table cperl-st-word)) | |
| 3569 (goto-char bb)) | |
| 3570 ;; 1+6+2+1+1+2+1+1=15 extra () before this: | |
| 3571 ;; "__\\(END\\|DATA\\)__" | |
| 3572 (t ; __END__, __DATA__ | |
| 3573 (setq bb (match-end 0) | |
| 3574 b (match-beginning 0) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3575 state (parse-partial-sexp |
| 20323 | 3576 state-point b nil nil state) |
| 3577 state-point b) | |
| 3578 (if (or (nth 3 state) (nth 4 state)) | |
| 3579 nil | |
| 3580 ;; (put-text-property b (1+ bb) 'syntax-type 'pod) ; Cheat | |
| 3581 (cperl-commentify b bb nil) | |
| 3582 (setq end t)) | |
| 3583 (goto-char bb))) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3584 (if (> (point) stop-point) |
| 20323 | 3585 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3586 (if end |
| 20323 | 3587 (message "Garbage after __END__/__DATA__ ignored") |
| 3588 (message "Unbalanced syntax found while scanning") | |
| 3589 (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
|
3590 (goto-char stop-point)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3591 (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
|
3592 cperl-syntax-done-to (or tmpend (max (point) max)))) |
| 20323 | 3593 (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
|
3594 (or non-inter |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3595 (message "Scanning for \"hard\" Perl constructions... done")))) |
| 20323 | 3596 (and (buffer-modified-p) |
| 3597 (not modified) | |
| 3598 (set-buffer-modified-p nil)) | |
| 3599 (set-syntax-table cperl-mode-syntax-table)) | |
| 3600 (car err-l))) | |
| 3601 | |
| 3602 (defun cperl-backward-to-noncomment (lim) | |
| 3603 ;; 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
|
3604 (let (stop p pr) |
| 20323 | 3605 (while (and (not stop) (> (point) (or lim 1))) |
| 3606 (skip-chars-backward " \t\n\f" lim) | |
| 3607 (setq p (point)) | |
| 3608 (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
|
3609 (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
|
3610 '(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
|
3611 (cperl-unwind-to-safe nil) |
| 20323 | 3612 (if (or (looking-at "^[ \t]*\\(#\\|$\\)") |
| 3613 (progn (cperl-to-comment-or-eol) (bolp))) | |
| 3614 nil ; Only comment, skip | |
| 3615 ;; Else | |
| 3616 (skip-chars-backward " \t") | |
| 3617 (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
|
3618 (setq stop t)))))) |
| 20323 | 3619 |
| 3620 (defun cperl-after-block-p (lim) | |
| 3621 ;; We suppose that the preceding char is }. | |
| 3622 (save-excursion | |
| 3623 (condition-case nil | |
| 3624 (progn | |
| 3625 (forward-sexp -1) | |
| 3626 (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
|
3627 (or (eq (point) lim) |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3628 (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
|
3629 (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
|
3630 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3631 (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
|
3632 (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
|
3633 ;; sub f {} |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3634 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3635 (cperl-backward-to-noncomment lim) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3636 (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
|
3637 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3638 (forward-sexp -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3639 (looking-at "sub\\>")))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3640 (cperl-after-expr-p lim)))) |
| 20323 | 3641 (error nil)))) |
| 3642 | |
| 3643 (defun cperl-after-expr-p (&optional lim chars test) | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3644 "Return true if the position is good for start of expression. |
| 20323 | 3645 TEST is the expression to evaluate at the found position. If absent, |
| 3646 CHARS is a string that contains good characters to have before us (however, | |
| 3647 `}' is treated \"smartly\" if it is not in the list)." | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3648 (let (stop p |
| 20323 | 3649 (lim (or lim (point-min)))) |
| 3650 (save-excursion | |
| 3651 (while (and (not stop) (> (point) lim)) | |
| 3652 (skip-chars-backward " \t\n\f" lim) | |
| 3653 (setq p (point)) | |
| 3654 (beginning-of-line) | |
| 3655 (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
|
3656 ;; Else: last iteration, or a label |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3657 (cperl-to-comment-or-eol) |
| 20323 | 3658 (skip-chars-backward " \t") |
| 3659 (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
|
3660 (setq p (point)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3661 (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
|
3662 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3663 (forward-char -1) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3664 (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
|
3665 (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
|
3666 (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
|
3667 (goto-char p) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3668 (setq stop t)))) |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3669 (or (bobp) ; ???? Needed |
|
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3670 (eq (point) lim) |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
3671 (looking-at "[ \t]*__\\(END\\|DATA\\)__") ; After this anything goes |
| 20323 | 3672 (progn |
| 3673 (if test (eval test) | |
| 3674 (or (memq (preceding-char) (append (or chars "{;") nil)) | |
| 3675 (and (eq (preceding-char) ?\}) | |
| 3676 (cperl-after-block-p lim))))))))) | |
| 3677 | |
| 3678 (defun cperl-backward-to-start-of-continued-exp (lim) | |
| 3679 (if (memq (preceding-char) (append ")]}\"'`" nil)) | |
| 3680 (forward-sexp -1)) | |
| 3681 (beginning-of-line) | |
| 3682 (if (<= (point) lim) | |
| 3683 (goto-char (1+ lim))) | |
| 3684 (skip-chars-forward " \t")) | |
| 3685 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3686 (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
|
3687 ;; We assume that we are after ?\} |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3688 (and |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3689 (cperl-after-block-p lim) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3690 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3691 (forward-sexp -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3692 (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
|
3693 (or (bobp) |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3694 (eq (point) lim) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3695 (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
|
3696 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3697 (forward-sexp -1) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3698 (not |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3699 (looking-at |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3700 "\\(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
|
3701 |
| 20323 | 3702 |
| 3703 (defun cperl-indent-exp () | |
| 3704 "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
|
3705 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3706 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
|
3707 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
|
3708 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3709 If `cperl-indent-region-fix-constructs', will improve spacing on |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3710 conditional/loop constructs." |
| 20323 | 3711 (interactive) |
| 3712 (save-excursion | |
| 3713 (let ((tmp-end (progn (end-of-line) (point))) top done) | |
| 3714 (save-excursion | |
| 3715 (beginning-of-line) | |
| 3716 (while (null done) | |
| 3717 (setq top (point)) | |
| 3718 (while (= (nth 0 (parse-partial-sexp (point) tmp-end | |
| 3719 -1)) -1) | |
| 3720 (setq top (point))) ; Get the outermost parenths in line | |
| 3721 (goto-char top) | |
| 3722 (while (< (point) tmp-end) | |
| 3723 (parse-partial-sexp (point) tmp-end nil t) ; To start-sexp or eol | |
| 3724 (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
|
3725 (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
|
3726 (save-excursion |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3727 (end-of-line) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3728 (setq tmp-end (point))) |
| 20323 | 3729 (setq done t))) |
| 3730 (goto-char tmp-end) | |
| 3731 (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
|
3732 (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
|
3733 (cperl-fix-line-spacing tmp-end)) |
| 20323 | 3734 (cperl-indent-region (point) tmp-end)))) |
| 3735 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3736 (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
|
3737 "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
|
3738 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
|
3739 (interactive) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3740 (or end |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3741 (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
|
3742 (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
|
3743 (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
|
3744 (cperl-indent-region-fix-constructs |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3745 (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
|
3746 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3747 (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
|
3748 (setq ret (point)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3749 ;; }? continue |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3750 ;; blah; } |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3751 (if (not |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3752 (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
|
3753 (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
|
3754 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
|
3755 ;; Looking at: |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3756 ;; } |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3757 ;; else |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3758 (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
|
3759 (looking-at |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3760 "[ \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
|
3761 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3762 (search-forward "}") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3763 (setq p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3764 (skip-chars-forward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3765 (delete-region p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3766 (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
|
3767 (beginning-of-line))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3768 ;; Looking at: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3769 ;; } else |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3770 (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
|
3771 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3772 (search-forward "}") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3773 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3774 (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
|
3775 (beginning-of-line))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3776 ;; Looking at: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3777 ;; else { |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3778 (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
|
3779 "[ \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
|
3780 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3781 (forward-word 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3782 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3783 (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
|
3784 (beginning-of-line))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3785 ;; Looking at: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3786 ;; foreach my $var |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3787 (if (looking-at |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3788 "[ \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
|
3789 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3790 (forward-word 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3791 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3792 (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
|
3793 (beginning-of-line))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3794 ;; Looking at: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3795 ;; foreach my $var ( |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3796 (if (looking-at |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3797 "[ \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
|
3798 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3799 (forward-word 3) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3800 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3801 (insert |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3802 (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
|
3803 (beginning-of-line))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3804 ;; Looking at: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3805 ;; } foreach my $var () { |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3806 (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
|
3807 "[ \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
|
3808 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3809 (setq ml (match-beginning 8)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3810 (re-search-forward "[({]") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3811 (forward-char -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3812 (setq p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3813 (if (eq (following-char) ?\( ) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3814 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3815 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3816 (setq pp (point))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3817 ;; after `else' or nothing |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3818 (if ml ; after `else' |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3819 (skip-chars-backward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3820 (beginning-of-line)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3821 (setq pp nil)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3822 ;; 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
|
3823 ;; Multiline expr should be special |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3824 (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
|
3825 (search-forward "\n" pp t)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3826 (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
|
3827 (looking-at "[ \t\n]*{")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3828 (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3829 (cond |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3830 ((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
|
3831 nil) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3832 ((looking-at "\\(\t*\\| [ \t]+\\){") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3833 (delete-horizontal-space) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3834 (if (if ml |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3835 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
|
3836 cperl-extra-newline-before-brace) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3837 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3838 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3839 (insert "\n") |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3840 (setq ret (point)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3841 (if (cperl-indent-line parse-data) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3842 (progn |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3843 (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
|
3844 (setq ret (point))))) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3845 (insert |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3846 (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
|
3847 ((and (looking-at "[ \t]*\n") |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3848 (not (if ml |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3849 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
|
3850 cperl-extra-newline-before-brace))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3851 (setq pp (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3852 (skip-chars-forward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3853 (delete-region pp (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3854 (insert |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3855 (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
|
3856 ;; Now we are before `{' |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3857 (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
|
3858 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3859 (skip-chars-forward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3860 (setq pp (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3861 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3862 (setq p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3863 (goto-char pp) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3864 (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
|
3865 (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
|
3866 ;; not good: multi-line BLOCK |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3867 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3868 (goto-char (1+ pp)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3869 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3870 (insert "\n") |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3871 (setq ret (point)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3872 (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
|
3873 (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
|
3874 (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
|
3875 (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
|
3876 ;; 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
|
3877 ;; Looking at: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3878 ;; } blah |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3879 (if (and |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3880 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
|
3881 have-brace |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3882 (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
|
3883 (condition-case nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3884 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3885 (up-list 1) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3886 (if (and (<= (point) pp) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3887 (eq (preceding-char) ?\} ) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3888 (cperl-after-block-and-statement-beg (point-min))) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3889 t |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3890 (goto-char p) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3891 nil)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3892 (error nil))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3893 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3894 (forward-char -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3895 (skip-chars-backward " \t") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3896 (if (bolp) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3897 ;; `}' 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
|
3898 (progn |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3899 (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
|
3900 (search-forward "}") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3901 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3902 (insert "\n")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3903 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3904 (or (eq (preceding-char) ?\;) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3905 (bolp) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3906 (and (eq (preceding-char) ?\} ) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3907 (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
|
3908 (insert ";")) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3909 (insert "\n") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3910 (setq ret (point))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3911 (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
|
3912 (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
|
3913 (beginning-of-line))))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3914 ret)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3915 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3916 (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
|
3917 (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
|
3918 (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
|
3919 (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
|
3920 (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
|
3921 |
| 20323 | 3922 (defun cperl-indent-region (start end) |
| 3923 "Simple variant of indentation of region in CPerl mode. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3924 Should be slow. Will not indent comment if it starts at `comment-indent' |
| 20323 | 3925 or looks like continuation of the comment on the previous line. |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3926 Indents all the lines whose first character is between START and END |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3927 inclusive. |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3928 |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3929 If `cperl-indent-region-fix-constructs', will improve spacing on |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3930 conditional/loop constructs." |
| 20323 | 3931 (interactive "r") |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3932 (cperl-update-syntaxification end end) |
| 20323 | 3933 (save-excursion |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3934 (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
|
3935 (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
|
3936 (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
|
3937 (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
|
3938 nil)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3939 after-change-functions ; Speed it up! |
| 20323 | 3940 (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
|
3941 (if h-a-c (add-hook 'after-change-functions 'cperl-delay-update-hook)) |
| 20323 | 3942 (goto-char start) |
| 3943 (setq old-comm-indent (and (cperl-to-comment-or-eol) | |
| 3944 (current-column)) | |
| 3945 new-comm-indent old-comm-indent) | |
| 3946 (goto-char start) | |
|
22391
680733ae3334
Second half of changes in version 1.4.
Richard M. Stallman <rms@gnu.org>
parents:
22390
diff
changeset
|
3947 (setq end (set-marker (make-marker) end)) ; indentation changes pos |
| 20323 | 3948 (or (bolp) (beginning-of-line 2)) |
| 3949 (or (fboundp 'imenu-progress-message) | |
| 3950 (message "Indenting... For feedback load `imenu'...")) | |
| 3951 (while (and (<= (point) end) (not (eobp))) ; bol to check start | |
| 3952 (and (fboundp 'imenu-progress-message) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3953 (imenu-progress-message |
| 20323 | 3954 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
|
3955 (setq st (point)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3956 (if (or |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3957 (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
|
3958 (and (setq comm (looking-at "[ \t]*#")) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3959 (or (eq (current-indentation) (or old-comm-indent |
| 20323 | 3960 comment-column)) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3961 (setq old-comm-indent nil)))) |
| 20323 | 3962 (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
|
3963 (not empty) |
| 20323 | 3964 (= (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
|
3965 (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
|
3966 (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
|
3967 cperl-st-cfence))) |
| 20323 | 3968 (let ((comment-column new-comm-indent)) |
| 3969 (indent-for-comment))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3970 (progn |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3971 (setq i (cperl-indent-line indent-info)) |
| 20323 | 3972 (or comm |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3973 (not i) |
| 20323 | 3974 (progn |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
3975 (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
|
3976 (goto-char (cperl-fix-line-spacing end indent-info))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3977 (if (setq old-comm-indent |
| 20323 | 3978 (and (cperl-to-comment-or-eol) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3979 (not (memq (get-text-property (point) |
| 20323 | 3980 'syntax-type) |
| 3981 '(pod here-doc))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
3982 (not (eq (get-text-property (point) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3983 'syntax-table) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3984 cperl-st-cfence)) |
| 20323 | 3985 (current-column))) |
| 3986 (progn (indent-for-comment) | |
| 3987 (skip-chars-backward " \t") | |
| 3988 (skip-chars-backward "#") | |
| 3989 (setq new-comm-indent (current-column)))))))) | |
| 3990 (beginning-of-line 2)) | |
| 3991 (if (fboundp 'imenu-progress-message) | |
| 3992 (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
|
3993 (message nil))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3994 ;; 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
|
3995 (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
|
3996 (save-excursion |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3997 (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
|
3998 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
3999 (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
|
4000 (insert " ") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4001 (delete-char -1) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4002 (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
|
4003 (insert " ") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4004 (delete-char -1)))))))) |
| 20323 | 4005 |
| 4006 ;; Stolen from lisp-mode with a lot of improvements | |
| 4007 | |
| 4008 (defun cperl-fill-paragraph (&optional justify iteration) | |
| 4009 "Like \\[fill-paragraph], but handle CPerl comments. | |
| 4010 If any of the current line is a comment, fill the comment or the | |
| 4011 block of it that point is in, preserving the comment's initial | |
| 4012 indentation and initial hashes. Behaves usually outside of comment." | |
| 4013 (interactive "P") | |
| 4014 (let ( | |
| 4015 ;; Non-nil if the current line contains a comment. | |
| 4016 has-comment | |
| 4017 | |
| 4018 ;; If has-comment, the appropriate fill-prefix for the comment. | |
| 4019 comment-fill-prefix | |
| 4020 ;; Line that contains code and comment (or nil) | |
| 4021 start | |
| 4022 c spaces len dc (comment-column comment-column)) | |
| 4023 ;; Figure out what kind of comment we are looking at. | |
| 4024 (save-excursion | |
| 4025 (beginning-of-line) | |
| 4026 (cond | |
| 4027 | |
| 4028 ;; A line with nothing but a comment on it? | |
| 4029 ((looking-at "[ \t]*#[# \t]*") | |
| 4030 (setq has-comment t | |
| 4031 comment-fill-prefix (buffer-substring (match-beginning 0) | |
| 4032 (match-end 0)))) | |
| 4033 | |
| 4034 ;; A line with some code, followed by a comment? Remember that the | |
| 4035 ;; semi which starts the comment shouldn't be part of a string or | |
| 4036 ;; character. | |
| 4037 ((cperl-to-comment-or-eol) | |
| 4038 (setq has-comment t) | |
| 4039 (looking-at "#+[ \t]*") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4040 (setq start (point) c (current-column) |
| 20323 | 4041 comment-fill-prefix |
| 4042 (concat (make-string (current-column) ?\ ) | |
| 4043 (buffer-substring (match-beginning 0) (match-end 0))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4044 spaces (progn (skip-chars-backward " \t") |
| 20323 | 4045 (buffer-substring (point) start)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4046 dc (- c (current-column)) len (- start (point)) |
| 20323 | 4047 start (point-marker)) |
| 4048 (delete-char len) | |
| 4049 (insert (make-string dc ?-))))) | |
| 4050 (if (not has-comment) | |
| 4051 (fill-paragraph justify) ; Do the usual thing outside of comment | |
| 4052 ;; Narrow to include only the comment, and then fill the region. | |
| 4053 (save-restriction | |
| 4054 (narrow-to-region | |
| 4055 ;; Find the first line we should include in the region to fill. | |
| 4056 (if start (progn (beginning-of-line) (point)) | |
| 4057 (save-excursion | |
| 4058 (while (and (zerop (forward-line -1)) | |
| 4059 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
| 4060 ;; We may have gone to far. Go forward again. | |
| 4061 (or (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]") | |
| 4062 (forward-line 1)) | |
| 4063 (point))) | |
| 4064 ;; Find the beginning of the first line past the region to fill. | |
| 4065 (save-excursion | |
| 4066 (while (progn (forward-line 1) | |
| 4067 (looking-at "^[ \t]*#+[ \t]*[^ \t\n#]"))) | |
| 4068 (point))) | |
| 4069 ;; Remove existing hashes | |
| 4070 (goto-char (point-min)) | |
| 4071 (while (progn (forward-line 1) (< (point) (point-max))) | |
| 4072 (skip-chars-forward " \t") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4073 (and (looking-at "#+") |
| 20323 | 4074 (delete-char (- (match-end 0) (match-beginning 0))))) |
| 4075 | |
| 4076 ;; Lines with only hashes on them can be paragraph boundaries. | |
| 4077 (let ((paragraph-start (concat paragraph-start "\\|^[ \t#]*$")) | |
| 4078 (paragraph-separate (concat paragraph-start "\\|^[ \t#]*$")) | |
| 4079 (fill-prefix comment-fill-prefix)) | |
| 4080 (fill-paragraph justify))) | |
| 4081 (if (and start) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4082 (progn |
| 20323 | 4083 (goto-char start) |
| 4084 (if (> dc 0) | |
| 4085 (progn (delete-char dc) (insert spaces))) | |
| 4086 (if (or (= (current-column) c) iteration) nil | |
| 4087 (setq comment-column c) | |
| 4088 (indent-for-comment) | |
| 4089 ;; Repeat once more, flagging as iteration | |
| 4090 (cperl-fill-paragraph justify t))))))) | |
| 4091 | |
| 4092 (defun cperl-do-auto-fill () | |
| 4093 ;; Break out if the line is short enough | |
| 4094 (if (> (save-excursion | |
| 4095 (end-of-line) | |
| 4096 (current-column)) | |
| 4097 fill-column) | |
| 4098 (let ((c (save-excursion (beginning-of-line) | |
| 4099 (cperl-to-comment-or-eol) (point))) | |
| 4100 (s (memq (following-char) '(?\ ?\t))) marker) | |
| 4101 (if (>= c (point)) nil | |
| 4102 (setq marker (point-marker)) | |
| 4103 (cperl-fill-paragraph) | |
| 4104 (goto-char marker) | |
| 4105 ;; Is not enough, sometimes marker is a start of line | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4106 (if (bolp) (progn (re-search-forward "#+[ \t]*") |
| 20323 | 4107 (goto-char (match-end 0)))) |
| 4108 ;; Following space could have gone: | |
| 4109 (if (or (not s) (memq (following-char) '(?\ ?\t))) nil | |
| 4110 (insert " ") | |
| 4111 (backward-char 1)) | |
| 4112 ;; Previous space could have gone: | |
| 4113 (or (memq (preceding-char) '(?\ ?\t)) (insert " ")))))) | |
| 4114 | |
| 31821 | 4115 (defvar cperl-imenu--function-name-regexp-perl |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4116 (concat |
| 20323 | 4117 "^\\(" |
| 4118 "[ \t]*\\(sub\\|package\\)[ \t\n]+\\([a-zA-Z_0-9:']+\\)[ \t]*\\(([^()]*)[ \t]*\\)?" | |
| 4119 "\\|" | |
| 4120 "=head\\([12]\\)[ \t]+\\([^\n]+\\)$" | |
| 4121 "\\)")) | |
| 4122 | |
| 4123 (defun cperl-imenu-addback (lst &optional isback name) | |
| 4124 ;; We suppose that the lst is a DAG, unless the first element only | |
| 4125 ;; loops back, and ISBACK is set. Thus this function cannot be | |
| 4126 ;; applied twice without ISBACK set. | |
| 4127 (cond ((not cperl-imenu-addback) lst) | |
| 4128 (t | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4129 (or name |
| 20323 | 4130 (setq name "+++BACK+++")) |
| 4131 (mapcar (function (lambda (elt) | |
| 4132 (if (and (listp elt) (listp (cdr elt))) | |
| 4133 (progn | |
| 4134 ;; In the other order it goes up | |
| 4135 ;; one level only ;-( | |
| 4136 (setcdr elt (cons (cons name lst) | |
| 4137 (cdr elt))) | |
| 4138 (cperl-imenu-addback (cdr elt) t name) | |
| 4139 )))) | |
| 4140 (if isback (cdr lst) lst)) | |
| 4141 lst))) | |
| 4142 | |
| 31821 | 4143 (defun cperl-imenu--create-perl-index (&optional regexp) |
| 20323 | 4144 (require 'imenu) ; May be called from TAGS creator |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4145 (let ((index-alist '()) (index-pack-alist '()) (index-pod-alist '()) |
| 20323 | 4146 (index-unsorted-alist '()) (i-s-f (default-value 'imenu-sort-function)) |
| 4147 (index-meth-alist '()) meth | |
| 4148 packages ends-ranges p | |
| 4149 (prev-pos 0) char fchar index index1 name (end-range 0) package) | |
| 4150 (goto-char (point-min)) | |
| 4151 (if noninteractive | |
| 4152 (message "Scanning Perl for index") | |
| 4153 (imenu-progress-message prev-pos 0)) | |
| 4154 ;; Search for the function | |
| 4155 (progn ;;save-match-data | |
| 4156 (while (re-search-forward | |
| 31821 | 4157 (or regexp cperl-imenu--function-name-regexp-perl) |
| 20323 | 4158 nil t) |
| 4159 (or noninteractive | |
| 4160 (imenu-progress-message prev-pos)) | |
| 4161 (cond | |
| 4162 ((and ; Skip some noise if building tags | |
| 4163 (match-beginning 2) ; package or sub | |
| 4164 (eq (char-after (match-beginning 2)) ?p) ; package | |
| 4165 (not (save-match-data | |
| 4166 (looking-at "[ \t\n]*;")))) ; Plain text word 'package' | |
| 4167 nil) | |
| 4168 ((and | |
| 4169 (match-beginning 2) ; package or sub | |
| 4170 ;; Skip if quoted (will not skip multi-line ''-comments :-(): | |
| 4171 (null (get-text-property (match-beginning 1) 'syntax-table)) | |
| 4172 (null (get-text-property (match-beginning 1) 'syntax-type)) | |
| 4173 (null (get-text-property (match-beginning 1) 'in-pod))) | |
| 4174 (save-excursion | |
| 4175 (goto-char (match-beginning 2)) | |
| 4176 (setq fchar (following-char)) | |
| 4177 ) | |
| 4178 ;; (if (looking-at "([^()]*)[ \t\n\f]*") | |
| 4179 ;; (goto-char (match-end 0))) ; Messes what follows | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4180 (setq char (following-char) |
| 20323 | 4181 meth nil |
| 4182 p (point)) | |
| 4183 (while (and ends-ranges (>= p (car ends-ranges))) | |
| 4184 ;; delete obsolete entries | |
| 4185 (setq ends-ranges (cdr ends-ranges) packages (cdr packages))) | |
| 4186 (setq package (or (car packages) "") | |
| 4187 end-range (or (car ends-ranges) 0)) | |
| 4188 (if (eq fchar ?p) | |
| 4189 (setq name (buffer-substring (match-beginning 3) (match-end 3)) | |
| 4190 name (progn | |
| 4191 (set-text-properties 0 (length name) nil name) | |
| 4192 name) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4193 package (concat name "::") |
| 20323 | 4194 name (concat "package " name) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4195 end-range |
| 20323 | 4196 (save-excursion |
| 4197 (parse-partial-sexp (point) (point-max) -1) (point)) | |
| 4198 ends-ranges (cons end-range ends-ranges) | |
| 4199 packages (cons package packages))) | |
| 4200 ;; ) | |
| 4201 ;; Skip this function name if it is a prototype declaration. | |
| 4202 (if (and (eq fchar ?s) (eq char ?\;)) nil | |
| 4203 (setq index (imenu-example--name-and-position)) | |
| 4204 (if (eq fchar ?p) nil | |
| 4205 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
| 4206 (set-text-properties 0 (length name) nil name) | |
| 4207 (cond ((string-match "[:']" name) | |
| 4208 (setq meth t)) | |
| 4209 ((> p end-range) nil) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4210 (t |
| 20323 | 4211 (setq name (concat package name) meth t)))) |
| 4212 (setcar index name) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4213 (if (eq fchar ?p) |
| 20323 | 4214 (push index index-pack-alist) |
| 4215 (push index index-alist)) | |
| 4216 (if meth (push index index-meth-alist)) | |
| 4217 (push index index-unsorted-alist))) | |
| 4218 ((match-beginning 5) ; Pod section | |
| 4219 ;; (beginning-of-line) | |
| 4220 (setq index (imenu-example--name-and-position) | |
| 4221 name (buffer-substring (match-beginning 6) (match-end 6))) | |
| 4222 (set-text-properties 0 (length name) nil name) | |
| 4223 (if (eq (char-after (match-beginning 5)) ?2) | |
| 4224 (setq name (concat " " name))) | |
| 4225 (setcar index name) | |
| 4226 (setq index1 (cons (concat "=" name) (cdr index))) | |
| 4227 (push index index-pod-alist) | |
| 4228 (push index1 index-unsorted-alist))))) | |
| 4229 (or noninteractive | |
| 4230 (imenu-progress-message prev-pos 100)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4231 (setq index-alist |
| 20323 | 4232 (if (default-value 'imenu-sort-function) |
| 4233 (sort index-alist (default-value 'imenu-sort-function)) | |
| 4234 (nreverse index-alist))) | |
| 4235 (and index-pod-alist | |
| 4236 (push (cons "+POD headers+..." | |
| 4237 (nreverse index-pod-alist)) | |
| 4238 index-alist)) | |
| 4239 (and (or index-pack-alist index-meth-alist) | |
| 4240 (let ((lst index-pack-alist) hier-list pack elt group name) | |
| 4241 ;; Remove "package ", reverse and uniquify. | |
| 4242 (while lst | |
| 4243 (setq elt (car lst) lst (cdr lst) name (substring (car elt) 8)) | |
| 4244 (if (assoc name hier-list) nil | |
| 4245 (setq hier-list (cons (cons name (cdr elt)) hier-list)))) | |
| 4246 (setq lst index-meth-alist) | |
| 4247 (while lst | |
| 4248 (setq elt (car lst) lst (cdr lst)) | |
| 4249 (cond ((string-match "\\(::\\|'\\)[_a-zA-Z0-9]+$" (car elt)) | |
| 4250 (setq pack (substring (car elt) 0 (match-beginning 0))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4251 (if (setq group (assoc pack hier-list)) |
| 20323 | 4252 (if (listp (cdr group)) |
| 4253 ;; Have some functions already | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4254 (setcdr group |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4255 (cons (cons (substring |
| 20323 | 4256 (car elt) |
| 4257 (+ 2 (match-beginning 0))) | |
| 4258 (cdr elt)) | |
| 4259 (cdr group))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4260 (setcdr group (list (cons (substring |
| 20323 | 4261 (car elt) |
| 4262 (+ 2 (match-beginning 0))) | |
| 4263 (cdr elt))))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4264 (setq hier-list |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4265 (cons (cons pack |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4266 (list (cons (substring |
| 20323 | 4267 (car elt) |
| 4268 (+ 2 (match-beginning 0))) | |
| 4269 (cdr elt)))) | |
| 4270 hier-list)))))) | |
| 4271 (push (cons "+Hierarchy+..." | |
| 4272 hier-list) | |
| 4273 index-alist))) | |
| 4274 (and index-pack-alist | |
| 4275 (push (cons "+Packages+..." | |
| 4276 (nreverse index-pack-alist)) | |
| 4277 index-alist)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4278 (and (or index-pack-alist index-pod-alist |
| 20323 | 4279 (default-value 'imenu-sort-function)) |
| 4280 index-unsorted-alist | |
| 4281 (push (cons "+Unsorted List+..." | |
| 4282 (nreverse index-unsorted-alist)) | |
| 4283 index-alist)) | |
| 4284 (cperl-imenu-addback index-alist))) | |
| 4285 | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4286 (defvar cperl-compilation-error-regexp-alist |
| 20323 | 4287 ;; This look like a paranoiac regexp: could anybody find a better one? (which WORK). |
| 4288 '(("^[^\n]* \\(file\\|at\\) \\([^ \t\n]+\\) [^\n]*line \\([0-9]+\\)[\\., \n]" | |
| 4289 2 3)) | |
| 4290 "Alist that specifies how to match errors in perl output.") | |
| 4291 | |
| 4292 (if (fboundp 'eval-after-load) | |
| 4293 (eval-after-load | |
| 4294 "mode-compile" | |
| 4295 '(setq perl-compilation-error-regexp-alist | |
| 4296 cperl-compilation-error-regexp-alist))) | |
| 4297 | |
| 4298 | |
| 4299 (defun cperl-windowed-init () | |
| 4300 "Initialization under windowed version." | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4301 (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
|
4302 ;; Need to init anyway: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4303 (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
|
4304 (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
|
4305 (function |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4306 (lambda () |
|
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
4307 (if (memq major-mode '(perl-mode cperl-mode)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4308 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4309 (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
|
4310 (if (fboundp 'eval-after-load) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4311 (eval-after-load |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4312 "ps-print" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4313 '(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
|
4314 |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4315 (defvar cperl-font-lock-keywords-1 nil |
| 31821 | 4316 "Additional expressions to highlight in Perl mode. Minimal set.") |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4317 (defvar cperl-font-lock-keywords nil |
| 31821 | 4318 "Additional expressions to highlight in Perl mode. Default set.") |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4319 (defvar cperl-font-lock-keywords-2 nil |
| 31821 | 4320 "Additional expressions to highlight in Perl mode. Maximal set") |
| 4321 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4322 (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
|
4323 (or cperl-faces-init (cperl-init-faces)) |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4324 cperl-font-lock-keywords) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4325 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4326 (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
|
4327 (or cperl-faces-init (cperl-init-faces)) |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4328 cperl-font-lock-keywords-1) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4329 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4330 (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
|
4331 (or cperl-faces-init (cperl-init-faces)) |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4332 cperl-font-lock-keywords-2) |
| 20323 | 4333 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4334 (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
|
4335 ;; 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
|
4336 (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
|
4337 (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
|
4338 "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
|
4339 ;;(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
|
4340 )) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4341 |
| 20323 | 4342 (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
|
4343 (condition-case errs |
| 20323 | 4344 (progn |
| 4345 (require 'font-lock) | |
| 4346 (and (fboundp 'font-lock-fontify-anchored-keywords) | |
| 4347 (featurep 'font-lock-extra) | |
| 4348 (message "You have an obsolete package `font-lock-extra'. Install `choose-color'.")) | |
| 4349 (let (t-font-lock-keywords t-font-lock-keywords-1 font-lock-anchored) | |
| 4350 (if (fboundp 'font-lock-fontify-anchored-keywords) | |
| 4351 (setq font-lock-anchored t)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4352 (setq |
| 20323 | 4353 t-font-lock-keywords |
| 4354 (list | |
|
35013
587807c5e8e6
(cperl-invalid-face): Don't double-quote
Dave Love <fx@gnu.org>
parents:
32880
diff
changeset
|
4355 `("[ \t]+$" 0 ',cperl-invalid-face t) |
| 20323 | 4356 (cons |
| 4357 (concat | |
| 4358 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
| 4359 (mapconcat | |
| 4360 'identity | |
| 4361 '("if" "until" "while" "elsif" "else" "unless" "for" | |
| 4362 "foreach" "continue" "exit" "die" "last" "goto" "next" | |
| 4363 "redo" "return" "local" "exec" "sub" "do" "dump" "use" | |
| 4364 "require" "package" "eval" "my" "BEGIN" "END") | |
| 4365 "\\|") ; Flow control | |
| 4366 "\\)\\>") 2) ; was "\\)[ \n\t;():,\|&]" | |
| 4367 ; In what follows we use `type' style | |
| 4368 ; for overwritable builtins | |
| 4369 (list | |
| 4370 (concat | |
| 4371 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
| 4372 ;; "CORE" "__FILE__" "__LINE__" "abs" "accept" "alarm" | |
| 4373 ;; "and" "atan2" "bind" "binmode" "bless" "caller" | |
| 4374 ;; "chdir" "chmod" "chown" "chr" "chroot" "close" | |
| 4375 ;; "closedir" "cmp" "connect" "continue" "cos" "crypt" | |
| 4376 ;; "dbmclose" "dbmopen" "die" "dump" "endgrent" | |
| 4377 ;; "endhostent" "endnetent" "endprotoent" "endpwent" | |
| 4378 ;; "endservent" "eof" "eq" "exec" "exit" "exp" "fcntl" | |
| 4379 ;; "fileno" "flock" "fork" "formline" "ge" "getc" | |
| 4380 ;; "getgrent" "getgrgid" "getgrnam" "gethostbyaddr" | |
| 4381 ;; "gethostbyname" "gethostent" "getlogin" | |
| 4382 ;; "getnetbyaddr" "getnetbyname" "getnetent" | |
| 4383 ;; "getpeername" "getpgrp" "getppid" "getpriority" | |
| 4384 ;; "getprotobyname" "getprotobynumber" "getprotoent" | |
| 4385 ;; "getpwent" "getpwnam" "getpwuid" "getservbyname" | |
| 4386 ;; "getservbyport" "getservent" "getsockname" | |
| 4387 ;; "getsockopt" "glob" "gmtime" "gt" "hex" "index" "int" | |
| 4388 ;; "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
|
4389 ;; "link" "listen" "localtime" "lock" "log" "lstat" "lt" |
| 20323 | 4390 ;; "mkdir" "msgctl" "msgget" "msgrcv" "msgsnd" "ne" |
| 4391 ;; "not" "oct" "open" "opendir" "or" "ord" "pack" "pipe" | |
| 4392 ;; "quotemeta" "rand" "read" "readdir" "readline" | |
| 4393 ;; "readlink" "readpipe" "recv" "ref" "rename" "require" | |
| 4394 ;; "reset" "reverse" "rewinddir" "rindex" "rmdir" "seek" | |
| 4395 ;; "seekdir" "select" "semctl" "semget" "semop" "send" | |
| 4396 ;; "setgrent" "sethostent" "setnetent" "setpgrp" | |
| 4397 ;; "setpriority" "setprotoent" "setpwent" "setservent" | |
| 4398 ;; "setsockopt" "shmctl" "shmget" "shmread" "shmwrite" | |
| 4399 ;; "shutdown" "sin" "sleep" "socket" "socketpair" | |
| 4400 ;; "sprintf" "sqrt" "srand" "stat" "substr" "symlink" | |
| 4401 ;; "syscall" "sysread" "system" "syswrite" "tell" | |
| 4402 ;; "telldir" "time" "times" "truncate" "uc" "ucfirst" | |
| 4403 ;; "umask" "unlink" "unpack" "utime" "values" "vec" | |
| 4404 ;; "wait" "waitpid" "wantarray" "warn" "write" "x" "xor" | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4405 "a\\(bs\\|ccept\\|tan2\\|larm\\|nd\\)\\|" |
| 20323 | 4406 "b\\(in\\(d\\|mode\\)\\|less\\)\\|" |
| 4407 "c\\(h\\(r\\(\\|oot\\)\\|dir\\|mod\\|own\\)\\|aller\\|rypt\\|" | |
| 4408 "lose\\(\\|dir\\)\\|mp\\|o\\(s\\|n\\(tinue\\|nect\\)\\)\\)\\|" | |
| 4409 "CORE\\|d\\(ie\\|bm\\(close\\|open\\)\\|ump\\)\\|" | |
| 4410 "e\\(x\\(p\\|it\\|ec\\)\\|q\\|nd\\(p\\(rotoent\\|went\\)\\|" | |
| 4411 "hostent\\|servent\\|netent\\|grent\\)\\|of\\)\\|" | |
| 4412 "f\\(ileno\\|cntl\\|lock\\|or\\(k\\|mline\\)\\)\\|" | |
| 4413 "g\\(t\\|lob\\|mtime\\|e\\(\\|t\\(p\\(pid\\|r\\(iority\\|" | |
| 4414 "oto\\(byn\\(ame\\|umber\\)\\|ent\\)\\)\\|eername\\|w" | |
| 4415 "\\(uid\\|ent\\|nam\\)\\|grp\\)\\|host\\(by\\(addr\\|name\\)\\|" | |
| 4416 "ent\\)\\|s\\(erv\\(by\\(port\\|name\\)\\|ent\\)\\|" | |
| 4417 "ock\\(name\\|opt\\)\\)\\|c\\|login\\|net\\(by\\(addr\\|name\\)\\|" | |
| 4418 "ent\\)\\|gr\\(ent\\|nam\\|gid\\)\\)\\)\\)\\|" | |
| 4419 "hex\\|i\\(n\\(t\\|dex\\)\\|octl\\)\\|join\\|kill\\|" | |
| 4420 "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
|
4421 "\\(\\|ngth\\)\\|o\\(c\\(altime\\|k\\)\\|g\\)\\)\\|m\\(sg\\(rcv\\|snd\\|" |
| 20323 | 4422 "ctl\\|get\\)\\|kdir\\)\\|n\\(e\\|ot\\)\\|o\\(pen\\(\\|dir\\)\\|" |
| 4423 "r\\(\\|d\\)\\|ct\\)\\|p\\(ipe\\|ack\\)\\|quotemeta\\|" | |
| 4424 "r\\(index\\|and\\|mdir\\|e\\(quire\\|ad\\(pipe\\|\\|lin" | |
| 4425 "\\(k\\|e\\)\\|dir\\)\\|set\\|cv\\|verse\\|f\\|winddir\\|name" | |
| 4426 "\\)\\)\\|s\\(printf\\|qrt\\|rand\\|tat\\|ubstr\\|e\\(t\\(p\\(r" | |
| 4427 "\\(iority\\|otoent\\)\\|went\\|grp\\)\\|hostent\\|s\\(ervent\\|" | |
| 4428 "ockopt\\)\\|netent\\|grent\\)\\|ek\\(\\|dir\\)\\|lect\\|" | |
| 4429 "m\\(ctl\\|op\\|get\\)\\|nd\\)\\|h\\(utdown\\|m\\(read\\|ctl\\|" | |
| 4430 "write\\|get\\)\\)\\|y\\(s\\(read\\|call\\|tem\\|write\\)\\|" | |
| 4431 "mlink\\)\\|in\\|leep\\|ocket\\(pair\\|\\)\\)\\|t\\(runcate\\|" | |
| 4432 "ell\\(\\|dir\\)\\|ime\\(\\|s\\)\\)\\|u\\(c\\(\\|first\\)\\|" | |
| 4433 "time\\|mask\\|n\\(pack\\|link\\)\\)\\|v\\(alues\\|ec\\)\\|" | |
| 4434 "w\\(a\\(rn\\|it\\(pid\\|\\)\\|ntarray\\)\\|rite\\)\\|" | |
| 4435 "x\\(\\|or\\)\\|__\\(FILE__\\|LINE__\\|PACKAGE__\\)" | |
| 4436 "\\)\\>") 2 'font-lock-type-face) | |
| 4437 ;; In what follows we use `other' style | |
| 4438 ;; for nonoverwritable builtins | |
| 4439 ;; Somehow 's', 'm' are not auto-generated??? | |
| 4440 (list | |
| 4441 (concat | |
| 4442 "\\(^\\|[^$@%&\\]\\)\\<\\(" | |
| 4443 ;; "AUTOLOAD" "BEGIN" "DESTROY" "END" "__END__" "chomp" | |
| 4444 ;; "chop" "defined" "delete" "do" "each" "else" "elsif" | |
| 4445 ;; "eval" "exists" "for" "foreach" "format" "goto" | |
| 4446 ;; "grep" "if" "keys" "last" "local" "map" "my" "next" | |
| 4447 ;; "no" "package" "pop" "pos" "print" "printf" "push" | |
| 4448 ;; "q" "qq" "qw" "qx" "redo" "return" "scalar" "shift" | |
| 4449 ;; "sort" "splice" "split" "study" "sub" "tie" "tr" | |
| 4450 ;; "undef" "unless" "unshift" "untie" "until" "use" | |
| 4451 ;; "while" "y" | |
| 4452 "AUTOLOAD\\|BEGIN\\|cho\\(p\\|mp\\)\\|d\\(e\\(fined\\|lete\\)\\|" | |
| 4453 "o\\)\\|DESTROY\\|e\\(ach\\|val\\|xists\\|ls\\(e\\|if\\)\\)\\|" | |
| 4454 "END\\|for\\(\\|each\\|mat\\)\\|g\\(rep\\|oto\\)\\|if\\|keys\\|" | |
| 4455 "l\\(ast\\|ocal\\)\\|m\\(ap\\|y\\)\\|n\\(ext\\|o\\)\\|" | |
| 4456 "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
|
4457 "q\\(\\|q\\|w\\|x\\|r\\)\\|re\\(turn\\|do\\)\\|s\\(pli\\(ce\\|t\\)\\|" |
| 20323 | 4458 "calar\\|tudy\\|ub\\|hift\\|ort\\)\\|t\\(r\\|ie\\)\\|" |
| 4459 "u\\(se\\|n\\(shift\\|ti\\(l\\|e\\)\\|def\\|less\\)\\)\\|" | |
| 4460 "while\\|y\\|__\\(END\\|DATA\\)__" ;__DATA__ added manually | |
| 4461 "\\|[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
|
4462 "\\)\\>") 2 'cperl-nonoverridable-face) |
| 20323 | 4463 ;; (mapconcat 'identity |
| 4464 ;; '("#endif" "#else" "#ifdef" "#ifndef" "#if" | |
| 4465 ;; "#include" "#define" "#undef") | |
| 4466 ;; "\\|") | |
| 4467 '("-[rwxoRWXOezsfdlpSbctugkTBMAC]\\>\\([ \t]+_\\>\\)?" 0 | |
| 4468 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
|
4469 '("\\<sub[ \t]+\\([^ \t{;()]+\\)[ \t]*\\(([^()]*)[ \t]*\\)?[#{\n]" 1 |
| 20323 | 4470 font-lock-function-name-face) |
| 4471 '("\\<\\(package\\|require\\|use\\|import\\|no\\|bootstrap\\)[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t;]" ; require A if B; | |
| 4472 2 font-lock-function-name-face) | |
| 4473 '("^[ \t]*format[ \t]+\\([a-zA-z_][a-zA-z_0-9:]*\\)[ \t]*=[ \t]*$" | |
| 4474 1 font-lock-function-name-face) | |
| 4475 (cond ((featurep 'font-lock-extra) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4476 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" |
| 20323 | 4477 (2 font-lock-string-face t) |
| 4478 (0 '(restart 2 t)))) ; To highlight $a{bc}{ef} | |
| 4479 (font-lock-anchored | |
| 4480 '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
| 4481 (2 font-lock-string-face t) | |
| 4482 ("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
| 4483 nil nil | |
| 4484 (1 font-lock-string-face t)))) | |
| 4485 (t '("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" | |
| 4486 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
|
4487 '("[\[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1 |
| 20323 | 4488 font-lock-string-face t) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4489 '("^[ \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
|
4490 font-lock-constant-face) ; labels |
| 20323 | 4491 '("\\<\\(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
|
4492 2 font-lock-constant-face) |
| 20323 | 4493 (cond ((featurep 'font-lock-extra) |
| 4494 '("^[ \t]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
| 4495 (3 font-lock-variable-name-face) | |
| 4496 (4 '(another 4 nil | |
| 4497 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?" | |
| 4498 (1 font-lock-variable-name-face) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4499 (2 '(restart 2 nil) nil t))) |
| 20323 | 4500 nil t))) ; local variables, multiple |
| 4501 (font-lock-anchored | |
| 4502 '("^[ \t{}]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" | |
| 4503 (3 font-lock-variable-name-face) | |
| 4504 ("\\=[ \t]*,[ \t]*\\([$@%*][a-zA-Z0-9_:]+\\)" | |
| 4505 nil nil | |
| 4506 (1 font-lock-variable-name-face)))) | |
| 4507 (t '("^[ \t{}]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)" | |
| 4508 3 font-lock-variable-name-face))) | |
| 4509 '("\\<for\\(each\\)?[ \t]*\\(\\$[a-zA-Z_][a-zA-Z_0-9]*\\)[ \t]*(" | |
| 4510 2 font-lock-variable-name-face))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4511 (setq |
| 20323 | 4512 t-font-lock-keywords-1 |
| 4513 (and (fboundp 'turn-on-font-lock) ; Check for newer font-lock | |
| 4514 (not cperl-xemacs-p) ; not yet as of XEmacs 19.12 | |
| 4515 '( | |
| 4516 ("\\(\\([@%]\\|\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1 | |
| 4517 (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
|
4518 cperl-hash-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4519 cperl-array-face) |
| 20323 | 4520 t) ; arrays and hashes |
| 4521 ("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)" | |
| 4522 1 | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4523 (if (= (- (match-end 2) (match-beginning 2)) 1) |
| 20323 | 4524 (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
|
4525 cperl-hash-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4526 cperl-array-face) ; arrays and hashes |
| 20323 | 4527 font-lock-variable-name-face) ; Just to put something |
| 4528 t) | |
| 4529 ;;("\\([smy]\\|tr\\)\\([^a-z_A-Z0-9]\\)\\(\\([^\n\\]*||\\)\\)\\2") | |
| 4530 ;;; Too much noise from \s* @s[ and friends | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4531 ;;("\\(\\<\\([msy]\\|tr\\)[ \t]*\\([^ \t\na-zA-Z0-9_]\\)\\|\\(/\\)\\)" |
| 20323 | 4532 ;;(3 font-lock-function-name-face t t) |
| 4533 ;;(4 | |
| 4534 ;; (if (cperl-slash-is-regexp) | |
| 4535 ;; font-lock-function-name-face 'default) nil t)) | |
| 4536 ))) | |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4537 (setq cperl-font-lock-keywords-1 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4538 (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
|
4539 (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
|
4540 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
|
4541 t-font-lock-keywords) |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4542 cperl-font-lock-keywords cperl-font-lock-keywords-1 |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4543 cperl-font-lock-keywords-2 (append |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4544 cperl-font-lock-keywords-1 |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
4545 t-font-lock-keywords-1))) |
| 20323 | 4546 (if (fboundp 'ps-print-buffer) (cperl-ps-print-init)) |
| 4547 (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
|
4548 (eval ; Avoid a warning |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4549 '(font-lock-require-faces |
| 20323 | 4550 (list |
| 4551 ;; Color-light Color-dark Gray-light Gray-dark Mono | |
| 4552 (list 'font-lock-comment-face | |
| 4553 ["Firebrick" "OrangeRed" "DimGray" "Gray80"] | |
| 4554 nil | |
| 4555 [nil nil t t t] | |
| 4556 [nil nil t t t] | |
| 4557 nil) | |
| 4558 (list 'font-lock-string-face | |
| 4559 ["RosyBrown" "LightSalmon" "Gray50" "LightGray"] | |
| 4560 nil | |
| 4561 nil | |
| 4562 [nil nil t t t] | |
| 4563 nil) | |
| 4564 (list 'font-lock-function-name-face | |
| 4565 (vector | |
| 4566 "Blue" "LightSkyBlue" "Gray50" "LightGray" | |
| 4567 (cdr (assq 'background-color ; if mono | |
| 4568 (frame-parameters)))) | |
| 4569 (vector | |
| 4570 nil nil nil nil | |
| 4571 (cdr (assq 'foreground-color ; if mono | |
| 4572 (frame-parameters)))) | |
| 4573 [nil nil t t t] | |
| 4574 nil | |
| 4575 nil) | |
| 4576 (list 'font-lock-variable-name-face | |
| 4577 ["DarkGoldenrod" "LightGoldenrod" "DimGray" "Gray90"] | |
| 4578 nil | |
| 4579 [nil nil t t t] | |
| 4580 [nil nil t t t] | |
| 4581 nil) | |
| 4582 (list 'font-lock-type-face | |
| 4583 ["DarkOliveGreen" "PaleGreen" "DimGray" "Gray80"] | |
| 4584 nil | |
| 4585 [nil nil t t t] | |
| 4586 nil | |
| 4587 [nil nil t t t] | |
| 4588 ) | |
|
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20323
diff
changeset
|
4589 (list 'font-lock-constant-face |
| 20323 | 4590 ["CadetBlue" "Aquamarine" "Gray50" "LightGray"] |
| 4591 nil | |
| 4592 [nil nil t t t] | |
| 4593 nil | |
| 4594 [nil nil t t t] | |
| 4595 ) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4596 (list 'cperl-nonoverridable-face |
| 20323 | 4597 ["chartreuse3" ("orchid1" "orange") |
| 4598 nil "Gray80"] | |
| 4599 [nil nil "gray90"] | |
| 4600 [nil nil nil t t] | |
| 4601 [nil nil t t] | |
| 4602 [nil nil t t t] | |
| 4603 ) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4604 (list 'cperl-array-face |
| 20323 | 4605 ["blue" "yellow" nil "Gray80"] |
| 4606 ["lightyellow2" ("navy" "os2blue" "darkgreen") | |
| 4607 "gray90"] | |
| 4608 t | |
| 4609 nil | |
| 4610 nil) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4611 (list 'cperl-hash-face |
| 20323 | 4612 ["red" "red" nil "Gray80"] |
| 4613 ["lightyellow2" ("navy" "os2blue" "darkgreen") | |
| 4614 "gray90"] | |
| 4615 t | |
| 4616 t | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4617 nil)))) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4618 ;; Do it the dull way, without choose-color |
| 20323 | 4619 (defvar cperl-guessed-background nil |
| 4620 "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
|
4621 ;; (or (fboundp 'x-color-defined-p) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4622 ;; (defalias 'x-color-defined-p |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4623 ;; (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
|
4624 ;; ;; XEmacs >= 19.12 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4625 ;; ((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
|
4626 ;; ;; XEmacs 19.11 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4627 ;; (t 'x-valid-color-name-p)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4628 (cperl-force-face font-lock-constant-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4629 "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
|
4630 (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
|
4631 "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
|
4632 (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
|
4633 "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
|
4634 (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
|
4635 "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
|
4636 (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
|
4637 "Face for comments") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4638 (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
|
4639 "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
|
4640 (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
|
4641 "Face for hashes") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4642 (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
|
4643 "Face for arrays") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4644 ;;(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
|
4645 ;;(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
|
4646 ;;(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
|
4647 ;; (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
|
4648 ;; '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
|
4649 ;; "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
|
4650 ;;(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
|
4651 ;; (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
|
4652 ;; 'cperl-nonoverridable-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4653 ;; "Face to use for 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
|
4654 ;;(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
|
4655 ;; (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
|
4656 ;; (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
|
4657 ;; '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
|
4658 ;; "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
|
4659 ;; (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
|
4660 ;; (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
|
4661 ;; '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
|
4662 ;; "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
|
4663 ;; (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
|
4664 ;; (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
|
4665 ;; '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
|
4666 ;; "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
|
4667 (if (and |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4668 (not (cperl-is-face 'cperl-array-face)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4669 (cperl-is-face 'font-lock-emphasized-face)) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4670 (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
|
4671 (if (and |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4672 (not (cperl-is-face 'cperl-hash-face)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4673 (cperl-is-face 'font-lock-other-emphasized-face)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4674 (copy-face 'font-lock-other-emphasized-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4675 'cperl-hash-face)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4676 (if (and |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4677 (not (cperl-is-face 'cperl-nonoverridable-face)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4678 (cperl-is-face 'font-lock-other-type-face)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4679 (copy-face 'font-lock-other-type-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4680 'cperl-nonoverridable-face)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4681 ;;(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
|
4682 ;; (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
|
4683 ;; 'cperl-hash-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4684 ;; "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
|
4685 ;;(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
|
4686 ;; (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
|
4687 ;; 'cperl-array-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4688 ;; "Face to use for arrays.")) |
| 20323 | 4689 ;; Here we try to guess background |
| 4690 (let ((background | |
| 4691 (if (boundp 'font-lock-background-mode) | |
| 4692 font-lock-background-mode | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4693 'light)) |
| 20323 | 4694 (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
|
4695 ;; cperl-is-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4696 ) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4697 ;;;; (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
|
4698 ;;;; (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
|
4699 ;;;; (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
|
4700 ;;;; (face-list |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4701 ;;;; (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
|
4702 ;;;; (t |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4703 ;;;; (function (lambda (face) (boundp face)))))) |
| 20323 | 4704 (defvar cperl-guessed-background |
| 4705 (if (and (boundp 'font-lock-display-type) | |
| 4706 (eq font-lock-display-type 'grayscale)) | |
| 4707 'gray | |
| 4708 background) | |
| 4709 "Background as guessed by CPerl mode") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4710 (if (and |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4711 (not (cperl-is-face 'font-lock-constant-face)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4712 (cperl-is-face 'font-lock-reference-face)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4713 (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
|
4714 (if (cperl-is-face 'font-lock-type-face) nil |
| 20323 | 4715 (copy-face 'default 'font-lock-type-face) |
| 4716 (cond | |
| 4717 ((eq background 'light) | |
| 4718 (set-face-foreground 'font-lock-type-face | |
| 4719 (if (x-color-defined-p "seagreen") | |
| 4720 "seagreen" | |
| 4721 "sea green"))) | |
| 4722 ((eq background 'dark) | |
| 4723 (set-face-foreground 'font-lock-type-face | |
| 4724 (if (x-color-defined-p "os2pink") | |
| 4725 "os2pink" | |
| 4726 "pink"))) | |
| 4727 (t | |
| 4728 (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
|
4729 (if (cperl-is-face 'cperl-nonoverridable-face) |
| 20323 | 4730 nil |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4731 (copy-face 'font-lock-type-face 'cperl-nonoverridable-face) |
| 20323 | 4732 (cond |
| 4733 ((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
|
4734 (set-face-foreground 'cperl-nonoverridable-face |
| 20323 | 4735 (if (x-color-defined-p "chartreuse3") |
| 4736 "chartreuse3" | |
| 4737 "chartreuse"))) | |
| 4738 ((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
|
4739 (set-face-foreground 'cperl-nonoverridable-face |
| 20323 | 4740 (if (x-color-defined-p "orchid1") |
| 4741 "orchid1" | |
| 4742 "orange"))))) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4743 ;;; (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
|
4744 ;;; (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
|
4745 ;;; (cond |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4746 ;;; ((eq background 'light) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4747 ;;; (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
|
4748 ;;; (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
|
4749 ;;; "lightyellow2" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4750 ;;; (if (x-color-defined-p "lightyellow") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4751 ;;; "lightyellow" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4752 ;;; "light yellow")))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4753 ;;; ((eq background 'dark) |
|
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-other-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 "navy") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4756 ;;; "navy" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4757 ;;; (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
|
4758 ;;; "darkgreen" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4759 ;;; "dark green")))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4760 ;;; (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
|
4761 ;;; (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
|
4762 ;;; (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
|
4763 ;;; (cond |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4764 ;;; ((eq background 'light) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4765 ;;; (set-face-background 'font-lock-emphasized-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4766 ;;; (if (x-color-defined-p "lightyellow2") |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4767 ;;; "lightyellow2" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4768 ;;; "lightyellow"))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4769 ;;; ((eq background 'dark) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4770 ;;; (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
|
4771 ;;; (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
|
4772 ;;; "navy" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4773 ;;; (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
|
4774 ;;; "darkgreen" |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4775 ;;; "dark green")))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4776 ;;; (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
|
4777 (if (cperl-is-face 'font-lock-variable-name-face) nil |
| 20323 | 4778 (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
|
4779 (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
|
4780 (copy-face 'italic 'font-lock-constant-face)))) |
| 20323 | 4781 (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
|
4782 (error (message "cperl-init-faces (ignored): %s" errs)))) |
| 20323 | 4783 |
| 4784 | |
| 4785 (defun cperl-ps-print-init () | |
| 4786 "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
|
4787 (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
|
4788 '(setq ps-bold-faces |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4789 ;; font-lock-variable-name-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4790 ;; font-lock-constant-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4791 (append '(cperl-array-face |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4792 cperl-hash-face) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4793 ps-bold-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4794 ps-italic-faces |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4795 ;; font-lock-constant-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4796 (append '(cperl-nonoverridable-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4797 cperl-hash-face) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4798 ps-italic-faces) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4799 ps-underlined-faces |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4800 ;; 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
|
4801 (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
|
4802 cperl-hash-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4803 underline |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4804 cperl-nonoverridable-face) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4805 ps-underlined-faces)))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4806 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4807 (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
|
4808 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4809 (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
|
4810 "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
|
4811 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
|
4812 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
|
4813 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4814 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
|
4815 (interactive) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4816 (or file |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4817 (setq file (read-from-minibuffer |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4818 "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
|
4819 (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
|
4820 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
|
4821 (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
|
4822 (setq file nil)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4823 (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
|
4824 (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
|
4825 (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
|
4826 (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
|
4827 (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
|
4828 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4829 ;;; (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
|
4830 ;;; "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
|
4831 ;;; ;; 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
|
4832 ;;; (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
|
4833 ;;; (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
|
4834 ;;; (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
|
4835 ;;; (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
|
4836 ;;; (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
|
4837 ;;; cperl-array-face |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4838 ;;; font-lock-keyword-face |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4839 ;;; font-lock-variable-name-face |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4840 ;;; font-lock-constant-face |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4841 ;;; font-lock-reference-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4842 ;;; font-lock-other-emphasized-face |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4843 ;;; cperl-hash-face) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4844 ;;; ps-bold-faces)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4845 ;;; (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
|
4846 ;;; (append '(cperl-nonoverridable-face |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4847 ;;; font-lock-constant-face |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4848 ;;; font-lock-reference-face |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4849 ;;; 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
|
4850 ;;; cperl-hash-face) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4851 ;;; ps-italic-faces)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4852 ;;; (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
|
4853 ;;; (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
|
4854 ;;; cperl-array-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4855 ;;; 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
|
4856 ;;; cperl-hash-face |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4857 ;;; 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
|
4858 ;;; ps-underlined-faces)) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
4859 ;;; (cons 'font-lock-type-face ps-underlined-faces)) |
| 20323 | 4860 |
| 4861 | |
| 4862 (if (cperl-enable-font-lock) (cperl-windowed-init)) | |
| 4863 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4864 (defconst cperl-styles-entries |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4865 '(cperl-indent-level cperl-brace-offset cperl-continued-brace-offset |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4866 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
|
4867 cperl-merge-trailing-else |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4868 cperl-continued-statement-offset)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4869 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4870 (defconst cperl-style-alist |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4871 '(("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
|
4872 (cperl-indent-level . 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4873 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4874 (cperl-continued-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4875 (cperl-label-offset . -2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4876 (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
|
4877 (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
|
4878 (cperl-continued-statement-offset . 2)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4879 ("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
|
4880 (cperl-indent-level . 4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4881 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4882 (cperl-continued-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4883 (cperl-label-offset . -4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4884 (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
|
4885 (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
|
4886 (cperl-continued-statement-offset . 4)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4887 ("GNU" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4888 (cperl-indent-level . 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4889 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4890 (cperl-continued-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4891 (cperl-label-offset . -2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4892 (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
|
4893 (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
|
4894 (cperl-continued-statement-offset . 2)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4895 ("K&R" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4896 (cperl-indent-level . 5) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4897 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4898 (cperl-continued-brace-offset . -5) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4899 (cperl-label-offset . -5) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4900 ;;(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
|
4901 (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
|
4902 (cperl-continued-statement-offset . 5)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4903 ("BSD" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4904 (cperl-indent-level . 4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4905 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4906 (cperl-continued-brace-offset . -4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4907 (cperl-label-offset . -4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4908 ;;(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
|
4909 (cperl-continued-statement-offset . 4)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4910 ("C++" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4911 (cperl-indent-level . 4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4912 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4913 (cperl-continued-brace-offset . -4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4914 (cperl-label-offset . -4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4915 (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
|
4916 (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
|
4917 (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
|
4918 ("Current") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4919 ("Whitesmith" |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4920 (cperl-indent-level . 4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4921 (cperl-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4922 (cperl-continued-brace-offset . 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4923 (cperl-label-offset . -4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4924 ;;(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
|
4925 (cperl-continued-statement-offset . 4))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4926 "(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
|
4927 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
|
4928 |
| 20323 | 4929 (defun cperl-set-style (style) |
| 4930 "Set CPerl-mode variables to use one of several different indentation styles. | |
| 4931 The arguments are a string representing the desired style. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4932 The list of styles is in `cperl-style-alist', available styles |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4933 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
|
4934 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4935 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
|
4936 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
|
4937 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4938 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
|
4939 side-effect of memorizing only." |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4940 (interactive |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4941 (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
|
4942 cperl-style-alist))) |
| 20323 | 4943 (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
|
4944 (or cperl-old-style |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4945 (setq cperl-old-style |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4946 (mapcar (function |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4947 (lambda (name) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4948 (cons name (eval name)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4949 cperl-styles-entries))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4950 (let ((style (cdr (assoc style cperl-style-alist))) setting str sym) |
| 20323 | 4951 (while style |
| 4952 (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
|
4953 (set (car setting) (cdr setting))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4954 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4955 (defun cperl-set-style-back () |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4956 "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
|
4957 (interactive) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4958 (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
|
4959 (let (setting) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4960 (while cperl-old-style |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
4961 (setq setting (car cperl-old-style) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4962 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
|
4963 (set (car setting) (cdr setting))))) |
| 20323 | 4964 |
| 4965 (defun cperl-check-syntax () | |
| 4966 (interactive) | |
| 4967 (require 'mode-compile) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
4968 (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
|
4969 (eval '(mode-compile)))) ; Avoid a warning |
| 20323 | 4970 |
| 4971 (defun cperl-info-buffer (type) | |
| 4972 ;; Returns buffer with documentation. Creates if missing. | |
| 4973 ;; If TYPE, this vars buffer. | |
| 4974 ;; Special care is taken to not stomp over an existing info buffer | |
| 4975 (let* ((bname (if type "*info-perl-var*" "*info-perl*")) | |
| 4976 (info (get-buffer bname)) | |
| 4977 (oldbuf (get-buffer "*info*"))) | |
| 4978 (if info info | |
| 4979 (save-window-excursion | |
| 4980 ;; Get Info running | |
| 4981 (require 'info) | |
| 4982 (cond (oldbuf | |
| 4983 (set-buffer oldbuf) | |
| 4984 (rename-buffer "*info-perl-tmp*"))) | |
| 4985 (save-window-excursion | |
| 4986 (info)) | |
| 4987 (Info-find-node cperl-info-page (if type "perlvar" "perlfunc")) | |
| 4988 (set-buffer "*info*") | |
| 4989 (rename-buffer bname) | |
| 4990 (cond (oldbuf | |
| 4991 (set-buffer "*info-perl-tmp*") | |
| 4992 (rename-buffer "*info*") | |
| 4993 (set-buffer bname))) | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
4994 (make-local-variable 'window-min-height) |
| 20323 | 4995 (setq window-min-height 2) |
| 4996 (current-buffer))))) | |
| 4997 | |
| 4998 (defun cperl-word-at-point (&optional p) | |
| 4999 ;; Returns the word at point or at P. | |
| 5000 (save-excursion | |
| 5001 (if p (goto-char p)) | |
| 5002 (or (cperl-word-at-point-hard) | |
| 5003 (progn | |
| 5004 (require 'etags) | |
| 5005 (funcall (or (and (boundp 'find-tag-default-function) | |
| 5006 find-tag-default-function) | |
| 5007 (get major-mode 'find-tag-default-function) | |
| 5008 ;; XEmacs 19.12 has `find-tag-default-hook'; it is | |
| 5009 ;; automatically used within `find-tag-default': | |
| 5010 'find-tag-default)))))) | |
| 5011 | |
| 5012 (defun cperl-info-on-command (command) | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5013 "Show documentation for Perl command in other window. |
| 20323 | 5014 If perl-info buffer is shown in some frame, uses this frame. |
| 5015 Customized by setting variables `cperl-shrink-wrap-info-frame', | |
| 5016 `cperl-max-help-size'." | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5017 (interactive |
| 20323 | 5018 (let* ((default (cperl-word-at-point)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5019 (read (read-string |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5020 (format "Find doc for Perl function (default %s): " |
| 20323 | 5021 default)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5022 (list (if (equal read "") |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5023 default |
| 20323 | 5024 read)))) |
| 5025 | |
| 5026 (let ((buffer (current-buffer)) | |
| 5027 (cmd-desc (concat "^" (regexp-quote command) "[^a-zA-Z_0-9]")) ; "tr///" | |
| 5028 pos isvar height iniheight frheight buf win fr1 fr2 iniwin not-loner | |
| 5029 max-height char-height buf-list) | |
| 5030 (if (string-match "^-[a-zA-Z]$" command) | |
| 5031 (setq cmd-desc "^-X[ \t\n]")) | |
| 5032 (setq isvar (string-match "^[$@%]" command) | |
| 5033 buf (cperl-info-buffer isvar) | |
| 5034 iniwin (selected-window) | |
| 5035 fr1 (window-frame iniwin)) | |
| 5036 (set-buffer buf) | |
| 5037 (beginning-of-buffer) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5038 (or isvar |
| 20323 | 5039 (progn (re-search-forward "^-X[ \t\n]") |
| 5040 (forward-line -1))) | |
| 5041 (if (re-search-forward cmd-desc nil t) | |
| 5042 (progn | |
| 5043 ;; Go back to beginning of the group (ex, for qq) | |
| 5044 (if (re-search-backward "^[ \t\n\f]") | |
| 5045 (forward-line 1)) | |
| 5046 (beginning-of-line) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5047 ;; Get some of |
| 20323 | 5048 (setq pos (point) |
| 5049 buf-list (list buf "*info-perl-var*" "*info-perl*")) | |
| 5050 (while (and (not win) buf-list) | |
| 5051 (setq win (get-buffer-window (car buf-list) t)) | |
| 5052 (setq buf-list (cdr buf-list))) | |
| 5053 (or (not win) | |
| 5054 (eq (window-buffer win) buf) | |
| 5055 (set-window-buffer win buf)) | |
| 5056 (and win (setq fr2 (window-frame win))) | |
| 5057 (if (or (not fr2) (eq fr1 fr2)) | |
| 5058 (pop-to-buffer buf) | |
| 5059 (special-display-popup-frame buf) ; Make it visible | |
| 5060 (select-window win)) | |
| 5061 (goto-char pos) ; Needed (?!). | |
| 5062 ;; Resize | |
| 5063 (setq iniheight (window-height) | |
| 5064 frheight (frame-height) | |
| 5065 not-loner (< iniheight (1- frheight))) ; Are not alone | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5066 (cond ((if not-loner cperl-max-help-size |
| 20323 | 5067 cperl-shrink-wrap-info-frame) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5068 (setq height |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5069 (+ 2 |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5070 (count-lines |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5071 pos |
| 20323 | 5072 (save-excursion |
| 5073 (if (re-search-forward | |
| 5074 "^[ \t][^\n]*\n+\\([^ \t\n\f]\\|\\'\\)" nil t) | |
| 5075 (match-beginning 0) (point-max))))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5076 max-height |
| 20323 | 5077 (if not-loner |
| 5078 (/ (* (- frheight 3) cperl-max-help-size) 100) | |
| 5079 (setq char-height (frame-char-height)) | |
| 5080 ;; Non-functioning under OS/2: | |
| 5081 (if (eq char-height 1) (setq char-height 18)) | |
| 5082 ;; Title, menubar, + 2 for slack | |
| 5083 (- (/ (x-display-pixel-height) char-height) 4) | |
| 5084 )) | |
| 5085 (if (> height max-height) (setq height max-height)) | |
| 5086 ;;(message "was %s doing %s" iniheight height) | |
| 5087 (if not-loner | |
| 5088 (enlarge-window (- height iniheight)) | |
| 5089 (set-frame-height (window-frame win) (1+ height))))) | |
| 5090 (set-window-start (selected-window) pos)) | |
| 5091 (message "No entry for %s found." command)) | |
| 5092 ;;(pop-to-buffer buffer) | |
| 5093 (select-window iniwin))) | |
| 5094 | |
| 5095 (defun cperl-info-on-current-command () | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5096 "Show documentation for Perl command at point in other window." |
| 20323 | 5097 (interactive) |
| 5098 (cperl-info-on-command (cperl-word-at-point))) | |
| 5099 | |
| 5100 (defun cperl-imenu-info-imenu-search () | |
| 5101 (if (looking-at "^-X[ \t\n]") nil | |
| 5102 (re-search-backward | |
| 5103 "^\n\\([-a-zA-Z_]+\\)[ \t\n]") | |
| 5104 (forward-line 1))) | |
| 5105 | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5106 (defun cperl-imenu-info-imenu-name () |
| 20323 | 5107 (buffer-substring |
| 5108 (match-beginning 1) (match-end 1))) | |
| 5109 | |
| 5110 (defun cperl-imenu-on-info () | |
| 5111 (interactive) | |
| 5112 (let* ((buffer (current-buffer)) | |
| 5113 imenu-create-index-function | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5114 imenu-prev-index-position-function |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5115 imenu-extract-index-name-function |
| 20323 | 5116 (index-item (save-restriction |
| 5117 (save-window-excursion | |
| 5118 (set-buffer (cperl-info-buffer nil)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5119 (setq imenu-create-index-function |
| 20323 | 5120 'imenu-default-create-index-function |
| 5121 imenu-prev-index-position-function | |
| 5122 'cperl-imenu-info-imenu-search | |
| 5123 imenu-extract-index-name-function | |
| 5124 'cperl-imenu-info-imenu-name) | |
| 5125 (imenu-choose-buffer-index))))) | |
| 5126 (and index-item | |
| 5127 (progn | |
| 5128 (push-mark) | |
| 5129 (pop-to-buffer "*info-perl*") | |
| 5130 (cond | |
| 5131 ((markerp (cdr index-item)) | |
| 5132 (goto-char (marker-position (cdr index-item)))) | |
| 5133 (t | |
| 5134 (goto-char (cdr index-item)))) | |
| 5135 (set-window-start (selected-window) (point)) | |
| 5136 (pop-to-buffer buffer))))) | |
| 5137 | |
| 5138 (defun cperl-lineup (beg end &optional step minshift) | |
| 5139 "Lineup construction in a region. | |
| 5140 Beginning of region should be at the start of a construction. | |
| 5141 All first occurrences of this construction in the lines that are | |
| 5142 partially contained in the region are lined up at the same column. | |
| 5143 | |
| 5144 MINSHIFT is the minimal amount of space to insert before the construction. | |
| 5145 STEP is the tabwidth to position constructions. | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5146 If STEP is nil, `cperl-lineup-step' will be used |
| 20323 | 5147 \(or `cperl-indent-level', if `cperl-lineup-step' is `nil'). |
| 5148 Will not move the position at the start to the left." | |
| 5149 (interactive "r") | |
| 5150 (let (search col tcol seen b e) | |
| 5151 (save-excursion | |
| 5152 (goto-char end) | |
| 5153 (end-of-line) | |
| 5154 (setq end (point-marker)) | |
| 5155 (goto-char beg) | |
| 5156 (skip-chars-forward " \t\f") | |
| 5157 (setq beg (point-marker)) | |
| 5158 (indent-region beg end nil) | |
| 5159 (goto-char beg) | |
| 5160 (setq col (current-column)) | |
| 5161 (if (looking-at "[a-zA-Z0-9_]") | |
| 5162 (if (looking-at "\\<[a-zA-Z0-9_]+\\>") | |
| 5163 (setq search | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5164 (concat "\\<" |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5165 (regexp-quote |
| 20323 | 5166 (buffer-substring (match-beginning 0) |
| 5167 (match-end 0))) "\\>")) | |
| 5168 (error "Cannot line up in a middle of the word")) | |
| 5169 (if (looking-at "$") | |
| 5170 (error "Cannot line up end of line")) | |
| 5171 (setq search (regexp-quote (char-to-string (following-char))))) | |
| 5172 (setq step (or step cperl-lineup-step cperl-indent-level)) | |
| 5173 (or minshift (setq minshift 1)) | |
| 5174 (while (progn | |
| 5175 (beginning-of-line 2) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5176 (and (< (point) end) |
| 20323 | 5177 (re-search-forward search end t) |
| 5178 (goto-char (match-beginning 0)))) | |
| 5179 (setq tcol (current-column) seen t) | |
| 5180 (if (> tcol col) (setq col tcol))) | |
| 5181 (or seen | |
| 5182 (error "The construction to line up occurred only once")) | |
| 5183 (goto-char beg) | |
| 5184 (setq col (+ col minshift)) | |
| 5185 (if (/= (% col step) 0) (setq step (* step (1+ (/ col step))))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5186 (while |
| 20323 | 5187 (progn |
| 5188 (setq e (point)) | |
| 5189 (skip-chars-backward " \t") | |
| 5190 (delete-region (point) e) | |
| 5191 (indent-to-column col); (make-string (- col (current-column)) ?\ )) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5192 (beginning-of-line 2) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5193 (and (< (point) end) |
| 20323 | 5194 (re-search-forward search end t) |
| 5195 (goto-char (match-beginning 0)))))))) ; No body | |
| 5196 | |
| 5197 (defun cperl-etags (&optional add all files) | |
| 5198 "Run etags with appropriate options for Perl files. | |
| 5199 If optional argument ALL is `recursive', will process Perl files | |
| 5200 in subdirectories too." | |
| 5201 (interactive) | |
| 5202 (let ((cmd "etags") | |
| 5203 (args '("-l" "none" "-r" "/\\<\\(package\\|sub\\)[ \\t]+\\(\\([a-zA-Z0-9:_]*::\\)?\\([a-zA-Z0-9_]+\\)[ \\t]*\\(([^()]*)[ \t]*\\)?\\([{#]\\|$\\)\\)/\\4/")) | |
| 5204 res) | |
| 5205 (if add (setq args (cons "-a" args))) | |
| 5206 (or files (setq files (list buffer-file-name))) | |
| 5207 (cond | |
| 5208 ((eq all 'recursive) | |
| 5209 ;;(error "Not implemented: recursive") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5210 (setq args (append (list "-e" |
| 20323 | 5211 "sub wanted {push @ARGV, $File::Find::name if /\\.[pP][Llm]$/} |
| 5212 use File::Find; | |
| 5213 find(\\&wanted, '.'); | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5214 exec @ARGV;" |
| 20323 | 5215 cmd) args) |
| 5216 cmd "perl")) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5217 (all |
| 20323 | 5218 ;;(error "Not implemented: all") |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5219 (setq args (append (list "-e" |
| 20323 | 5220 "push @ARGV, <*.PL *.pl *.pm>; |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5221 exec @ARGV;" |
| 20323 | 5222 cmd) args) |
| 5223 cmd "perl")) | |
| 5224 (t | |
| 5225 (setq args (append args files)))) | |
| 5226 (setq res (apply 'call-process cmd nil nil nil args)) | |
| 5227 (or (eq res 0) | |
| 5228 (message "etags returned \"%s\"" res)))) | |
| 5229 | |
| 5230 (defun cperl-toggle-auto-newline () | |
| 5231 "Toggle the state of `cperl-auto-newline'." | |
| 5232 (interactive) | |
| 5233 (setq cperl-auto-newline (not cperl-auto-newline)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5234 (message "Newlines will %sbe auto-inserted now." |
| 20323 | 5235 (if cperl-auto-newline "" "not "))) |
| 5236 | |
| 5237 (defun cperl-toggle-abbrev () | |
| 5238 "Toggle the state of automatic keyword expansion in CPerl mode." | |
| 5239 (interactive) | |
| 5240 (abbrev-mode (if abbrev-mode 0 1)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5241 (message "Perl control structure will %sbe auto-inserted now." |
| 20323 | 5242 (if abbrev-mode "" "not "))) |
| 5243 | |
| 5244 | |
| 5245 (defun cperl-toggle-electric () | |
| 5246 "Toggle the state of parentheses doubling in CPerl mode." | |
| 5247 (interactive) | |
| 5248 (setq cperl-electric-parens (if (cperl-val 'cperl-electric-parens) 'null t)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5249 (message "Parentheses will %sbe auto-doubled now." |
| 20323 | 5250 (if (cperl-val 'cperl-electric-parens) "" "not "))) |
| 5251 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5252 (defun cperl-toggle-autohelp () |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5253 "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
|
5254 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
|
5255 (interactive) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5256 (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
|
5257 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5258 (if cperl-lazy-installed |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5259 (eval '(cperl-lazy-unstall)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5260 (cperl-lazy-install)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5261 (message "Perl help messages will %sbe automatically shown now." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5262 (if cperl-lazy-installed "" "not "))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5263 (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
|
5264 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5265 (defun cperl-toggle-construct-fix () |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5266 "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
|
5267 (interactive) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5268 (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
|
5269 (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
|
5270 nil |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5271 1)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5272 (message "indent-region/indent-sexp will %sbe automatically fix whitespace." |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
5273 (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
|
5274 |
| 20323 | 5275 ;;;; Tags file creation. |
| 5276 | |
| 5277 (defvar cperl-tmp-buffer " *cperl-tmp*") | |
| 5278 | |
| 5279 (defun cperl-setup-tmp-buf () | |
| 5280 (set-buffer (get-buffer-create cperl-tmp-buffer)) | |
| 5281 (set-syntax-table cperl-mode-syntax-table) | |
| 5282 (buffer-disable-undo) | |
| 5283 (auto-fill-mode 0) | |
| 5284 (if cperl-use-syntax-table-text-property-for-tags | |
| 5285 (progn | |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
5286 (make-local-variable 'parse-sexp-lookup-properties) |
| 20323 | 5287 ;; Do not introduce variable if not needed, we check it! |
| 5288 (set 'parse-sexp-lookup-properties t)))) | |
| 5289 | |
| 5290 (defun cperl-xsub-scan () | |
| 5291 (require 'imenu) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5292 (let ((index-alist '()) |
| 20323 | 5293 (prev-pos 0) index index1 name package prefix) |
| 5294 (goto-char (point-min)) | |
| 5295 (if noninteractive | |
| 5296 (message "Scanning XSUB for index") | |
| 5297 (imenu-progress-message prev-pos 0)) | |
| 5298 ;; Search for the function | |
| 5299 (progn ;;save-match-data | |
| 5300 (while (re-search-forward | |
| 5301 "^\\([ \t]*MODULE\\>[^\n]*\\<PACKAGE[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9:]*\\)\\>\\|\\([a-zA-Z_][a-zA-Z_0-9]*\\)(\\|[ \t]*BOOT:\\)" | |
| 5302 nil t) | |
| 5303 (or noninteractive | |
| 5304 (imenu-progress-message prev-pos)) | |
| 5305 (cond | |
| 5306 ((match-beginning 2) ; SECTION | |
| 5307 (setq package (buffer-substring (match-beginning 2) (match-end 2))) | |
| 5308 (goto-char (match-beginning 0)) | |
| 5309 (skip-chars-forward " \t") | |
| 5310 (forward-char 1) | |
| 5311 (if (looking-at "[^\n]*\\<PREFIX[ \t]*=[ \t]*\\([a-zA-Z_][a-zA-Z_0-9]*\\)\\>") | |
| 5312 (setq prefix (buffer-substring (match-beginning 1) (match-end 1))) | |
| 5313 (setq prefix nil))) | |
| 5314 ((not package) nil) ; C language section | |
| 5315 ((match-beginning 3) ; XSUB | |
| 5316 (goto-char (1+ (match-beginning 3))) | |
| 5317 (setq index (imenu-example--name-and-position)) | |
| 5318 (setq name (buffer-substring (match-beginning 3) (match-end 3))) | |
| 5319 (if (and prefix (string-match (concat "^" prefix) name)) | |
| 5320 (setq name (substring name (length prefix)))) | |
| 5321 (cond ((string-match "::" name) nil) | |
| 5322 (t | |
| 5323 (setq index1 (cons (concat package "::" name) (cdr index))) | |
| 5324 (push index1 index-alist))) | |
| 5325 (setcar index name) | |
| 5326 (push index index-alist)) | |
| 5327 (t ; BOOT: section | |
| 5328 ;; (beginning-of-line) | |
| 5329 (setq index (imenu-example--name-and-position)) | |
| 5330 (setcar index (concat package "::BOOT:")) | |
| 5331 (push index index-alist))))) | |
| 5332 (or noninteractive | |
| 5333 (imenu-progress-message prev-pos 100)) | |
| 5334 index-alist)) | |
| 5335 | |
| 5336 (defun cperl-find-tags (file xs topdir) | |
| 5337 (let (ind (b (get-buffer cperl-tmp-buffer)) lst elt pos ret rel | |
| 5338 (cperl-pod-here-fontify nil)) | |
| 5339 (save-excursion | |
| 5340 (if b (set-buffer b) | |
| 5341 (cperl-setup-tmp-buf)) | |
| 5342 (erase-buffer) | |
| 5343 (setq file (car (insert-file-contents file))) | |
| 5344 (message "Scanning file %s ..." file) | |
| 5345 (if (and cperl-use-syntax-table-text-property-for-tags | |
| 5346 (not xs)) | |
| 5347 (condition-case err ; after __END__ may have garbage | |
| 5348 (cperl-find-pods-heres) | |
| 5349 (error (message "While scanning for syntax: %s" err)))) | |
| 5350 (if xs | |
| 5351 (setq lst (cperl-xsub-scan)) | |
| 31821 | 5352 (setq ind (cperl-imenu--create-perl-index)) |
| 20323 | 5353 (setq lst (cdr (assoc "+Unsorted List+..." ind)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5354 (setq lst |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5355 (mapcar |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5356 (function |
| 20323 | 5357 (lambda (elt) |
| 5358 (cond ((string-match "^[_a-zA-Z]" (car elt)) | |
| 5359 (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
|
5360 (beginning-of-line) ; pos should be of the start of the line |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5361 (list (car elt) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5362 (point) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5363 (1+ (count-lines 1 (point))) ; 1+ since at beg-o-l |
| 20323 | 5364 (buffer-substring (progn |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5365 (skip-chars-forward |
| 20323 | 5366 ":_a-zA-Z0-9") |
| 5367 (or (eolp) (forward-char 1)) | |
| 5368 (point)) | |
| 5369 (progn | |
| 5370 (beginning-of-line) | |
| 5371 (point)))))))) | |
| 5372 lst)) | |
| 5373 (erase-buffer) | |
| 5374 (while lst | |
| 5375 (setq elt (car lst) lst (cdr lst)) | |
| 5376 (if elt | |
| 5377 (progn | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5378 (insert (elt elt 3) |
| 20323 | 5379 127 |
| 5380 (if (string-match "^package " (car elt)) | |
| 5381 (substring (car elt) 8) | |
| 5382 (car elt) ) | |
| 5383 1 | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5384 (number-to-string (elt elt 2)) ; Line |
| 20323 | 5385 "," |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5386 (number-to-string (1- (elt elt 1))) ; Char pos 0-based |
| 20323 | 5387 "\n") |
| 5388 (if (and (string-match "^[_a-zA-Z]+::" (car elt)) | |
| 5389 (string-match "^sub[ \t]+\\([_a-zA-Z]+\\)[^:_a-zA-Z]" | |
| 5390 (elt elt 3))) | |
| 5391 ;; Need to insert the name without package as well | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5392 (setq lst (cons (cons (substring (elt elt 3) |
| 20323 | 5393 (match-beginning 1) |
| 5394 (match-end 1)) | |
| 5395 (cdr elt)) | |
| 5396 lst)))))) | |
| 5397 (setq pos (point)) | |
| 5398 (goto-char 1) | |
| 5399 (setq rel file) | |
| 5400 ;; On case-preserving filesystems (EMX on OS/2) case might be encoded in properties | |
| 5401 (set-text-properties 0 (length rel) nil rel) | |
| 5402 (and (equal topdir (substring rel 0 (length topdir))) | |
| 5403 (setq rel (substring file (length topdir)))) | |
| 5404 (insert "\f\n" rel "," (number-to-string (1- pos)) "\n") | |
| 5405 (setq ret (buffer-substring 1 (point-max))) | |
| 5406 (erase-buffer) | |
| 5407 (or noninteractive | |
| 5408 (message "Scanning file %s finished" file)) | |
| 5409 ret))) | |
| 5410 | |
| 5411 (defun cperl-add-tags-recurse-noxs () | |
| 5412 "Add to TAGS data for Perl and XSUB files in the current directory and kids. | |
| 5413 Use as | |
| 5414 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \ | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5415 -f cperl-add-tags-recurse |
| 20323 | 5416 " |
| 5417 (cperl-write-tags nil nil t t nil t)) | |
| 5418 | |
| 5419 (defun cperl-add-tags-recurse () | |
| 5420 "Add to TAGS file data for Perl files in the current directory and kids. | |
| 5421 Use as | |
| 5422 emacs -batch -q -no-site-file -l emacs/cperl-mode.el \ | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5423 -f cperl-add-tags-recurse |
| 20323 | 5424 " |
| 5425 (cperl-write-tags nil nil t t)) | |
| 5426 | |
| 5427 (defun cperl-write-tags (&optional file erase recurse dir inbuffer noxs topdir) | |
| 5428 ;; If INBUFFER, do not select buffer, and do not save | |
| 5429 ;; If ERASE is `ignore', do not erase, and do not try to delete old info. | |
| 5430 (require 'etags) | |
| 5431 (if file nil | |
| 5432 (setq file (if dir default-directory (buffer-file-name))) | |
| 5433 (if (and (not dir) (buffer-modified-p)) (error "Save buffer first!"))) | |
| 5434 (or topdir | |
| 5435 (setq topdir default-directory)) | |
| 5436 (let ((tags-file-name "TAGS") | |
| 5437 (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
|
5438 xs rel) |
| 20323 | 5439 (save-excursion |
| 5440 (cond (inbuffer nil) ; Already there | |
| 5441 ((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
|
5442 (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
|
5443 (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
|
5444 (visit-tags-table-buffer tags-file-name))) |
| 20323 | 5445 (t (set-buffer (find-file-noselect tags-file-name)))) |
| 5446 (cond | |
| 5447 (dir | |
| 5448 (cond ((eq erase 'ignore)) | |
| 5449 (erase | |
| 5450 (erase-buffer) | |
| 5451 (setq erase 'ignore))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5452 (let ((files |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5453 (directory-files file t |
| 20323 | 5454 (if recurse nil cperl-scan-files-regexp) |
| 5455 t))) | |
| 5456 (mapcar (function (lambda (file) | |
| 5457 (cond | |
| 5458 ((string-match cperl-noscan-files-regexp file) | |
| 5459 nil) | |
| 5460 ((not (file-directory-p file)) | |
| 5461 (if (string-match cperl-scan-files-regexp file) | |
| 5462 (cperl-write-tags file erase recurse nil t noxs topdir))) | |
| 5463 ((not recurse) nil) | |
| 5464 (t (cperl-write-tags file erase recurse t t noxs topdir))))) | |
| 5465 files)) | |
| 5466 ) | |
| 5467 (t | |
| 5468 (setq xs (string-match "\\.xs$" file)) | |
| 5469 (if (not (and xs noxs)) | |
| 5470 (progn | |
| 5471 (cond ((eq erase 'ignore) (goto-char (point-max))) | |
| 5472 (erase (erase-buffer)) | |
| 5473 (t | |
| 5474 (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
|
5475 (setq rel file) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5476 ;; 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
|
5477 (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
|
5478 (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
|
5479 (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
|
5480 (if (search-forward (concat "\f\n" rel ",") nil t) |
| 20323 | 5481 (progn |
| 5482 (search-backward "\f\n") | |
| 5483 (delete-region (point) | |
| 5484 (save-excursion | |
| 5485 (forward-char 1) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5486 (if (search-forward "\f\n" |
| 20323 | 5487 nil 'toend) |
| 5488 (- (point) 2) | |
| 5489 (point-max))))) | |
| 5490 (goto-char (point-max))))) | |
| 5491 (insert (cperl-find-tags file xs topdir)))))) | |
| 5492 (if inbuffer nil ; Delegate to the caller | |
| 5493 (save-buffer 0) ; No backup | |
| 5494 (if (fboundp 'initialize-new-tags-table) ; Do we need something special in XEmacs? | |
| 5495 (initialize-new-tags-table)))))) | |
| 5496 | |
| 5497 (defvar cperl-tags-hier-regexp-list | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5498 (concat |
| 20323 | 5499 "^\\(" |
| 5500 "\\(package\\)\\>" | |
| 5501 "\\|" | |
| 5502 "sub\\>[^\n]+::" | |
| 5503 "\\|" | |
| 5504 "[a-zA-Z_][a-zA-Z_0-9:]*(\C-?[^\n]+::" ; XSUB? | |
| 5505 "\\|" | |
| 5506 "[ \t]*BOOT:\C-?[^\n]+::" ; BOOT section | |
| 5507 "\\)")) | |
| 5508 | |
| 5509 (defvar cperl-hierarchy '(() ()) | |
| 5510 "Global hierarchy of classes") | |
| 5511 | |
| 5512 (defun cperl-tags-hier-fill () | |
| 5513 ;; Suppose we are in a tag table cooked by cperl. | |
| 5514 (goto-char 1) | |
| 5515 (let (type pack name pos line chunk ord cons1 file str info fileind) | |
| 5516 (while (re-search-forward cperl-tags-hier-regexp-list nil t) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5517 (setq pos (match-beginning 0) |
| 20323 | 5518 pack (match-beginning 2)) |
| 5519 (beginning-of-line) | |
| 5520 (if (looking-at (concat | |
| 5521 "\\([^\n]+\\)" | |
| 5522 "\C-?" | |
| 5523 "\\([^\n]+\\)" | |
| 5524 "\C-a" | |
| 5525 "\\([0-9]+\\)" | |
| 5526 "," | |
| 5527 "\\([0-9]+\\)")) | |
| 5528 (progn | |
| 5529 (setq ;;str (buffer-substring (match-beginning 1) (match-end 1)) | |
| 5530 name (buffer-substring (match-beginning 2) (match-end 2)) | |
| 5531 ;;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
|
5532 line (buffer-substring (match-beginning 3) (match-end 3)) |
| 20323 | 5533 ord (if pack 1 0) |
| 5534 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
|
5535 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
|
5536 ;; 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
|
5537 info (cperl-etags-snarf-tag file line)) |
| 20323 | 5538 ;; Move back |
| 5539 (forward-char -1) | |
| 5540 ;; Make new member of hierarchy name ==> file ==> pos if needed | |
| 5541 (if (setq cons1 (assoc name (nth ord cperl-hierarchy))) | |
| 5542 ;; Name known | |
| 5543 (setcdr cons1 (cons (cons fileind (vector file info)) | |
| 5544 (cdr cons1))) | |
| 5545 ;; First occurrence of the name, start alist | |
| 5546 (setq cons1 (cons name (list (cons fileind (vector file info))))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5547 (if pack |
| 20323 | 5548 (setcar (cdr cperl-hierarchy) |
| 5549 (cons cons1 (nth 1 cperl-hierarchy))) | |
| 5550 (setcar cperl-hierarchy | |
| 5551 (cons cons1 (car cperl-hierarchy))))))) | |
| 5552 (end-of-line)))) | |
| 5553 | |
| 5554 (defun cperl-tags-hier-init (&optional update) | |
| 5555 "Show hierarchical menu of classes and methods. | |
| 5556 Finds info about classes by a scan of loaded TAGS files. | |
| 5557 Supposes that the TAGS files contain fully qualified function names. | |
| 5558 One may build such TAGS files from CPerl mode menu." | |
| 5559 (interactive) | |
| 5560 (require 'etags) | |
| 5561 (require 'imenu) | |
| 5562 (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
|
5563 (let (pack name cons1 to l1 l2 l3 l4 b |
| 20323 | 5564 (remover (function (lambda (elt) ; (name (file1...) (file2..)) |
| 5565 (or (nthcdr 2 elt) | |
| 5566 ;; Only in one file | |
| 5567 (setcdr elt (cdr (nth 1 elt)))))))) | |
| 5568 ;; (setq cperl-hierarchy '(() () ())) ; Would write into '() later! | |
| 5569 (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
|
5570 (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
|
5571 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5572 (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
|
5573 ;; Does this work in XEmacs? |
| 20323 | 5574 (call-interactively 'visit-tags-table)) |
| 5575 (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
|
5576 (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
|
5577 (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
|
5578 (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
|
5579 (call-interactively 'visit-tags-table)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5580 (mapcar |
| 20323 | 5581 (function |
| 5582 (lambda (tagsfile) | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5583 (message "Updating list of classes... %s" tagsfile) |
| 20323 | 5584 (set-buffer (get-file-buffer tagsfile)) |
| 5585 (cperl-tags-hier-fill))) | |
| 5586 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
|
5587 (message "Updating list of classes... postprocessing...")) |
| 20323 | 5588 (mapcar remover (car cperl-hierarchy)) |
| 5589 (mapcar remover (nth 1 cperl-hierarchy)) | |
| 5590 (setq to (list nil (cons "Packages: " (nth 1 cperl-hierarchy)) | |
| 5591 (cons "Methods: " (car cperl-hierarchy)))) | |
| 5592 (cperl-tags-treeify to 1) | |
| 5593 (setcar (nthcdr 2 cperl-hierarchy) | |
| 5594 (cperl-menu-to-keymap (cons '("+++UPDATE+++" . -999) (cdr to)))) | |
| 5595 (message "Updating list of classes: done, requesting display...") | |
| 5596 ;;(cperl-imenu-addback (nth 2 cperl-hierarchy)) | |
| 5597 )) | |
| 5598 (or (nth 2 cperl-hierarchy) | |
| 5599 (error "No items found")) | |
| 5600 (setq update | |
| 5601 ;;; (imenu-choose-buffer-index "Packages: " (nth 2 cperl-hierarchy)) | |
| 5602 (if window-system | |
| 5603 (x-popup-menu t (nth 2 cperl-hierarchy)) | |
| 5604 (require 'tmm) | |
| 5605 (tmm-prompt (nth 2 cperl-hierarchy)))) | |
| 5606 (if (and update (listp update)) | |
| 5607 (progn (while (cdr update) (setq update (cdr update))) | |
| 5608 (setq update (car update)))) ; Get the last from the list | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5609 (if (vectorp update) |
| 20323 | 5610 (progn |
| 5611 (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
|
5612 (cperl-etags-goto-tag-location (elt update 1)))) |
| 20323 | 5613 (if (eq update -999) (cperl-tags-hier-init t))) |
| 5614 | |
| 5615 (defun cperl-tags-treeify (to level) | |
| 5616 ;; cadr of `to' is read-write. On start it is a cons | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5617 (let* ((regexp (concat "^\\(" (mapconcat |
| 20323 | 5618 'identity |
| 5619 (make-list level "[_a-zA-Z0-9]+") | |
| 5620 "::") | |
| 5621 "\\)\\(::\\)?")) | |
| 5622 (packages (cdr (nth 1 to))) | |
| 5623 (methods (cdr (nth 2 to))) | |
| 5624 l1 head tail cons1 cons2 ord writeto packs recurse | |
| 5625 root-packages root-functions ms many_ms same_name ps | |
| 5626 (move-deeper | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5627 (function |
| 20323 | 5628 (lambda (elt) |
| 5629 (cond ((and (string-match regexp (car elt)) | |
| 5630 (or (eq ord 1) (match-end 2))) | |
| 5631 (setq head (substring (car elt) 0 (match-end 1)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5632 tail (if (match-end 2) (substring (car elt) |
| 20323 | 5633 (match-end 2))) |
| 5634 recurse t) | |
| 5635 (if (setq cons1 (assoc head writeto)) nil | |
| 5636 ;; Need to init new head | |
| 5637 (setcdr writeto (cons (list head (list "Packages: ") | |
| 5638 (list "Methods: ")) | |
| 5639 (cdr writeto))) | |
| 5640 (setq cons1 (nth 1 writeto))) | |
| 5641 (setq cons2 (nth ord cons1)) ; Either packs or meths | |
| 5642 (setcdr cons2 (cons elt (cdr cons2)))) | |
| 5643 ((eq ord 2) | |
| 5644 (setq root-functions (cons elt root-functions))) | |
| 5645 (t | |
| 5646 (setq root-packages (cons elt root-packages)))))))) | |
| 5647 (setcdr to l1) ; Init to dynamic space | |
| 5648 (setq writeto to) | |
| 5649 (setq ord 1) | |
| 5650 (mapcar move-deeper packages) | |
| 5651 (setq ord 2) | |
| 5652 (mapcar move-deeper methods) | |
| 5653 (if recurse | |
| 5654 (mapcar (function (lambda (elt) | |
| 5655 (cperl-tags-treeify elt (1+ level)))) | |
| 5656 (cdr to))) | |
| 5657 ;;Now clean up leaders with one child only | |
| 5658 (mapcar (function (lambda (elt) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5659 (if (not (and (listp (cdr elt)) |
| 20323 | 5660 (eq (length elt) 2))) nil |
| 5661 (setcar elt (car (nth 1 elt))) | |
| 5662 (setcdr elt (cdr (nth 1 elt)))))) | |
| 5663 (cdr to)) | |
| 5664 ;; Sort the roots of subtrees | |
| 5665 (if (default-value 'imenu-sort-function) | |
| 5666 (setcdr to | |
| 5667 (sort (cdr to) (default-value 'imenu-sort-function)))) | |
| 5668 ;; Now add back functions removed from display | |
| 5669 (mapcar (function (lambda (elt) | |
| 5670 (setcdr to (cons elt (cdr to))))) | |
| 5671 (if (default-value 'imenu-sort-function) | |
| 5672 (nreverse | |
| 5673 (sort root-functions (default-value 'imenu-sort-function))) | |
| 5674 root-functions)) | |
| 5675 ;; Now add back packages removed from display | |
| 5676 (mapcar (function (lambda (elt) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5677 (setcdr to (cons (cons (concat "package " (car elt)) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5678 (cdr elt)) |
| 20323 | 5679 (cdr to))))) |
| 5680 (if (default-value 'imenu-sort-function) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5681 (nreverse |
| 20323 | 5682 (sort root-packages (default-value 'imenu-sort-function))) |
| 5683 root-packages)) | |
| 5684 )) | |
| 5685 | |
| 5686 ;;;(x-popup-menu t | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5687 ;;; '(keymap "Name1" |
| 20323 | 5688 ;;; ("Ret1" "aa") |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5689 ;;; ("Head1" "ab" |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5690 ;;; keymap "Name2" |
| 20323 | 5691 ;;; ("Tail1" "x") ("Tail2" "y")))) |
| 5692 | |
| 5693 (defun cperl-list-fold (list name limit) | |
| 5694 (let (list1 list2 elt1 (num 0)) | |
| 5695 (if (<= (length list) limit) list | |
| 5696 (setq list1 nil list2 nil) | |
| 5697 (while list | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5698 (setq num (1+ num) |
| 20323 | 5699 elt1 (car list) |
| 5700 list (cdr list)) | |
| 5701 (if (<= num imenu-max-items) | |
| 5702 (setq list2 (cons elt1 list2)) | |
| 5703 (setq list1 (cons (cons name | |
| 5704 (nreverse list2)) | |
| 5705 list1) | |
| 5706 list2 (list elt1) | |
| 5707 num 1))) | |
| 5708 (nreverse (cons (cons name | |
| 5709 (nreverse list2)) | |
| 5710 list1))))) | |
| 5711 | |
| 5712 (defun cperl-menu-to-keymap (menu &optional name) | |
| 5713 (let (list) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5714 (cons 'keymap |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5715 (mapcar |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5716 (function |
| 20323 | 5717 (lambda (elt) |
| 5718 (cond ((listp (cdr elt)) | |
| 5719 (setq list (cperl-list-fold | |
| 5720 (cdr elt) (car elt) imenu-max-items)) | |
| 5721 (cons nil | |
| 5722 (cons (car elt) | |
| 5723 (cperl-menu-to-keymap list)))) | |
| 5724 (t | |
| 5725 (list (cdr elt) (car elt) t))))) ; t is needed in 19.34 | |
| 5726 (cperl-list-fold menu "Root" imenu-max-items))))) | |
| 5727 | |
| 5728 | |
| 5729 (defvar cperl-bad-style-regexp | |
| 5730 (mapconcat 'identity | |
| 5731 '("[^-\n\t <>=+!.&|(*/'`\"#^][-=+<>!|&^]" ; char sign | |
| 5732 "[-<>=+^&|]+[^- \t\n=+<>~]" ; sign+ char | |
| 5733 ) | |
| 5734 "\\|") | |
| 5735 "Finds places such that insertion of a whitespace may help a lot.") | |
| 5736 | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5737 (defvar cperl-not-bad-style-regexp |
| 20323 | 5738 (mapconcat 'identity |
| 5739 '("[^-\t <>=+]\\(--\\|\\+\\+\\)" ; var-- var++ | |
| 5740 "[a-zA-Z0-9_][|&][a-zA-Z0-9_$]" ; abc|def abc&def are often used. | |
| 5741 "&[(a-zA-Z0-9_$]" ; &subroutine &(var->field) | |
| 5742 "<\\$?\\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
|
5743 "-[a-zA-Z][ \t]+[_$\"'`a-zA-Z]" ; -f file, -t STDIN |
| 20323 | 5744 "-[0-9]" ; -5 |
| 5745 "\\+\\+" ; ++var | |
| 5746 "--" ; --var | |
| 5747 ".->" ; a->b | |
| 5748 "->" ; a SPACE ->b | |
| 5749 "\\[-" ; a[-1] | |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5750 "\\\\[&$@*\\\\]" ; \&func |
| 20323 | 5751 "^=" ; =head |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5752 "\\$." ; $| |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
5753 "<<[a-zA-Z_'\"`]" ; <<FOO, <<'FOO' |
| 20323 | 5754 "||" |
| 5755 "&&" | |
| 5756 "[CBIXSLFZ]<\\(\\sw\\|\\s \\|\\s_\\|[\n]\\)*>" ; C<code like text> | |
| 5757 "-[a-zA-Z_0-9]+[ \t]*=>" ; -option => value | |
| 5758 ;; Unaddressed trouble spots: = -abc, f(56, -abc) --- specialcased below | |
| 5759 ;;"[*/+-|&<.]+=" | |
| 5760 ) | |
| 5761 "\\|") | |
| 5762 "If matches at the start of match found by `my-bad-c-style-regexp', | |
| 5763 insertion of a whitespace will not help.") | |
| 5764 | |
| 5765 (defvar found-bad) | |
| 5766 | |
| 5767 (defun cperl-find-bad-style () | |
| 5768 "Find places in the buffer where insertion of a whitespace may help. | |
| 5769 Prompts user for insertion of spaces. | |
| 5770 Currently it is tuned to C and Perl syntax." | |
| 5771 (interactive) | |
| 5772 (let (found-bad (p (point))) | |
| 5773 (setq last-nonmenu-event 13) ; To disable popup | |
| 5774 (beginning-of-buffer) | |
| 5775 (map-y-or-n-p "Insert space here? " | |
| 5776 (function (lambda (arg) (insert " "))) | |
| 5777 'cperl-next-bad-style | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5778 '("location" "locations" "insert a space into") |
| 20323 | 5779 '((?\C-r (lambda (arg) |
| 5780 (let ((buffer-quit-function | |
| 5781 'exit-recursive-edit)) | |
| 5782 (message "Exit with Esc Esc") | |
| 5783 (recursive-edit) | |
| 5784 t)) ; Consider acted upon | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5785 "edit, exit with Esc Esc") |
| 20323 | 5786 (?e (lambda (arg) |
| 5787 (let ((buffer-quit-function | |
| 5788 'exit-recursive-edit)) | |
| 5789 (message "Exit with Esc Esc") | |
| 5790 (recursive-edit) | |
| 5791 t)) ; Consider acted upon | |
| 5792 "edit, exit with Esc Esc")) | |
| 5793 t) | |
| 5794 (if found-bad (goto-char found-bad) | |
| 5795 (goto-char p) | |
| 5796 (message "No appropriate place found")))) | |
| 5797 | |
| 5798 (defun cperl-next-bad-style () | |
| 5799 (let (p (not-found t) (point (point)) found) | |
| 5800 (while (and not-found | |
| 5801 (re-search-forward cperl-bad-style-regexp nil 'to-end)) | |
| 5802 (setq p (point)) | |
| 5803 (goto-char (match-beginning 0)) | |
| 5804 (if (or | |
| 5805 (looking-at cperl-not-bad-style-regexp) | |
| 5806 ;; Check for a < -b and friends | |
| 5807 (and (eq (following-char) ?\-) | |
| 5808 (save-excursion | |
| 5809 (skip-chars-backward " \t\n") | |
| 5810 (memq (preceding-char) '(?\= ?\> ?\< ?\, ?\(, ?\[, ?\{)))) | |
| 5811 ;; Now check for syntax type | |
| 5812 (save-match-data | |
| 5813 (setq found (point)) | |
| 5814 (beginning-of-defun) | |
| 5815 (let ((pps (parse-partial-sexp (point) found))) | |
| 5816 (or (nth 3 pps) (nth 4 pps) (nth 5 pps))))) | |
| 5817 (goto-char (match-end 0)) | |
| 5818 (goto-char (1- p)) | |
| 5819 (setq not-found nil | |
| 5820 found-bad found))) | |
| 5821 (not not-found))) | |
| 5822 | |
| 27248 | 5823 |
| 20323 | 5824 ;;; Getting help |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5825 (defvar cperl-have-help-regexp |
| 20323 | 5826 ;;(concat "\\(" |
| 5827 (mapconcat | |
| 5828 'identity | |
| 5829 '("[$@%*&][0-9a-zA-Z_:]+\\([ \t]*[[{]\\)?" ; Usual variable | |
| 5830 "[$@]\\^[a-zA-Z]" ; Special variable | |
| 5831 "[$@][^ \n\t]" ; Special variable | |
| 5832 "-[a-zA-Z]" ; File test | |
| 5833 "\\\\[a-zA-Z0]" ; Special chars | |
| 5834 "^=[a-z][a-zA-Z0-9_]*" ; Pod sections | |
| 5835 "[-!&*+,-./<=>?\\\\^|~]+" ; Operator | |
| 5836 "[a-zA-Z_0-9:]+" ; symbol or number | |
| 5837 "x=" | |
| 5838 "#!" | |
| 5839 ) | |
| 5840 ;;"\\)\\|\\(" | |
| 5841 "\\|" | |
| 5842 ) | |
| 5843 ;;"\\)" | |
| 5844 ;;) | |
| 5845 "Matches places in the buffer we can find help for.") | |
| 5846 | |
| 5847 (defvar cperl-message-on-help-error t) | |
| 5848 (defvar cperl-help-from-timer nil) | |
| 5849 | |
| 5850 (defun cperl-word-at-point-hard () | |
| 5851 ;; Does not save-excursion | |
| 5852 ;; Get to the something meaningful | |
| 5853 (or (eobp) (eolp) (forward-char 1)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5854 (re-search-backward "[-a-zA-Z0-9_:!&*+,-./<=>?\\\\^|~$%@]" |
| 20323 | 5855 (save-excursion (beginning-of-line) (point)) |
| 5856 'to-beg) | |
| 5857 ;; (cond | |
| 5858 ;; ((or (eobp) (looking-at "[][ \t\n{}();,]")) ; Not at a symbol | |
| 5859 ;; (skip-chars-backward " \n\t\r({[]});,") | |
| 5860 ;; (or (bobp) (backward-char 1)))) | |
| 5861 ;; Try to backtrace | |
| 5862 (cond | |
| 5863 ((looking-at "[a-zA-Z0-9_:]") ; symbol | |
| 5864 (skip-chars-backward "a-zA-Z0-9_:") | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5865 (cond |
| 20323 | 5866 ((and (eq (preceding-char) ?^) ; $^I |
| 5867 (eq (char-after (- (point) 2)) ?\$)) | |
| 5868 (forward-char -2)) | |
| 5869 ((memq (preceding-char) (append "*$@%&\\" nil)) ; *glob | |
| 5870 (forward-char -1)) | |
| 5871 ((and (eq (preceding-char) ?\=) | |
| 5872 (eq (current-column) 1)) | |
| 5873 (forward-char -1))) ; =head1 | |
| 5874 (if (and (eq (preceding-char) ?\<) | |
| 5875 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <FH> | |
| 5876 (forward-char -1))) | |
| 5877 ((and (looking-at "=") (eq (preceding-char) ?x)) ; x= | |
| 5878 (forward-char -1)) | |
| 5879 ((and (looking-at "\\^") (eq (preceding-char) ?\$)) ; $^I | |
| 5880 (forward-char -1)) | |
| 5881 ((looking-at "[-!&*+,-./<=>?\\\\^|~]") | |
| 5882 (skip-chars-backward "-!&*+,-./<=>?\\\\^|~") | |
| 5883 (cond | |
| 5884 ((and (eq (preceding-char) ?\$) | |
| 5885 (not (eq (char-after (- (point) 2)) ?\$))) ; $- | |
| 5886 (forward-char -1)) | |
| 5887 ((and (eq (following-char) ?\>) | |
| 5888 (string-match "[a-zA-Z0-9_]" (char-to-string (preceding-char))) | |
| 5889 (save-excursion | |
| 5890 (forward-sexp -1) | |
| 5891 (and (eq (preceding-char) ?\<) | |
| 5892 (looking-at "\\$?[a-zA-Z0-9_:]+>")))) ; <FH> | |
| 5893 (search-backward "<")))) | |
| 5894 ((and (eq (following-char) ?\$) | |
| 5895 (eq (preceding-char) ?\<) | |
| 5896 (looking-at "\\$?[a-zA-Z0-9_:]+>")) ; <$fh> | |
| 5897 (forward-char -1))) | |
| 5898 (if (looking-at cperl-have-help-regexp) | |
| 5899 (buffer-substring (match-beginning 0) (match-end 0)))) | |
| 5900 | |
| 5901 (defun cperl-get-help () | |
| 5902 "Get one-line docs on the symbol at the point. | |
| 5903 The data for these docs is a little bit obsolete and may be in fact longer | |
| 5904 than a line. Your contribution to update/shorten it is appreciated." | |
| 5905 (interactive) | |
| 5906 (save-match-data ; May be called "inside" query-replace | |
| 5907 (save-excursion | |
| 5908 (let ((word (cperl-word-at-point-hard))) | |
| 5909 (if word | |
| 5910 (if (and cperl-help-from-timer ; Bail out if not in mainland | |
| 5911 (not (string-match "^#!\\|\\\\\\|^=" word)) ; Show help even in comments/strings. | |
| 5912 (or (memq (get-text-property (point) 'face) | |
| 5913 '(font-lock-comment-face font-lock-string-face)) | |
| 5914 (memq (get-text-property (point) 'syntax-type) | |
| 5915 '(pod here-doc format)))) | |
| 5916 nil | |
| 5917 (cperl-describe-perl-symbol word)) | |
| 5918 (if cperl-message-on-help-error | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5919 (message "Nothing found for %s..." |
| 20323 | 5920 (buffer-substring (point) (min (+ 5 (point)) (point-max)))))))))) |
| 5921 | |
| 5922 ;;; Stolen from perl-descr.el by Johan Vromans: | |
| 5923 | |
| 5924 (defvar cperl-doc-buffer " *perl-doc*" | |
| 5925 "Where the documentation can be found.") | |
| 5926 | |
| 5927 (defun cperl-describe-perl-symbol (val) | |
| 5928 "Display the documentation of symbol at point, a Perl operator." | |
| 5929 (let ((enable-recursive-minibuffers t) | |
| 5930 args-file regexp) | |
| 5931 (cond | |
| 5932 ((string-match "^[&*][a-zA-Z_]" val) | |
| 5933 (setq val (concat (substring val 0 1) "NAME"))) | |
| 5934 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*\\[" val) | |
| 5935 (setq val (concat "@" (substring val 1 (match-end 1))))) | |
| 5936 ((string-match "^[$@]\\([a-zA-Z_:0-9]+\\)[ \t]*{" val) | |
| 5937 (setq val (concat "%" (substring val 1 (match-end 1))))) | |
| 5938 ((and (string= val "x") (string-match "^x=" val)) | |
| 5939 (setq val "x=")) | |
| 5940 ((string-match "^\\$[\C-a-\C-z]" val) | |
| 5941 (setq val (concat "$^" (char-to-string (+ ?A -1 (aref val 1)))))) | |
| 5942 ((string-match "^CORE::" val) | |
| 5943 (setq val "CORE::")) | |
| 5944 ((string-match "^SUPER::" val) | |
| 5945 (setq val "SUPER::")) | |
| 5946 ((and (string= "<" val) (string-match "^<\\$?[a-zA-Z0-9_:]+>" val)) | |
| 5947 (setq val "<NAME>"))) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5948 (setq regexp (concat "^" |
| 20323 | 5949 "\\([^a-zA-Z0-9_:]+[ \t]+\\)?" |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5950 (regexp-quote val) |
| 20323 | 5951 "\\([ \t([/]\\|$\\)")) |
| 5952 | |
| 5953 ;; get the buffer with the documentation text | |
| 5954 (cperl-switch-to-doc-buffer) | |
| 5955 | |
| 5956 ;; lookup in the doc | |
| 5957 (goto-char (point-min)) | |
| 5958 (let ((case-fold-search nil)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5959 (list |
| 20323 | 5960 (if (re-search-forward regexp (point-max) t) |
| 5961 (save-excursion | |
| 5962 (beginning-of-line 1) | |
| 5963 (let ((lnstart (point))) | |
| 5964 (end-of-line) | |
| 5965 (message "%s" (buffer-substring lnstart (point))))) | |
| 5966 (if cperl-message-on-help-error | |
| 5967 (message "No definition for %s" val))))))) | |
| 5968 | |
| 5969 (defvar cperl-short-docs "Ignore my value" | |
| 5970 ;; Perl4 version was written by Johan Vromans (jvromans@squirrel.nl) | |
| 5971 "# based on '@(#)@ perl-descr.el 1.9 - describe-perl-symbol' [Perl 5] | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
5972 ! ... Logical negation. |
| 20323 | 5973 ... != ... Numeric inequality. |
| 5974 ... !~ ... Search pattern, substitution, or translation (negated). | |
| 5975 $! In numeric context: errno. In a string context: error string. | |
| 5976 $\" The separator which joins elements of arrays interpolated in strings. | |
| 5977 $# The output format for printed numbers. Initial value is %.15g or close. | |
| 5978 $$ Process number of this script. Changes in the fork()ed child process. | |
| 5979 $% The current page number of the currently selected output channel. | |
| 5980 | |
| 5981 The following variables are always local to the current block: | |
| 5982 | |
| 5983 $1 Match of the 1st set of parentheses in the last match (auto-local). | |
| 5984 $2 Match of the 2nd set of parentheses in the last match (auto-local). | |
| 5985 $3 Match of the 3rd set of parentheses in the last match (auto-local). | |
| 5986 $4 Match of the 4th set of parentheses in the last match (auto-local). | |
| 5987 $5 Match of the 5th set of parentheses in the last match (auto-local). | |
| 5988 $6 Match of the 6th set of parentheses in the last match (auto-local). | |
| 5989 $7 Match of the 7th set of parentheses in the last match (auto-local). | |
| 5990 $8 Match of the 8th set of parentheses in the last match (auto-local). | |
| 5991 $9 Match of the 9th set of parentheses in the last match (auto-local). | |
| 5992 $& The string matched by the last pattern match (auto-local). | |
| 5993 $' The string after what was matched by the last match (auto-local). | |
| 5994 $` The string before what was matched by the last match (auto-local). | |
| 5995 | |
| 5996 $( The real gid of this process. | |
| 5997 $) The effective gid of this process. | |
| 5998 $* Deprecated: Set to 1 to do multiline matching within a string. | |
| 5999 $+ The last bracket matched by the last search pattern. | |
| 6000 $, The output field separator for the print operator. | |
| 6001 $- The number of lines left on the page. | |
| 6002 $. The current input line number of the last filehandle that was read. | |
| 6003 $/ The input record separator, newline by default. | |
| 6004 $0 Name of the file containing the perl script being executed. May be set. | |
| 6005 $: String may be broken after these characters to fill ^-lines in a format. | |
| 6006 $; Subscript separator for multi-dim array emulation. Default \"\\034\". | |
| 6007 $< The real uid of this process. | |
| 6008 $= The page length of the current output channel. Default is 60 lines. | |
| 6009 $> The effective uid of this process. | |
| 6010 $? The status returned by the last ``, pipe close or `system'. | |
| 6011 $@ The perl error message from the last eval or do @var{EXPR} command. | |
| 6012 $ARGV The name of the current file used with <> . | |
| 6013 $[ Deprecated: The index of the first element/char in an array/string. | |
| 6014 $\\ The output record separator for the print operator. | |
| 6015 $] The perl version string as displayed with perl -v. | |
| 6016 $^ The name of the current top-of-page format. | |
| 6017 $^A The current value of the write() accumulator for format() lines. | |
| 6018 $^D The value of the perl debug (-D) flags. | |
| 6019 $^E Information about the last system error other than that provided by $!. | |
| 6020 $^F The highest system file descriptor, ordinarily 2. | |
| 6021 $^H The current set of syntax checks enabled by `use strict'. | |
| 6022 $^I The value of the in-place edit extension (perl -i option). | |
| 6023 $^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
|
6024 $^M A buffer for emergency memory allocation when running out of memory. |
| 20323 | 6025 $^O The operating system name under which this copy of Perl was built. |
| 6026 $^P Internal debugging flag. | |
| 6027 $^T The time the script was started. Used by -A/-M/-C file tests. | |
| 6028 $^W True if warnings are requested (perl -w flag). | |
| 6029 $^X The name under which perl was invoked (argv[0] in C-speech). | |
| 6030 $_ The default input and pattern-searching space. | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6031 $| Auto-flush after write/print on current output channel? Default 0. |
| 20323 | 6032 $~ The name of the current report format. |
| 6033 ... % ... Modulo division. | |
| 6034 ... %= ... Modulo division assignment. | |
| 6035 %ENV Contains the current environment. | |
| 6036 %INC List of files that have been require-d or do-ne. | |
| 6037 %SIG Used to set signal handlers for various signals. | |
| 6038 ... & ... Bitwise and. | |
| 6039 ... && ... Logical and. | |
| 6040 ... &&= ... Logical and assignment. | |
| 6041 ... &= ... Bitwise and assignment. | |
| 6042 ... * ... Multiplication. | |
| 6043 ... ** ... Exponentiation. | |
| 6044 *NAME Glob: all objects refered by NAME. *NAM1 = *NAM2 aliases NAM1 to NAM2. | |
| 6045 &NAME(arg0, ...) Subroutine call. Arguments go to @_. | |
| 6046 ... + ... Addition. +EXPR Makes EXPR into scalar context. | |
| 6047 ++ Auto-increment (magical on strings). ++EXPR EXPR++ | |
| 6048 ... += ... Addition assignment. | |
| 6049 , Comma operator. | |
| 6050 ... - ... Subtraction. | |
| 6051 -- Auto-decrement (NOT magical on strings). --EXPR EXPR-- | |
| 6052 ... -= ... Subtraction assignment. | |
| 6053 -A Access time in days since script started. | |
| 6054 -B File is a non-text (binary) file. | |
| 6055 -C Inode change time in days since script started. | |
| 6056 -M Age in days since script started. | |
| 6057 -O File is owned by real uid. | |
| 6058 -R File is readable by real uid. | |
| 6059 -S File is a socket . | |
| 6060 -T File is a text file. | |
| 6061 -W File is writable by real uid. | |
| 6062 -X File is executable by real uid. | |
| 6063 -b File is a block special file. | |
| 6064 -c File is a character special file. | |
| 6065 -d File is a directory. | |
| 6066 -e File exists . | |
| 6067 -f File is a plain file. | |
| 6068 -g File has setgid bit set. | |
| 6069 -k File has sticky bit set. | |
| 6070 -l File is a symbolic link. | |
| 6071 -o File is owned by effective uid. | |
| 6072 -p File is a named pipe (FIFO). | |
| 6073 -r File is readable by effective uid. | |
| 6074 -s File has non-zero size. | |
| 6075 -t Tests if filehandle (STDIN by default) is opened to a tty. | |
| 6076 -u File has setuid bit set. | |
| 6077 -w File is writable by effective uid. | |
| 6078 -x File is executable by effective uid. | |
| 6079 -z File has zero size. | |
| 6080 . Concatenate strings. | |
| 6081 .. Alternation, also range operator. | |
| 6082 .= Concatenate assignment strings | |
| 6083 ... / ... Division. /PATTERN/ioxsmg Pattern match | |
| 6084 ... /= ... Division assignment. | |
| 6085 /PATTERN/ioxsmg Pattern match. | |
| 6086 ... < ... Numeric less than. <pattern> Glob. See <NAME>, <> as well. | |
| 6087 <NAME> Reads line from filehandle NAME (a bareword or dollar-bareword). | |
| 6088 <pattern> Glob (Unless pattern is bareword/dollar-bareword - see <NAME>). | |
| 6089 <> Reads line from union of files in @ARGV (= command line) and STDIN. | |
| 6090 ... << ... Bitwise shift left. << start of HERE-DOCUMENT. | |
| 6091 ... <= ... Numeric less than or equal to. | |
| 6092 ... <=> ... Numeric compare. | |
| 6093 ... = ... Assignment. | |
| 6094 ... == ... Numeric equality. | |
| 6095 ... =~ ... Search pattern, substitution, or translation | |
| 6096 ... > ... Numeric greater than. | |
| 6097 ... >= ... Numeric greater than or equal to. | |
| 6098 ... >> ... Bitwise shift right. | |
| 6099 ... >>= ... Bitwise shift right assignment. | |
| 6100 ... ? ... : ... Condition=if-then-else operator. ?PAT? One-time pattern match. | |
| 6101 ?PATTERN? One-time pattern match. | |
| 6102 @ARGV Command line arguments (not including the command name - see $0). | |
| 6103 @INC List of places to look for perl scripts during do/include/use. | |
| 6104 @_ Parameter array for subroutines. Also used by split unless in array context. | |
| 6105 \\ Creates reference to what follows, like \$var, or quotes non-\w in strings. | |
| 6106 \\0 Octal char, e.g. \\033. | |
| 6107 \\E Case modification terminator. See \\Q, \\L, and \\U. | |
| 6108 \\L Lowercase until \\E . See also \l, lc. | |
| 6109 \\U Upcase until \\E . See also \u, uc. | |
| 6110 \\Q Quote metacharacters until \\E . See also quotemeta. | |
| 6111 \\a Alarm character (octal 007). | |
| 6112 \\b Backspace character (octal 010). | |
| 6113 \\c Control character, e.g. \\c[ . | |
| 6114 \\e Escape character (octal 033). | |
| 6115 \\f Formfeed character (octal 014). | |
| 6116 \\l Lowercase the next character. See also \\L and \\u, lcfirst. | |
| 6117 \\n Newline character (octal 012 on most systems). | |
| 6118 \\r Return character (octal 015 on most systems). | |
| 6119 \\t Tab character (octal 011). | |
| 6120 \\u Upcase the next character. See also \\U and \\l, ucfirst. | |
| 6121 \\x Hex character, e.g. \\x1b. | |
| 6122 ... ^ ... Bitwise exclusive or. | |
| 6123 __END__ Ends program source. | |
| 6124 __DATA__ Ends program source. | |
| 6125 __FILE__ Current (source) filename. | |
| 6126 __LINE__ Current line in current source. | |
| 6127 __PACKAGE__ Current package. | |
| 6128 ARGV Default multi-file input filehandle. <ARGV> is a synonym for <>. | |
| 6129 ARGVOUT Output filehandle with -i flag. | |
| 6130 BEGIN { ... } Immediately executed (during compilation) piece of code. | |
| 6131 END { ... } Pseudo-subroutine executed after the script finishes. | |
| 6132 DATA Input filehandle for what follows after __END__ or __DATA__. | |
| 6133 accept(NEWSOCKET,GENERICSOCKET) | |
| 6134 alarm(SECONDS) | |
| 6135 atan2(X,Y) | |
| 6136 bind(SOCKET,NAME) | |
| 6137 binmode(FILEHANDLE) | |
| 6138 caller[(LEVEL)] | |
| 6139 chdir(EXPR) | |
| 6140 chmod(LIST) | |
| 6141 chop[(LIST|VAR)] | |
| 6142 chown(LIST) | |
| 6143 chroot(FILENAME) | |
| 6144 close(FILEHANDLE) | |
| 6145 closedir(DIRHANDLE) | |
| 6146 ... cmp ... String compare. | |
| 6147 connect(SOCKET,NAME) | |
| 6148 continue of { block } continue { block }. Is executed after `next' or at end. | |
| 6149 cos(EXPR) | |
| 6150 crypt(PLAINTEXT,SALT) | |
| 6151 dbmclose(%HASH) | |
| 6152 dbmopen(%HASH,DBNAME,MODE) | |
| 6153 defined(EXPR) | |
| 6154 delete($HASH{KEY}) | |
| 6155 die(LIST) | |
| 6156 do { ... }|SUBR while|until EXPR executes at least once | |
| 6157 do(EXPR|SUBR([LIST])) (with while|until executes at least once) | |
| 6158 dump LABEL | |
| 6159 each(%HASH) | |
| 6160 endgrent | |
| 6161 endhostent | |
| 6162 endnetent | |
| 6163 endprotoent | |
| 6164 endpwent | |
| 6165 endservent | |
| 6166 eof[([FILEHANDLE])] | |
| 6167 ... eq ... String equality. | |
| 6168 eval(EXPR) or eval { BLOCK } | |
| 6169 exec(LIST) | |
| 6170 exit(EXPR) | |
| 6171 exp(EXPR) | |
| 6172 fcntl(FILEHANDLE,FUNCTION,SCALAR) | |
| 6173 fileno(FILEHANDLE) | |
| 6174 flock(FILEHANDLE,OPERATION) | |
| 6175 for (EXPR;EXPR;EXPR) { ... } | |
| 6176 foreach [VAR] (@ARRAY) { ... } | |
| 6177 fork | |
| 6178 ... ge ... String greater than or equal. | |
| 6179 getc[(FILEHANDLE)] | |
| 6180 getgrent | |
| 6181 getgrgid(GID) | |
| 6182 getgrnam(NAME) | |
| 6183 gethostbyaddr(ADDR,ADDRTYPE) | |
| 6184 gethostbyname(NAME) | |
| 6185 gethostent | |
| 6186 getlogin | |
| 6187 getnetbyaddr(ADDR,ADDRTYPE) | |
| 6188 getnetbyname(NAME) | |
| 6189 getnetent | |
| 6190 getpeername(SOCKET) | |
| 6191 getpgrp(PID) | |
| 6192 getppid | |
| 6193 getpriority(WHICH,WHO) | |
| 6194 getprotobyname(NAME) | |
| 6195 getprotobynumber(NUMBER) | |
| 6196 getprotoent | |
| 6197 getpwent | |
| 6198 getpwnam(NAME) | |
| 6199 getpwuid(UID) | |
| 6200 getservbyname(NAME,PROTO) | |
| 6201 getservbyport(PORT,PROTO) | |
| 6202 getservent | |
| 6203 getsockname(SOCKET) | |
| 6204 getsockopt(SOCKET,LEVEL,OPTNAME) | |
| 6205 gmtime(EXPR) | |
| 6206 goto LABEL | |
| 6207 ... gt ... String greater than. | |
| 6208 hex(EXPR) | |
| 6209 if (EXPR) { ... } [ elsif (EXPR) { ... } ... ] [ else { ... } ] or EXPR if EXPR | |
| 6210 index(STR,SUBSTR[,OFFSET]) | |
| 6211 int(EXPR) | |
| 6212 ioctl(FILEHANDLE,FUNCTION,SCALAR) | |
| 6213 join(EXPR,LIST) | |
| 6214 keys(%HASH) | |
| 6215 kill(LIST) | |
| 6216 last [LABEL] | |
| 6217 ... le ... String less than or equal. | |
| 6218 length(EXPR) | |
| 6219 link(OLDFILE,NEWFILE) | |
| 6220 listen(SOCKET,QUEUESIZE) | |
| 6221 local(LIST) | |
| 6222 localtime(EXPR) | |
| 6223 log(EXPR) | |
| 6224 lstat(EXPR|FILEHANDLE|VAR) | |
| 6225 ... lt ... String less than. | |
| 6226 m/PATTERN/iogsmx | |
| 6227 mkdir(FILENAME,MODE) | |
| 6228 msgctl(ID,CMD,ARG) | |
| 6229 msgget(KEY,FLAGS) | |
| 6230 msgrcv(ID,VAR,SIZE,TYPE.FLAGS) | |
| 6231 msgsnd(ID,MSG,FLAGS) | |
| 6232 my VAR or my (VAR1,...) Introduces a lexical variable ($VAR, @ARR, or %HASH). | |
| 6233 ... ne ... String inequality. | |
| 6234 next [LABEL] | |
| 6235 oct(EXPR) | |
| 6236 open(FILEHANDLE[,EXPR]) | |
| 6237 opendir(DIRHANDLE,EXPR) | |
| 6238 ord(EXPR) ASCII value of the first char of the string. | |
| 6239 pack(TEMPLATE,LIST) | |
| 6240 package NAME Introduces package context. | |
| 6241 pipe(READHANDLE,WRITEHANDLE) Create a pair of filehandles on ends of a pipe. | |
| 6242 pop(ARRAY) | |
| 6243 print [FILEHANDLE] [(LIST)] | |
| 6244 printf [FILEHANDLE] (FORMAT,LIST) | |
| 6245 push(ARRAY,LIST) | |
| 6246 q/STRING/ Synonym for 'STRING' | |
| 6247 qq/STRING/ Synonym for \"STRING\" | |
| 6248 qx/STRING/ Synonym for `STRING` | |
| 6249 rand[(EXPR)] | |
| 6250 read(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
| 6251 readdir(DIRHANDLE) | |
| 6252 readlink(EXPR) | |
| 6253 recv(SOCKET,SCALAR,LEN,FLAGS) | |
| 6254 redo [LABEL] | |
| 6255 rename(OLDNAME,NEWNAME) | |
| 6256 require [FILENAME | PERL_VERSION] | |
| 6257 reset[(EXPR)] | |
| 6258 return(LIST) | |
| 6259 reverse(LIST) | |
| 6260 rewinddir(DIRHANDLE) | |
| 6261 rindex(STR,SUBSTR[,OFFSET]) | |
| 6262 rmdir(FILENAME) | |
| 6263 s/PATTERN/REPLACEMENT/gieoxsm | |
| 6264 scalar(EXPR) | |
| 6265 seek(FILEHANDLE,POSITION,WHENCE) | |
| 6266 seekdir(DIRHANDLE,POS) | |
| 6267 select(FILEHANDLE | RBITS,WBITS,EBITS,TIMEOUT) | |
| 6268 semctl(ID,SEMNUM,CMD,ARG) | |
| 6269 semget(KEY,NSEMS,SIZE,FLAGS) | |
| 6270 semop(KEY,...) | |
| 6271 send(SOCKET,MSG,FLAGS[,TO]) | |
| 6272 setgrent | |
| 6273 sethostent(STAYOPEN) | |
| 6274 setnetent(STAYOPEN) | |
| 6275 setpgrp(PID,PGRP) | |
| 6276 setpriority(WHICH,WHO,PRIORITY) | |
| 6277 setprotoent(STAYOPEN) | |
| 6278 setpwent | |
| 6279 setservent(STAYOPEN) | |
| 6280 setsockopt(SOCKET,LEVEL,OPTNAME,OPTVAL) | |
| 6281 shift[(ARRAY)] | |
| 6282 shmctl(ID,CMD,ARG) | |
| 6283 shmget(KEY,SIZE,FLAGS) | |
| 6284 shmread(ID,VAR,POS,SIZE) | |
| 6285 shmwrite(ID,STRING,POS,SIZE) | |
| 6286 shutdown(SOCKET,HOW) | |
| 6287 sin(EXPR) | |
| 6288 sleep[(EXPR)] | |
| 6289 socket(SOCKET,DOMAIN,TYPE,PROTOCOL) | |
| 6290 socketpair(SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL) | |
| 6291 sort [SUBROUTINE] (LIST) | |
| 6292 splice(ARRAY,OFFSET[,LENGTH[,LIST]]) | |
| 6293 split[(/PATTERN/[,EXPR[,LIMIT]])] | |
| 6294 sprintf(FORMAT,LIST) | |
| 6295 sqrt(EXPR) | |
| 6296 srand(EXPR) | |
| 6297 stat(EXPR|FILEHANDLE|VAR) | |
| 6298 study[(SCALAR)] | |
| 6299 sub [NAME [(format)]] { BODY } sub NAME [(format)]; sub [(format)] {...} | |
| 6300 substr(EXPR,OFFSET[,LEN]) | |
| 6301 symlink(OLDFILE,NEWFILE) | |
| 6302 syscall(LIST) | |
| 6303 sysread(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
| 6304 system(LIST) | |
| 6305 syswrite(FILEHANDLE,SCALAR,LENGTH[,OFFSET]) | |
| 6306 tell[(FILEHANDLE)] | |
| 6307 telldir(DIRHANDLE) | |
| 6308 time | |
| 6309 times | |
| 6310 tr/SEARCHLIST/REPLACEMENTLIST/cds | |
| 6311 truncate(FILE|EXPR,LENGTH) | |
| 6312 umask[(EXPR)] | |
| 6313 undef[(EXPR)] | |
| 6314 unless (EXPR) { ... } [ else { ... } ] or EXPR unless EXPR | |
| 6315 unlink(LIST) | |
| 6316 unpack(TEMPLATE,EXPR) | |
| 6317 unshift(ARRAY,LIST) | |
| 6318 until (EXPR) { ... } EXPR until EXPR | |
| 6319 utime(LIST) | |
| 6320 values(%HASH) | |
| 6321 vec(EXPR,OFFSET,BITS) | |
| 6322 wait | |
| 6323 waitpid(PID,FLAGS) | |
| 6324 wantarray Returns true if the sub/eval is called in list context. | |
| 6325 warn(LIST) | |
| 6326 while (EXPR) { ... } EXPR while EXPR | |
| 6327 write[(EXPR|FILEHANDLE)] | |
| 6328 ... x ... Repeat string or array. | |
| 6329 x= ... Repetition assignment. | |
| 6330 y/SEARCHLIST/REPLACEMENTLIST/ | |
| 6331 ... | ... Bitwise or. | |
| 6332 ... || ... Logical or. | |
| 6333 ~ ... Unary bitwise complement. | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6334 #! OS interpreter indicator. If contains `perl', used for options, and -x. |
| 20323 | 6335 AUTOLOAD {...} Shorthand for `sub AUTOLOAD {...}'. |
| 6336 CORE:: Prefix to access builtin function if imported sub obscures it. | |
| 6337 SUPER:: Prefix to lookup for a method in @ISA classes. | |
| 6338 DESTROY Shorthand for `sub DESTROY {...}'. | |
| 6339 ... EQ ... Obsolete synonym of `eq'. | |
| 6340 ... GE ... Obsolete synonym of `ge'. | |
| 6341 ... GT ... Obsolete synonym of `gt'. | |
| 6342 ... LE ... Obsolete synonym of `le'. | |
| 6343 ... LT ... Obsolete synonym of `lt'. | |
| 6344 ... NE ... Obsolete synonym of `ne'. | |
| 6345 abs [ EXPR ] absolute value | |
| 6346 ... and ... Low-precedence synonym for &&. | |
| 6347 bless REFERENCE [, PACKAGE] Makes reference into an object of a package. | |
| 6348 chomp [LIST] Strips $/ off LIST/$_. Returns count. Special if $/ eq ''! | |
| 6349 chr Converts a number to char with the same ordinal. | |
| 6350 else Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
| 6351 elsif Part of if/unless {BLOCK} elsif {BLOCK} else {BLOCK}. | |
| 6352 exists $HASH{KEY} True if the key exists. | |
| 6353 format [NAME] = Start of output format. Ended by a single dot (.) on a line. | |
| 6354 formline PICTURE, LIST Backdoor into \"format\" processing. | |
| 6355 glob EXPR Synonym of <EXPR>. | |
| 6356 lc [ EXPR ] Returns lowercased EXPR. | |
| 6357 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
|
6358 grep EXPR,LIST or grep {BLOCK} LIST Filters LIST via EXPR/BLOCK. |
| 20323 | 6359 map EXPR, LIST or map {BLOCK} LIST Applies EXPR/BLOCK to elts of LIST. |
| 6360 no PACKAGE [SYMBOL1, ...] Partial reverse for `use'. Runs `unimport' method. | |
| 6361 not ... Low-precedence synonym for ! - negation. | |
| 6362 ... or ... Low-precedence synonym for ||. | |
| 6363 pos STRING Set/Get end-position of the last match over this string, see \\G. | |
| 6364 quotemeta [ EXPR ] Quote regexp metacharacters. | |
| 6365 qw/WORD1 .../ Synonym of split('', 'WORD1 ...') | |
| 6366 readline FH Synonym of <FH>. | |
| 6367 readpipe CMD Synonym of `CMD`. | |
| 6368 ref [ EXPR ] Type of EXPR when dereferenced. | |
| 6369 sysopen FH, FILENAME, MODE [, PERM] (MODE is numeric, see Fcntl.) | |
| 6370 tie VAR, PACKAGE, LIST Hide an object behind a simple Perl variable. | |
| 6371 tied Returns internal object for a tied data. | |
| 6372 uc [ EXPR ] Returns upcased EXPR. | |
| 6373 ucfirst [ EXPR ] Returns EXPR with upcased first letter. | |
| 6374 untie VAR Unlink an object from a simple Perl variable. | |
| 6375 use PACKAGE [SYMBOL1, ...] Compile-time `require' with consequent `import'. | |
| 6376 ... xor ... Low-precedence synonym for exclusive or. | |
| 6377 prototype \&SUB Returns prototype of the function given a reference. | |
| 6378 =head1 Top-level heading. | |
| 6379 =head2 Second-level heading. | |
| 6380 =head3 Third-level heading (is there such?). | |
| 6381 =over [ NUMBER ] Start list. | |
| 6382 =item [ TITLE ] Start new item in the list. | |
| 6383 =back End list. | |
| 6384 =cut Switch from POD to Perl. | |
| 6385 =pod Switch from Perl to POD. | |
| 6386 ") | |
| 6387 | |
| 6388 (defun cperl-switch-to-doc-buffer () | |
| 6389 "Go to the perl documentation buffer and insert the documentation." | |
| 6390 (interactive) | |
| 6391 (let ((buf (get-buffer-create cperl-doc-buffer))) | |
| 6392 (if (interactive-p) | |
| 6393 (switch-to-buffer-other-window buf) | |
| 6394 (set-buffer buf)) | |
| 6395 (if (= (buffer-size) 0) | |
| 6396 (progn | |
| 6397 (insert (documentation-property 'cperl-short-docs | |
| 6398 'variable-documentation)) | |
| 6399 (setq buffer-read-only t))))) | |
| 6400 | |
| 6401 (defun cperl-beautify-regexp-piece (b e embed) | |
| 6402 ;; b is before the starting delimiter, e before the ending | |
| 6403 ;; e should be a marker, may be changed, but remains "correct". | |
| 6404 (let (s c tmp (m (make-marker)) (m1 (make-marker)) c1 spaces inline code) | |
| 6405 (if (not embed) | |
| 6406 (goto-char (1+ b)) | |
| 6407 (goto-char b) | |
| 6408 (cond ((looking-at "(\\?\\\\#") ; badly commented (?#) | |
| 6409 (forward-char 2) | |
| 6410 (delete-char 1) | |
| 6411 (forward-char 1)) | |
| 6412 ((looking-at "(\\?[^a-zA-Z]") | |
| 6413 (forward-char 3)) | |
| 6414 ((looking-at "(\\?") ; (?i) | |
| 6415 (forward-char 2)) | |
| 6416 (t | |
| 6417 (forward-char 1)))) | |
| 6418 (setq c (if embed (current-indentation) (1- (current-column))) | |
| 6419 c1 (+ c (or cperl-regexp-indent-step cperl-indent-level))) | |
| 6420 (or (looking-at "[ \t]*[\n#]") | |
| 6421 (progn | |
| 6422 (insert "\n"))) | |
| 6423 (goto-char e) | |
| 6424 (beginning-of-line) | |
| 6425 (if (re-search-forward "[^ \t]" e t) | |
| 6426 (progn | |
| 6427 (goto-char e) | |
| 6428 (insert "\n") | |
| 6429 (indent-to-column c) | |
| 6430 (set-marker e (point)))) | |
| 6431 (goto-char b) | |
| 6432 (end-of-line 2) | |
| 6433 (while (< (point) (marker-position e)) | |
| 6434 (beginning-of-line) | |
| 6435 (setq s (point) | |
| 6436 inline t) | |
| 6437 (skip-chars-forward " \t") | |
| 6438 (delete-region s (point)) | |
| 6439 (indent-to-column c1) | |
| 6440 (while (and | |
| 6441 inline | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6442 (looking-at |
| 20323 | 6443 (concat "\\([a-zA-Z0-9]+[^*+{?]\\)" ; 1 word |
| 6444 "\\|" ; Embedded variable | |
| 6445 "\\$\\([a-zA-Z0-9_]+\\([[{]\\)?\\|[^\n \t)|]\\)" ; 2 3 | |
| 6446 "\\|" ; $ ^ | |
| 6447 "[$^]" | |
| 6448 "\\|" ; simple-code simple-code*? | |
| 6449 "\\(\\\\.\\|[^][()#|*+?\n]\\)\\([*+{?]\\??\\)?" ; 4 5 | |
| 6450 "\\|" ; Class | |
| 6451 "\\(\\[\\)" ; 6 | |
| 6452 "\\|" ; Grouping | |
| 6453 "\\((\\(\\?\\)?\\)" ; 7 8 | |
| 6454 "\\|" ; | | |
| 6455 "\\(|\\)" ; 9 | |
| 6456 ))) | |
| 6457 (goto-char (match-end 0)) | |
| 6458 (setq spaces t) | |
| 6459 (cond ((match-beginning 1) ; Alphanum word + junk | |
| 6460 (forward-char -1)) | |
| 6461 ((or (match-beginning 3) ; $ab[12] | |
| 6462 (and (match-beginning 5) ; X* X+ X{2,3} | |
| 6463 (eq (preceding-char) ?\{))) | |
| 6464 (forward-char -1) | |
| 6465 (forward-sexp 1)) | |
| 6466 ((match-beginning 6) ; [] | |
| 6467 (setq tmp (point)) | |
| 6468 (if (looking-at "\\^?\\]") | |
| 6469 (goto-char (match-end 0))) | |
| 6470 (or (re-search-forward "\\]\\([*+{?]\\)?" e t) | |
| 6471 (progn | |
| 6472 (goto-char (1- tmp)) | |
| 6473 (error "[]-group not terminated"))) | |
| 6474 (if (not (eq (preceding-char) ?\{)) nil | |
| 6475 (forward-char -1) | |
| 6476 (forward-sexp 1))) | |
| 6477 ((match-beginning 7) ; () | |
| 6478 (goto-char (match-beginning 0)) | |
| 6479 (or (eq (current-column) c1) | |
| 6480 (progn | |
| 6481 (insert "\n") | |
| 6482 (indent-to-column c1))) | |
| 6483 (setq tmp (point)) | |
| 6484 (forward-sexp 1) | |
| 6485 ;; (or (forward-sexp 1) | |
| 6486 ;; (progn | |
| 6487 ;; (goto-char tmp) | |
| 6488 ;; (error "()-group not terminated"))) | |
| 6489 (set-marker m (1- (point))) | |
| 6490 (set-marker m1 (point)) | |
| 6491 (cond | |
| 6492 ((not (match-beginning 8)) | |
| 6493 (cperl-beautify-regexp-piece tmp m t)) | |
| 6494 ((eq (char-after (+ 2 tmp)) ?\{) ; Code | |
| 6495 t) | |
| 6496 ((eq (char-after (+ 2 tmp)) ?\() ; Conditional | |
| 6497 (goto-char (+ 2 tmp)) | |
| 6498 (forward-sexp 1) | |
| 6499 (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
|
6500 ((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
|
6501 (goto-char (+ 3 tmp)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6502 (cperl-beautify-regexp-piece (point) m t)) |
| 20323 | 6503 (t |
| 6504 (cperl-beautify-regexp-piece tmp m t))) | |
| 6505 (goto-char m1) | |
| 6506 (cond ((looking-at "[*+?]\\??") | |
| 6507 (goto-char (match-end 0))) | |
| 6508 ((eq (following-char) ?\{) | |
| 6509 (forward-sexp 1) | |
| 6510 (if (eq (following-char) ?\?) | |
| 6511 (forward-char)))) | |
| 6512 (skip-chars-forward " \t") | |
| 6513 (setq spaces nil) | |
| 6514 (if (looking-at "[#\n]") | |
| 6515 (progn | |
| 6516 (or (eolp) (indent-for-comment)) | |
| 6517 (beginning-of-line 2)) | |
| 6518 (insert "\n")) | |
| 6519 (end-of-line) | |
| 6520 (setq inline nil)) | |
| 6521 ((match-beginning 9) ; | | |
| 6522 (forward-char -1) | |
| 6523 (setq tmp (point)) | |
| 6524 (beginning-of-line) | |
| 6525 (if (re-search-forward "[^ \t]" tmp t) | |
| 6526 (progn | |
| 6527 (goto-char tmp) | |
| 6528 (insert "\n")) | |
| 6529 ;; first at line | |
| 6530 (delete-region (point) tmp)) | |
| 6531 (indent-to-column c) | |
| 6532 (forward-char 1) | |
| 6533 (skip-chars-forward " \t") | |
| 6534 (setq spaces nil) | |
| 6535 (if (looking-at "[#\n]") | |
| 6536 (beginning-of-line 2) | |
| 6537 (insert "\n")) | |
| 6538 (end-of-line) | |
| 6539 (setq inline nil))) | |
| 6540 (or (looking-at "[ \t\n]") | |
| 6541 (not spaces) | |
| 6542 (insert " ")) | |
| 6543 (skip-chars-forward " \t")) | |
| 6544 (or (looking-at "[#\n]") | |
| 6545 (error "unknown code \"%s\" in a regexp" (buffer-substring (point) | |
| 6546 (1+ (point))))) | |
| 6547 (and inline (end-of-line 2))) | |
| 6548 ;; Special-case the last line of group | |
| 6549 (if (and (>= (point) (marker-position e)) | |
| 6550 (/= (current-indentation) c)) | |
| 6551 (progn | |
| 6552 (beginning-of-line) | |
| 6553 (setq s (point)) | |
| 6554 (skip-chars-forward " \t") | |
| 6555 (delete-region s (point)) | |
| 6556 (indent-to-column c))) | |
| 6557 )) | |
| 6558 | |
| 6559 (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
|
6560 ;; Returns position of the start |
| 20323 | 6561 (save-excursion |
| 6562 (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
|
6563 (error "I need to have a regexp marked!")) |
| 20323 | 6564 ;; Find the start |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6565 (if (looking-at "\\s|") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6566 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
|
6567 (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
|
6568 (forward-char 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6569 (re-search-backward "\\s|"))) ; Assume it is scanned already. |
| 20323 | 6570 ;;(forward-char 1) |
| 6571 (let ((b (point)) (e (make-marker)) have-x delim (c (current-column)) | |
| 6572 (sub-p (eq (preceding-char) ?s)) s) | |
| 6573 (forward-sexp 1) | |
| 6574 (set-marker e (1- (point))) | |
| 6575 (setq delim (preceding-char)) | |
| 6576 (if (and sub-p (eq delim (char-after (- (point) 2)))) | |
| 6577 (error "Possible s/blah// - do not know how to deal with")) | |
| 6578 (if sub-p (forward-sexp 1)) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6579 (if (looking-at "\\sw*x") |
| 20323 | 6580 (setq have-x t) |
| 6581 (insert "x")) | |
| 6582 ;; Protect fragile " ", "#" | |
| 6583 (if have-x nil | |
| 6584 (goto-char (1+ b)) | |
| 6585 (while (re-search-forward "\\(\\=\\|[^\\\\]\\)\\(\\\\\\\\\\)*[ \t\n#]" e t) ; Need to include (?#) too? | |
| 6586 (forward-char -1) | |
| 6587 (insert "\\") | |
| 6588 (forward-char 1))) | |
| 6589 b))) | |
| 6590 | |
| 6591 (defun cperl-beautify-regexp () | |
| 6592 "do it. (Experimental, may change semantics, recheck the result.) | |
| 6593 We suppose that the regexp is scanned already." | |
| 6594 (interactive) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6595 (goto-char (cperl-make-regexp-x)) |
| 20323 | 6596 (let ((b (point)) (e (make-marker))) |
| 6597 (forward-sexp 1) | |
| 6598 (set-marker e (1- (point))) | |
| 6599 (cperl-beautify-regexp-piece b e nil))) | |
| 6600 | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6601 (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
|
6602 "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
|
6603 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
|
6604 (interactive) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6605 (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
|
6606 (while (not done) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6607 (or (eq (following-char) ?\() |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6608 (search-backward "(" (1+ limit) t) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6609 (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
|
6610 (setq done |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6611 (save-excursion |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6612 (skip-chars-backward "\\") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6613 (looking-at "\\(\\\\\\\\\\)*("))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6614 (or done (forward-char -1))))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6615 |
| 20323 | 6616 (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
|
6617 "Find an enclosing group in regexp and contract it. |
| 20323 | 6618 \(Experimental, may change semantics, recheck the result.) |
| 6619 We suppose that the regexp is scanned already." | |
| 6620 (interactive) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6621 (cperl-regext-to-level-start) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6622 (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
|
6623 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6624 (set-marker e (1- (point))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6625 (goto-char b) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6626 (while (re-search-forward "\\(#\\)\\|\n" e t) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6627 (cond |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6628 ((match-beginning 1) ; #-comment |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6629 (or c (setq c (current-indentation))) |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6630 (beginning-of-line 2) ; Skip |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6631 (setq s (point)) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6632 (skip-chars-forward " \t") |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6633 (delete-region s (point)) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6634 (indent-to-column c)) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6635 (t |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6636 (delete-char -1) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6637 (just-one-space)))))) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6638 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6639 (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
|
6640 "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
|
6641 \(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
|
6642 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
|
6643 (interactive) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6644 (condition-case nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6645 (cperl-regext-to-level-start) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6646 (error ; We are outside outermost group |
|
37569
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6647 (goto-char (cperl-make-regexp-x)))) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6648 (let ((b (point)) (e (make-marker)) s c) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6649 (forward-sexp 1) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6650 (set-marker e (1- (point))) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6651 (goto-char (1+ b)) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6652 (while (re-search-forward "\\(\\\\\\\\\\)\\|(" e t) |
|
44748506225d
(cperl-font-lock-keywords)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36602
diff
changeset
|
6653 (cond |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6654 ((match-beginning 1) ; Skip |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6655 nil) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6656 (t ; Group |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6657 (cperl-contract-level)))))) |
| 20323 | 6658 |
| 6659 (defun cperl-beautify-level () | |
| 6660 "Find an enclosing group in regexp and beautify it. | |
| 6661 \(Experimental, may change semantics, recheck the result.) | |
| 6662 We suppose that the regexp is scanned already." | |
| 6663 (interactive) | |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6664 (cperl-regext-to-level-start) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6665 (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
|
6666 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6667 (set-marker e (1- (point))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6668 (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
|
6669 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6670 (defun cperl-invert-if-unless () |
|
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6671 "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
|
6672 (interactive) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6673 (or (looking-at "\\<") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6674 (forward-sexp -1)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6675 (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
|
6676 (let ((pos1 (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6677 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
|
6678 (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
|
6679 (forward-sexp 2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6680 (setq pos3 (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6681 (forward-sexp -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6682 (setq pos2 (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6683 (if (eq (following-char) ?\( ) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6684 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6685 (goto-char pos3) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6686 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6687 (setq pos5 (point)) |
|
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 (setq pos4 (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6690 ;; 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
|
6691 (if (and (eq (following-char) ?\{ ) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6692 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6693 (cperl-backward-to-noncomment pos3) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6694 (eq (preceding-char) ?\) ))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6695 (if (condition-case nil |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6696 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6697 (goto-char pos5) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6698 (forward-sexp 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6699 (forward-sexp -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6700 (looking-at "\\<els\\(e\\|if\\)\\>")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6701 (error nil)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6702 (error |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6703 "`%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
|
6704 (goto-char (1- pos5)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6705 (cperl-backward-to-noncomment pos4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6706 (if (eq (preceding-char) ?\;) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6707 (forward-char -1)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6708 (setq pos45 (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6709 (goto-char pos4) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6710 (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
|
6711 (setq p (match-beginning 0) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6712 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
|
6713 state (parse-partial-sexp pos4 p)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6714 (or (nth 3 state) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6715 (nth 4 state) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6716 (nth 5 state) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6717 (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
|
6718 (goto-char (match-end 0))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6719 ;; Finally got it |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6720 (goto-char (1+ pos4)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6721 (skip-chars-forward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6722 (setq s2 (buffer-substring (point) pos45)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6723 (goto-char pos45) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6724 (or (looking-at ";?[ \t\n]*}") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6725 (progn |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6726 (skip-chars-forward "; \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6727 (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
|
6728 (and (equal s2 "") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6729 (setq s2 "1")) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6730 (goto-char (1- pos3)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6731 (cperl-backward-to-noncomment pos2) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6732 (or (looking-at "[ \t\n]*)") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6733 (goto-char (1- pos3))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6734 (setq p (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6735 (goto-char (1+ pos2)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6736 (skip-chars-forward " \t\n") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6737 (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
|
6738 (delete-region pos4 pos5) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6739 (delete-region pos2 pos3) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6740 (goto-char pos1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6741 (insert s2 " ") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6742 (just-one-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6743 (forward-word 1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6744 (setq pos1 (point)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6745 (insert " " s1 ";") |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6746 (forward-char -1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6747 (delete-horizontal-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6748 (goto-char pos1) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6749 (just-one-space) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6750 (cperl-indent-line)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6751 (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
|
6752 (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
|
6753 (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
|
6754 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6755 ;;; By Anthony Foiani <afoiani@uswest.com> |
|
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6756 ;;; Getting help on modules in C-h f ? |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6757 ;;; This is a modified version of `man'. |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6758 ;;; Need to teach it how to lookup functions |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6759 (defun cperl-perldoc (word) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6760 "Run `perldoc' on WORD." |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6761 (interactive |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6762 (list (let* ((default-entry (cperl-word-at-point)) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6763 (input (read-string |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6764 (format "perldoc entry%s: " |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6765 (if (string= default-entry "") |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6766 "" |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6767 (format " (default %s)" default-entry)))))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6768 (if (string= input "") |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6769 (if (string= default-entry "") |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6770 (error "No perldoc args given") |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6771 default-entry) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6772 input)))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6773 (let* ((is-func (and |
|
22409
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6774 (string-match "^[a-z]+$" word) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6775 (string-match (concat "^" word "\\>") |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6776 (documentation-property |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6777 'cperl-short-docs |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6778 'variable-documentation)))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6779 (manual-program (if is-func "perldoc -f" "perldoc"))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6780 (require 'man) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6781 (Man-getpage-in-background word))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6782 |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6783 (defun cperl-perldoc-at-point () |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6784 "Run a `perldoc' on the word around point." |
|
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 (cperl-perldoc (cperl-word-at-point))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6787 |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6788 (defcustom pod2man-program "pod2man" |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6789 "*File name for `pod2man'." |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6790 :type 'file |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6791 :group 'cperl) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6792 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6793 ;;; 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
|
6794 (defun cperl-pod-to-manpage () |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6795 "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
|
6796 (interactive) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6797 (require 'man) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6798 (let* ((pod2man-args (concat buffer-file-name " | nroff -man ")) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6799 (bufname (concat "Man " buffer-file-name)) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6800 (buffer (generate-new-buffer bufname))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6801 (save-excursion |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6802 (set-buffer buffer) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6803 (let ((process-environment (copy-sequence process-environment))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6804 ;; Prevent any attempt to use display terminal fanciness. |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6805 (setenv "TERM" "dumb") |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6806 (set-process-sentinel |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6807 (start-process pod2man-program buffer "sh" "-c" |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6808 (format (cperl-pod2man-build-command) pod2man-args)) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6809 'Man-bgproc-sentinel))))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6810 |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6811 (defun cperl-pod2man-build-command () |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6812 "Builds the entire background manpage and cleaning command." |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6813 (let ((command (concat pod2man-program " %s 2>/dev/null")) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6814 (flist Man-filter-list)) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6815 (while (and flist (car flist)) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6816 (let ((pcom (car (car flist))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6817 (pargs (cdr (car flist)))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6818 (setq command |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6819 (concat command " | " pcom " " |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6820 (mapconcat '(lambda (phrase) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6821 (if (not (stringp phrase)) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6822 (error "Malformed Man-filter-list")) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6823 phrase) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6824 pargs " "))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6825 (setq flist (cdr flist)))) |
|
382becc612e1
(pod2man-program): Var reinstalled.
Richard M. Stallman <rms@gnu.org>
parents:
22398
diff
changeset
|
6826 command)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6827 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6828 (defun cperl-lazy-install ()) ; Avoid a warning |
| 20323 | 6829 |
| 6830 (if (fboundp 'run-with-idle-timer) | |
| 6831 (progn | |
| 6832 (defvar cperl-help-shown nil | |
| 6833 "Non-nil means that the help was already shown now.") | |
| 6834 | |
| 6835 (defvar cperl-lazy-installed nil | |
| 6836 "Non-nil means that the lazy-help handlers are installed now.") | |
| 6837 | |
| 6838 (defun cperl-lazy-install () | |
| 6839 (interactive) | |
| 6840 (make-variable-buffer-local 'cperl-help-shown) | |
| 6841 (if (and (cperl-val 'cperl-lazy-help-time) | |
| 6842 (not cperl-lazy-installed)) | |
| 6843 (progn | |
| 6844 (add-hook 'post-command-hook 'cperl-lazy-hook) | |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6845 (run-with-idle-timer |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6846 (cperl-val 'cperl-lazy-help-time 1000000 5) |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6847 t |
| 20323 | 6848 'cperl-get-help-defer) |
| 6849 (setq cperl-lazy-installed t)))) | |
| 6850 | |
| 6851 (defun cperl-lazy-unstall () | |
| 6852 (interactive) | |
| 6853 (remove-hook 'post-command-hook 'cperl-lazy-hook) | |
| 6854 (cancel-function-timers 'cperl-get-help-defer) | |
| 6855 (setq cperl-lazy-installed nil)) | |
| 6856 | |
| 6857 (defun cperl-lazy-hook () | |
| 6858 (setq cperl-help-shown nil)) | |
| 6859 | |
| 6860 (defun cperl-get-help-defer () | |
|
36602
4bcc2745d610
(cperl-msb-fix, cperl-get-help-defer):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36601
diff
changeset
|
6861 (when (memq major-mode '(perl-mode cperl-mode)) |
| 20323 | 6862 (let ((cperl-message-on-help-error nil) (cperl-help-from-timer t)) |
| 6863 (cperl-get-help) | |
| 6864 (setq cperl-help-shown t)))) | |
| 6865 (cperl-lazy-install))) | |
| 6866 | |
|
22293
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 ;;; Plug for wrong font-lock: |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6869 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6870 (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
|
6871 (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
|
6872 (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
|
6873 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
|
6874 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
|
6875 (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
|
6876 (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
|
6877 (set-buffer-modified-p nil)))) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6878 |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6879 (defvar cperl-d-l nil) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6880 (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
|
6881 ;; Some vars for debugging only |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6882 (let (start (dbg (point)) (iend end) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6883 (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
|
6884 (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
|
6885 (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
|
6886 (setq start (point)) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6887 (or cperl-syntax-done-to |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6888 (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
|
6889 (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
|
6890 (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
|
6891 t) ; Not debugged otherwise |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6892 ;; 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
|
6893 (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
|
6894 ;; Fontification without a change |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6895 (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
|
6896 (and (> end start) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6897 (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
|
6898 (cperl-find-pods-heres start end t nil t)) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6899 ;;(setq cperl-d-l (cons (format "Syntaxifying %s..%s from %s to %s\n" |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6900 ;; dbg end start cperl-syntax-done-to) |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6901 ;; cperl-d-l)) |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6902 ;;(let ((standard-output (get-buffer "*Messages*"))) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6903 ;;(princ (format "Syntaxifying %s..%s from %s to %s\n" |
|
22293
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6904 ;; 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
|
6905 (if (eq cperl-syntaxify-by-font-lock 'message) |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6906 (message "Syntaxified %s..%s from %s to %s(%s), state %s-->%s" |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6907 dbg iend |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6908 start end cperl-syntax-done-to |
|
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6909 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
|
6910 nil)) ; Do not iterate |
|
0544aa57ff27
(cperl-style-alist): New variable, since `c-mode'
Richard M. Stallman <rms@gnu.org>
parents:
20961
diff
changeset
|
6911 |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6912 (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
|
6913 (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
|
6914 (while (< pos end) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6915 (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
|
6916 (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
|
6917 (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
|
6918 (setq pos posend))) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6919 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
|
6920 |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6921 (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
|
6922 (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
|
6923 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
|
6924 (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
|
6925 (< 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
|
6926 (progn |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6927 (save-excursion |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6928 (goto-char from) |
|
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6929 (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
|
6930 |
|
32384
a18be74d62e5
(cperl-invalid-face): double-quote underline
Sam Steingold <sds@gnu.org>
parents:
31821
diff
changeset
|
6931 (defvar cperl-version |
|
36601
2a84d5417fbd
(cperl-mode): Set major-mode to cperl-mode
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35013
diff
changeset
|
6932 (let ((v "Revision: 4.23")) |
|
23977
abc9bc6aef59
Can use linear algorithm for indentation if Emacs supports it.
Richard M. Stallman <rms@gnu.org>
parents:
23270
diff
changeset
|
6933 (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
|
6934 (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
|
6935 "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
|
6936 |
| 20323 | 6937 (provide 'cperl-mode) |
| 6938 | |
| 6939 ;;; cperl-mode.el ends here |
