Minor-mode doc fixes for ARG behavior
[bpt/emacs.git] / lisp / progmodes / pascal.el
CommitLineData
7eabc1be 1;;; pascal.el --- major mode for editing pascal source in Emacs -*- lexical-binding: t -*-
1a2b6c52 2
e1ac4066 3;; Copyright (C) 1993-2012 Free Software Foundation, Inc.
1a2b6c52 4
9f92e5d9 5;; Author: Espen Skoglund <esk@gnu.org>
be010748 6;; Keywords: languages
1a2b6c52 7
be010748 8;; This file is part of GNU Emacs.
1a2b6c52 9
b1fc2b50 10;; GNU Emacs is free software: you can redistribute it and/or modify
be010748 11;; it under the terms of the GNU General Public License as published by
b1fc2b50
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
1a2b6c52 14
e451cded 15;; GNU Emacs is distributed in the hope that it will be useful,
be010748
RS
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.
1a2b6c52 19
be010748 20;; You should have received a copy of the GNU General Public License
b1fc2b50 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1a2b6c52
RS
22
23;;; Commentary:
24
b578f267
EN
25;; USAGE
26;; =====
da4ce263 27
b578f267
EN
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>
da4ce263 32
b578f267
EN
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):
35;;
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)
a1506d29 43;; pascal-type-keywords '("array" "file" "packed" "char"
f80235e3 44;; "integer" "real" "string" "record")
b578f267 45;; pascal-start-keywords '("begin" "end" "function" "procedure"
f80235e3
RS
46;; "repeat" "until" "while" "read" "readln"
47;; "reset" "rewrite" "write" "writeln")
b578f267 48;; pascal-separator-keywords '("downto" "else" "mod" "div" "then"))
1a2b6c52 49
b578f267
EN
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
9f92e5d9
GM
55;; find any bugs, you may submit them to: esk@gnu.org as well as to
56;; bug-gnu-emacs@gnu.org.
da4ce263
RS
57\f
58;;; Code:
1a2b6c52 59
3bb8691b
JB
60(eval-when-compile (require 'cl))
61
f0cca206 62(defgroup pascal nil
abefd511 63 "Major mode for editing Pascal source in Emacs."
8ec3bce0 64 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
f0cca206
RS
65 :group 'languages)
66
1a2b6c52
RS
67(defvar pascal-mode-abbrev-table nil
68 "Abbrev table in use in Pascal-mode buffers.")
69(define-abbrev-table 'pascal-mode-abbrev-table ())
70
86ac52df
SM
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)
7eabc1be
SM
78 ;; These are user preferences, so not to set by default.
79 ;;(define-key map "\r" 'electric-pascal-terminate-line)
80 ;;(define-key map "\t" 'electric-pascal-tab)
bcd70d97
SM
81 (define-key map "\M-\t" 'completion-at-point)
82 (define-key map "\M-?" 'completion-help-at-point)
86ac52df
SM
83 (define-key map "\177" 'backward-delete-char-untabify)
84 (define-key map "\M-\C-h" 'pascal-mark-defun)
85 (define-key map "\C-c\C-b" 'pascal-insert-block)
86 (define-key map "\M-*" 'pascal-star-comment)
87 (define-key map "\C-c\C-c" 'pascal-comment-area)
88 (define-key map "\C-c\C-u" 'pascal-uncomment-area)
89 (define-key map "\M-\C-a" 'pascal-beg-of-defun)
90 (define-key map "\M-\C-e" 'pascal-end-of-defun)
91 (define-key map "\C-c\C-d" 'pascal-goto-defun)
92 (define-key map "\C-c\C-o" 'pascal-outline-mode)
93 ;; A command to change the whole buffer won't be used terribly
94 ;; often, so no need for a key binding.
95 ;; (define-key map "\C-cd" 'pascal-downcase-keywords)
96 ;; (define-key map "\C-cu" 'pascal-upcase-keywords)
97 ;; (define-key map "\C-cc" 'pascal-capitalize-keywords)
98 map)
1a2b6c52 99 "Keymap used in Pascal mode.")
69b354eb
RS
100
101(defvar pascal-imenu-generic-expression
099175be 102 '((nil "^[ \t]*\\(function\\|procedure\\)[ \t\n]+\\([a-zA-Z0-9_.:]+\\)" 2))
69b354eb 103 "Imenu expression for Pascal-mode. See `imenu-generic-expression'.")
e936de0b 104
da4ce263 105(defvar pascal-keywords
a1506d29
JB
106 '("and" "array" "begin" "case" "const" "div" "do" "downto" "else" "end"
107 "file" "for" "function" "goto" "if" "in" "label" "mod" "nil" "not" "of"
108 "or" "packed" "procedure" "program" "record" "repeat" "set" "then" "to"
da4ce263
RS
109 "type" "until" "var" "while" "with"
110 ;; The following are not standard in pascal, but widely used.
111 "get" "put" "input" "output" "read" "readln" "reset" "rewrite" "write"
112 "writeln"))
113
114;;;
115;;; Regular expressions used to calculate indent, etc.
116;;;
117(defconst pascal-symbol-re "\\<[a-zA-Z_][a-zA-Z_0-9.]*\\>")
118(defconst pascal-beg-block-re "\\<\\(begin\\|case\\|record\\|repeat\\)\\>")
119(defconst pascal-end-block-re "\\<\\(end\\|until\\)\\>")
120(defconst pascal-declaration-re "\\<\\(const\\|label\\|type\\|var\\)\\>")
27b53c17 121(defconst pascal-progbeg-re "\\<\\program\\>")
da4ce263 122(defconst pascal-defun-re "\\<\\(function\\|procedure\\|program\\)\\>")
7e0dd87e 123(defconst pascal-sub-block-re "\\<\\(if\\|else\\|for\\|while\\|with\\)\\>")
f6807db3 124(defconst pascal-noindent-re "\\<\\(begin\\|end\\|until\\|else\\)\\>")
da4ce263
RS
125(defconst pascal-nosemi-re "\\<\\(begin\\|repeat\\|then\\|do\\|else\\)\\>")
126(defconst pascal-autoindent-lines-re
127 "\\<\\(label\\|var\\|type\\|const\\|until\\|end\\|begin\\|repeat\\|else\\)\\>")
128
129;;; Strings used to mark beginning and end of excluded text
130(defconst pascal-exclude-str-start "{-----\\/----- EXCLUDED -----\\/-----")
131(defconst pascal-exclude-str-end " -----/\\----- EXCLUDED -----/\\-----}")
1a2b6c52 132
86ac52df
SM
133(defvar pascal-mode-syntax-table
134 (let ((st (make-syntax-table)))
135 (modify-syntax-entry ?\\ "." st)
136 (modify-syntax-entry ?\( "()1" st)
137 (modify-syntax-entry ?\) ")(4" st)
138 ;; This used to use comment-syntax `b'. But the only document I could
139 ;; find about the syntax of Pascal's comments said that (* ... } is
140 ;; a valid comment, just as { ... *) or (* ... *) or { ... }.
141 (modify-syntax-entry ?* ". 23" st)
142 (modify-syntax-entry ?{ "<" st)
143 (modify-syntax-entry ?} ">" st)
144 (modify-syntax-entry ?+ "." st)
145 (modify-syntax-entry ?- "." st)
146 (modify-syntax-entry ?= "." st)
147 (modify-syntax-entry ?% "." st)
148 (modify-syntax-entry ?< "." st)
149 (modify-syntax-entry ?> "." st)
150 (modify-syntax-entry ?& "." st)
151 (modify-syntax-entry ?| "." st)
152 (modify-syntax-entry ?_ "_" st)
153 (modify-syntax-entry ?\' "\"" st)
154 st)
1a2b6c52
RS
155 "Syntax table in use in Pascal-mode buffers.")
156
86ac52df 157
da4ce263 158
f80235e3 159(defconst pascal-font-lock-keywords (purecopy
210cf16d 160 (list
f80235e3
RS
161 '("^[ \t]*\\(function\\|pro\\(cedure\\|gram\\)\\)\\>[ \t]*\\([a-z]\\)"
162 1 font-lock-keyword-face)
163 '("^[ \t]*\\(function\\|pro\\(cedure\\|gram\\)\\)\\>[ \t]*\\([a-z][a-z0-9_]*\\)"
164 3 font-lock-function-name-face t)
210cf16d
RS
165; ("type" "const" "real" "integer" "char" "boolean" "var"
166; "record" "array" "file")
167 (cons (concat "\\<\\(array\\|boolean\\|c\\(har\\|onst\\)\\|file\\|"
168 "integer\\|re\\(al\\|cord\\)\\|type\\|var\\)\\>")
169 'font-lock-type-face)
883212ce 170 '("\\<\\(label\\|external\\|forward\\)\\>" . font-lock-constant-face)
f80235e3 171 '("\\<\\([0-9]+\\)[ \t]*:" 1 font-lock-function-name-face)
210cf16d
RS
172; ("of" "to" "for" "if" "then" "else" "case" "while"
173; "do" "until" "and" "or" "not" "in" "with" "repeat" "begin" "end")
174 (concat "\\<\\("
175 "and\\|begin\\|case\\|do\\|e\\(lse\\|nd\\)\\|for\\|i[fn]\\|"
176 "not\\|o[fr]\\|repeat\\|t\\(hen\\|o\\)\\|until\\|w\\(hile\\|ith\\)"
177 "\\)\\>")
178 '("\\<\\(goto\\)\\>[ \t]*\\([0-9]+\\)?"
f80235e3
RS
179 1 font-lock-keyword-face)
180 '("\\<\\(goto\\)\\>[ \t]*\\([0-9]+\\)?"
181 2 font-lock-keyword-face t)))
210cf16d 182 "Additional expressions to highlight in Pascal mode.")
f80235e3 183(put 'pascal-mode 'font-lock-defaults '(pascal-font-lock-keywords nil t))
210cf16d 184
f0cca206
RS
185(defcustom pascal-indent-level 3
186 "*Indentation of Pascal statements with respect to containing block."
187 :type 'integer
188 :group 'pascal)
189
190(defcustom pascal-case-indent 2
191 "*Indentation for case statements."
192 :type 'integer
193 :group 'pascal)
194
195(defcustom pascal-auto-newline nil
196 "*Non-nil means automatically insert newlines in certain cases.
197These include after semicolons and after the punctuation mark after an `end'."
198 :type 'boolean
199 :group 'pascal)
200
27b53c17
RS
201(defcustom pascal-indent-nested-functions t
202 "*Non-nil means nested functions are indented."
203 :type 'boolean
204 :group 'pascal)
205
f0cca206
RS
206(defcustom pascal-tab-always-indent t
207 "*Non-nil means TAB in Pascal mode should always reindent the current line.
208If this is nil, TAB inserts a tab if it is at the end of the line
209and follows non-whitespace text."
210 :type 'boolean
211 :group 'pascal)
212
213(defcustom pascal-auto-endcomments t
214 "*Non-nil means automatically insert comments after certain `end's.
215Specifically, this is done after the ends of cases statements and functions.
216The name of the function or case is included between the braces."
217 :type 'boolean
218 :group 'pascal)
219
220(defcustom pascal-auto-lineup '(all)
3a3ee445
RS
221 "*List of contexts where auto lineup of :'s or ='s should be done.
222Elements can be of type: 'paramlist', 'declaration' or 'case', which will
223do auto lineup in parameterlist, declarations or case-statements
3672149f 224respectively. The word 'all' will do all lineups. '(case paramlist) for
3a3ee445 225instance will do lineup in case-statements and parameterlist, while '(all)
f0cca206 226will do all lineups."
27b53c17
RS
227 :type '(set :extra-offset 8
228 (const :tag "Everything" all)
229 (const :tag "Parameter lists" paramlist)
dbdb7031 230 (const :tag "Declarations" declaration)
27b53c17 231 (const :tag "Case statements" case))
f0cca206
RS
232 :group 'pascal)
233
bcd70d97
SM
234(defvar pascal-toggle-completions nil
235 "*Non-nil meant \\<pascal-mode-map>\\[pascal-complete-word] would try all possible completions one by one.
236Repeated use of \\[pascal-complete-word] would show you all of them.
105ad0da 237Normally, when there is more than one possible completion,
bcd70d97
SM
238it displays a list of all possible completions.")
239(make-obsolete-variable 'pascal-toggle-completions
240 'completion-cycle-threshold "24.1")
3a3ee445 241
f0cca206 242(defcustom pascal-type-keywords
da4ce263
RS
243 '("array" "file" "packed" "char" "integer" "real" "string" "record")
244 "*Keywords for types used when completing a word in a declaration or parmlist.
f0cca206
RS
245These include integer, real, char, etc.
246The types defined within the Pascal program
247are handled in another way, and should not be added to this list."
248 :type '(repeat (string :tag "Keyword"))
249 :group 'pascal)
3a3ee445 250
f0cca206 251(defcustom pascal-start-keywords
da4ce263
RS
252 '("begin" "end" "function" "procedure" "repeat" "until" "while"
253 "read" "readln" "reset" "rewrite" "write" "writeln")
254 "*Keywords to complete when standing at the first word of a statement.
f0cca206 255These are keywords such as begin, repeat, until, readln.
da4ce263 256The procedures and variables defined within the Pascal program
3090ac12 257are handled in another way, and should not be added to this list."
f0cca206
RS
258 :type '(repeat (string :tag "Keyword"))
259 :group 'pascal)
3a3ee445 260
f0cca206 261(defcustom pascal-separator-keywords
da4ce263
RS
262 '("downto" "else" "mod" "div" "then")
263 "*Keywords to complete when NOT standing at the first word of a statement.
f0cca206
RS
264These are keywords such as downto, else, mod, then.
265Variables and function names defined within the Pascal program
266are handled in another way, and should not be added to this list."
267 :type '(repeat (string :tag "Keyword"))
268 :group 'pascal)
269
da4ce263
RS
270
271;;;
272;;; Macros
273;;;
274
da4ce263
RS
275(defun pascal-declaration-end ()
276 (let ((nest 1))
277 (while (and (> nest 0)
a1506d29
JB
278 (re-search-forward
279 "[:=]\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)"
3ba6b2ee 280 (point-at-eol 2) t))
da4ce263 281 (cond ((match-beginning 1) (setq nest (1+ nest)))
2e952aac
RS
282 ((match-beginning 2) (setq nest (1- nest)))
283 ((looking-at "[^(\n]+)") (setq nest 0))))))
da4ce263 284
3a3ee445 285
da4ce263
RS
286(defun pascal-declaration-beg ()
287 (let ((nest 1))
288 (while (and (> nest 0)
3ba6b2ee 289 (re-search-backward "[:=]\\|\\<\\(type\\|var\\|label\\|const\\)\\>\\|\\(\\<record\\>\\)\\|\\(\\<end\\>\\)" (point-at-bol 0) t))
da4ce263
RS
290 (cond ((match-beginning 1) (setq nest 0))
291 ((match-beginning 2) (setq nest (1- nest)))
292 ((match-beginning 3) (setq nest (1+ nest)))))
293 (= nest 0)))
3a3ee445 294
a1506d29 295
da4ce263 296(defsubst pascal-within-string ()
3ba6b2ee 297 (nth 3 (parse-partial-sexp (point-at-bol) (point))))
da4ce263 298
1a2b6c52
RS
299
300;;;###autoload
3672149f 301(define-derived-mode pascal-mode prog-mode "Pascal"
da4ce263
RS
302 "Major mode for editing Pascal code. \\<pascal-mode-map>
303TAB indents for Pascal code. Delete converts tabs to spaces as it moves back.
304
bcd70d97 305\\[completion-at-point] completes the word around current point with respect \
da4ce263 306to position in code
bcd70d97 307\\[completion-help-at-point] shows all possible completions at this point.
da4ce263
RS
308
309Other useful functions are:
310
311\\[pascal-mark-defun]\t- Mark function.
312\\[pascal-insert-block]\t- insert begin ... end;
313\\[pascal-star-comment]\t- insert (* ... *)
314\\[pascal-comment-area]\t- Put marked area in a comment, fixing nested comments.
315\\[pascal-uncomment-area]\t- Uncomment an area commented with \
316\\[pascal-comment-area].
317\\[pascal-beg-of-defun]\t- Move to beginning of current function.
318\\[pascal-end-of-defun]\t- Move to end of current function.
319\\[pascal-goto-defun]\t- Goto function prompted for in the minibuffer.
86ac52df 320\\[pascal-outline-mode]\t- Enter `pascal-outline-mode'.
da4ce263
RS
321
322Variables controlling indentation/edit style:
323
3672149f 324 `pascal-indent-level' (default 3)
da4ce263 325 Indentation of Pascal statements with respect to containing block.
3672149f 326 `pascal-case-indent' (default 2)
da4ce263 327 Indentation for case statements.
3672149f 328 `pascal-auto-newline' (default nil)
4a6fd75f
KH
329 Non-nil means automatically newline after semicolons and the punctuation
330 mark after an end.
3672149f 331 `pascal-indent-nested-functions' (default t)
27b53c17 332 Non-nil means nested functions are indented.
3672149f 333 `pascal-tab-always-indent' (default t)
1a2b6c52
RS
334 Non-nil means TAB in Pascal mode should always reindent the current line,
335 regardless of where in the line point is when the TAB command is used.
3672149f 336 `pascal-auto-endcomments' (default t)
da4ce263
RS
337 Non-nil means a comment { ... } is set after the ends which ends cases and
338 functions. The name of the function or case will be set between the braces.
3672149f 339 `pascal-auto-lineup' (default t)
e936de0b 340 List of contexts where auto lineup of :'s or ='s should be done.
da4ce263 341
3672149f
SM
342See also the user variables `pascal-type-keywords', `pascal-start-keywords' and
343`pascal-separator-keywords'.
1a2b6c52
RS
344
345Turning on Pascal mode calls the value of the variable pascal-mode-hook with
346no args, if that value is non-nil."
3672149f
SM
347 (set (make-local-variable 'local-abbrev-table) pascal-mode-abbrev-table)
348 (set (make-local-variable 'indent-line-function) 'pascal-indent-line)
349 (set (make-local-variable 'comment-indent-function) 'pascal-indent-comment)
350 (set (make-local-variable 'parse-sexp-ignore-comments) nil)
351 (set (make-local-variable 'blink-matching-paren-dont-ignore-comments) t)
352 (set (make-local-variable 'case-fold-search) t)
353 (set (make-local-variable 'comment-start) "{")
354 (set (make-local-variable 'comment-start-skip) "(\\*+ *\\|{ *")
355 (set (make-local-variable 'comment-end) "}")
bcd70d97 356 (add-hook 'completion-at-point-functions 'pascal-completions-at-point nil t)
69b354eb 357 ;; Font lock support
3672149f
SM
358 (set (make-local-variable 'font-lock-defaults)
359 '(pascal-font-lock-keywords nil t))
69b354eb 360 ;; Imenu support
3672149f
SM
361 (set (make-local-variable 'imenu-generic-expression)
362 pascal-imenu-generic-expression)
363 (set (make-local-variable 'imenu-case-fold-search) t)
364 ;; Pascal-mode's own hide/show support.
365 (add-to-invisibility-spec '(pascal . t)))
1a2b6c52 366
da4ce263
RS
367\f
368
1a2b6c52
RS
369;;;
370;;; Electric functions
371;;;
1a2b6c52
RS
372(defun electric-pascal-terminate-line ()
373 "Terminate line and indent next line."
374 (interactive)
da4ce263 375 ;; First, check if current line should be indented
1a2b6c52
RS
376 (save-excursion
377 (beginning-of-line)
378 (skip-chars-forward " \t")
da4ce263 379 (if (looking-at pascal-autoindent-lines-re)
1a2b6c52 380 (pascal-indent-line)))
da4ce263 381 (delete-horizontal-space) ; Removes trailing whitespaces
1a2b6c52 382 (newline)
da4ce263 383 ;; Indent next line
1a2b6c52
RS
384 (pascal-indent-line)
385 ;; Maybe we should set some endcomments
386 (if pascal-auto-endcomments
387 (pascal-set-auto-comments))
388 ;; Check if we shall indent inside comment
389 (let ((setstar nil))
390 (save-excursion
391 (forward-line -1)
392 (skip-chars-forward " \t")
da4ce263 393 (cond ((looking-at "\\*[ \t]+)")
1a2b6c52
RS
394 ;; Delete region between `*' and `)' if there is only whitespaces.
395 (forward-char 1)
da4ce263 396 (delete-horizontal-space))
1a2b6c52 397 ((and (looking-at "(\\*\\|\\*[^)]")
3ba6b2ee 398 (not (save-excursion (search-forward "*)" (point-at-eol) t))))
1a2b6c52
RS
399 (setq setstar t))))
400 ;; If last line was a star comment line then this one shall be too.
a1506d29 401 (if (null setstar)
da4ce263
RS
402 (pascal-indent-line)
403 (insert "* "))))
1a2b6c52 404
1a2b6c52 405
da4ce263
RS
406(defun electric-pascal-semi-or-dot ()
407 "Insert `;' or `.' character and reindent the line."
1a2b6c52 408 (interactive)
1ba983e8 409 (insert last-command-event)
1a2b6c52
RS
410 (save-excursion
411 (beginning-of-line)
412 (pascal-indent-line))
413 (if pascal-auto-newline
414 (electric-pascal-terminate-line)))
415
416(defun electric-pascal-colon ()
53964682 417 "Insert `:' and do all indentations except line indent on this line."
1a2b6c52 418 (interactive)
1ba983e8 419 (insert last-command-event)
da4ce263
RS
420 ;; Do nothing if within string.
421 (if (pascal-within-string)
422 ()
423 (save-excursion
424 (beginning-of-line)
425 (pascal-indent-line))
426 (let ((pascal-tab-always-indent nil))
427 (pascal-indent-command))))
428
1a2b6c52 429(defun electric-pascal-equal ()
cd1181db 430 "Insert `=', and do indentation if within type declaration."
1a2b6c52 431 (interactive)
1ba983e8 432 (insert last-command-event)
da4ce263 433 (if (eq (car (pascal-calculate-indent)) 'declaration)
1a2b6c52
RS
434 (let ((pascal-tab-always-indent nil))
435 (pascal-indent-command))))
436
9f51be89 437(defun electric-pascal-hash ()
4a6fd75f 438 "Insert `#', and indent to column 0 if this is a CPP directive."
9f51be89 439 (interactive)
1ba983e8 440 (insert last-command-event)
9f51be89
RS
441 (if (save-excursion (beginning-of-line) (looking-at "^[ \t]*#"))
442 (save-excursion (beginning-of-line)
443 (delete-horizontal-space))))
444
1a2b6c52 445(defun electric-pascal-tab ()
da4ce263 446 "Function called when TAB is pressed in Pascal mode."
1a2b6c52 447 (interactive)
9f51be89
RS
448 ;; Do nothing if within a string or in a CPP directive.
449 (if (or (pascal-within-string)
450 (and (not (bolp))
451 (save-excursion (beginning-of-line) (eq (following-char) ?#))))
da4ce263
RS
452 (insert "\t")
453 ;; If pascal-tab-always-indent, indent the beginning of the line.
454 (if pascal-tab-always-indent
455 (save-excursion
456 (beginning-of-line)
457 (pascal-indent-line))
2e952aac
RS
458 (if (save-excursion
459 (skip-chars-backward " \t")
460 (bolp))
461 (pascal-indent-line)
462 (insert "\t")))
da4ce263
RS
463 (pascal-indent-command)))
464
465\f
1a2b6c52
RS
466
467;;;
468;;; Interactive functions
469;;;
470(defun pascal-insert-block ()
da4ce263 471 "Insert Pascal begin ... end; block in the code with right indentation."
1a2b6c52 472 (interactive)
1a2b6c52
RS
473 (insert "begin")
474 (electric-pascal-terminate-line)
475 (save-excursion
6acae80a 476 (newline)
1a2b6c52
RS
477 (insert "end;")
478 (beginning-of-line)
479 (pascal-indent-line)))
480
481(defun pascal-star-comment ()
da4ce263 482 "Insert Pascal star comment at point."
1a2b6c52
RS
483 (interactive)
484 (pascal-indent-line)
485 (insert "(*")
486 (electric-pascal-terminate-line)
487 (save-excursion
488 (electric-pascal-terminate-line)
da4ce263
RS
489 (delete-horizontal-space)
490 (insert ")"))
491 (insert " "))
1a2b6c52 492
da4ce263 493(defun pascal-mark-defun ()
1a2b6c52 494 "Mark the current pascal function (or procedure).
da4ce263 495This puts the mark at the end, and point at the beginning."
1a2b6c52
RS
496 (interactive)
497 (push-mark (point))
da4ce263 498 (pascal-end-of-defun)
1a2b6c52 499 (push-mark (point))
da4ce263 500 (pascal-beg-of-defun)
a445370f
DN
501 (when (featurep 'xemacs)
502 (zmacs-activate-region)))
1a2b6c52
RS
503
504(defun pascal-comment-area (start end)
da4ce263
RS
505 "Put the region into a Pascal comment.
506The comments that are in this area are \"deformed\":
507`*)' becomes `!(*' and `}' becomes `!{'.
508These deformed comments are returned to normal if you use
509\\[pascal-uncomment-area] to undo the commenting.
510
511The commented area starts with `pascal-exclude-str-start', and ends with
512`pascal-include-str-end'. But if you change these variables,
513\\[pascal-uncomment-area] won't recognize the comments."
1a2b6c52
RS
514 (interactive "r")
515 (save-excursion
516 ;; Insert start and endcomments
517 (goto-char end)
518 (if (and (save-excursion (skip-chars-forward " \t") (eolp))
519 (not (save-excursion (skip-chars-backward " \t") (bolp))))
520 (forward-line 1)
521 (beginning-of-line))
da4ce263 522 (insert pascal-exclude-str-end)
1a2b6c52
RS
523 (setq end (point))
524 (newline)
525 (goto-char start)
526 (beginning-of-line)
da4ce263 527 (insert pascal-exclude-str-start)
1a2b6c52
RS
528 (newline)
529 ;; Replace end-comments within commented area
530 (goto-char end)
531 (save-excursion
532 (while (re-search-backward "\\*)" start t)
533 (replace-match "!(*" t t)))
534 (save-excursion
535 (while (re-search-backward "}" start t)
536 (replace-match "!{" t t)))))
537
538(defun pascal-uncomment-area ()
da4ce263
RS
539 "Uncomment a commented area; change deformed comments back to normal.
540This command does nothing if the pointer is not in a commented
1a2b6c52
RS
541area. See also `pascal-comment-area'."
542 (interactive)
543 (save-excursion
544 (let ((start (point))
545 (end (point)))
546 ;; Find the boundaries of the comment
547 (save-excursion
da4ce263 548 (setq start (progn (search-backward pascal-exclude-str-start nil t)
1a2b6c52 549 (point)))
da4ce263 550 (setq end (progn (search-forward pascal-exclude-str-end nil t)
1a2b6c52
RS
551 (point))))
552 ;; Check if we're really inside a comment
553 (if (or (equal start (point)) (<= end (point)))
554 (message "Not standing within commented area.")
555 (progn
556 ;; Remove endcomment
557 (goto-char end)
558 (beginning-of-line)
559 (let ((pos (point)))
560 (end-of-line)
561 (delete-region pos (1+ (point))))
562 ;; Change comments back to normal
563 (save-excursion
564 (while (re-search-backward "!{" start t)
565 (replace-match "}" t t)))
566 (save-excursion
567 (while (re-search-backward "!(\\*" start t)
568 (replace-match "*)" t t)))
569 ;; Remove startcomment
570 (goto-char start)
571 (beginning-of-line)
572 (let ((pos (point)))
573 (end-of-line)
574 (delete-region pos (1+ (point)))))))))
575
da4ce263
RS
576(defun pascal-beg-of-defun ()
577 "Move backward to the beginning of the current function or procedure."
1a2b6c52 578 (interactive)
da4ce263
RS
579 (catch 'found
580 (if (not (looking-at (concat "\\s \\|\\s)\\|" pascal-defun-re)))
581 (forward-sexp 1))
582 (let ((nest 0) (max -1) (func 0)
a1506d29 583 (reg (concat pascal-beg-block-re "\\|"
da4ce263
RS
584 pascal-end-block-re "\\|"
585 pascal-defun-re)))
586 (while (re-search-backward reg nil 'move)
587 (cond ((let ((state (save-excursion
588 (parse-partial-sexp (point-min) (point)))))
589 (or (nth 3 state) (nth 4 state))) ; Inside string or comment
590 ())
591 ((match-end 1) ; begin|case|record|repeat
592 (if (and (looking-at "\\<record\\>") (>= max 0))
593 (setq func (1- func)))
594 (setq nest (1+ nest)
595 max (max nest max)))
596 ((match-end 2) ; end|until
597 (if (and (= nest max) (>= max 0))
598 (setq func (1+ func)))
599 (setq nest (1- nest)))
600 ((match-end 3) ; function|procedure
27b53c17 601 (if (= 0 func)
da4ce263
RS
602 (throw 'found t)
603 (setq func (1- func)))))))
604 nil))
605
606(defun pascal-end-of-defun ()
607 "Move forward to the end of the current function or procedure."
1a2b6c52 608 (interactive)
da4ce263
RS
609 (if (looking-at "\\s ")
610 (forward-sexp 1))
611 (if (not (looking-at pascal-defun-re))
612 (pascal-beg-of-defun))
613 (forward-char 1)
614 (let ((nest 0) (func 1)
a1506d29 615 (reg (concat pascal-beg-block-re "\\|"
da4ce263
RS
616 pascal-end-block-re "\\|"
617 pascal-defun-re)))
618 (while (and (/= func 0)
619 (re-search-forward reg nil 'move))
620 (cond ((let ((state (save-excursion
621 (parse-partial-sexp (point-min) (point)))))
622 (or (nth 3 state) (nth 4 state))) ; Inside string or comment
623 ())
624 ((match-end 1)
625 (setq nest (1+ nest))
626 (if (save-excursion
627 (goto-char (match-beginning 0))
628 (looking-at "\\<record\\>"))
629 (setq func (1+ func))))
630 ((match-end 2)
631 (setq nest (1- nest))
632 (if (= nest 0)
633 (setq func (1- func))))
634 ((match-end 3)
635 (setq func (1+ func))))))
636 (forward-line 1))
1a2b6c52 637
3a3ee445
RS
638(defun pascal-end-of-statement ()
639 "Move forward to end of current statement."
640 (interactive)
a0bd2457
RS
641 (let ((parse-sexp-ignore-comments t)
642 (nest 0) pos
3a3ee445
RS
643 (regexp (concat "\\(" pascal-beg-block-re "\\)\\|\\("
644 pascal-end-block-re "\\)")))
645 (if (not (looking-at "[ \t\n]")) (forward-sexp -1))
646 (or (looking-at pascal-beg-block-re)
647 ;; Skip to end of statement
648 (setq pos (catch 'found
649 (while t
650 (forward-sexp 1)
651 (cond ((looking-at "[ \t]*;")
652 (skip-chars-forward "^;")
653 (forward-char 1)
654 (throw 'found (point)))
655 ((save-excursion
656 (forward-sexp -1)
657 (looking-at pascal-beg-block-re))
658 (goto-char (match-beginning 0))
659 (throw 'found nil))
660 ((eobp)
661 (throw 'found (point))))))))
662 (if (not pos)
663 ;; Skip a whole block
664 (catch 'found
665 (while t
666 (re-search-forward regexp nil 'move)
a1506d29 667 (setq nest (if (match-end 1)
3a3ee445
RS
668 (1+ nest)
669 (1- nest)))
670 (cond ((eobp)
671 (throw 'found (point)))
672 ((= 0 nest)
673 (throw 'found (pascal-end-of-statement))))))
674 pos)))
675
1a2b6c52 676(defun pascal-downcase-keywords ()
da4ce263 677 "Downcase all Pascal keywords in the buffer."
1a2b6c52
RS
678 (interactive)
679 (pascal-change-keywords 'downcase-word))
680
681(defun pascal-upcase-keywords ()
da4ce263 682 "Upcase all Pascal keywords in the buffer."
1a2b6c52
RS
683 (interactive)
684 (pascal-change-keywords 'upcase-word))
685
686(defun pascal-capitalize-keywords ()
da4ce263 687 "Capitalize all Pascal keywords in the buffer."
1a2b6c52
RS
688 (interactive)
689 (pascal-change-keywords 'capitalize-word))
690
da4ce263 691;; Change the keywords according to argument.
1a2b6c52 692(defun pascal-change-keywords (change-word)
1a2b6c52 693 (save-excursion
da4ce263
RS
694 (let ((keyword-re (concat "\\<\\("
695 (mapconcat 'identity pascal-keywords "\\|")
696 "\\)\\>")))
697 (goto-char (point-min))
698 (while (re-search-forward keyword-re nil t)
699 (funcall change-word -1)))))
700
701\f
1a2b6c52
RS
702
703;;;
704;;; Other functions
705;;;
1a2b6c52 706(defun pascal-set-auto-comments ()
da4ce263
RS
707 "Insert `{ case }' or `{ NAME }' on this line if appropriate.
708Insert `{ case }' if there is an `end' on the line which
709ends a case block. Insert `{ NAME }' if there is an `end'
710on the line which ends a function or procedure named NAME."
1a2b6c52
RS
711 (save-excursion
712 (forward-line -1)
713 (skip-chars-forward " \t")
da4ce263 714 (if (and (looking-at "\\<end;")
1a2b6c52
RS
715 (not (save-excursion
716 (end-of-line)
3ba6b2ee 717 (search-backward "{" (point-at-bol) t))))
81aca4f4
RS
718 (let ((type (car (pascal-calculate-indent))))
719 (if (eq type 'declaration)
720 ()
721 (if (eq type 'case)
722 ;; This is a case block
723 (progn
724 (end-of-line)
725 (delete-horizontal-space)
726 (insert " { case }"))
727 (let ((nest 1))
728 ;; Check if this is the end of a function
729 (save-excursion
730 (while (not (or (looking-at pascal-defun-re) (bobp)))
731 (backward-sexp 1)
732 (cond ((looking-at pascal-beg-block-re)
733 (setq nest (1- nest)))
734 ((looking-at pascal-end-block-re)
735 (setq nest (1+ nest)))))
736 (if (bobp)
737 (setq nest 1)))
738 (if (zerop nest)
739 (progn
740 (end-of-line)
741 (delete-horizontal-space)
742 (insert " { ")
743 (let (b e)
744 (save-excursion
745 (setq b (progn (pascal-beg-of-defun)
746 (skip-chars-forward "^ \t")
747 (skip-chars-forward " \t")
748 (point))
749 e (progn (skip-chars-forward "a-zA-Z0-9_")
750 (point))))
751 (insert-buffer-substring (current-buffer) b e))
752 (insert " }"))))))))))
1a2b6c52 753
da4ce263
RS
754\f
755
1a2b6c52 756;;;
da4ce263
RS
757;;; Indentation
758;;;
759(defconst pascal-indent-alist
760 '((block . (+ ind pascal-indent-level))
761 (case . (+ ind pascal-case-indent))
9f51be89 762 (caseblock . ind) (cpp . 0)
da4ce263
RS
763 (declaration . (+ ind pascal-indent-level))
764 (paramlist . (pascal-indent-paramlist t))
9f92e5d9 765 (comment . (pascal-indent-comment))
da4ce263 766 (defun . ind) (contexp . ind)
27b53c17 767 (unknown . ind) (string . 0) (progbeg . 0)))
da4ce263 768
1a2b6c52 769(defun pascal-indent-command ()
da4ce263
RS
770 "Indent for special part of code."
771 (let* ((indent-str (pascal-calculate-indent))
86ac52df 772 (type (car indent-str)))
3a3ee445
RS
773 (cond ((and (eq type 'paramlist)
774 (or (memq 'all pascal-auto-lineup)
775 (memq 'paramlist pascal-auto-lineup)))
da4ce263
RS
776 (pascal-indent-paramlist)
777 (pascal-indent-paramlist))
3a3ee445
RS
778 ((and (eq type 'declaration)
779 (or (memq 'all pascal-auto-lineup)
780 (memq 'declaration pascal-auto-lineup)))
da4ce263 781 (pascal-indent-declaration))
3a3ee445
RS
782 ((and (eq type 'case) (not (looking-at "^[ \t]*$"))
783 (or (memq 'all pascal-auto-lineup)
784 (memq 'case pascal-auto-lineup)))
da4ce263
RS
785 (pascal-indent-case)))
786 (if (looking-at "[ \t]+$")
787 (skip-chars-forward " \t"))))
1a2b6c52 788
15e0efc7 789(defvar ind) ;Used via `eval' in pascal-indent-alist.
1a2b6c52 790(defun pascal-indent-line ()
da4ce263
RS
791 "Indent current line as a Pascal statement."
792 (let* ((indent-str (pascal-calculate-indent))
793 (type (car indent-str))
794 (ind (car (cdr indent-str))))
27b53c17
RS
795 ;; Labels should not be indented.
796 (if (and (looking-at "^[0-9a-zA-Z]+[ \t]*:[^=]")
797 (not (eq type 'declaration)))
da4ce263
RS
798 (search-forward ":" nil t))
799 (delete-horizontal-space)
27b53c17
RS
800 (cond (; Some things should not be indented
801 (or (and (eq type 'declaration) (looking-at pascal-declaration-re))
802 (eq type 'cpp))
803 ())
804 (; Other things should have no extra indent
805 (looking-at pascal-noindent-re)
806 (indent-to ind))
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 (+ ind pascal-indent-level))
812 (indent-to ind)))
813 (; But most lines are treated this way
814 (indent-to (eval (cdr (assoc type pascal-indent-alist))))
815 ))))
da4ce263
RS
816
817(defun pascal-calculate-indent ()
818 "Calculate the indent of the current Pascal line.
819Return a list of two elements: (INDENT-TYPE INDENT-LEVEL)."
820 (save-excursion
a0bd2457
RS
821 (let* ((parse-sexp-ignore-comments t)
822 (oldpos (point))
da4ce263 823 (state (save-excursion (parse-partial-sexp (point-min) (point))))
9f51be89 824 (nest 0) (par 0) (complete (looking-at "[ \t]*end\\>"))
27b53c17
RS
825 (elsed (looking-at "[ \t]*else\\>")) (funccnt 0)
826 (did-func (looking-at "[ \t]*\\(procedure\\|function\\)\\>"))
da4ce263
RS
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)))
9f51be89
RS
833 (setq par (1+ (current-column))))
834 ((save-excursion (beginning-of-line)
835 (eq (following-char) ?#))
836 (throw 'nesting 'cpp)))
da4ce263
RS
837 ;; Loop until correct indent is found
838 (while t
839 (backward-sexp 1)
9f51be89
RS
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))
27b53c17
RS
853 (;--Beginning of program
854 (looking-at pascal-progbeg-re)
855 (throw 'nesting 'progbeg))
856 (;--No known statements
857 (bobp)
858 (throw 'nesting 'progbeg))
9f51be89 859 (;--Nest block outwards
da4ce263
RS
860 (looking-at pascal-beg-block-re)
861 (if (= nest 0)
862 (cond ((looking-at "case\\>")
da4ce263
RS
863 (throw 'nesting 'case))
864 ((looking-at "record\\>")
865 (throw 'nesting 'declaration))
f6807db3 866 (t (throw 'nesting 'block)))
27b53c17
RS
867 (if (and (looking-at "record\\>") (= nest 1))
868 (setq funccnt (1- funccnt)))
da4ce263
RS
869 (setq nest (1- nest))))
870 (;--Nest block inwards
871 (looking-at pascal-end-block-re)
f6807db3
RS
872 (if (and (looking-at "end\\s ")
873 elsed (not complete))
874 (throw 'nesting 'block))
27b53c17
RS
875 (if (= nest 0)
876 (setq funccnt (1+ funccnt)))
da4ce263
RS
877 (setq complete t
878 nest (1+ nest)))
879 (;--Defun (or parameter list)
27b53c17
RS
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))
da4ce263
RS
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
27b53c17
RS
900 (and (looking-at pascal-declaration-re)
901 (not did-func)
902 (= funccnt 0))
f6807db3
RS
903 (if (save-excursion
904 (goto-char oldpos)
905 (forward-line -1)
906 (looking-at "^[ \t]*$"))
da4ce263
RS
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))
da4ce263 917 )))))
9f51be89 918
da4ce263 919 ;; Return type of block and indent level.
a1506d29 920 (if (> par 0) ; Unclosed Parenthesis
da4ce263
RS
921 (list 'contexp par)
922 (list type (pascal-indent-level))))))
923
924(defun pascal-indent-level ()
925 "Return the indent-level the current statement has.
926Do not count labels, case-statements or records."
1a2b6c52
RS
927 (save-excursion
928 (beginning-of-line)
da4ce263
RS
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)))
1a2b6c52
RS
933 (skip-chars-forward " \t")
934 (current-column)))
935
9f92e5d9
GM
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))))
da4ce263
RS
943
944(defun pascal-indent-case ()
945 "Indent within case statements."
a0bd2457
RS
946 (let ((savepos (point-marker))
947 (end (prog2
81aca4f4
RS
948 (end-of-line)
949 (point-marker)
da4ce263 950 (re-search-backward "\\<case\\>" nil t)))
86ac52df 951 (beg (point))
da4ce263
RS
952 (ind 0))
953 ;; Get right indent
f80235e3 954 (while (< (point) end)
a1506d29 955 (if (re-search-forward
81aca4f4
RS
956 "^[ \t]*[^ \t,:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:"
957 (marker-position end) 'move)
958 (forward-char -1))
f80235e3 959 (if (< (point) end)
2e952aac
RS
960 (progn
961 (delete-horizontal-space)
962 (if (> (current-column) ind)
963 (setq ind (current-column)))
964 (pascal-end-of-statement))))
da4ce263
RS
965 (goto-char beg)
966 ;; Indent all case statements
f80235e3 967 (while (< (point) end)
81aca4f4 968 (if (re-search-forward
9f51be89 969 "^[ \t]*[^][ \t,\\.:]+[ \t]*\\(,[ \t]*[^ \t,:]+[ \t]*\\)*:"
81aca4f4 970 (marker-position end) 'move)
da4ce263
RS
971 (forward-char -1))
972 (indent-to (1+ ind))
973 (if (/= (following-char) ?:)
974 ()
975 (forward-char 1)
976 (delete-horizontal-space)
3a3ee445 977 (insert " "))
3a3ee445 978 (pascal-end-of-statement))
a0bd2457 979 (goto-char savepos)))
da4ce263
RS
980
981(defun pascal-indent-paramlist (&optional arg)
982 "Indent current line in parameterlist.
983If optional arg is non-nil, just return the
984indent of the current line in parameterlist."
1a2b6c52 985 (save-excursion
da4ce263
RS
986 (let* ((oldpos (point))
987 (stpos (progn (goto-char (scan-lists (point) -1 1)) (point)))
988 (stcol (1+ (current-column)))
a1506d29 989 (edpos (progn (pascal-declaration-end)
3ba6b2ee 990 (search-backward ")" (point-at-bol) t)
da4ce263
RS
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)))))
1005
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)))
1010 ()
a1506d29 1011 (let ((lineup (if (or (looking-at "\\<var\\>\\|\\<record\\>") arg start)
da4ce263
RS
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 ind)
1021
1022 (goto-char stpos)
1023 ;; Indent lines in record block
1024 (if arg
f80235e3 1025 (while (<= (point) edpos)
da4ce263
RS
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)))
1032
1033 ;; Do lineup
1034 (setq ind (pascal-get-lineup-indent stpos edpos lineup))
1035 (goto-char stpos)
f80235e3 1036 (while (and (<= (point) edpos) (not (eobp)))
3ba6b2ee 1037 (if (search-forward lineup (point-at-eol) 'move)
da4ce263
RS
1038 (forward-char -1))
1039 (delete-horizontal-space)
1040 (indent-to ind)
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)))))
1050
1051 ;; If arg - move point
1052 (if arg (forward-line -1)
f80235e3 1053 (goto-char pos))))
da4ce263
RS
1054
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 ((ind 0)
27b53c17 1060 (reg (concat str "\\|\\(\\<record\\>\\)\\|" pascal-defun-re)))
da4ce263
RS
1061 (goto-char b)
1062 ;; Get rightmost position
1063 (while (< (point) e)
3ba6b2ee 1064 (and (re-search-forward reg (min e (point-at-eol 2)) 'move)
27b53c17
RS
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))
1071 (t
1072 (goto-char (match-beginning 0))
1073 (skip-chars-backward " \t")
1074 (if (> (current-column) ind)
1075 (setq ind (current-column)))
1076 (goto-char (match-end 0))
1077 (end-of-line)
1078 ))))
da4ce263
RS
1079 ;; In case no lineup was found
1080 (if (> ind 0)
1081 (1+ ind)
1082 ;; No lineup-string found
1083 (goto-char b)
1084 (end-of-line)
1085 (skip-chars-backward " \t")
1086 (1+ (current-column))))))
a1506d29 1087
da4ce263
RS
1088\f
1089
1090;;;
1091;;; Completion
9566dc15 1092
da4ce263
RS
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))))))
1104
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.
1108
601a9508 1109(defun pascal-func-completion (type pascal-str)
da4ce263 1110 ;; Build regular expression for function/procedure names
601a9508
SM
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)
3bb8691b 1121
601a9508
SM
1122 (if (not (looking-at "\\<\\(function\\|procedure\\)\\>"))
1123 (re-search-backward "\\<\\(function\\|procedure\\)\\>" nil t))
1124 (forward-char 1)
1125
1126 ;; Search through all reachable functions
1127 (while (pascal-beg-of-defun)
3ba6b2ee 1128 (if (re-search-forward pascal-str (point-at-eol) t)
601a9508
SM
1129 (progn (setq match (buffer-substring (match-beginning 2)
1130 (match-end 2)))
1131 (push match pascal-all)))
1132 (goto-char (match-beginning 0)))
1133
1134 pascal-all)))
1135
1136(defun pascal-get-completion-decl (pascal-str)
da4ce263 1137 ;; Macro for searching through current declaration (var, type or const)
f80235e3 1138 ;; for matches of `str' and adding the occurrence to `all'
da4ce263
RS
1139 (let ((end (save-excursion (pascal-declaration-end)
1140 (point)))
601a9508 1141 (pascal-all ())
da4ce263
RS
1142 match)
1143 ;; Traverse lines
1144 (while (< (point) end)
3ba6b2ee 1145 (if (re-search-forward "[:=]" (point-at-eol) t)
da4ce263 1146 ;; Traverse current line
a1506d29
JB
1147 (while (and (re-search-backward
1148 (concat "\\((\\|\\<\\(var\\|type\\|const\\)\\>\\)\\|"
da4ce263 1149 pascal-symbol-re)
3ba6b2ee 1150 (point-at-bol) t)
da4ce263
RS
1151 (not (match-end 1)))
1152 (setq match (buffer-substring (match-beginning 0) (match-end 0)))
9566dc15 1153 (if (string-match (concat "\\<" pascal-str) match)
601a9508 1154 (push match pascal-all))))
3ba6b2ee 1155 (if (re-search-forward "\\<record\\>" (point-at-eol) t)
da4ce263 1156 (pascal-declaration-end)
601a9508 1157 (forward-line 1)))
da4ce263 1158
601a9508
SM
1159 pascal-all))
1160
1161(defun pascal-type-completion (pascal-str)
da4ce263
RS
1162 "Calculate all possible completions for types."
1163 (let ((start (point))
601a9508 1164 (pascal-all ())
da4ce263
RS
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
3a3ee445 1174 "\\<type\\>\\|\\<\\(begin\\|function\\|procedure\\)\\>"
da4ce263
RS
1175 start t)
1176 (not (match-end 1)))
1177 ;; Check current type declaration
601a9508
SM
1178 (setq pascal-all
1179 (nconc (pascal-get-completion-decl pascal-str)
1180 pascal-all)))))
1181
1182 pascal-all))
da4ce263 1183
601a9508 1184(defun pascal-var-completion (prefix)
da4ce263 1185 "Calculate all possible completions for variables (or constants)."
601a9508
SM
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
3ba6b2ee 1197 (if (search-forward "(" (point-at-eol) t)
601a9508
SM
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)))
1219
1220
1221(defun pascal-keyword-completion (keyword-list pascal-str)
da4ce263 1222 "Give list of all possible completions of keywords in KEYWORD-LIST."
601a9508
SM
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))
da4ce263
RS
1228
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.
1237
601a9508 1238(defvar pascal-completion-cache nil)
da4ce263 1239
601a9508
SM
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)))
da4ce263 1247 (let ((state (car (pascal-calculate-indent))))
601a9508
SM
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
3ba6b2ee 1255 (re-search-backward ")[ \t]*:" (point-at-bol) t))))
601a9508
SM
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)))))
1280
1281 (setq pascal-completion-cache
1282 (list all pascal-str (current-buffer) (field-beginning)))))
1283
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)))
da4ce263
RS
1286
1287(defvar pascal-last-word-numb 0)
1288(defvar pascal-last-word-shown nil)
1289(defvar pascal-last-completions nil)
1290
bcd70d97 1291(defun pascal-completions-at-point ()
da4ce263 1292 (let* ((b (save-excursion (skip-chars-backward "a-zA-Z0-9_") (point)))
601a9508 1293 (e (save-excursion (skip-chars-forward "a-zA-Z0-9_") (point))))
bcd70d97
SM
1294 (when (> e b)
1295 (list b e #'pascal-completion))))
da4ce263 1296
bcd70d97
SM
1297(define-obsolete-function-alias 'pascal-complete-word
1298 'completion-at-point "24.1")
1299
1300(define-obsolete-function-alias 'pascal-show-completions
1301 'completion-help-at-point "24.1")
da4ce263
RS
1302
1303
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)))))
1314
1315(defun pascal-build-defun-re (str &optional arg)
1316 "Return function/procedure starting with STR as regular expression.
1317With 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_]*\\)\\>")))
1321
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.
1330
9566dc15 1331(defun pascal-comp-defun (pascal-str pascal-pred pascal-flag)
da4ce263 1332 (save-excursion
601a9508
SM
1333 (let ((pascal-all nil))
1334
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))
3bb8691b 1340
601a9508
SM
1341 ;; Build a list of all possible completions
1342 (while (re-search-forward pascal-str nil t)
1343 (push (match-string 2) pascal-all)))
da4ce263
RS
1344
1345 ;; Now we have built a list of all matches. Give response to caller
601a9508 1346 (complete-with-action pascal-flag pascal-all pascal-str pascal-pred))))
da4ce263
RS
1347
1348(defun pascal-goto-defun ()
1349 "Move to specified Pascal function/procedure.
1350The default is a name found in the buffer around point."
1351 (interactive)
1352 (let* ((default (pascal-get-default-symbol))
da4ce263
RS
1353 (default (if (pascal-comp-defun default nil 'lambda)
1354 default ""))
3bb8691b 1355 (label
601a9508
SM
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 (lexical-let ((buf (current-buffer)))
1363 (lambda (s p a)
1364 (with-current-buffer buf
1365 (pascal-comp-defun s p a))))
1366 nil t "")))
da4ce263
RS
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)))))
1376
1377\f
1378
1379;;;
1380;;; Pascal-outline-mode
1381;;;
86ac52df
SM
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.")
1393
5443c9b7 1394(define-obsolete-function-alias 'pascal-outline 'pascal-outline-mode "22.1")
86ac52df 1395(define-minor-mode pascal-outline-mode
da4ce263 1396 "Outline-line minor mode for Pascal mode.
e1ac4066
GM
1397With a prefix argument ARG, enable the mode if ARG is positive,
1398and disable it otherwise. If called from Lisp, enable the mode
1399if ARG is omitted or nil.
1400
1401When enabled, portions of the text being edited may be made
1402invisible. \\<pascal-outline-map>
da4ce263
RS
1403
1404Pascal Outline mode provides some additional commands.
1405
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."
86ac52df
SM
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)))
da4ce263 1421
3672149f 1422(defun pascal-outline-change (b e hide)
86ac52df
SM
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)
3672149f 1427 (when hide
86ac52df
SM
1428 (let ((ol (make-overlay b e nil t nil)))
1429 (overlay-put ol 'invisible 'pascal)
1430 (overlay-put ol 'evaporate t)))))
da4ce263
RS
1431
1432(defun pascal-show-all ()
1433 "Show all of the text in the buffer."
1434 (interactive)
3672149f 1435 (pascal-outline-change (point-min) (point-max) nil))
da4ce263
RS
1436
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))
3672149f 1443 (line-beginning-position)))
da4ce263
RS
1444 (end (progn (pascal-end-of-defun)
1445 (backward-sexp 1)
3672149f 1446 (line-beginning-position 2)))
da4ce263 1447 (opoint (point-min)))
3672149f
SM
1448 ;; BEG at BOL.
1449 ;; OPOINT at EOL.
1450 ;; END at BOL.
da4ce263
RS
1451 (goto-char (point-min))
1452
1453 ;; Hide all functions before current function
3672149f
SM
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))
da4ce263
RS
1458 ;; Functions may be nested
1459 (if (> (progn (pascal-end-of-defun) (point)) beg)
1460 (goto-char opoint)))
1461 (if (> beg opoint)
3672149f 1462 (pascal-outline-change opoint (1- beg) t))
da4ce263
RS
1463
1464 ;; Show current function
3672149f 1465 (pascal-outline-change (1- beg) end nil)
da4ce263
RS
1466 ;; Hide nested functions
1467 (forward-char 1)
1468 (while (re-search-forward "^\\(function\\|procedure\\)\\>" end 'move)
3672149f 1469 (setq opoint (line-end-position))
da4ce263 1470 (pascal-end-of-defun)
3672149f 1471 (pascal-outline-change opoint (line-end-position) t))
da4ce263
RS
1472
1473 (goto-char end)
1474 (setq opoint end)
1475
1476 ;; Hide all function after current function
1477 (while (re-search-forward "^\\(function\\|procedure\\)\\>" nil 'move)
3672149f
SM
1478 (pascal-outline-change opoint (line-end-position 0) t)
1479 (setq opoint (line-end-position))
da4ce263 1480 (pascal-end-of-defun))
3672149f 1481 (pascal-outline-change opoint (point-max) t)
da4ce263
RS
1482
1483 ;; Hide main program
1484 (if (< (progn (forward-line -1) (point)) end)
1a2b6c52 1485 (progn
da4ce263
RS
1486 (goto-char beg)
1487 (pascal-end-of-defun)
1488 (backward-sexp 1)
3672149f 1489 (pascal-outline-change (line-end-position) (point-max) t))))))
1a2b6c52 1490
da4ce263
RS
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))
1496
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))
1502
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))
1a2b6c52 1508
896546cd
RS
1509(provide 'pascal)
1510
da4ce263 1511;;; pascal.el ends here