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