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