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