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