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