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