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