annotate lisp/progmodes/pascal.el @ 8878:066fab036ab5

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