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