1 ;;; pascal.el --- major mode for editing pascal source in Emacs
3 ;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 ;; 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Espen Skoglund <esk@gnu.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; Emacs should enter Pascal mode when you find a Pascal source file.
30 ;; When you have entered Pascal mode, you may get more info by pressing
31 ;; C-h m. You may also get online help describing various functions by:
32 ;; C-h f <Name of function you want described>
34 ;; If you want to customize Pascal mode to fit you better, you may add
35 ;; these lines (the values of the variables presented here are the defaults):
37 ;; ;; User customization for Pascal mode
38 ;; (setq pascal-indent-level 3
39 ;; pascal-case-indent 2
40 ;; pascal-auto-newline nil
41 ;; pascal-tab-always-indent t
42 ;; pascal-auto-endcomments t
43 ;; pascal-auto-lineup '(all)
44 ;; pascal-toggle-completions nil
45 ;; pascal-type-keywords '("array" "file" "packed" "char"
46 ;; "integer" "real" "string" "record")
47 ;; pascal-start-keywords '("begin" "end" "function" "procedure"
48 ;; "repeat" "until" "while" "read" "readln"
49 ;; "reset" "rewrite" "write" "writeln")
50 ;; pascal-separator-keywords '("downto" "else" "mod" "div" "then"))
52 ;; KNOWN BUGS / BUGREPORTS
53 ;; =======================
54 ;; As far as I know, there are no bugs in the current version of this
55 ;; package. This may not be true however, since I never use this mode
56 ;; myself and therefore would never notice them anyway. If you do
57 ;; find any bugs, you may submit them to: esk@gnu.org as well as to
58 ;; bug-gnu-emacs@gnu.org.
63 "Major mode for editing Pascal source in Emacs."
64 :link
'(custom-group-link :tag
"Font Lock Faces group" font-lock-faces
)
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 (define-key map
"\r" 'electric-pascal-terminate-line
)
79 (define-key map
"\t" 'electric-pascal-tab
)
80 (define-key map
"\M-\t" 'pascal-complete-word
)
81 (define-key map
"\M-?" 'pascal-show-completions
)
82 (define-key map
"\177" 'backward-delete-char-untabify
)
83 (define-key map
"\M-\C-h" 'pascal-mark-defun
)
84 (define-key map
"\C-c\C-b" 'pascal-insert-block
)
85 (define-key map
"\M-*" 'pascal-star-comment
)
86 (define-key map
"\C-c\C-c" 'pascal-comment-area
)
87 (define-key map
"\C-c\C-u" 'pascal-uncomment-area
)
88 (define-key map
"\M-\C-a" 'pascal-beg-of-defun
)
89 (define-key map
"\M-\C-e" 'pascal-end-of-defun
)
90 (define-key map
"\C-c\C-d" 'pascal-goto-defun
)
91 (define-key map
"\C-c\C-o" 'pascal-outline-mode
)
92 ;; A command to change the whole buffer won't be used terribly
93 ;; often, so no need for a key binding.
94 ;; (define-key map "\C-cd" 'pascal-downcase-keywords)
95 ;; (define-key map "\C-cu" 'pascal-upcase-keywords)
96 ;; (define-key map "\C-cc" 'pascal-capitalize-keywords)
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"
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
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")
174 "and\\|begin\\|case\\|do\\|e\\(lse\\|nd\\)\\|for\\|i[fn]\\|"
175 "not\\|o[fr]\\|repeat\\|t\\(hen\\|o\\)\\|until\\|w\\(hile\\|ith\\)"
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."
189 (defcustom pascal-case-indent
2
190 "*Indentation for case statements."
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'."
200 (defcustom pascal-indent-nested-functions t
201 "*Non-nil means nested functions are indented."
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."
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."
219 (defcustom pascal-auto-lineup
'(all)
220 "*List of contexts where auto lineup of :'s or ='s should be done.
221 Elements can be of type: 'paramlist', 'declaration' or 'case', which will
222 do auto lineup in parameterlist, declarations or case-statements
223 respectively. The word 'all' will do all lineups. '(case paramlist) for
224 instance will do lineup in case-statements and parameterlist, while '(all)
225 will do all lineups."
226 :type
'(set :extra-offset
8
227 (const :tag
"Everything" all
)
228 (const :tag
"Parameter lists" paramlist
)
229 (const :tag
"Decalrations" declaration
)
230 (const :tag
"Case statements" case
))
233 (defcustom pascal-toggle-completions nil
234 "*Non-nil means \\<pascal-mode-map>\\[pascal-complete-word] should try all possible completions one by one.
235 Repeated use of \\[pascal-complete-word] will show you all of them.
236 Normally, when there is more than one possible completion,
237 it displays a list of all possible completions."
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"))
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"))
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"))
274 (defsubst pascal-get-beg-of-line
(&optional arg
)
276 (beginning-of-line arg
)
279 (defsubst pascal-get-end-of-line
(&optional arg
)
284 (defun pascal-declaration-end ()
286 (while (and (> nest
0)
288 "[:=]\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)"
289 (save-excursion (end-of-line 2) (point)) t
))
290 (cond ((match-beginning 1) (setq nest
(1+ nest
)))
291 ((match-beginning 2) (setq nest
(1- nest
)))
292 ((looking-at "[^(\n]+)") (setq nest
0))))))
295 (defun pascal-declaration-beg ()
297 (while (and (> nest
0)
298 (re-search-backward "[:=]\\|\\<\\(type\\|var\\|label\\|const\\)\\>\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)" (pascal-get-beg-of-line 0) t
))
299 (cond ((match-beginning 1) (setq nest
0))
300 ((match-beginning 2) (setq nest
(1- nest
)))
301 ((match-beginning 3) (setq nest
(1+ nest
)))))
305 (defsubst pascal-within-string
()
307 (nth 3 (parse-partial-sexp (pascal-get-beg-of-line) (point)))))
311 (defun pascal-mode ()
312 "Major mode for editing Pascal code. \\<pascal-mode-map>
313 TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
315 \\[pascal-complete-word] completes the word around current point with respect \
317 \\[pascal-show-completions] shows all possible completions at this point.
319 Other useful functions are:
321 \\[pascal-mark-defun]\t- Mark function.
322 \\[pascal-insert-block]\t- insert begin ... end;
323 \\[pascal-star-comment]\t- insert (* ... *)
324 \\[pascal-comment-area]\t- Put marked area in a comment, fixing nested comments.
325 \\[pascal-uncomment-area]\t- Uncomment an area commented with \
326 \\[pascal-comment-area].
327 \\[pascal-beg-of-defun]\t- Move to beginning of current function.
328 \\[pascal-end-of-defun]\t- Move to end of current function.
329 \\[pascal-goto-defun]\t- Goto function prompted for in the minibuffer.
330 \\[pascal-outline-mode]\t- Enter `pascal-outline-mode'.
332 Variables controlling indentation/edit style:
334 pascal-indent-level (default 3)
335 Indentation of Pascal statements with respect to containing block.
336 pascal-case-indent (default 2)
337 Indentation for case statements.
338 pascal-auto-newline (default nil)
339 Non-nil means automatically newline after semicolons and the punctuation
341 pascal-indent-nested-functions (default t)
342 Non-nil means nested functions are indented.
343 pascal-tab-always-indent (default t)
344 Non-nil means TAB in Pascal mode should always reindent the current line,
345 regardless of where in the line point is when the TAB command is used.
346 pascal-auto-endcomments (default t)
347 Non-nil means a comment { ... } is set after the ends which ends cases and
348 functions. The name of the function or case will be set between the braces.
349 pascal-auto-lineup (default t)
350 List of contexts where auto lineup of :'s or ='s should be done.
352 See also the user variables pascal-type-keywords, pascal-start-keywords and
353 pascal-separator-keywords.
355 Turning on Pascal mode calls the value of the variable pascal-mode-hook with
356 no args, if that value is non-nil."
358 (kill-all-local-variables)
359 (use-local-map pascal-mode-map
)
360 (setq major-mode
'pascal-mode
)
361 (setq mode-name
"Pascal")
362 (setq local-abbrev-table pascal-mode-abbrev-table
)
363 (set-syntax-table pascal-mode-syntax-table
)
364 (make-local-variable 'indent-line-function
)
365 (setq indent-line-function
'pascal-indent-line
)
366 (make-local-variable 'comment-indent-function
)
367 (setq comment-indent-function
'pascal-indent-comment
)
368 (make-local-variable 'parse-sexp-ignore-comments
)
369 (setq parse-sexp-ignore-comments nil
)
370 (make-local-variable 'blink-matching-paren-dont-ignore-comments
)
371 (setq blink-matching-paren-dont-ignore-comments t
)
372 (make-local-variable 'case-fold-search
)
373 (setq case-fold-search t
)
374 (make-local-variable 'comment-start
)
375 (setq comment-start
"{")
376 (make-local-variable 'comment-start-skip
)
377 (setq comment-start-skip
"(\\*+ *\\|{ *")
378 (make-local-variable 'comment-end
)
379 (setq comment-end
"}")
381 (make-local-variable 'font-lock-defaults
)
382 (setq font-lock-defaults
'(pascal-font-lock-keywords nil t
))
384 (make-local-variable 'imenu-generic-expression
)
385 (setq imenu-generic-expression pascal-imenu-generic-expression
)
386 (setq imenu-case-fold-search t
)
387 (run-mode-hooks 'pascal-mode-hook
))
392 ;;; Electric functions
394 (defun electric-pascal-terminate-line ()
395 "Terminate line and indent next line."
397 ;; First, check if current line should be indented
400 (skip-chars-forward " \t")
401 (if (looking-at pascal-autoindent-lines-re
)
402 (pascal-indent-line)))
403 (delete-horizontal-space) ; Removes trailing whitespaces
407 ;; Maybe we should set some endcomments
408 (if pascal-auto-endcomments
409 (pascal-set-auto-comments))
410 ;; Check if we shall indent inside comment
414 (skip-chars-forward " \t")
415 (cond ((looking-at "\\*[ \t]+)")
416 ;; Delete region between `*' and `)' if there is only whitespaces.
418 (delete-horizontal-space))
419 ((and (looking-at "(\\*\\|\\*[^)]")
421 (search-forward "*)" (pascal-get-end-of-line) t
))))
423 ;; If last line was a star comment line then this one shall be too.
429 (defun electric-pascal-semi-or-dot ()
430 "Insert `;' or `.' character and reindent the line."
432 (insert last-command-char
)
435 (pascal-indent-line))
436 (if pascal-auto-newline
437 (electric-pascal-terminate-line)))
439 (defun electric-pascal-colon ()
440 "Insert `:' and do all indentions except line indent on this line."
442 (insert last-command-char
)
443 ;; Do nothing if within string.
444 (if (pascal-within-string)
448 (pascal-indent-line))
449 (let ((pascal-tab-always-indent nil
))
450 (pascal-indent-command))))
452 (defun electric-pascal-equal ()
453 "Insert `=', and do indention if within type declaration."
455 (insert last-command-char
)
456 (if (eq (car (pascal-calculate-indent)) 'declaration
)
457 (let ((pascal-tab-always-indent nil
))
458 (pascal-indent-command))))
460 (defun electric-pascal-hash ()
461 "Insert `#', and indent to column 0 if this is a CPP directive."
463 (insert last-command-char
)
464 (if (save-excursion (beginning-of-line) (looking-at "^[ \t]*#"))
465 (save-excursion (beginning-of-line)
466 (delete-horizontal-space))))
468 (defun electric-pascal-tab ()
469 "Function called when TAB is pressed in Pascal mode."
471 ;; Do nothing if within a string or in a CPP directive.
472 (if (or (pascal-within-string)
474 (save-excursion (beginning-of-line) (eq (following-char) ?
#))))
476 ;; If pascal-tab-always-indent, indent the beginning of the line.
477 (if pascal-tab-always-indent
480 (pascal-indent-line))
482 (skip-chars-backward " \t")
486 (pascal-indent-command)))
491 ;;; Interactive functions
493 (defun pascal-insert-block ()
494 "Insert Pascal begin ... end; block in the code with right indentation."
497 (electric-pascal-terminate-line)
502 (pascal-indent-line)))
504 (defun pascal-star-comment ()
505 "Insert Pascal star comment at point."
509 (electric-pascal-terminate-line)
511 (electric-pascal-terminate-line)
512 (delete-horizontal-space)
516 (defun pascal-mark-defun ()
517 "Mark the current pascal function (or procedure).
518 This puts the mark at the end, and point at the beginning."
521 (pascal-end-of-defun)
523 (pascal-beg-of-defun)
524 (when (featurep 'xemacs
)
525 (zmacs-activate-region)))
527 (defun pascal-comment-area (start end
)
528 "Put the region into a Pascal comment.
529 The comments that are in this area are \"deformed\":
530 `*)' becomes `!(*' and `}' becomes `!{'.
531 These deformed comments are returned to normal if you use
532 \\[pascal-uncomment-area] to undo the commenting.
534 The commented area starts with `pascal-exclude-str-start', and ends with
535 `pascal-include-str-end'. But if you change these variables,
536 \\[pascal-uncomment-area] won't recognize the comments."
539 ;; Insert start and endcomments
541 (if (and (save-excursion (skip-chars-forward " \t") (eolp))
542 (not (save-excursion (skip-chars-backward " \t") (bolp))))
545 (insert pascal-exclude-str-end
)
550 (insert pascal-exclude-str-start
)
552 ;; Replace end-comments within commented area
555 (while (re-search-backward "\\*)" start t
)
556 (replace-match "!(*" t t
)))
558 (while (re-search-backward "}" start t
)
559 (replace-match "!{" t t
)))))
561 (defun pascal-uncomment-area ()
562 "Uncomment a commented area; change deformed comments back to normal.
563 This command does nothing if the pointer is not in a commented
564 area. See also `pascal-comment-area'."
567 (let ((start (point))
569 ;; Find the boundaries of the comment
571 (setq start
(progn (search-backward pascal-exclude-str-start nil t
)
573 (setq end
(progn (search-forward pascal-exclude-str-end nil t
)
575 ;; Check if we're really inside a comment
576 (if (or (equal start
(point)) (<= end
(point)))
577 (message "Not standing within commented area.")
584 (delete-region pos
(1+ (point))))
585 ;; Change comments back to normal
587 (while (re-search-backward "!{" start t
)
588 (replace-match "}" t t
)))
590 (while (re-search-backward "!(\\*" start t
)
591 (replace-match "*)" t t
)))
592 ;; Remove startcomment
597 (delete-region pos
(1+ (point)))))))))
599 (defun pascal-beg-of-defun ()
600 "Move backward to the beginning of the current function or procedure."
603 (if (not (looking-at (concat "\\s \\|\\s)\\|" pascal-defun-re
)))
605 (let ((nest 0) (max -
1) (func 0)
606 (reg (concat pascal-beg-block-re
"\\|"
607 pascal-end-block-re
"\\|"
609 (while (re-search-backward reg nil
'move
)
610 (cond ((let ((state (save-excursion
611 (parse-partial-sexp (point-min) (point)))))
612 (or (nth 3 state
) (nth 4 state
))) ; Inside string or comment
614 ((match-end 1) ; begin|case|record|repeat
615 (if (and (looking-at "\\<record\\>") (>= max
0))
616 (setq func
(1- func
)))
619 ((match-end 2) ; end|until
620 (if (and (= nest max
) (>= max
0))
621 (setq func
(1+ func
)))
622 (setq nest
(1- nest
)))
623 ((match-end 3) ; function|procedure
626 (setq func
(1- func
)))))))
629 (defun pascal-end-of-defun ()
630 "Move forward to the end of the current function or procedure."
632 (if (looking-at "\\s ")
634 (if (not (looking-at pascal-defun-re
))
635 (pascal-beg-of-defun))
637 (let ((nest 0) (func 1)
638 (reg (concat pascal-beg-block-re
"\\|"
639 pascal-end-block-re
"\\|"
641 (while (and (/= func
0)
642 (re-search-forward reg nil
'move
))
643 (cond ((let ((state (save-excursion
644 (parse-partial-sexp (point-min) (point)))))
645 (or (nth 3 state
) (nth 4 state
))) ; Inside string or comment
648 (setq nest
(1+ nest
))
650 (goto-char (match-beginning 0))
651 (looking-at "\\<record\\>"))
652 (setq func
(1+ func
))))
654 (setq nest
(1- nest
))
656 (setq func
(1- func
))))
658 (setq func
(1+ func
))))))
661 (defun pascal-end-of-statement ()
662 "Move forward to end of current statement."
664 (let ((parse-sexp-ignore-comments t
)
666 (regexp (concat "\\(" pascal-beg-block-re
"\\)\\|\\("
667 pascal-end-block-re
"\\)")))
668 (if (not (looking-at "[ \t\n]")) (forward-sexp -
1))
669 (or (looking-at pascal-beg-block-re
)
670 ;; Skip to end of statement
671 (setq pos
(catch 'found
674 (cond ((looking-at "[ \t]*;")
675 (skip-chars-forward "^;")
677 (throw 'found
(point)))
680 (looking-at pascal-beg-block-re
))
681 (goto-char (match-beginning 0))
684 (throw 'found
(point))))))))
686 ;; Skip a whole block
689 (re-search-forward regexp nil
'move
)
690 (setq nest
(if (match-end 1)
694 (throw 'found
(point)))
696 (throw 'found
(pascal-end-of-statement))))))
699 (defun pascal-downcase-keywords ()
700 "Downcase all Pascal keywords in the buffer."
702 (pascal-change-keywords 'downcase-word
))
704 (defun pascal-upcase-keywords ()
705 "Upcase all Pascal keywords in the buffer."
707 (pascal-change-keywords 'upcase-word
))
709 (defun pascal-capitalize-keywords ()
710 "Capitalize all Pascal keywords in the buffer."
712 (pascal-change-keywords 'capitalize-word
))
714 ;; Change the keywords according to argument.
715 (defun pascal-change-keywords (change-word)
717 (let ((keyword-re (concat "\\<\\("
718 (mapconcat 'identity pascal-keywords
"\\|")
720 (goto-char (point-min))
721 (while (re-search-forward keyword-re nil t
)
722 (funcall change-word -
1)))))
729 (defun pascal-set-auto-comments ()
730 "Insert `{ case }' or `{ NAME }' on this line if appropriate.
731 Insert `{ case }' if there is an `end' on the line which
732 ends a case block. Insert `{ NAME }' if there is an `end'
733 on the line which ends a function or procedure named NAME."
736 (skip-chars-forward " \t")
737 (if (and (looking-at "\\<end;")
740 (search-backward "{" (pascal-get-beg-of-line) t
))))
741 (let ((type (car (pascal-calculate-indent))))
742 (if (eq type
'declaration
)
745 ;; This is a case block
748 (delete-horizontal-space)
749 (insert " { case }"))
751 ;; Check if this is the end of a function
753 (while (not (or (looking-at pascal-defun-re
) (bobp)))
755 (cond ((looking-at pascal-beg-block-re
)
756 (setq nest
(1- nest
)))
757 ((looking-at pascal-end-block-re
)
758 (setq nest
(1+ nest
)))))
764 (delete-horizontal-space)
768 (setq b
(progn (pascal-beg-of-defun)
769 (skip-chars-forward "^ \t")
770 (skip-chars-forward " \t")
772 e
(progn (skip-chars-forward "a-zA-Z0-9_")
774 (insert-buffer-substring (current-buffer) b e
))
775 (insert " }"))))))))))
782 (defconst pascal-indent-alist
783 '((block .
(+ ind pascal-indent-level
))
784 (case .
(+ ind pascal-case-indent
))
785 (caseblock . ind
) (cpp .
0)
786 (declaration .
(+ ind pascal-indent-level
))
787 (paramlist .
(pascal-indent-paramlist t
))
788 (comment .
(pascal-indent-comment))
789 (defun . ind
) (contexp . ind
)
790 (unknown . ind
) (string .
0) (progbeg .
0)))
792 (defun pascal-indent-command ()
793 "Indent for special part of code."
794 (let* ((indent-str (pascal-calculate-indent))
795 (type (car indent-str
)))
796 (cond ((and (eq type
'paramlist
)
797 (or (memq 'all pascal-auto-lineup
)
798 (memq 'paramlist pascal-auto-lineup
)))
799 (pascal-indent-paramlist)
800 (pascal-indent-paramlist))
801 ((and (eq type
'declaration
)
802 (or (memq 'all pascal-auto-lineup
)
803 (memq 'declaration pascal-auto-lineup
)))
804 (pascal-indent-declaration))
805 ((and (eq type
'case
) (not (looking-at "^[ \t]*$"))
806 (or (memq 'all pascal-auto-lineup
)
807 (memq 'case pascal-auto-lineup
)))
808 (pascal-indent-case)))
809 (if (looking-at "[ \t]+$")
810 (skip-chars-forward " \t"))))
812 (defun pascal-indent-line ()
813 "Indent current line as a Pascal statement."
814 (let* ((indent-str (pascal-calculate-indent))
815 (type (car indent-str
))
816 (ind (car (cdr indent-str
))))
817 ;; Labels should not be indented.
818 (if (and (looking-at "^[0-9a-zA-Z]+[ \t]*:[^=]")
819 (not (eq type
'declaration
)))
820 (search-forward ":" nil t
))
821 (delete-horizontal-space)
822 (cond (; Some things should not be indented
823 (or (and (eq type
'declaration
) (looking-at pascal-declaration-re
))
826 (; Other things should have no extra indent
827 (looking-at pascal-noindent-re
)
829 (; Nested functions should be indented
830 (looking-at pascal-defun-re
)
831 (if (and pascal-indent-nested-functions
833 (indent-to (+ ind pascal-indent-level
))
835 (; But most lines are treated this way
836 (indent-to (eval (cdr (assoc type pascal-indent-alist
))))
839 (defun pascal-calculate-indent ()
840 "Calculate the indent of the current Pascal line.
841 Return a list of two elements: (INDENT-TYPE INDENT-LEVEL)."
843 (let* ((parse-sexp-ignore-comments t
)
845 (state (save-excursion (parse-partial-sexp (point-min) (point))))
846 (nest 0) (par 0) (complete (looking-at "[ \t]*end\\>"))
847 (elsed (looking-at "[ \t]*else\\>")) (funccnt 0)
848 (did-func (looking-at "[ \t]*\\(procedure\\|function\\)\\>"))
849 (type (catch 'nesting
850 ;; Check if inside a string, comment or parenthesis
851 (cond ((nth 3 state
) (throw 'nesting
'string
))
852 ((nth 4 state
) (throw 'nesting
'comment
))
854 (goto-char (scan-lists (point) -
1 (car state
)))
855 (setq par
(1+ (current-column))))
856 ((save-excursion (beginning-of-line)
857 (eq (following-char) ?
#))
858 (throw 'nesting
'cpp
)))
859 ;; Loop until correct indent is found
862 (cond (;--Escape from case statements
863 (and (looking-at "[A-Za-z0-9]+[ \t]*:[^=]")
865 (save-excursion (skip-chars-backward " \t")
868 (end-of-line) (backward-sexp) (point))
870 (> (save-excursion (goto-char oldpos
)
874 (throw 'nesting
'caseblock
))
875 (;--Beginning of program
876 (looking-at pascal-progbeg-re
)
877 (throw 'nesting
'progbeg
))
878 (;--No known statements
880 (throw 'nesting
'progbeg
))
881 (;--Nest block outwards
882 (looking-at pascal-beg-block-re
)
884 (cond ((looking-at "case\\>")
885 (throw 'nesting
'case
))
886 ((looking-at "record\\>")
887 (throw 'nesting
'declaration
))
888 (t (throw 'nesting
'block
)))
889 (if (and (looking-at "record\\>") (= nest
1))
890 (setq funccnt
(1- funccnt
)))
891 (setq nest
(1- nest
))))
892 (;--Nest block inwards
893 (looking-at pascal-end-block-re
)
894 (if (and (looking-at "end\\s ")
895 elsed
(not complete
))
896 (throw 'nesting
'block
))
898 (setq funccnt
(1+ funccnt
)))
901 (;--Defun (or parameter list)
902 (and (looking-at pascal-defun-re
)
903 (progn (setq funccnt
(1- funccnt
)
905 (or (bolp) (< funccnt
0))))
906 ;; Prevent searching whole buffer
907 (if (and (bolp) (>= funccnt
0))
908 (throw 'nesting
'progbeg
))
910 (throw 'nesting
'defun
)
913 (while (re-search-forward
914 "\\(\\<record\\>\\)\\|\\<end\\>"
917 (setq n
(1+ n
)) (setq n
(1- n
))))
919 (throw 'nesting
'declaration
)
920 (throw 'nesting
'paramlist
)))))
922 (and (looking-at pascal-declaration-re
)
928 (looking-at "^[ \t]*$"))
929 (throw 'nesting
'unknown
)
930 (throw 'nesting
'declaration
)))
931 (;--If, else or while statement
933 (looking-at pascal-sub-block-re
))
934 (throw 'nesting
'block
))
935 (;--Found complete statement
936 (save-excursion (forward-sexp 1)
937 (= (following-char) ?\
;))
941 ;; Return type of block and indent level.
942 (if (> par
0) ; Unclosed Parenthesis
944 (list type
(pascal-indent-level))))))
946 (defun pascal-indent-level ()
947 "Return the indent-level the current statement has.
948 Do not count labels, case-statements or records."
951 (if (looking-at "[ \t]*[0-9a-zA-Z]+[ \t]*:[^=]")
952 (search-forward ":" nil t
)
953 (if (looking-at ".*=[ \t]*record\\>")
954 (search-forward "=" nil t
)))
955 (skip-chars-forward " \t")
958 (defun pascal-indent-comment ()
959 "Return indent for current comment."
961 (re-search-backward "\\((\\*\\)\\|{" nil t
)
962 (if (match-beginning 1)
963 (1+ (current-column))
966 (defun pascal-indent-case ()
967 "Indent within case statements."
968 (let ((savepos (point-marker))
972 (re-search-backward "\\<case\\>" nil t
)))
976 (while (< (point) end
)
977 (if (re-search-forward
978 "^[ \t]*[^ \t,:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:"
979 (marker-position end
) 'move
)
983 (delete-horizontal-space)
984 (if (> (current-column) ind
)
985 (setq ind
(current-column)))
986 (pascal-end-of-statement))))
988 ;; Indent all case statements
989 (while (< (point) end
)
990 (if (re-search-forward
991 "^[ \t]*[^][ \t,\\.:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:"
992 (marker-position end
) 'move
)
995 (if (/= (following-char) ?
:)
998 (delete-horizontal-space)
1000 (pascal-end-of-statement))
1001 (goto-char savepos
)))
1003 (defun pascal-indent-paramlist (&optional arg
)
1004 "Indent current line in parameterlist.
1005 If optional arg is non-nil, just return the
1006 indent of the current line in parameterlist."
1008 (let* ((oldpos (point))
1009 (stpos (progn (goto-char (scan-lists (point) -
1 1)) (point)))
1010 (stcol (1+ (current-column)))
1011 (edpos (progn (pascal-declaration-end)
1012 (search-backward ")" (pascal-get-beg-of-line) t
)
1014 (usevar (re-search-backward "\\<var\\>" stpos t
)))
1016 ;; If arg, just return indent
1019 (if (or (not usevar
) (looking-at "[ \t]*var\\>"))
1023 (delete-horizontal-space)
1024 (if (and usevar
(not (looking-at "var\\>")))
1025 (indent-to (+ 4 stcol
)))
1026 (pascal-indent-declaration nil stpos edpos
)))))
1028 (defun pascal-indent-declaration (&optional arg start end
)
1029 "Indent current lines as declaration, lining up the `:'s or `='s."
1030 (let ((pos (point-marker)))
1031 (if (and (not (or arg start
)) (not (pascal-declaration-beg)))
1033 (let ((lineup (if (or (looking-at "\\<var\\>\\|\\<record\\>") arg start
)
1035 (stpos (if start start
1036 (forward-word 2) (backward-word 1) (point)))
1037 (edpos (set-marker (make-marker)
1039 (max (progn (pascal-declaration-end)
1045 ;; Indent lines in record block
1047 (while (<= (point) edpos
)
1049 (delete-horizontal-space)
1050 (if (looking-at "end\\>")
1052 (indent-to (+ arg pascal-indent-level
)))
1056 (setq ind
(pascal-get-lineup-indent stpos edpos lineup
))
1058 (while (and (<= (point) edpos
) (not (eobp)))
1059 (if (search-forward lineup
(pascal-get-end-of-line) 'move
)
1061 (delete-horizontal-space)
1063 (if (not (looking-at lineup
))
1064 (forward-line 1) ; No more indent if there is no : or =
1066 (delete-horizontal-space)
1068 ;; Indent record block
1069 (if (looking-at "record\\>")
1070 (pascal-indent-declaration (current-column)))
1071 (forward-line 1)))))
1073 ;; If arg - move point
1074 (if arg
(forward-line -
1)
1077 ; "Return the indent level that will line up several lines within the region
1078 ;from b to e nicely. The lineup string is str."
1079 (defun pascal-get-lineup-indent (b e str
)
1082 (reg (concat str
"\\|\\(\\<record\\>\\)\\|" pascal-defun-re
)))
1084 ;; Get rightmost position
1085 (while (< (point) e
)
1086 (and (re-search-forward reg
(min e
(pascal-get-end-of-line 2)) 'move
)
1087 (cond ((match-beginning 1)
1088 ;; Skip record blocks
1089 (pascal-declaration-end))
1090 ((match-beginning 2)
1091 ;; We have entered a new procedure. Exit.
1094 (goto-char (match-beginning 0))
1095 (skip-chars-backward " \t")
1096 (if (> (current-column) ind
)
1097 (setq ind
(current-column)))
1098 (goto-char (match-end 0))
1101 ;; In case no lineup was found
1104 ;; No lineup-string found
1107 (skip-chars-backward " \t")
1108 (1+ (current-column))))))
1115 (defvar pascal-str nil
)
1116 (defvar pascal-all nil
)
1117 (defvar pascal-pred nil
)
1118 (defvar pascal-buffer-to-use nil
)
1119 (defvar pascal-flag nil
)
1121 (defun pascal-string-diff (str1 str2
)
1122 "Return index of first letter where STR1 and STR2 differs."
1126 (if (or (> (1+ diff
) (length str1
))
1127 (> (1+ diff
) (length str2
)))
1129 (or (equal (aref str1 diff
) (aref str2 diff
))
1131 (setq diff
(1+ diff
))))))
1133 ;; Calculate all possible completions for functions if argument is `function',
1134 ;; completions for procedures if argument is `procedure' or both functions and
1135 ;; procedures otherwise.
1137 (defun pascal-func-completion (type)
1138 ;; Build regular expression for function/procedure names
1139 (if (string= pascal-str
"")
1140 (setq pascal-str
"[a-zA-Z_]"))
1141 (let ((pascal-str (concat (cond
1142 ((eq type
'procedure
) "\\<\\(procedure\\)\\s +")
1143 ((eq type
'function
) "\\<\\(function\\)\\s +")
1144 (t "\\<\\(function\\|procedure\\)\\s +"))
1145 "\\<\\(" pascal-str
"[a-zA-Z0-9_.]*\\)\\>"))
1148 (if (not (looking-at "\\<\\(function\\|procedure\\)\\>"))
1149 (re-search-backward "\\<\\(function\\|procedure\\)\\>" nil t
))
1152 ;; Search through all reachable functions
1153 (while (pascal-beg-of-defun)
1154 (if (re-search-forward pascal-str
(pascal-get-end-of-line) t
)
1155 (progn (setq match
(buffer-substring (match-beginning 2)
1157 (if (or (null pascal-pred
)
1158 (funcall pascal-pred match
))
1159 (setq pascal-all
(cons match pascal-all
)))))
1160 (goto-char (match-beginning 0)))))
1162 (defun pascal-get-completion-decl ()
1163 ;; Macro for searching through current declaration (var, type or const)
1164 ;; for matches of `str' and adding the occurrence to `all'
1165 (let ((end (save-excursion (pascal-declaration-end)
1169 (while (< (point) end
)
1170 (if (re-search-forward "[:=]" (pascal-get-end-of-line) t
)
1171 ;; Traverse current line
1172 (while (and (re-search-backward
1173 (concat "\\((\\|\\<\\(var\\|type\\|const\\)\\>\\)\\|"
1175 (pascal-get-beg-of-line) t
)
1176 (not (match-end 1)))
1177 (setq match
(buffer-substring (match-beginning 0) (match-end 0)))
1178 (if (string-match (concat "\\<" pascal-str
) match
)
1179 (if (or (null pascal-pred
)
1180 (funcall pascal-pred match
))
1181 (setq pascal-all
(cons match pascal-all
))))))
1182 (if (re-search-forward "\\<record\\>" (pascal-get-end-of-line) t
)
1183 (pascal-declaration-end)
1184 (forward-line 1)))))
1186 (defun pascal-type-completion ()
1187 "Calculate all possible completions for types."
1188 (let ((start (point))
1190 ;; Search for all reachable type declarations
1191 (while (or (pascal-beg-of-defun)
1192 (setq goon
(not goon
)))
1194 (if (and (< start
(prog1 (save-excursion (pascal-end-of-defun)
1198 "\\<type\\>\\|\\<\\(begin\\|function\\|procedure\\)\\>"
1200 (not (match-end 1)))
1201 ;; Check current type declaration
1202 (pascal-get-completion-decl))))))
1204 (defun pascal-var-completion ()
1205 "Calculate all possible completions for variables (or constants)."
1206 (let ((start (point))
1208 ;; Search for all reachable var declarations
1209 (while (or (pascal-beg-of-defun)
1210 (setq goon
(not goon
)))
1212 (if (> start
(prog1 (save-excursion (pascal-end-of-defun)
1214 () ; Declarations not reachable
1215 (if (search-forward "(" (pascal-get-end-of-line) t
)
1216 ;; Check parameterlist
1217 (pascal-get-completion-decl))
1219 (while (>= (setq twice
(1- twice
)) 0)
1220 (cond ((and (re-search-forward
1221 (concat "\\<\\(var\\|const\\)\\>\\|"
1222 "\\<\\(begin\\|function\\|procedure\\)\\>")
1224 (not (match-end 2)))
1225 ;; Check var/const declarations
1226 (pascal-get-completion-decl))
1228 (setq twice
0)))))))))
1231 (defun pascal-keyword-completion (keyword-list)
1232 "Give list of all possible completions of keywords in KEYWORD-LIST."
1233 (mapcar '(lambda (s)
1234 (if (string-match (concat "\\<" pascal-str
) s
)
1235 (if (or (null pascal-pred
)
1236 (funcall pascal-pred s
))
1237 (setq pascal-all
(cons s pascal-all
)))))
1240 ;; Function passed to completing-read, try-completion or
1241 ;; all-completions to get completion on STR. If predicate is non-nil,
1242 ;; it must be a function to be called for every match to check if this
1243 ;; should really be a match. If flag is t, the function returns a list
1244 ;; of all possible completions. If it is nil it returns a string, the
1245 ;; longest possible completion, or t if STR is an exact match. If flag
1246 ;; is 'lambda, the function returns t if STR is an exact match, nil
1249 (defun pascal-completion (pascal-str pascal-pred pascal-flag
)
1251 (let ((pascal-all nil
))
1252 ;; Set buffer to use for searching labels. This should be set
1253 ;; within functions which use pascal-completions
1254 (set-buffer pascal-buffer-to-use
)
1256 ;; Determine what should be completed
1257 (let ((state (car (pascal-calculate-indent))))
1258 (cond (;--Within a declaration or parameterlist
1259 (or (eq state
'declaration
) (eq state
'paramlist
)
1260 (and (eq state
'defun
)
1262 (re-search-backward ")[ \t]*:"
1263 (pascal-get-beg-of-line) t
))))
1264 (if (or (eq state
'paramlist
) (eq state
'defun
))
1265 (pascal-beg-of-defun))
1266 (pascal-type-completion)
1267 (pascal-keyword-completion pascal-type-keywords
))
1268 (;--Starting a new statement
1269 (and (not (eq state
'contexp
))
1271 (skip-chars-backward "a-zA-Z0-9_.")
1273 (or (looking-at pascal-nosemi-re
)
1276 (looking-at "\\s *\\(;\\|:[^=]\\)")))))
1277 (save-excursion (pascal-var-completion))
1278 (pascal-func-completion 'procedure
)
1279 (pascal-keyword-completion pascal-start-keywords
))
1281 (save-excursion (pascal-var-completion))
1282 (pascal-func-completion 'function
)
1283 (pascal-keyword-completion pascal-separator-keywords
))))
1285 ;; Now we have built a list of all matches. Give response to caller
1286 (pascal-completion-response))))
1288 (defun pascal-completion-response ()
1289 (cond ((or (equal pascal-flag
'lambda
) (null pascal-flag
))
1290 ;; This was not called by all-completions
1291 (if (null pascal-all
)
1292 ;; Return nil if there was no matching label
1294 ;; Get longest string common in the labels
1295 (let* ((elm (cdr pascal-all
))
1296 (match (car pascal-all
))
1297 (min (length match
))
1299 (if (string= match pascal-str
)
1300 ;; Return t if first match was an exact match
1302 (while (not (null elm
))
1303 ;; Find longest common string
1304 (if (< (setq tmp
(pascal-string-diff match
(car elm
))) min
)
1307 (setq match
(substring match
0 min
))))
1308 ;; Terminate with match=t if this is an exact match
1309 (if (string= (car elm
) pascal-str
)
1313 (setq elm
(cdr elm
)))))
1314 ;; If this is a test just for exact match, return nil ot t
1315 (if (and (equal pascal-flag
'lambda
) (not (equal match
't
)))
1318 ;; If flag is t, this was called by all-completions. Return
1319 ;; list of all possible completions
1323 (defvar pascal-last-word-numb
0)
1324 (defvar pascal-last-word-shown nil
)
1325 (defvar pascal-last-completions nil
)
1327 (defun pascal-complete-word ()
1328 "Complete word at current point.
1329 \(See also `pascal-toggle-completions', `pascal-type-keywords',
1330 `pascal-start-keywords' and `pascal-separator-keywords'.)"
1332 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
1333 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point)))
1334 (pascal-str (buffer-substring b e
))
1335 ;; The following variable is used in pascal-completion
1336 (pascal-buffer-to-use (current-buffer))
1337 (allcomp (if (and pascal-toggle-completions
1338 (string= pascal-last-word-shown pascal-str
))
1339 pascal-last-completions
1340 (all-completions pascal-str
'pascal-completion
)))
1341 (match (if pascal-toggle-completions
1343 pascal-str
(mapcar '(lambda (elm)
1344 (cons elm
0)) allcomp
)))))
1345 ;; Delete old string
1348 ;; Toggle-completions inserts whole labels
1349 (if pascal-toggle-completions
1351 ;; Update entry number in list
1352 (setq pascal-last-completions allcomp
1353 pascal-last-word-numb
1354 (if (>= pascal-last-word-numb
(1- (length allcomp
)))
1356 (1+ pascal-last-word-numb
)))
1357 (setq pascal-last-word-shown
(elt allcomp pascal-last-word-numb
))
1358 ;; Display next match or same string if no match was found
1359 (if (not (null allcomp
))
1360 (insert "" pascal-last-word-shown
)
1361 (insert "" pascal-str
)
1362 (message "(No match)")))
1363 ;; The other form of completion does not necessarily do that.
1365 ;; Insert match if found, or the original string if no match
1366 (if (or (null match
) (equal match
't
))
1367 (progn (insert "" pascal-str
)
1368 (message "(No match)"))
1370 ;; Give message about current status of completion
1371 (cond ((equal match
't
)
1372 (if (not (null (cdr allcomp
)))
1373 (message "(Complete but not unique)")
1374 (message "(Sole completion)")))
1375 ;; Display buffer if the current completion didn't help
1376 ;; on completing the label.
1377 ((and (not (null (cdr allcomp
))) (= (length pascal-str
)
1379 (with-output-to-temp-buffer "*Completions*"
1380 (display-completion-list allcomp pascal-str
))
1381 ;; Wait for a keypress. Then delete *Completion* window
1382 (momentary-string-display "" (point))
1383 (delete-window (get-buffer-window (get-buffer "*Completions*")))
1386 (defun pascal-show-completions ()
1387 "Show all possible completions at current point."
1389 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
1390 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point)))
1391 (pascal-str (buffer-substring b e
))
1392 ;; The following variable is used in pascal-completion
1393 (pascal-buffer-to-use (current-buffer))
1394 (allcomp (if (and pascal-toggle-completions
1395 (string= pascal-last-word-shown pascal-str
))
1396 pascal-last-completions
1397 (all-completions pascal-str
'pascal-completion
))))
1398 ;; Show possible completions in a temporary buffer.
1399 (with-output-to-temp-buffer "*Completions*"
1400 (display-completion-list allcomp pascal-str
))
1401 ;; Wait for a keypress. Then delete *Completion* window
1402 (momentary-string-display "" (point))
1403 (delete-window (get-buffer-window (get-buffer "*Completions*")))))
1406 (defun pascal-get-default-symbol ()
1407 "Return symbol around current point as a string."
1409 (buffer-substring (progn
1410 (skip-chars-backward " \t")
1411 (skip-chars-backward "a-zA-Z0-9_")
1414 (skip-chars-forward "a-zA-Z0-9_")
1417 (defun pascal-build-defun-re (str &optional arg
)
1418 "Return function/procedure starting with STR as regular expression.
1419 With optional second arg non-nil, STR is the complete name of the instruction."
1421 (concat "^\\(function\\|procedure\\)[ \t]+\\(" str
"\\)\\>")
1422 (concat "^\\(function\\|procedure\\)[ \t]+\\(" str
"[a-zA-Z0-9_]*\\)\\>")))
1424 ;; Function passed to completing-read, try-completion or
1425 ;; all-completions to get completion on any function name. If
1426 ;; predicate is non-nil, it must be a function to be called for every
1427 ;; match to check if this should really be a match. If flag is t, the
1428 ;; function returns a list of all possible completions. If it is nil
1429 ;; it returns a string, the longest possible completion, or t if STR
1430 ;; is an exact match. If flag is 'lambda, the function returns t if
1431 ;; STR is an exact match, nil otherwise.
1433 (defun pascal-comp-defun (pascal-str pascal-pred pascal-flag
)
1435 (let ((pascal-all nil
)
1438 ;; Set buffer to use for searching labels. This should be set
1439 ;; within functions which use pascal-completions
1440 (set-buffer pascal-buffer-to-use
)
1442 (let ((pascal-str pascal-str
))
1443 ;; Build regular expression for functions
1444 (if (string= pascal-str
"")
1445 (setq pascal-str
(pascal-build-defun-re "[a-zA-Z_]"))
1446 (setq pascal-str
(pascal-build-defun-re pascal-str
)))
1447 (goto-char (point-min))
1449 ;; Build a list of all possible completions
1450 (while (re-search-forward pascal-str nil t
)
1451 (setq match
(buffer-substring (match-beginning 2) (match-end 2)))
1452 (if (or (null pascal-pred
)
1453 (funcall pascal-pred match
))
1454 (setq pascal-all
(cons match pascal-all
)))))
1456 ;; Now we have built a list of all matches. Give response to caller
1457 (pascal-completion-response))))
1459 (defun pascal-goto-defun ()
1460 "Move to specified Pascal function/procedure.
1461 The default is a name found in the buffer around point."
1463 (let* ((default (pascal-get-default-symbol))
1464 ;; The following variable is used in pascal-comp-function
1465 (pascal-buffer-to-use (current-buffer))
1466 (default (if (pascal-comp-defun default nil
'lambda
)
1468 (label (if (not (string= default
""))
1469 ;; Do completion with default
1470 (completing-read (concat "Label (default " default
"): ")
1471 'pascal-comp-defun
nil t
"")
1472 ;; There is no default value. Complete without it
1473 (completing-read "Label: "
1474 'pascal-comp-defun
nil t
""))))
1475 ;; If there was no response on prompt, use default value
1476 (if (string= label
"")
1477 (setq label default
))
1478 ;; Goto right place in buffer if label is not an empty string
1479 (or (string= label
"")
1481 (goto-char (point-min))
1482 (re-search-forward (pascal-build-defun-re label t
))
1483 (beginning-of-line)))))
1488 ;;; Pascal-outline-mode
1490 (defvar pascal-outline-map
1491 (let ((map (make-sparse-keymap)))
1492 (if (fboundp 'set-keymap-name
)
1493 (set-keymap-name pascal-outline-map
'pascal-outline-map
))
1494 (define-key map
"\M-\C-a" 'pascal-outline-prev-defun
)
1495 (define-key map
"\M-\C-e" 'pascal-outline-next-defun
)
1496 (define-key map
"\C-c\C-d" 'pascal-outline-goto-defun
)
1497 (define-key map
"\C-c\C-s" 'pascal-show-all
)
1498 (define-key map
"\C-c\C-h" 'pascal-hide-other-defuns
)
1500 "Keymap used in Pascal Outline mode.")
1502 (define-obsolete-function-alias 'pascal-outline
'pascal-outline-mode
)
1503 (define-minor-mode pascal-outline-mode
1504 "Outline-line minor mode for Pascal mode.
1505 When in Pascal Outline mode, portions
1506 of the text being edited may be made invisible. \\<pascal-outline-map>
1508 Pascal Outline mode provides some additional commands.
1510 \\[pascal-outline-prev-defun]\
1511 \t- Move to previous function/procedure, hiding everything else.
1512 \\[pascal-outline-next-defun]\
1513 \t- Move to next function/procedure, hiding everything else.
1514 \\[pascal-outline-goto-defun]\
1515 \t- Goto function/procedure prompted for in minibuffer,
1516 \t hide all other functions.
1517 \\[pascal-show-all]\t- Show the whole buffer.
1518 \\[pascal-hide-other-defuns]\
1519 \t- Hide everything but the current function (function under the cursor).
1520 \\[pascal-outline]\t- Leave pascal-outline-mode."
1521 :init-value nil
:lighter
" Outl" :keymap pascal-outline-map
1522 (add-to-invisibility-spec '(pascal . t
))
1523 (unless pascal-outline-mode
1526 (defun pascal-outline-change (b e pascal-flag
)
1528 ;; This used to use selective display so the boundaries used by the
1529 ;; callers didn't have to be precise, since it just looked for \n or \^M
1530 ;; and switched them.
1531 (goto-char b
) (setq b
(line-end-position))
1532 (goto-char e
) (setq e
(line-end-position)))
1534 ;; We could try and optimize this in the case where the region is
1535 ;; already hidden. But I'm not sure it's worth the trouble.
1536 (remove-overlays b e
'invisible
'pascal
)
1537 (when (eq pascal-flag ?\^M
)
1538 (let ((ol (make-overlay b e nil t nil
)))
1539 (overlay-put ol
'invisible
'pascal
)
1540 (overlay-put ol
'evaporate t
)))))
1542 (defun pascal-show-all ()
1543 "Show all of the text in the buffer."
1545 (pascal-outline-change (point-min) (point-max) ?
\n))
1547 (defun pascal-hide-other-defuns ()
1548 "Show only the current defun."
1551 (let ((beg (progn (if (not (looking-at "\\(function\\|procedure\\)\\>"))
1552 (pascal-beg-of-defun))
1554 (end (progn (pascal-end-of-defun)
1556 (search-forward "\n\\|\^M" nil t
)
1558 (opoint (point-min)))
1559 (goto-char (point-min))
1561 ;; Hide all functions before current function
1562 (while (re-search-forward "^\\(function\\|procedure\\)\\>" beg
'move
)
1563 (pascal-outline-change opoint
(1- (match-beginning 0)) ?\^M
)
1564 (setq opoint
(point))
1565 ;; Functions may be nested
1566 (if (> (progn (pascal-end-of-defun) (point)) beg
)
1567 (goto-char opoint
)))
1569 (pascal-outline-change opoint
(1- beg
) ?\^M
))
1571 ;; Show current function
1572 (pascal-outline-change beg end ?
\n)
1573 ;; Hide nested functions
1575 (while (re-search-forward "^\\(function\\|procedure\\)\\>" end
'move
)
1576 (setq opoint
(point))
1577 (pascal-end-of-defun)
1578 (pascal-outline-change opoint
(point) ?\^M
))
1583 ;; Hide all function after current function
1584 (while (re-search-forward "^\\(function\\|procedure\\)\\>" nil
'move
)
1585 (pascal-outline-change opoint
(1- (match-beginning 0)) ?\^M
)
1586 (setq opoint
(point))
1587 (pascal-end-of-defun))
1588 (pascal-outline-change opoint
(point-max) ?\^M
)
1590 ;; Hide main program
1591 (if (< (progn (forward-line -
1) (point)) end
)
1594 (pascal-end-of-defun)
1596 (pascal-outline-change (point) (point-max) ?\^M
))))))
1598 (defun pascal-outline-next-defun ()
1599 "Move to next function/procedure, hiding all others."
1601 (pascal-end-of-defun)
1602 (pascal-hide-other-defuns))
1604 (defun pascal-outline-prev-defun ()
1605 "Move to previous function/procedure, hiding all others."
1607 (pascal-beg-of-defun)
1608 (pascal-hide-other-defuns))
1610 (defun pascal-outline-goto-defun ()
1611 "Move to specified function/procedure, hiding all others."
1614 (pascal-hide-other-defuns))
1618 ;; arch-tag: 04535136-fd93-40b4-a505-c9bebdc051f5
1619 ;;; pascal.el ends here