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