Mercurial > emacs
annotate lisp/progmodes/pascal.el @ 15104:f41d9619ffc4
[HAVE_CONFIG_H]: Only include config.h when defined.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 28 Apr 1996 19:09:03 +0000 |
parents | d392e3ffa1bb |
children | 307b7c77a5e5 |
rev | line source |
---|---|
13337 | 1 ;;; pascal.el --- major mode for editing pascal source in Emacs |
4934 | 2 |
13337 | 3 ;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc. |
4934 | 4 |
13337 | 5 ;; Author: Espen Skoglund (espensk@stud.cs.uit.no) |
6 ;; Keywords: languages | |
4934 | 7 |
13337 | 8 ;; This file is part of GNU Emacs. |
4934 | 9 |
14183 | 10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
13337 | 11 ;; it under the terms of the GNU General Public License as published by |
14183 | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
13 ;; any later version. | |
4934 | 14 |
14183 | 15 ;; GNU Emacs is distributed in the hope that it will be useful, |
13337 | 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
4934 | 19 |
13337 | 20 ;; You should have received a copy of the GNU General Public License |
14183 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to |
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
4934 | 24 |
25 ;;; Commentary: | |
26 | |
14169 | 27 ;; USAGE |
28 ;; ===== | |
5723 | 29 |
14169 | 30 ;; Emacs should enter Pascal mode when you find a Pascal source file. |
31 ;; When you have entered Pascal mode, you may get more info by pressing | |
32 ;; C-h m. You may also get online help describing various functions by: | |
33 ;; C-h f <Name of function you want described> | |
5723 | 34 |
14169 | 35 ;; If you want to customize Pascal mode to fit you better, you may add |
36 ;; these lines (the values of the variables presented here are the defaults): | |
37 ;; | |
38 ;; ;; User customization for Pascal mode | |
39 ;; (setq pascal-indent-level 3 | |
40 ;; pascal-case-indent 2 | |
41 ;; pascal-auto-newline nil | |
42 ;; pascal-tab-always-indent t | |
43 ;; pascal-auto-endcomments t | |
44 ;; pascal-auto-lineup '(all) | |
45 ;; pascal-toggle-completions nil | |
46 ;; pascal-type-keywords '("array" "file" "packed" "char" | |
47 ;; "integer" "real" "string" "record") | |
48 ;; pascal-start-keywords '("begin" "end" "function" "procedure" | |
49 ;; "repeat" "until" "while" "read" "readln" | |
50 ;; "reset" "rewrite" "write" "writeln") | |
51 ;; pascal-separator-keywords '("downto" "else" "mod" "div" "then")) | |
4934 | 52 |
14169 | 53 ;; KNOWN BUGS / BUGREPORTS |
54 ;; ======================= | |
55 ;; As far as I know, there are no bugs in the current version of this | |
56 ;; package. This may not be true however, since I never use this mode | |
57 ;; myself and therefore would never notice them anyway. If you do | |
58 ;; find any bugs, you may submit them to: espensk@stud.cs.uit.no | |
59 ;; as well as to bug-gnu-emacs@prep.ai.mit.edu. | |
5723 | 60 |
61 ;;; Code: | |
4934 | 62 |
63 (defvar pascal-mode-abbrev-table nil | |
64 "Abbrev table in use in Pascal-mode buffers.") | |
65 (define-abbrev-table 'pascal-mode-abbrev-table ()) | |
66 | |
67 (defvar pascal-mode-map () | |
68 "Keymap used in Pascal mode.") | |
5723 | 69 (if pascal-mode-map |
70 () | |
71 (setq pascal-mode-map (make-sparse-keymap)) | |
72 (define-key pascal-mode-map ";" 'electric-pascal-semi-or-dot) | |
73 (define-key pascal-mode-map "." 'electric-pascal-semi-or-dot) | |
74 (define-key pascal-mode-map ":" 'electric-pascal-colon) | |
75 (define-key pascal-mode-map "=" 'electric-pascal-equal) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
76 (define-key pascal-mode-map "#" 'electric-pascal-hash) |
5723 | 77 (define-key pascal-mode-map "\r" 'electric-pascal-terminate-line) |
78 (define-key pascal-mode-map "\t" 'electric-pascal-tab) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
79 (define-key pascal-mode-map "\M-\t" 'pascal-complete-word) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
80 (define-key pascal-mode-map "\M-?" 'pascal-show-completions) |
5723 | 81 (define-key pascal-mode-map "\177" 'backward-delete-char-untabify) |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
82 (define-key pascal-mode-map "\M-\C-h" 'pascal-mark-defun) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
83 (define-key pascal-mode-map "\C-c\C-b" 'pascal-insert-block) |
5723 | 84 (define-key pascal-mode-map "\M-*" 'pascal-star-comment) |
85 (define-key pascal-mode-map "\C-c\C-c" 'pascal-comment-area) | |
86 (define-key pascal-mode-map "\C-c\C-u" 'pascal-uncomment-area) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
87 (define-key pascal-mode-map "\M-\C-a" 'pascal-beg-of-defun) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
88 (define-key pascal-mode-map "\M-\C-e" 'pascal-end-of-defun) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
89 (define-key pascal-mode-map "\C-c\C-d" 'pascal-goto-defun) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
90 (define-key pascal-mode-map "\C-c\C-o" 'pascal-outline) |
4934 | 91 ;;; A command to change the whole buffer won't be used terribly |
92 ;;; often, so no need for a key binding. | |
5723 | 93 ; (define-key pascal-mode-map "\C-cd" 'pascal-downcase-keywords) |
94 ; (define-key pascal-mode-map "\C-cu" 'pascal-upcase-keywords) | |
95 ; (define-key pascal-mode-map "\C-cc" 'pascal-capitalize-keywords) | |
96 ) | |
12689
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
97 |
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
98 (defvar pascal-imenu-generic-expression |
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
99 '("^[ \t]*\\(function\\|procedure\\)[ \t\n]+\\([a-zA-Z0-9_.:]+\\)" . (2)) |
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
100 "Imenu expression for Pascal-mode. See `imenu-generic-expression'.") |
5723 | 101 |
102 (defvar pascal-keywords | |
103 '("and" "array" "begin" "case" "const" "div" "do" "downto" "else" "end" | |
104 "file" "for" "function" "goto" "if" "in" "label" "mod" "nil" "not" "of" | |
105 "or" "packed" "procedure" "program" "record" "repeat" "set" "then" "to" | |
106 "type" "until" "var" "while" "with" | |
107 ;; The following are not standard in pascal, but widely used. | |
108 "get" "put" "input" "output" "read" "readln" "reset" "rewrite" "write" | |
109 "writeln")) | |
4934 | 110 |
5723 | 111 ;;; |
112 ;;; Regular expressions used to calculate indent, etc. | |
113 ;;; | |
114 (defconst pascal-symbol-re "\\<[a-zA-Z_][a-zA-Z_0-9.]*\\>") | |
115 (defconst pascal-beg-block-re "\\<\\(begin\\|case\\|record\\|repeat\\)\\>") | |
116 (defconst pascal-end-block-re "\\<\\(end\\|until\\)\\>") | |
117 (defconst pascal-declaration-re "\\<\\(const\\|label\\|type\\|var\\)\\>") | |
118 (defconst pascal-defun-re "\\<\\(function\\|procedure\\|program\\)\\>") | |
6123
3c66892f0083
(pascal-sub-block-re): Recognize for and with.
Richard M. Stallman <rms@gnu.org>
parents:
5723
diff
changeset
|
119 (defconst pascal-sub-block-re "\\<\\(if\\|else\\|for\\|while\\|with\\)\\>") |
6153
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
120 (defconst pascal-noindent-re "\\<\\(begin\\|end\\|until\\|else\\)\\>") |
5723 | 121 (defconst pascal-nosemi-re "\\<\\(begin\\|repeat\\|then\\|do\\|else\\)\\>") |
122 (defconst pascal-autoindent-lines-re | |
123 "\\<\\(label\\|var\\|type\\|const\\|until\\|end\\|begin\\|repeat\\|else\\)\\>") | |
124 | |
125 ;;; Strings used to mark beginning and end of excluded text | |
126 (defconst pascal-exclude-str-start "{-----\\/----- EXCLUDED -----\\/-----") | |
127 (defconst pascal-exclude-str-end " -----/\\----- EXCLUDED -----/\\-----}") | |
4934 | 128 |
129 (defvar pascal-mode-syntax-table nil | |
130 "Syntax table in use in Pascal-mode buffers.") | |
131 | |
132 (if pascal-mode-syntax-table | |
133 () | |
134 (setq pascal-mode-syntax-table (make-syntax-table)) | |
11104
ef10b4684bb5
(pascal-mode-syntax-table): Give \ punctuation syntax.
Richard M. Stallman <rms@gnu.org>
parents:
10534
diff
changeset
|
135 (modify-syntax-entry ?\\ "." pascal-mode-syntax-table) |
5723 | 136 (modify-syntax-entry ?( "()1" pascal-mode-syntax-table) |
137 (modify-syntax-entry ?) ")(4" pascal-mode-syntax-table) | |
4934 | 138 (modify-syntax-entry ?* ". 23" pascal-mode-syntax-table) |
5723 | 139 (modify-syntax-entry ?{ "<" pascal-mode-syntax-table) |
140 (modify-syntax-entry ?} ">" pascal-mode-syntax-table) | |
141 (modify-syntax-entry ?+ "." pascal-mode-syntax-table) | |
142 (modify-syntax-entry ?- "." pascal-mode-syntax-table) | |
143 (modify-syntax-entry ?= "." pascal-mode-syntax-table) | |
144 (modify-syntax-entry ?% "." pascal-mode-syntax-table) | |
145 (modify-syntax-entry ?< "." pascal-mode-syntax-table) | |
146 (modify-syntax-entry ?> "." pascal-mode-syntax-table) | |
147 (modify-syntax-entry ?& "." pascal-mode-syntax-table) | |
148 (modify-syntax-entry ?| "." pascal-mode-syntax-table) | |
149 (modify-syntax-entry ?_ "w" pascal-mode-syntax-table) | |
150 (modify-syntax-entry ?\' "\"" pascal-mode-syntax-table)) | |
4934 | 151 |
9387
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
152 (defvar pascal-font-lock-keywords |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
153 (list |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
154 '("^[ \t]*\\(function\\|pro\\(cedure\\|gram\\)\\)\\>[ \t]*\\(\\sw+\\)?" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
155 (1 font-lock-keyword-face) (3 font-lock-function-name-face nil t)) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
156 ; ("type" "const" "real" "integer" "char" "boolean" "var" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
157 ; "record" "array" "file") |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
158 (cons (concat "\\<\\(array\\|boolean\\|c\\(har\\|onst\\)\\|file\\|" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
159 "integer\\|re\\(al\\|cord\\)\\|type\\|var\\)\\>") |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
160 'font-lock-type-face) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
161 '("\\<\\(label\\|external\\|forward\\)\\>" . font-lock-reference-face) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
162 '("\\<\\([0-9]+\\)[ \t]*:" 1 font-lock-reference-face) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
163 ; ("of" "to" "for" "if" "then" "else" "case" "while" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
164 ; "do" "until" "and" "or" "not" "in" "with" "repeat" "begin" "end") |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
165 (concat "\\<\\(" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
166 "and\\|begin\\|case\\|do\\|e\\(lse\\|nd\\)\\|for\\|i[fn]\\|" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
167 "not\\|o[fr]\\|repeat\\|t\\(hen\\|o\\)\\|until\\|w\\(hile\\|ith\\)" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
168 "\\)\\>") |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
169 '("\\<\\(goto\\)\\>[ \t]*\\([0-9]+\\)?" |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
170 (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
171 "Additional expressions to highlight in Pascal mode.") |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
172 |
5723 | 173 (defvar pascal-indent-level 3 |
4934 | 174 "*Indentation of Pascal statements with respect to containing block.") |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
175 |
5723 | 176 (defvar pascal-case-indent 2 |
177 "*Indentation for case statements.") | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
178 |
5723 | 179 (defvar pascal-auto-newline nil |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
180 "*Non-nil means automatically newline after semicolons and the punctuation |
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
181 mark after an end.") |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
182 |
5723 | 183 (defvar pascal-tab-always-indent t |
184 "*Non-nil means TAB in Pascal mode should always reindent the current line, | |
185 regardless of where in the line point is when the TAB command is used.") | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
186 |
5723 | 187 (defvar pascal-auto-endcomments t |
188 "*Non-nil means a comment { ... } is set after the ends which ends cases and | |
189 functions. The name of the function or case will be set between the braces.") | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
190 |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
191 (defvar pascal-auto-lineup '(all) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
192 "*List of contexts where auto lineup of :'s or ='s should be done. |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
193 Elements can be of type: 'paramlist', 'declaration' or 'case', which will |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
194 do auto lineup in parameterlist, declarations or case-statements |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
195 respectively. The word 'all' will do all lineups. '(case paramlist) for |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
196 instance will do lineup in case-statements and parameterlist, while '(all) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
197 will do all lineups.") |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
198 |
5723 | 199 (defvar pascal-toggle-completions nil |
12882
83fd8f17cfe4
(pascal-mode): Set comment-start.
Richard M. Stallman <rms@gnu.org>
parents:
12689
diff
changeset
|
200 "*Non-nil means \\<pascal-mode-map>\\[pascal-complete-word] should try all possible completions one by one. |
83fd8f17cfe4
(pascal-mode): Set comment-start.
Richard M. Stallman <rms@gnu.org>
parents:
12689
diff
changeset
|
201 Repeated use of \\[pascal-complete-word] will show you all of them. |
83fd8f17cfe4
(pascal-mode): Set comment-start.
Richard M. Stallman <rms@gnu.org>
parents:
12689
diff
changeset
|
202 Normally, when there is more than one possible completion, |
83fd8f17cfe4
(pascal-mode): Set comment-start.
Richard M. Stallman <rms@gnu.org>
parents:
12689
diff
changeset
|
203 it displays a list of all possible completions.") |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
204 |
5723 | 205 (defvar pascal-type-keywords |
206 '("array" "file" "packed" "char" "integer" "real" "string" "record") | |
207 "*Keywords for types used when completing a word in a declaration or parmlist. | |
208 \(eg. integer, real, char.) The types defined within the Pascal program | |
209 will be completed runtime, and should not be added to this list.") | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
210 |
5723 | 211 (defvar pascal-start-keywords |
212 '("begin" "end" "function" "procedure" "repeat" "until" "while" | |
213 "read" "readln" "reset" "rewrite" "write" "writeln") | |
214 "*Keywords to complete when standing at the first word of a statement. | |
215 \(eg. begin, repeat, until, readln.) | |
216 The procedures and variables defined within the Pascal program | |
217 will be completed runtime and should not be added to this list.") | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
218 |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
219 (defvar pascal-separator-keywords |
5723 | 220 '("downto" "else" "mod" "div" "then") |
221 "*Keywords to complete when NOT standing at the first word of a statement. | |
222 \(eg. downto, else, mod, then.) | |
223 Variables and function names defined within the | |
224 Pascal program are completed runtime and should not be added to this list.") | |
225 | |
226 ;;; | |
227 ;;; Macros | |
228 ;;; | |
229 | |
230 (defsubst pascal-get-beg-of-line (&optional arg) | |
231 (save-excursion | |
232 (beginning-of-line arg) | |
233 (point))) | |
234 | |
235 (defsubst pascal-get-end-of-line (&optional arg) | |
236 (save-excursion | |
237 (end-of-line arg) | |
238 (point))) | |
239 | |
240 (defun pascal-declaration-end () | |
241 (let ((nest 1)) | |
242 (while (and (> nest 0) | |
243 (re-search-forward | |
244 "[:=]\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)" | |
245 (save-excursion (end-of-line 2) (point)) t)) | |
246 (cond ((match-beginning 1) (setq nest (1+ nest))) | |
14776
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
247 ((match-beginning 2) (setq nest (1- nest))) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
248 ((looking-at "[^(\n]+)") (setq nest 0)))))) |
5723 | 249 |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
250 |
5723 | 251 (defun pascal-declaration-beg () |
252 (let ((nest 1)) | |
253 (while (and (> nest 0) | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
254 (re-search-backward "[:=]\\|\\<\\(type\\|var\\|label\\|const\\)\\>\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)" (pascal-get-beg-of-line 0) t)) |
5723 | 255 (cond ((match-beginning 1) (setq nest 0)) |
256 ((match-beginning 2) (setq nest (1- nest))) | |
257 ((match-beginning 3) (setq nest (1+ nest))))) | |
258 (= nest 0))) | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
259 |
5723 | 260 |
261 (defsubst pascal-within-string () | |
262 (save-excursion | |
263 (nth 3 (parse-partial-sexp (pascal-get-beg-of-line) (point))))) | |
264 | |
4934 | 265 |
266 ;;;###autoload | |
267 (defun pascal-mode () | |
5723 | 268 "Major mode for editing Pascal code. \\<pascal-mode-map> |
269 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back. | |
270 | |
271 \\[pascal-complete-word] completes the word around current point with respect \ | |
272 to position in code | |
273 \\[pascal-show-completions] shows all possible completions at this point. | |
274 | |
275 Other useful functions are: | |
276 | |
277 \\[pascal-mark-defun]\t- Mark function. | |
278 \\[pascal-insert-block]\t- insert begin ... end; | |
279 \\[pascal-star-comment]\t- insert (* ... *) | |
280 \\[pascal-comment-area]\t- Put marked area in a comment, fixing nested comments. | |
281 \\[pascal-uncomment-area]\t- Uncomment an area commented with \ | |
282 \\[pascal-comment-area]. | |
283 \\[pascal-beg-of-defun]\t- Move to beginning of current function. | |
284 \\[pascal-end-of-defun]\t- Move to end of current function. | |
285 \\[pascal-goto-defun]\t- Goto function prompted for in the minibuffer. | |
286 \\[pascal-outline]\t- Enter pascal-outline-mode (see also pascal-outline). | |
287 | |
288 Variables controlling indentation/edit style: | |
289 | |
290 pascal-indent-level (default 3) | |
291 Indentation of Pascal statements with respect to containing block. | |
292 pascal-case-indent (default 2) | |
293 Indentation for case statements. | |
294 pascal-auto-newline (default nil) | |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
295 Non-nil means automatically newline after semicolons and the punctuation |
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
296 mark after an end. |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
297 pascal-tab-always-indent (default t) |
4934 | 298 Non-nil means TAB in Pascal mode should always reindent the current line, |
299 regardless of where in the line point is when the TAB command is used. | |
5723 | 300 pascal-auto-endcomments (default t) |
301 Non-nil means a comment { ... } is set after the ends which ends cases and | |
302 functions. The name of the function or case will be set between the braces. | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
303 pascal-auto-lineup (default t) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
304 List of contexts where auto lineup of :'s or ='s hould be done. |
4934 | 305 |
5723 | 306 See also the user variables pascal-type-keywords, pascal-start-keywords and |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
307 pascal-separator-keywords. |
4934 | 308 |
309 Turning on Pascal mode calls the value of the variable pascal-mode-hook with | |
310 no args, if that value is non-nil." | |
311 (interactive) | |
312 (kill-all-local-variables) | |
313 (use-local-map pascal-mode-map) | |
314 (setq major-mode 'pascal-mode) | |
315 (setq mode-name "Pascal") | |
316 (setq local-abbrev-table pascal-mode-abbrev-table) | |
317 (set-syntax-table pascal-mode-syntax-table) | |
318 (make-local-variable 'indent-line-function) | |
319 (setq indent-line-function 'pascal-indent-line) | |
5723 | 320 (setq comment-indent-function 'pascal-indent-comment) |
4934 | 321 (make-local-variable 'parse-sexp-ignore-comments) |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
322 (setq parse-sexp-ignore-comments nil) |
4934 | 323 (make-local-variable 'case-fold-search) |
324 (setq case-fold-search t) | |
12882
83fd8f17cfe4
(pascal-mode): Set comment-start.
Richard M. Stallman <rms@gnu.org>
parents:
12689
diff
changeset
|
325 (make-local-variable 'comment-start) |
83fd8f17cfe4
(pascal-mode): Set comment-start.
Richard M. Stallman <rms@gnu.org>
parents:
12689
diff
changeset
|
326 (setq comment-start "{") |
9387
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
327 (make-local-variable 'comment-start-skip) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
328 (setq comment-start-skip "(\\*+ *\\|{ *") |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
329 (make-local-variable 'comment-end) |
ccd27c6ef48d
(pascal-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
8689
diff
changeset
|
330 (setq comment-end "}") |
12689
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
331 ;; Font lock support |
9479
ef7c2b4dfee4
* pascal.el: (pascal-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9387
diff
changeset
|
332 (make-local-variable 'font-lock-defaults) |
ef7c2b4dfee4
* pascal.el: (pascal-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9387
diff
changeset
|
333 (setq font-lock-defaults '(pascal-font-lock-keywords nil t)) |
12689
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
334 ;; Imenu support |
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
335 (make-local-variable 'imenu-generic-expression) |
83ef0f002ecf
(pascal-mode): Added imenu support.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
336 (setq imenu-generic-expression pascal-imenu-generic-expression) |
4934 | 337 (run-hooks 'pascal-mode-hook)) |
338 | |
5723 | 339 |
340 | |
4934 | 341 ;;; |
342 ;;; Electric functions | |
343 ;;; | |
344 (defun electric-pascal-terminate-line () | |
345 "Terminate line and indent next line." | |
346 (interactive) | |
5723 | 347 ;; First, check if current line should be indented |
4934 | 348 (save-excursion |
349 (beginning-of-line) | |
350 (skip-chars-forward " \t") | |
5723 | 351 (if (looking-at pascal-autoindent-lines-re) |
4934 | 352 (pascal-indent-line))) |
5723 | 353 (delete-horizontal-space) ; Removes trailing whitespaces |
4934 | 354 (newline) |
5723 | 355 ;; Indent next line |
4934 | 356 (pascal-indent-line) |
357 ;; Maybe we should set some endcomments | |
358 (if pascal-auto-endcomments | |
359 (pascal-set-auto-comments)) | |
360 ;; Check if we shall indent inside comment | |
361 (let ((setstar nil)) | |
362 (save-excursion | |
363 (forward-line -1) | |
364 (skip-chars-forward " \t") | |
5723 | 365 (cond ((looking-at "\\*[ \t]+)") |
4934 | 366 ;; Delete region between `*' and `)' if there is only whitespaces. |
367 (forward-char 1) | |
5723 | 368 (delete-horizontal-space)) |
4934 | 369 ((and (looking-at "(\\*\\|\\*[^)]") |
370 (not (save-excursion | |
371 (search-forward "*)" (pascal-get-end-of-line) t)))) | |
372 (setq setstar t)))) | |
373 ;; If last line was a star comment line then this one shall be too. | |
5723 | 374 (if (null setstar) |
375 (pascal-indent-line) | |
376 (insert "* ")))) | |
4934 | 377 |
378 | |
5723 | 379 (defun electric-pascal-semi-or-dot () |
380 "Insert `;' or `.' character and reindent the line." | |
4934 | 381 (interactive) |
382 (insert last-command-char) | |
383 (save-excursion | |
384 (beginning-of-line) | |
385 (pascal-indent-line)) | |
386 (if pascal-auto-newline | |
387 (electric-pascal-terminate-line))) | |
388 | |
389 (defun electric-pascal-colon () | |
5723 | 390 "Insert `:' and do all indentions except line indent on this line." |
4934 | 391 (interactive) |
392 (insert last-command-char) | |
5723 | 393 ;; Do nothing if within string. |
394 (if (pascal-within-string) | |
395 () | |
396 (save-excursion | |
397 (beginning-of-line) | |
398 (pascal-indent-line)) | |
399 (let ((pascal-tab-always-indent nil)) | |
400 (pascal-indent-command)))) | |
401 | |
4934 | 402 (defun electric-pascal-equal () |
5723 | 403 "Insert `=', and do indention if within type declaration." |
4934 | 404 (interactive) |
405 (insert last-command-char) | |
5723 | 406 (if (eq (car (pascal-calculate-indent)) 'declaration) |
4934 | 407 (let ((pascal-tab-always-indent nil)) |
408 (pascal-indent-command)))) | |
409 | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
410 (defun electric-pascal-hash () |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
411 "Insert `#', and indent to column 0 if this is a CPP directive." |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
412 (interactive) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
413 (insert last-command-char) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
414 (if (save-excursion (beginning-of-line) (looking-at "^[ \t]*#")) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
415 (save-excursion (beginning-of-line) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
416 (delete-horizontal-space)))) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
417 |
4934 | 418 (defun electric-pascal-tab () |
5723 | 419 "Function called when TAB is pressed in Pascal mode." |
4934 | 420 (interactive) |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
421 ;; Do nothing if within a string or in a CPP directive. |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
422 (if (or (pascal-within-string) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
423 (and (not (bolp)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
424 (save-excursion (beginning-of-line) (eq (following-char) ?#)))) |
5723 | 425 (insert "\t") |
426 ;; If pascal-tab-always-indent, indent the beginning of the line. | |
427 (if pascal-tab-always-indent | |
428 (save-excursion | |
429 (beginning-of-line) | |
430 (pascal-indent-line)) | |
14776
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
431 (if (save-excursion |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
432 (skip-chars-backward " \t") |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
433 (bolp)) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
434 (pascal-indent-line) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
435 (insert "\t"))) |
5723 | 436 (pascal-indent-command))) |
437 | |
438 | |
4934 | 439 |
440 ;;; | |
441 ;;; Interactive functions | |
442 ;;; | |
443 (defun pascal-insert-block () | |
5723 | 444 "Insert Pascal begin ... end; block in the code with right indentation." |
4934 | 445 (interactive) |
446 (pascal-indent-line) | |
447 (insert "begin") | |
448 (electric-pascal-terminate-line) | |
449 (save-excursion | |
450 (electric-pascal-terminate-line) | |
451 (insert "end;") | |
452 (beginning-of-line) | |
453 (pascal-indent-line))) | |
454 | |
455 (defun pascal-star-comment () | |
5723 | 456 "Insert Pascal star comment at point." |
4934 | 457 (interactive) |
458 (pascal-indent-line) | |
459 (insert "(*") | |
460 (electric-pascal-terminate-line) | |
461 (save-excursion | |
462 (electric-pascal-terminate-line) | |
5723 | 463 (delete-horizontal-space) |
464 (insert ")")) | |
465 (insert " ")) | |
4934 | 466 |
5723 | 467 (defun pascal-mark-defun () |
4934 | 468 "Mark the current pascal function (or procedure). |
5723 | 469 This puts the mark at the end, and point at the beginning." |
4934 | 470 (interactive) |
471 (push-mark (point)) | |
5723 | 472 (pascal-end-of-defun) |
4934 | 473 (push-mark (point)) |
5723 | 474 (pascal-beg-of-defun) |
475 (if (fboundp 'zmacs-activate-region) | |
476 (zmacs-activate-region))) | |
4934 | 477 |
478 (defun pascal-comment-area (start end) | |
5723 | 479 "Put the region into a Pascal comment. |
480 The comments that are in this area are \"deformed\": | |
481 `*)' becomes `!(*' and `}' becomes `!{'. | |
482 These deformed comments are returned to normal if you use | |
483 \\[pascal-uncomment-area] to undo the commenting. | |
484 | |
485 The commented area starts with `pascal-exclude-str-start', and ends with | |
486 `pascal-include-str-end'. But if you change these variables, | |
487 \\[pascal-uncomment-area] won't recognize the comments." | |
4934 | 488 (interactive "r") |
489 (save-excursion | |
490 ;; Insert start and endcomments | |
491 (goto-char end) | |
492 (if (and (save-excursion (skip-chars-forward " \t") (eolp)) | |
493 (not (save-excursion (skip-chars-backward " \t") (bolp)))) | |
494 (forward-line 1) | |
495 (beginning-of-line)) | |
5723 | 496 (insert pascal-exclude-str-end) |
4934 | 497 (setq end (point)) |
498 (newline) | |
499 (goto-char start) | |
500 (beginning-of-line) | |
5723 | 501 (insert pascal-exclude-str-start) |
4934 | 502 (newline) |
503 ;; Replace end-comments within commented area | |
504 (goto-char end) | |
505 (save-excursion | |
506 (while (re-search-backward "\\*)" start t) | |
507 (replace-match "!(*" t t))) | |
508 (save-excursion | |
509 (while (re-search-backward "}" start t) | |
510 (replace-match "!{" t t))))) | |
511 | |
512 (defun pascal-uncomment-area () | |
5723 | 513 "Uncomment a commented area; change deformed comments back to normal. |
514 This command does nothing if the pointer is not in a commented | |
4934 | 515 area. See also `pascal-comment-area'." |
516 (interactive) | |
517 (save-excursion | |
518 (let ((start (point)) | |
519 (end (point))) | |
520 ;; Find the boundaries of the comment | |
521 (save-excursion | |
5723 | 522 (setq start (progn (search-backward pascal-exclude-str-start nil t) |
4934 | 523 (point))) |
5723 | 524 (setq end (progn (search-forward pascal-exclude-str-end nil t) |
4934 | 525 (point)))) |
526 ;; Check if we're really inside a comment | |
527 (if (or (equal start (point)) (<= end (point))) | |
528 (message "Not standing within commented area.") | |
529 (progn | |
530 ;; Remove endcomment | |
531 (goto-char end) | |
532 (beginning-of-line) | |
533 (let ((pos (point))) | |
534 (end-of-line) | |
535 (delete-region pos (1+ (point)))) | |
536 ;; Change comments back to normal | |
537 (save-excursion | |
538 (while (re-search-backward "!{" start t) | |
539 (replace-match "}" t t))) | |
540 (save-excursion | |
541 (while (re-search-backward "!(\\*" start t) | |
542 (replace-match "*)" t t))) | |
543 ;; Remove startcomment | |
544 (goto-char start) | |
545 (beginning-of-line) | |
546 (let ((pos (point))) | |
547 (end-of-line) | |
548 (delete-region pos (1+ (point))))))))) | |
549 | |
5723 | 550 (defun pascal-beg-of-defun () |
551 "Move backward to the beginning of the current function or procedure." | |
4934 | 552 (interactive) |
5723 | 553 (catch 'found |
554 (if (not (looking-at (concat "\\s \\|\\s)\\|" pascal-defun-re))) | |
555 (forward-sexp 1)) | |
556 (let ((nest 0) (max -1) (func 0) | |
557 (reg (concat pascal-beg-block-re "\\|" | |
558 pascal-end-block-re "\\|" | |
559 pascal-defun-re))) | |
560 (while (re-search-backward reg nil 'move) | |
561 (cond ((let ((state (save-excursion | |
562 (parse-partial-sexp (point-min) (point))))) | |
563 (or (nth 3 state) (nth 4 state))) ; Inside string or comment | |
564 ()) | |
565 ((match-end 1) ; begin|case|record|repeat | |
566 (if (and (looking-at "\\<record\\>") (>= max 0)) | |
567 (setq func (1- func))) | |
568 (setq nest (1+ nest) | |
569 max (max nest max))) | |
570 ((match-end 2) ; end|until | |
571 (if (and (= nest max) (>= max 0)) | |
572 (setq func (1+ func))) | |
573 (setq nest (1- nest))) | |
574 ((match-end 3) ; function|procedure | |
575 (if (= 0 func) | |
576 (throw 'found t) | |
577 (setq func (1- func))))))) | |
578 nil)) | |
4934 | 579 |
5723 | 580 (defun pascal-end-of-defun () |
581 "Move forward to the end of the current function or procedure." | |
4934 | 582 (interactive) |
5723 | 583 (if (looking-at "\\s ") |
584 (forward-sexp 1)) | |
585 (if (not (looking-at pascal-defun-re)) | |
586 (pascal-beg-of-defun)) | |
587 (forward-char 1) | |
588 (let ((nest 0) (func 1) | |
589 (reg (concat pascal-beg-block-re "\\|" | |
590 pascal-end-block-re "\\|" | |
591 pascal-defun-re))) | |
592 (while (and (/= func 0) | |
593 (re-search-forward reg nil 'move)) | |
594 (cond ((let ((state (save-excursion | |
595 (parse-partial-sexp (point-min) (point))))) | |
596 (or (nth 3 state) (nth 4 state))) ; Inside string or comment | |
597 ()) | |
598 ((match-end 1) | |
599 (setq nest (1+ nest)) | |
600 (if (save-excursion | |
601 (goto-char (match-beginning 0)) | |
602 (looking-at "\\<record\\>")) | |
603 (setq func (1+ func)))) | |
604 ((match-end 2) | |
605 (setq nest (1- nest)) | |
606 (if (= nest 0) | |
607 (setq func (1- func)))) | |
608 ((match-end 3) | |
609 (setq func (1+ func)))))) | |
610 (forward-line 1)) | |
4934 | 611 |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
612 (defun pascal-end-of-statement () |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
613 "Move forward to end of current statement." |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
614 (interactive) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
615 (let ((nest 0) pos |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
616 (regexp (concat "\\(" pascal-beg-block-re "\\)\\|\\(" |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
617 pascal-end-block-re "\\)"))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
618 (if (not (looking-at "[ \t\n]")) (forward-sexp -1)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
619 (or (looking-at pascal-beg-block-re) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
620 ;; Skip to end of statement |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
621 (setq pos (catch 'found |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
622 (while t |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
623 (forward-sexp 1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
624 (cond ((looking-at "[ \t]*;") |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
625 (skip-chars-forward "^;") |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
626 (forward-char 1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
627 (throw 'found (point))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
628 ((save-excursion |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
629 (forward-sexp -1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
630 (looking-at pascal-beg-block-re)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
631 (goto-char (match-beginning 0)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
632 (throw 'found nil)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
633 ((eobp) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
634 (throw 'found (point)))))))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
635 (if (not pos) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
636 ;; Skip a whole block |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
637 (catch 'found |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
638 (while t |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
639 (re-search-forward regexp nil 'move) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
640 (setq nest (if (match-end 1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
641 (1+ nest) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
642 (1- nest))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
643 (cond ((eobp) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
644 (throw 'found (point))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
645 ((= 0 nest) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
646 (throw 'found (pascal-end-of-statement)))))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
647 pos))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
648 |
4934 | 649 (defun pascal-downcase-keywords () |
5723 | 650 "Downcase all Pascal keywords in the buffer." |
4934 | 651 (interactive) |
652 (pascal-change-keywords 'downcase-word)) | |
653 | |
654 (defun pascal-upcase-keywords () | |
5723 | 655 "Upcase all Pascal keywords in the buffer." |
4934 | 656 (interactive) |
657 (pascal-change-keywords 'upcase-word)) | |
658 | |
659 (defun pascal-capitalize-keywords () | |
5723 | 660 "Capitalize all Pascal keywords in the buffer." |
4934 | 661 (interactive) |
662 (pascal-change-keywords 'capitalize-word)) | |
663 | |
5723 | 664 ;; Change the keywords according to argument. |
4934 | 665 (defun pascal-change-keywords (change-word) |
666 (save-excursion | |
5723 | 667 (let ((keyword-re (concat "\\<\\(" |
668 (mapconcat 'identity pascal-keywords "\\|") | |
669 "\\)\\>"))) | |
670 (goto-char (point-min)) | |
671 (while (re-search-forward keyword-re nil t) | |
672 (funcall change-word -1))))) | |
673 | |
674 | |
4934 | 675 |
676 ;;; | |
677 ;;; Other functions | |
678 ;;; | |
679 (defun pascal-set-auto-comments () | |
5723 | 680 "Insert `{ case }' or `{ NAME }' on this line if appropriate. |
681 Insert `{ case }' if there is an `end' on the line which | |
682 ends a case block. Insert `{ NAME }' if there is an `end' | |
683 on the line which ends a function or procedure named NAME." | |
4934 | 684 (save-excursion |
685 (forward-line -1) | |
686 (skip-chars-forward " \t") | |
5723 | 687 (if (and (looking-at "\\<end;") |
4934 | 688 (not (save-excursion |
689 (end-of-line) | |
5723 | 690 (search-backward "{" (pascal-get-beg-of-line) t)))) |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
691 (let ((type (car (pascal-calculate-indent)))) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
692 (if (eq type 'declaration) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
693 () |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
694 (if (eq type 'case) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
695 ;; This is a case block |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
696 (progn |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
697 (end-of-line) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
698 (delete-horizontal-space) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
699 (insert " { case }")) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
700 (let ((nest 1)) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
701 ;; Check if this is the end of a function |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
702 (save-excursion |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
703 (while (not (or (looking-at pascal-defun-re) (bobp))) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
704 (backward-sexp 1) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
705 (cond ((looking-at pascal-beg-block-re) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
706 (setq nest (1- nest))) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
707 ((looking-at pascal-end-block-re) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
708 (setq nest (1+ nest))))) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
709 (if (bobp) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
710 (setq nest 1))) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
711 (if (zerop nest) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
712 (progn |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
713 (end-of-line) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
714 (delete-horizontal-space) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
715 (insert " { ") |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
716 (let (b e) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
717 (save-excursion |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
718 (setq b (progn (pascal-beg-of-defun) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
719 (skip-chars-forward "^ \t") |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
720 (skip-chars-forward " \t") |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
721 (point)) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
722 e (progn (skip-chars-forward "a-zA-Z0-9_") |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
723 (point)))) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
724 (insert-buffer-substring (current-buffer) b e)) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
725 (insert " }")))))))))) |
4934 | 726 |
5723 | 727 |
728 | |
4934 | 729 ;;; |
5723 | 730 ;;; Indentation |
731 ;;; | |
732 (defconst pascal-indent-alist | |
733 '((block . (+ ind pascal-indent-level)) | |
734 (case . (+ ind pascal-case-indent)) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
735 (caseblock . ind) (cpp . 0) |
5723 | 736 (declaration . (+ ind pascal-indent-level)) |
737 (paramlist . (pascal-indent-paramlist t)) | |
738 (comment . (pascal-indent-comment t)) | |
739 (defun . ind) (contexp . ind) | |
740 (unknown . 0) (string . 0))) | |
741 | |
4934 | 742 (defun pascal-indent-command () |
5723 | 743 "Indent for special part of code." |
744 (let* ((indent-str (pascal-calculate-indent)) | |
745 (type (car indent-str)) | |
746 (ind (car (cdr indent-str)))) | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
747 (cond ((and (eq type 'paramlist) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
748 (or (memq 'all pascal-auto-lineup) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
749 (memq 'paramlist pascal-auto-lineup))) |
5723 | 750 (pascal-indent-paramlist) |
751 (pascal-indent-paramlist)) | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
752 ((and (eq type 'declaration) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
753 (or (memq 'all pascal-auto-lineup) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
754 (memq 'declaration pascal-auto-lineup))) |
5723 | 755 (pascal-indent-declaration)) |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
756 ((and (eq type 'case) (not (looking-at "^[ \t]*$")) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
757 (or (memq 'all pascal-auto-lineup) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
758 (memq 'case pascal-auto-lineup))) |
5723 | 759 (pascal-indent-case))) |
760 (if (looking-at "[ \t]+$") | |
761 (skip-chars-forward " \t")))) | |
4934 | 762 |
763 (defun pascal-indent-line () | |
5723 | 764 "Indent current line as a Pascal statement." |
765 (let* ((indent-str (pascal-calculate-indent)) | |
766 (type (car indent-str)) | |
767 (ind (car (cdr indent-str)))) | |
768 (if (looking-at "^[0-9a-zA-Z]+[ \t]*:[^=]") | |
769 (search-forward ":" nil t)) | |
770 (delete-horizontal-space) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
771 ;; Some things should not be indented |
5723 | 772 (if (or (and (eq type 'declaration) (looking-at pascal-declaration-re)) |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
773 (eq type 'cpp) |
5723 | 774 (looking-at pascal-defun-re)) |
775 () | |
776 ;; Other things should have no extra indent | |
777 (if (looking-at pascal-noindent-re) | |
778 (indent-to ind) | |
779 ;; But most lines are treated this way: | |
780 (indent-to (eval (cdr (assoc type pascal-indent-alist)))) | |
781 )))) | |
4934 | 782 |
5723 | 783 (defun pascal-calculate-indent () |
784 "Calculate the indent of the current Pascal line. | |
785 Return a list of two elements: (INDENT-TYPE INDENT-LEVEL)." | |
786 (save-excursion | |
787 (let* ((oldpos (point)) | |
788 (state (save-excursion (parse-partial-sexp (point-min) (point)))) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
789 (nest 0) (par 0) (complete (looking-at "[ \t]*end\\>")) |
6153
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
790 (elsed (looking-at "[ \t]*else\\>")) |
5723 | 791 (type (catch 'nesting |
792 ;; Check if inside a string, comment or parenthesis | |
793 (cond ((nth 3 state) (throw 'nesting 'string)) | |
794 ((nth 4 state) (throw 'nesting 'comment)) | |
795 ((> (car state) 0) | |
796 (goto-char (scan-lists (point) -1 (car state))) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
797 (setq par (1+ (current-column)))) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
798 ((save-excursion (beginning-of-line) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
799 (eq (following-char) ?#)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
800 (throw 'nesting 'cpp))) |
5723 | 801 ;; Loop until correct indent is found |
802 (while t | |
803 (backward-sexp 1) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
804 (cond (;--Escape from case statements |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
805 (and (looking-at "[A-Za-z0-9]+[ \t]*:[^=]") |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
806 (not complete) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
807 (save-excursion (skip-chars-backward " \t") |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
808 (bolp)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
809 (= (save-excursion |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
810 (end-of-line) (backward-sexp) (point)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
811 (point)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
812 (> (save-excursion (goto-char oldpos) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
813 (beginning-of-line) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
814 (point)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
815 (point))) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
816 (throw 'nesting 'caseblock)) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
817 (;--Nest block outwards |
5723 | 818 (looking-at pascal-beg-block-re) |
819 (if (= nest 0) | |
820 (cond ((looking-at "case\\>") | |
821 (throw 'nesting 'case)) | |
822 ((looking-at "record\\>") | |
823 (throw 'nesting 'declaration)) | |
6153
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
824 (t (throw 'nesting 'block))) |
5723 | 825 (setq nest (1- nest)))) |
826 (;--Nest block inwards | |
827 (looking-at pascal-end-block-re) | |
6153
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
828 (if (and (looking-at "end\\s ") |
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
829 elsed (not complete)) |
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
830 (throw 'nesting 'block)) |
5723 | 831 (setq complete t |
832 nest (1+ nest))) | |
833 (;--Defun (or parameter list) | |
834 (looking-at pascal-defun-re) | |
835 (if (= 0 par) | |
836 (throw 'nesting 'defun) | |
837 (setq par 0) | |
838 (let ((n 0)) | |
839 (while (re-search-forward | |
840 "\\(\\<record\\>\\)\\|\\<end\\>" | |
841 oldpos t) | |
842 (if (match-end 1) | |
843 (setq n (1+ n)) (setq n (1- n)))) | |
844 (if (> n 0) | |
845 (throw 'nesting 'declaration) | |
846 (throw 'nesting 'paramlist))))) | |
847 (;--Declaration part | |
848 (looking-at pascal-declaration-re) | |
6153
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
849 (if (save-excursion |
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
850 (goto-char oldpos) |
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
851 (forward-line -1) |
40e4038bd544
(pascal-calculate-indent): Fixed indentation bug
Richard M. Stallman <rms@gnu.org>
parents:
6123
diff
changeset
|
852 (looking-at "^[ \t]*$")) |
5723 | 853 (throw 'nesting 'unknown) |
854 (throw 'nesting 'declaration))) | |
855 (;--If, else or while statement | |
856 (and (not complete) | |
857 (looking-at pascal-sub-block-re)) | |
858 (throw 'nesting 'block)) | |
859 (;--Found complete statement | |
860 (save-excursion (forward-sexp 1) | |
861 (= (following-char) ?\;)) | |
862 (setq complete t)) | |
863 (;--No known statements | |
864 (bobp) | |
865 (throw 'nesting 'unknown)) | |
866 ))))) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
867 |
5723 | 868 ;; Return type of block and indent level. |
869 (if (> par 0) ; Unclosed Parenthesis | |
870 (list 'contexp par) | |
871 (list type (pascal-indent-level)))))) | |
4934 | 872 |
5723 | 873 (defun pascal-indent-level () |
874 "Return the indent-level the current statement has. | |
875 Do not count labels, case-statements or records." | |
4934 | 876 (save-excursion |
877 (beginning-of-line) | |
5723 | 878 (if (looking-at "[ \t]*[0-9a-zA-Z]+[ \t]*:[^=]") |
879 (search-forward ":" nil t) | |
880 (if (looking-at ".*=[ \t]*record\\>") | |
881 (search-forward "=" nil t))) | |
4934 | 882 (skip-chars-forward " \t") |
883 (current-column))) | |
884 | |
5723 | 885 (defun pascal-indent-comment (&optional arg) |
886 "Indent current line as comment. | |
887 If optional arg is non-nil, just return the | |
888 column number the line should be indented to." | |
889 (let* ((stcol (save-excursion | |
890 (re-search-backward "(\\*\\|{" nil t) | |
891 (1+ (current-column))))) | |
892 (if arg stcol | |
893 (delete-horizontal-space) | |
894 (indent-to stcol)))) | |
895 | |
896 (defun pascal-indent-case () | |
897 "Indent within case statements." | |
898 (skip-chars-forward ": \t") | |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
899 (let ((end (prog2 |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
900 (end-of-line) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
901 (point-marker) |
5723 | 902 (re-search-backward "\\<case\\>" nil t))) |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
903 (beg (point)) oldpos |
5723 | 904 (ind 0)) |
905 ;; Get right indent | |
906 (while (< (point) (marker-position end)) | |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
907 (if (re-search-forward |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
908 "^[ \t]*[^ \t,:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:" |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
909 (marker-position end) 'move) |
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
910 (forward-char -1)) |
14776
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
911 (if (< (point) (marker-position end)) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
912 (progn |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
913 (delete-horizontal-space) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
914 (if (> (current-column) ind) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
915 (setq ind (current-column))) |
d392e3ffa1bb
(pascal-declaration-end): Now locates the end of a parameterlist correctly.
Richard M. Stallman <rms@gnu.org>
parents:
14183
diff
changeset
|
916 (pascal-end-of-statement)))) |
5723 | 917 (goto-char beg) |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
918 (setq oldpos (marker-position end)) |
5723 | 919 ;; Indent all case statements |
920 (while (< (point) (marker-position end)) | |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
921 (if (re-search-forward |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
922 "^[ \t]*[^][ \t,\\.:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:" |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
923 (marker-position end) 'move) |
5723 | 924 (forward-char -1)) |
925 (indent-to (1+ ind)) | |
926 (if (/= (following-char) ?:) | |
927 () | |
928 (forward-char 1) | |
929 (delete-horizontal-space) | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
930 (insert " ")) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
931 (setq oldpos (point)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
932 (pascal-end-of-statement)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
933 (goto-char oldpos))) |
5723 | 934 |
935 (defun pascal-indent-paramlist (&optional arg) | |
936 "Indent current line in parameterlist. | |
937 If optional arg is non-nil, just return the | |
938 indent of the current line in parameterlist." | |
939 (save-excursion | |
940 (let* ((oldpos (point)) | |
941 (stpos (progn (goto-char (scan-lists (point) -1 1)) (point))) | |
942 (stcol (1+ (current-column))) | |
943 (edpos (progn (pascal-declaration-end) | |
944 (search-backward ")" (pascal-get-beg-of-line) t) | |
945 (point))) | |
946 (usevar (re-search-backward "\\<var\\>" stpos t))) | |
947 (if arg (progn | |
948 ;; If arg, just return indent | |
949 (goto-char oldpos) | |
950 (beginning-of-line) | |
951 (if (or (not usevar) (looking-at "[ \t]*var\\>")) | |
952 stcol (+ 4 stcol))) | |
953 (goto-char stpos) | |
954 (forward-char 1) | |
955 (delete-horizontal-space) | |
956 (if (and usevar (not (looking-at "var\\>"))) | |
957 (indent-to (+ 4 stcol))) | |
958 (pascal-indent-declaration nil stpos edpos))))) | |
959 | |
960 (defun pascal-indent-declaration (&optional arg start end) | |
961 "Indent current lines as declaration, lining up the `:'s or `='s." | |
962 (let ((pos (point-marker))) | |
963 (if (and (not (or arg start)) (not (pascal-declaration-beg))) | |
964 () | |
965 (let ((lineup (if (or (looking-at "\\<var\\>\\|\\<record\\>") arg start) | |
966 ":" "=")) | |
967 (stpos (if start start | |
968 (forward-word 2) (backward-word 1) (point))) | |
969 (edpos (set-marker (make-marker) | |
970 (if end end | |
971 (max (progn (pascal-declaration-end) | |
972 (point)) | |
973 pos)))) | |
974 ind) | |
975 | |
976 (goto-char stpos) | |
977 ;; Indent lines in record block | |
978 (if arg | |
979 (while (<= (point) (marker-position edpos)) | |
980 (beginning-of-line) | |
981 (delete-horizontal-space) | |
982 (if (looking-at "end\\>") | |
983 (indent-to arg) | |
984 (indent-to (+ arg pascal-indent-level))) | |
985 (forward-line 1))) | |
986 | |
987 ;; Do lineup | |
988 (setq ind (pascal-get-lineup-indent stpos edpos lineup)) | |
989 (goto-char stpos) | |
990 (while (<= (point) (marker-position edpos)) | |
991 (if (search-forward lineup (pascal-get-end-of-line) 'move) | |
992 (forward-char -1)) | |
993 (delete-horizontal-space) | |
994 (indent-to ind) | |
995 (if (not (looking-at lineup)) | |
996 (forward-line 1) ; No more indent if there is no : or = | |
997 (forward-char 1) | |
998 (delete-horizontal-space) | |
999 (insert " ") | |
1000 ;; Indent record block | |
1001 (if (looking-at "record\\>") | |
1002 (pascal-indent-declaration (current-column))) | |
1003 (forward-line 1))))) | |
1004 | |
1005 ;; If arg - move point | |
1006 (if arg (forward-line -1) | |
1007 (goto-char (marker-position pos))))) | |
1008 | |
1009 ; "Return the indent level that will line up several lines within the region | |
1010 ;from b to e nicely. The lineup string is str." | |
1011 (defun pascal-get-lineup-indent (b e str) | |
1012 (save-excursion | |
1013 (let ((ind 0) | |
1014 (reg (concat str "\\|\\(\\<record\\>\\)")) | |
1015 nest) | |
1016 (goto-char b) | |
1017 ;; Get rightmost position | |
1018 (while (< (point) e) | |
1019 (setq nest 1) | |
1020 (if (re-search-forward reg (min e (pascal-get-end-of-line 2)) 'move) | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1021 (progn |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1022 ;; Skip record blocks |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1023 (if (match-beginning 1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1024 (pascal-declaration-end) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1025 (progn |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1026 (goto-char (match-beginning 0)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1027 (skip-chars-backward " \t") |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1028 (if (> (current-column) ind) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1029 (setq ind (current-column))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1030 (goto-char (match-end 0))))))) |
5723 | 1031 ;; In case no lineup was found |
1032 (if (> ind 0) | |
1033 (1+ ind) | |
1034 ;; No lineup-string found | |
1035 (goto-char b) | |
1036 (end-of-line) | |
1037 (skip-chars-backward " \t") | |
1038 (1+ (current-column)))))) | |
1039 | |
1040 | |
4934 | 1041 |
5723 | 1042 ;;; |
1043 ;;; Completion | |
1044 ;;; | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1045 (defvar pascal-str nil) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1046 (defvar pascal-all nil) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1047 (defvar pascal-pred nil) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1048 (defvar pascal-buffer-to-use nil) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1049 (defvar pascal-flag nil) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1050 |
5723 | 1051 (defun pascal-string-diff (str1 str2) |
1052 "Return index of first letter where STR1 and STR2 differs." | |
1053 (catch 'done | |
1054 (let ((diff 0)) | |
1055 (while t | |
1056 (if (or (> (1+ diff) (length str1)) | |
1057 (> (1+ diff) (length str2))) | |
1058 (throw 'done diff)) | |
1059 (or (equal (aref str1 diff) (aref str2 diff)) | |
1060 (throw 'done diff)) | |
1061 (setq diff (1+ diff)))))) | |
1062 | |
1063 ;; Calculate all possible completions for functions if argument is `function', | |
1064 ;; completions for procedures if argument is `procedure' or both functions and | |
1065 ;; procedures otherwise. | |
1066 | |
1067 (defun pascal-func-completion (type) | |
1068 ;; Build regular expression for function/procedure names | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1069 (if (string= pascal-str "") |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1070 (setq pascal-str "[a-zA-Z_]")) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1071 (let ((pascal-str (concat (cond |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1072 ((eq type 'procedure) "\\<\\(procedure\\)\\s +") |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1073 ((eq type 'function) "\\<\\(function\\)\\s +") |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1074 (t "\\<\\(function\\|procedure\\)\\s +")) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1075 "\\<\\(" pascal-str "[a-zA-Z0-9_.]*\\)\\>")) |
5723 | 1076 match) |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1077 |
5723 | 1078 (if (not (looking-at "\\<\\(function\\|procedure\\)\\>")) |
1079 (re-search-backward "\\<\\(function\\|procedure\\)\\>" nil t)) | |
1080 (forward-char 1) | |
1081 | |
1082 ;; Search through all reachable functions | |
1083 (while (pascal-beg-of-defun) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1084 (if (re-search-forward pascal-str (pascal-get-end-of-line) t) |
5723 | 1085 (progn (setq match (buffer-substring (match-beginning 2) |
1086 (match-end 2))) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1087 (if (or (null pascal-pred) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1088 (funcall pascal-pred match)) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1089 (setq pascal-all (cons match pascal-all))))) |
5723 | 1090 (goto-char (match-beginning 0))))) |
1091 | |
1092 (defun pascal-get-completion-decl () | |
1093 ;; Macro for searching through current declaration (var, type or const) | |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
1094 ;; for matches of `str' and adding the occurrence tp `all' |
5723 | 1095 (let ((end (save-excursion (pascal-declaration-end) |
1096 (point))) | |
1097 match) | |
1098 ;; Traverse lines | |
1099 (while (< (point) end) | |
1100 (if (re-search-forward "[:=]" (pascal-get-end-of-line) t) | |
1101 ;; Traverse current line | |
1102 (while (and (re-search-backward | |
1103 (concat "\\((\\|\\<\\(var\\|type\\|const\\)\\>\\)\\|" | |
1104 pascal-symbol-re) | |
1105 (pascal-get-beg-of-line) t) | |
1106 (not (match-end 1))) | |
1107 (setq match (buffer-substring (match-beginning 0) (match-end 0))) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1108 (if (string-match (concat "\\<" pascal-str) match) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1109 (if (or (null pascal-pred) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1110 (funcall pascal-pred match)) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1111 (setq pascal-all (cons match pascal-all)))))) |
5723 | 1112 (if (re-search-forward "\\<record\\>" (pascal-get-end-of-line) t) |
1113 (pascal-declaration-end) | |
1114 (forward-line 1))))) | |
1115 | |
1116 (defun pascal-type-completion () | |
1117 "Calculate all possible completions for types." | |
1118 (let ((start (point)) | |
1119 goon) | |
1120 ;; Search for all reachable type declarations | |
1121 (while (or (pascal-beg-of-defun) | |
1122 (setq goon (not goon))) | |
1123 (save-excursion | |
1124 (if (and (< start (prog1 (save-excursion (pascal-end-of-defun) | |
1125 (point)) | |
1126 (forward-char 1))) | |
1127 (re-search-forward | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1128 "\\<type\\>\\|\\<\\(begin\\|function\\|procedure\\)\\>" |
5723 | 1129 start t) |
1130 (not (match-end 1))) | |
1131 ;; Check current type declaration | |
1132 (pascal-get-completion-decl)))))) | |
1133 | |
1134 (defun pascal-var-completion () | |
1135 "Calculate all possible completions for variables (or constants)." | |
1136 (let ((start (point)) | |
1137 goon twice) | |
1138 ;; Search for all reachable var declarations | |
1139 (while (or (pascal-beg-of-defun) | |
1140 (setq goon (not goon))) | |
1141 (save-excursion | |
1142 (if (> start (prog1 (save-excursion (pascal-end-of-defun) | |
1143 (point)))) | |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
1144 () ; Declarations not reachable |
5723 | 1145 (if (search-forward "(" (pascal-get-end-of-line) t) |
1146 ;; Check parameterlist | |
1147 (pascal-get-completion-decl)) | |
1148 (setq twice 2) | |
1149 (while (>= (setq twice (1- twice)) 0) | |
1150 (cond ((and (re-search-forward | |
1151 (concat "\\<\\(var\\|const\\)\\>\\|" | |
1152 "\\<\\(begin\\|function\\|procedure\\)\\>") | |
1153 start t) | |
1154 (not (match-end 2))) | |
1155 ;; Check var/const declarations | |
1156 (pascal-get-completion-decl)) | |
1157 ((match-end 2) | |
1158 (setq twice 0))))))))) | |
1159 | |
1160 | |
1161 (defun pascal-keyword-completion (keyword-list) | |
1162 "Give list of all possible completions of keywords in KEYWORD-LIST." | |
1163 (mapcar '(lambda (s) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1164 (if (string-match (concat "\\<" pascal-str) s) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1165 (if (or (null pascal-pred) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1166 (funcall pascal-pred s)) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1167 (setq pascal-all (cons s pascal-all))))) |
5723 | 1168 keyword-list)) |
1169 | |
1170 ;; Function passed to completing-read, try-completion or | |
1171 ;; all-completions to get completion on STR. If predicate is non-nil, | |
1172 ;; it must be a function to be called for every match to check if this | |
1173 ;; should really be a match. If flag is t, the function returns a list | |
1174 ;; of all possible completions. If it is nil it returns a string, the | |
1175 ;; longest possible completion, or t if STR is an exact match. If flag | |
1176 ;; is 'lambda, the function returns t if STR is an exact match, nil | |
1177 ;; otherwise. | |
1178 | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1179 (defun pascal-completion (pascal-str pascal-pred pascal-flag) |
4934 | 1180 (save-excursion |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1181 (let ((pascal-all nil)) |
5723 | 1182 ;; Set buffer to use for searching labels. This should be set |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
1183 ;; within functions which use pascal-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1184 (set-buffer pascal-buffer-to-use) |
5723 | 1185 |
1186 ;; Determine what should be completed | |
1187 (let ((state (car (pascal-calculate-indent)))) | |
1188 (cond (;--Within a declaration or parameterlist | |
1189 (or (eq state 'declaration) (eq state 'paramlist) | |
1190 (and (eq state 'defun) | |
1191 (save-excursion | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1192 (re-search-backward ")[ \t]*:" |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1193 (pascal-get-beg-of-line) t)))) |
5723 | 1194 (if (or (eq state 'paramlist) (eq state 'defun)) |
1195 (pascal-beg-of-defun)) | |
1196 (pascal-type-completion) | |
1197 (pascal-keyword-completion pascal-type-keywords)) | |
1198 (;--Starting a new statement | |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1199 (and (not (eq state 'contexp)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1200 (save-excursion |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1201 (skip-chars-backward "a-zA-Z0-9_.") |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1202 (backward-sexp 1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1203 (or (looking-at pascal-nosemi-re) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1204 (progn |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1205 (forward-sexp 1) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1206 (looking-at "\\s *\\(;\\|:[^=]\\)"))))) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1207 (save-excursion (pascal-var-completion)) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1208 (pascal-func-completion 'procedure) |
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1209 (pascal-keyword-completion pascal-start-keywords)) |
5723 | 1210 (t;--Anywhere else |
1211 (save-excursion (pascal-var-completion)) | |
1212 (pascal-func-completion 'function) | |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
1213 (pascal-keyword-completion pascal-separator-keywords)))) |
8689
499bf32bfd9b
(pascal-auto-lineup): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
6942
diff
changeset
|
1214 |
5723 | 1215 ;; Now we have built a list of all matches. Give response to caller |
1216 (pascal-completion-response)))) | |
4934 | 1217 |
5723 | 1218 (defun pascal-completion-response () |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1219 (cond ((or (equal pascal-flag 'lambda) (null pascal-flag)) |
5723 | 1220 ;; This was not called by all-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1221 (if (null pascal-all) |
5723 | 1222 ;; Return nil if there was no matching label |
1223 nil | |
1224 ;; Get longest string common in the labels | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1225 (let* ((elm (cdr pascal-all)) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1226 (match (car pascal-all)) |
5723 | 1227 (min (length match)) |
1228 exact tmp) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1229 (if (string= match pascal-str) |
5723 | 1230 ;; Return t if first match was an exact match |
1231 (setq match t) | |
1232 (while (not (null elm)) | |
1233 ;; Find longest common string | |
1234 (if (< (setq tmp (pascal-string-diff match (car elm))) min) | |
1235 (progn | |
1236 (setq min tmp) | |
1237 (setq match (substring match 0 min)))) | |
1238 ;; Terminate with match=t if this is an exact match | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1239 (if (string= (car elm) pascal-str) |
5723 | 1240 (progn |
1241 (setq match t) | |
1242 (setq elm nil)) | |
1243 (setq elm (cdr elm))))) | |
1244 ;; If this is a test just for exact match, return nil ot t | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1245 (if (and (equal pascal-flag 'lambda) (not (equal match 't))) |
5723 | 1246 nil |
1247 match)))) | |
1248 ;; If flag is t, this was called by all-completions. Return | |
1249 ;; list of all possible completions | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1250 (pascal-flag |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1251 pascal-all))) |
5723 | 1252 |
1253 (defvar pascal-last-word-numb 0) | |
1254 (defvar pascal-last-word-shown nil) | |
1255 (defvar pascal-last-completions nil) | |
1256 | |
1257 (defun pascal-complete-word () | |
1258 "Complete word at current point. | |
1259 \(See also `pascal-toggle-completions', `pascal-type-keywords', | |
6316
1032840397be
(pascal-indent-case): Handle comma separated list.
Richard M. Stallman <rms@gnu.org>
parents:
6153
diff
changeset
|
1260 `pascal-start-keywords' and `pascal-separator-keywords'.)" |
5723 | 1261 (interactive) |
1262 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point))) | |
1263 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point))) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1264 (pascal-str (buffer-substring b e)) |
5723 | 1265 ;; The following variable is used in pascal-completion |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1266 (pascal-buffer-to-use (current-buffer)) |
5723 | 1267 (allcomp (if (and pascal-toggle-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1268 (string= pascal-last-word-shown pascal-str)) |
5723 | 1269 pascal-last-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1270 (all-completions pascal-str 'pascal-completion))) |
5723 | 1271 (match (if pascal-toggle-completions |
1272 "" (try-completion | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1273 pascal-str (mapcar '(lambda (elm) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1274 (cons elm 0)) allcomp))))) |
5723 | 1275 ;; Delete old string |
1276 (delete-region b e) | |
1277 | |
1278 ;; Toggle-completions inserts whole labels | |
1279 (if pascal-toggle-completions | |
4934 | 1280 (progn |
5723 | 1281 ;; Update entry number in list |
1282 (setq pascal-last-completions allcomp | |
1283 pascal-last-word-numb | |
1284 (if (>= pascal-last-word-numb (1- (length allcomp))) | |
1285 0 | |
1286 (1+ pascal-last-word-numb))) | |
1287 (setq pascal-last-word-shown (elt allcomp pascal-last-word-numb)) | |
1288 ;; Display next match or same string if no match was found | |
1289 (if (not (null allcomp)) | |
1290 (insert "" pascal-last-word-shown) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1291 (insert "" pascal-str) |
5723 | 1292 (message "(No match)"))) |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
1293 ;; The other form of completion does not necessarily do that. |
5723 | 1294 |
1295 ;; Insert match if found, or the original string if no match | |
1296 (if (or (null match) (equal match 't)) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1297 (progn (insert "" pascal-str) |
5723 | 1298 (message "(No match)")) |
1299 (insert "" match)) | |
1300 ;; Give message about current status of completion | |
1301 (cond ((equal match 't) | |
1302 (if (not (null (cdr allcomp))) | |
1303 (message "(Complete but not unique)") | |
1304 (message "(Sole completion)"))) | |
1305 ;; Display buffer if the current completion didn't help | |
1306 ;; on completing the label. | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1307 ((and (not (null (cdr allcomp))) (= (length pascal-str) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1308 (length match))) |
5723 | 1309 (with-output-to-temp-buffer "*Completions*" |
1310 (display-completion-list allcomp)) | |
1311 ;; Wait for a keypress. Then delete *Completion* window | |
1312 (momentary-string-display "" (point)) | |
1313 (delete-window (get-buffer-window (get-buffer "*Completions*"))) | |
1314 ))))) | |
1315 | |
1316 (defun pascal-show-completions () | |
1317 "Show all possible completions at current point." | |
1318 (interactive) | |
1319 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point))) | |
1320 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point))) | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1321 (pascal-str (buffer-substring b e)) |
5723 | 1322 ;; The following variable is used in pascal-completion |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1323 (pascal-buffer-to-use (current-buffer)) |
5723 | 1324 (allcomp (if (and pascal-toggle-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1325 (string= pascal-last-word-shown pascal-str)) |
5723 | 1326 pascal-last-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1327 (all-completions pascal-str 'pascal-completion)))) |
5723 | 1328 ;; Show possible completions in a temporary buffer. |
1329 (with-output-to-temp-buffer "*Completions*" | |
1330 (display-completion-list allcomp)) | |
1331 ;; Wait for a keypress. Then delete *Completion* window | |
1332 (momentary-string-display "" (point)) | |
1333 (delete-window (get-buffer-window (get-buffer "*Completions*"))))) | |
1334 | |
1335 | |
1336 (defun pascal-get-default-symbol () | |
1337 "Return symbol around current point as a string." | |
1338 (save-excursion | |
1339 (buffer-substring (progn | |
1340 (skip-chars-backward " \t") | |
1341 (skip-chars-backward "a-zA-Z0-9_") | |
1342 (point)) | |
1343 (progn | |
1344 (skip-chars-forward "a-zA-Z0-9_") | |
1345 (point))))) | |
1346 | |
1347 (defun pascal-build-defun-re (str &optional arg) | |
1348 "Return function/procedure starting with STR as regular expression. | |
1349 With optional second arg non-nil, STR is the complete name of the instruction." | |
1350 (if arg | |
1351 (concat "^\\(function\\|procedure\\)[ \t]+\\(" str "\\)\\>") | |
1352 (concat "^\\(function\\|procedure\\)[ \t]+\\(" str "[a-zA-Z0-9_]*\\)\\>"))) | |
1353 | |
1354 ;; Function passed to completing-read, try-completion or | |
1355 ;; all-completions to get completion on any function name. If | |
1356 ;; predicate is non-nil, it must be a function to be called for every | |
1357 ;; match to check if this should really be a match. If flag is t, the | |
1358 ;; function returns a list of all possible completions. If it is nil | |
1359 ;; it returns a string, the longest possible completion, or t if STR | |
1360 ;; is an exact match. If flag is 'lambda, the function returns t if | |
1361 ;; STR is an exact match, nil otherwise. | |
1362 | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1363 (defun pascal-comp-defun (pascal-str pascal-pred pascal-flag) |
5723 | 1364 (save-excursion |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1365 (let ((pascal-all nil) |
5723 | 1366 match) |
1367 | |
1368 ;; Set buffer to use for searching labels. This should be set | |
14000
36dc9ede3562
(pascal-auto-newline, pascal-mode, electric-pascal-hash):
Karl Heuer <kwzh@gnu.org>
parents:
13337
diff
changeset
|
1369 ;; within functions which use pascal-completions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1370 (set-buffer pascal-buffer-to-use) |
5723 | 1371 |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1372 (let ((pascal-str pascal-str)) |
5723 | 1373 ;; Build regular expression for functions |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1374 (if (string= pascal-str "") |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1375 (setq pascal-str (pascal-build-defun-re "[a-zA-Z_]")) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1376 (setq pascal-str (pascal-build-defun-re pascal-str))) |
5723 | 1377 (goto-char (point-min)) |
1378 | |
1379 ;; Build a list of all possible completions | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1380 (while (re-search-forward pascal-str nil t) |
5723 | 1381 (setq match (buffer-substring (match-beginning 2) (match-end 2))) |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1382 (if (or (null pascal-pred) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1383 (funcall pascal-pred match)) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1384 (setq pascal-all (cons match pascal-all))))) |
5723 | 1385 |
1386 ;; Now we have built a list of all matches. Give response to caller | |
1387 (pascal-completion-response)))) | |
1388 | |
1389 (defun pascal-goto-defun () | |
1390 "Move to specified Pascal function/procedure. | |
1391 The default is a name found in the buffer around point." | |
1392 (interactive) | |
1393 (let* ((default (pascal-get-default-symbol)) | |
1394 ;; The following variable is used in pascal-comp-function | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1395 (pascal-buffer-to-use (current-buffer)) |
5723 | 1396 (default (if (pascal-comp-defun default nil 'lambda) |
1397 default "")) | |
1398 (label (if (not (string= default "")) | |
1399 ;; Do completion with default | |
1400 (completing-read (concat "Label: (default " default ") ") | |
1401 'pascal-comp-defun nil t "") | |
1402 ;; There is no default value. Complete without it | |
1403 (completing-read "Label: " | |
1404 'pascal-comp-defun nil t "")))) | |
1405 ;; If there was no response on prompt, use default value | |
1406 (if (string= label "") | |
1407 (setq label default)) | |
1408 ;; Goto right place in buffer if label is not an empty string | |
1409 (or (string= label "") | |
1410 (progn | |
1411 (goto-char (point-min)) | |
1412 (re-search-forward (pascal-build-defun-re label t)) | |
1413 (beginning-of-line))))) | |
1414 | |
1415 | |
4934 | 1416 |
5723 | 1417 ;;; |
1418 ;;; Pascal-outline-mode | |
1419 ;;; | |
1420 (defvar pascal-outline-map nil "Keymap used in Pascal Outline mode.") | |
1421 | |
1422 (if pascal-outline-map | |
1423 nil | |
1424 (if (boundp 'set-keymap-name) | |
1425 (set-keymap-name pascal-outline-map 'pascal-outline-map)) | |
1426 (if (not (boundp 'set-keymap-parent)) | |
1427 (setq pascal-outline-map (copy-keymap pascal-mode-map)) | |
1428 (setq pascal-outline-map (make-sparse-keymap)) | |
1429 (set-keymap-parent pascal-outline-map pascal-mode-map)) | |
10446
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
1430 (define-key pascal-outline-map "\M-\C-a" 'pascal-outline-prev-defun) |
034609a036b1
(pascal-mode-map, pascal-outline-map):
Richard M. Stallman <rms@gnu.org>
parents:
9479
diff
changeset
|
1431 (define-key pascal-outline-map "\M-\C-e" 'pascal-outline-next-defun) |
6942
90305d5fe5aa
(pascal-outline-map): Move pascal-outline-goto-defun to C-c C-d.
Richard M. Stallman <rms@gnu.org>
parents:
6316
diff
changeset
|
1432 (define-key pascal-outline-map "\C-c\C-d" 'pascal-outline-goto-defun) |
5723 | 1433 (define-key pascal-outline-map "\C-c\C-s" 'pascal-show-all) |
1434 (define-key pascal-outline-map "\C-c\C-h" 'pascal-hide-other-defuns)) | |
1435 | |
1436 (defvar pascal-outline-mode nil "Non-nil while using Pascal Outline mode.") | |
1437 (make-variable-buffer-local 'pascal-outline-mode) | |
1438 (set-default 'pascal-outline-mode nil) | |
1439 (if (not (assoc 'pascal-outline-mode minor-mode-alist)) | |
1440 (setq minor-mode-alist (append minor-mode-alist | |
1441 (list '(pascal-outline-mode " Outl"))))) | |
1442 | |
1443 (defun pascal-outline (&optional arg) | |
1444 "Outline-line minor mode for Pascal mode. | |
1445 When in Pascal Outline mode, portions | |
1446 of the text being edited may be made invisible. \\<pascal-outline-map> | |
1447 | |
1448 Pascal Outline mode provides some additional commands. | |
1449 | |
1450 \\[pascal-outline-prev-defun]\ | |
1451 \t- Move to previous function/procedure, hiding everything else. | |
1452 \\[pascal-outline-next-defun]\ | |
1453 \t- Move to next function/procedure, hiding everything else. | |
1454 \\[pascal-outline-goto-defun]\ | |
1455 \t- Goto function/procedure prompted for in minibuffer, | |
1456 \t hide all other functions. | |
1457 \\[pascal-show-all]\t- Show the whole buffer. | |
1458 \\[pascal-hide-other-defuns]\ | |
1459 \t- Hide everything but the current function (function under the cursor). | |
1460 \\[pascal-outline]\t- Leave pascal-outline-mode." | |
1461 (interactive "P") | |
1462 (setq pascal-outline-mode | |
1463 (if (null arg) (not pascal-outline-mode) t)) | |
1464 (if (boundp 'redraw-mode-line) | |
1465 (redraw-mode-line)) | |
1466 (if pascal-outline-mode | |
1467 (progn | |
1468 (setq selective-display t) | |
1469 (use-local-map pascal-outline-map)) | |
1470 (progn | |
1471 (setq selective-display nil) | |
1472 (pascal-show-all) | |
1473 (use-local-map pascal-mode-map)))) | |
1474 | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1475 (defun pascal-outline-change (b e pascal-flag) |
5723 | 1476 (let ((modp (buffer-modified-p))) |
1477 (unwind-protect | |
10534
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1478 (subst-char-in-region b e (if (= pascal-flag ?\n) |
38b5efae433a
(pascal-*-completion, pascal-comp-defun)
Richard M. Stallman <rms@gnu.org>
parents:
10446
diff
changeset
|
1479 ?\^M ?\n) pascal-flag) |
5723 | 1480 (set-buffer-modified-p modp)))) |
1481 | |
1482 (defun pascal-show-all () | |
1483 "Show all of the text in the buffer." | |
1484 (interactive) | |
1485 (pascal-outline-change (point-min) (point-max) ?\n)) | |
1486 | |
1487 (defun pascal-hide-other-defuns () | |
1488 "Show only the current defun." | |
1489 (interactive) | |
1490 (save-excursion | |
1491 (let ((beg (progn (if (not (looking-at "\\(function\\|procedure\\)\\>")) | |
1492 (pascal-beg-of-defun)) | |
1493 (point))) | |
1494 (end (progn (pascal-end-of-defun) | |
1495 (backward-sexp 1) | |
1496 (search-forward "\n\\|\^M" nil t) | |
1497 (point))) | |
1498 (opoint (point-min))) | |
1499 (goto-char (point-min)) | |
1500 | |
1501 ;; Hide all functions before current function | |
1502 (while (re-search-forward "^\\(function\\|procedure\\)\\>" beg 'move) | |
1503 (pascal-outline-change opoint (1- (match-beginning 0)) ?\^M) | |
1504 (setq opoint (point)) | |
1505 ;; Functions may be nested | |
1506 (if (> (progn (pascal-end-of-defun) (point)) beg) | |
1507 (goto-char opoint))) | |
1508 (if (> beg opoint) | |
1509 (pascal-outline-change opoint (1- beg) ?\^M)) | |
1510 | |
1511 ;; Show current function | |
1512 (pascal-outline-change beg end ?\n) | |
1513 ;; Hide nested functions | |
1514 (forward-char 1) | |
1515 (while (re-search-forward "^\\(function\\|procedure\\)\\>" end 'move) | |
1516 (setq opoint (point)) | |
1517 (pascal-end-of-defun) | |
1518 (pascal-outline-change opoint (point) ?\^M)) | |
1519 | |
1520 (goto-char end) | |
1521 (setq opoint end) | |
1522 | |
1523 ;; Hide all function after current function | |
1524 (while (re-search-forward "^\\(function\\|procedure\\)\\>" nil 'move) | |
1525 (pascal-outline-change opoint (1- (match-beginning 0)) ?\^M) | |
1526 (setq opoint (point)) | |
1527 (pascal-end-of-defun)) | |
1528 (pascal-outline-change opoint (point-max) ?\^M) | |
1529 | |
1530 ;; Hide main program | |
1531 (if (< (progn (forward-line -1) (point)) end) | |
4934 | 1532 (progn |
5723 | 1533 (goto-char beg) |
1534 (pascal-end-of-defun) | |
1535 (backward-sexp 1) | |
1536 (pascal-outline-change (point) (point-max) ?\^M)))))) | |
1537 | |
1538 (defun pascal-outline-next-defun () | |
1539 "Move to next function/procedure, hiding all others." | |
1540 (interactive) | |
1541 (pascal-end-of-defun) | |
1542 (pascal-hide-other-defuns)) | |
4934 | 1543 |
5723 | 1544 (defun pascal-outline-prev-defun () |
1545 "Move to previous function/procedure, hiding all others." | |
1546 (interactive) | |
1547 (pascal-beg-of-defun) | |
1548 (pascal-hide-other-defuns)) | |
4934 | 1549 |
5723 | 1550 (defun pascal-outline-goto-defun () |
1551 "Move to specified function/procedure, hiding all others." | |
1552 (interactive) | |
1553 (pascal-goto-defun) | |
1554 (pascal-hide-other-defuns)) | |
1555 | |
1556 ;;; pascal.el ends here |