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