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