Mercurial > emacs
annotate lisp/progmodes/simula.el @ 15084:01518892abad
(compilation-error-regexp-alist): Add regexp
for Microsoft VC++ error messages containing drive letters.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Apr 1996 19:45:16 +0000 |
parents | df34d8bec5fc |
children | 3c57dbbf9d95 |
rev | line source |
---|---|
805 | 1 ;;; simula.el --- SIMULA 87 code editing commands for Emacs |
2 | |
15054
df34d8bec5fc
(simula-submit-bug-report): Use emacs-version.
Richard M. Stallman <rms@gnu.org>
parents:
15053
diff
changeset
|
3 ;; Copyright (C) 1992, 1994, 1996 Free Software Foundation, Inc. |
841 | 4 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
5 ;; Author: Hans Henrik Eriksen <hhe@ifi.uio.no> |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
6 ;; Maintainer: simula-mode@ifi.uio.no |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
7 ;; Adapted-By: ESR |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
8 ;; Keywords: languages |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
9 |
805 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
4664 | 14 ;; the Free Software Foundation; either version 2, or (at your option) |
805 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
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. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
805 | 26 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
27 ;;; Commentary: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
28 |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2024
diff
changeset
|
29 ;; A major mode for editing the Simula language. It knows about Simula |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2024
diff
changeset
|
30 ;; syntax and standard indentation commands. It also provides convenient |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2024
diff
changeset
|
31 ;; abbrevs for Simula keywords. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2024
diff
changeset
|
32 ;; |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2024
diff
changeset
|
33 ;; Hans Henrik Eriksen (the author) may be reached at: |
805 | 34 ;; Institutt for informatikk, |
35 ;; Universitetet i Oslo | |
36 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
805
diff
changeset
|
37 ;;; Code: |
805 | 38 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
39 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
40 (defconst simula-tab-always-indent-default nil |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
41 "Non-nil means TAB in SIMULA mode should always reindent the current line. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
42 Otherwise TAB indents only when point is within |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
43 the run of whitespace at the beginning of the line.") |
805 | 44 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
45 (defvar simula-tab-always-indent simula-tab-always-indent-default |
4664 | 46 "*Non-nil means TAB in SIMULA mode should always reindent the current line. |
47 Otherwise TAB indents only when point is within | |
48 the run of whitespace at the beginning of the line.") | |
805 | 49 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
50 (defconst simula-indent-level-default 3 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
51 "Indentation of SIMULA statements with respect to containing block.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
52 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
53 (defvar simula-indent-level simula-indent-level-default |
805 | 54 "*Indentation of SIMULA statements with respect to containing block.") |
55 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
56 (defconst simula-substatement-offset-default 3 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
57 "Extra indentation after DO, THEN, ELSE, WHEN and OTHERWISE.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
58 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
59 (defvar simula-substatement-offset simula-substatement-offset-default |
805 | 60 "*Extra indentation after DO, THEN, ELSE, WHEN and OTHERWISE.") |
61 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
62 (defconst simula-continued-statement-offset-default 3 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
63 "Extra indentation for lines not starting a statement or substatement. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
64 If value is a list, each line in a multipleline continued statement |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
65 will have the car of the list extra indentation with respect to |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
66 the previous line of the statement.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
67 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
68 (defvar simula-continued-statement-offset simula-continued-statement-offset-default |
805 | 69 "*Extra indentation for lines not starting a statement or substatement. |
70 If value is a list, each line in a multipleline continued statement | |
71 will have the car of the list extra indentation with respect to | |
72 the previous line of the statement.") | |
73 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
74 (defconst simula-label-offset-default -4711 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
75 "Offset of SIMULA label lines relative to usual indentation.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
76 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
77 (defvar simula-label-offset simula-label-offset-default |
4664 | 78 "*Offset of SIMULA label lines relative to usual indentation.") |
805 | 79 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
80 (defconst simula-if-indent-default '(0 . 0) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
81 "Extra indentation of THEN and ELSE with respect to the starting IF. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
82 Value is a cons cell, the car is extra THEN indentation and the cdr |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
83 extra ELSE indentation. IF after ELSE is indented as the starting IF.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
84 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
85 (defvar simula-if-indent simula-if-indent-default |
805 | 86 "*Extra indentation of THEN and ELSE with respect to the starting IF. |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
87 Value is a cons cell, the car is extra THEN indentation and the cdr |
4664 | 88 extra ELSE indentation. IF after ELSE is indented as the starting IF.") |
805 | 89 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
90 (defconst simula-inspect-indent-default '(0 . 0) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
91 "Extra indentation of WHEN and OTHERWISE with respect to the INSPECT. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
92 Value is a cons cell, the car is extra WHEN indentation |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
93 and the cdr extra OTHERWISE indentation.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
94 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
95 (defvar simula-inspect-indent simula-inspect-indent-default |
4664 | 96 "*Extra indentation of WHEN and OTHERWISE with respect to the INSPECT. |
97 Value is a cons cell, the car is extra WHEN indentation | |
98 and the cdr extra OTHERWISE indentation.") | |
805 | 99 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
100 (defconst simula-electric-indent-default nil |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
101 "Non-nil means `simula-indent-line' function may reindent previous line.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
102 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
103 (defvar simula-electric-indent simula-electric-indent-default |
4664 | 104 "*Non-nil means `simula-indent-line' function may reindent previous line.") |
805 | 105 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
106 (defconst simula-abbrev-keyword-default 'upcase |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
107 "Specify how to convert case for SIMULA keywords. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
108 Value is one of the symbols `upcase', `downcase', `capitalize', |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
109 (as in) `abbrev-table' or nil if they should not be changed.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
110 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
111 (defvar simula-abbrev-keyword simula-abbrev-keyword-default |
4664 | 112 "*Specify how to convert case for SIMULA keywords. |
113 Value is one of the symbols `upcase', `downcase', `capitalize', | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
114 (as in) `abbrev-table' or nil if they should not be changed.") |
805 | 115 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
116 (defconst simula-abbrev-stdproc-default 'abbrev-table |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
117 "Specify how to convert case for standard SIMULA procedure and class names. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
118 Value is one of the symbols `upcase', `downcase', `capitalize', |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
119 (as in) `abbrev-table', or nil if they should not be changed.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
120 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
121 (defvar simula-abbrev-stdproc simula-abbrev-stdproc-default |
4664 | 122 "*Specify how to convert case for standard SIMULA procedure and class names. |
123 Value is one of the symbols `upcase', `downcase', `capitalize', | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
124 (as in) `abbrev-table', or nil if they should not be changed.") |
805 | 125 |
126 (defvar simula-abbrev-file nil | |
4664 | 127 "*File with extra abbrev definitions for use in SIMULA mode. |
128 These are used together with the standard abbrev definitions for SIMULA. | |
129 Please note that the standard definitions are required | |
130 for SIMULA mode to function correctly.") | |
805 | 131 |
132 (defvar simula-mode-syntax-table nil | |
4664 | 133 "Syntax table in SIMULA mode buffers.") |
805 | 134 |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
135 ; The following function is taken from cc-mode.el, |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
136 ; it determines the flavor of the Emacs running |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
137 (defconst simula-emacs-features |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
138 (let ((major (and (boundp 'emacs-major-version) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
139 emacs-major-version)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
140 (minor (and (boundp 'emacs-minor-version) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
141 emacs-minor-version)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
142 flavor comments) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
143 ;; figure out version numbers if not already discovered |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
144 (and (or (not major) (not minor)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
145 (string-match "\\([0-9]+\\).\\([0-9]+\\)" emacs-version) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
146 (setq major (string-to-int (substring emacs-version |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
147 (match-beginning 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
148 (match-end 1))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
149 minor (string-to-int (substring emacs-version |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
150 (match-beginning 2) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
151 (match-end 2))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
152 (if (not (and major minor)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
153 (error "Cannot figure out the major and minor version numbers.")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
154 ;; calculate the major version |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
155 (cond |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
156 ((= major 18) (setq major 'v18)) ;Emacs 18 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
157 ((= major 4) (setq major 'v18)) ;Epoch 4 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
158 ((= major 19) (setq major 'v19 ;Emacs 19 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
159 flavor (if (string-match "Lucid" emacs-version) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
160 'Lucid 'FSF))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
161 ;; I don't know |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
162 (t (error "Cannot recognize major version number: %s" major))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
163 (list major flavor comments)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
164 "A list of features extant in the Emacs you are using. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
165 There are many flavors of Emacs out there, each with different |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
166 features supporting those needed by simula-mode. Here's the current |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
167 supported list, along with the values for this variable: |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
168 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
169 Emacs 19: (v19 FSF 1-bit) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
170 Vanilla Emacs 18/Epoch 4: (v18 no-dual-comments) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
171 Emacs 18/Epoch 4 (patch2): (v18 8-bit) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
172 Lucid Emacs 19: (v19 Lucid 8-bit).") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
173 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
174 (defvar simula-mode-menu |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
175 '(["Report Bug" simula-submit-bug-report t] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
176 ["Indent Line" simula-indent-line t] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
177 ["Backward Statement" simula-previous-statement t] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
178 ["Forward Statement" simula-next-statement t] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
179 ["Backward Up Level" simula-backward-up-level t] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
180 ["Forward Down Statement" simula-forward-down-level t] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
181 ) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
182 "Lucid Emacs menu for SIMULA mode.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
183 |
805 | 184 (if simula-mode-syntax-table |
185 () | |
4664 | 186 (setq simula-mode-syntax-table (copy-syntax-table (standard-syntax-table))) |
805 | 187 (modify-syntax-entry ?! "<" simula-mode-syntax-table) |
188 (modify-syntax-entry ?$ "." simula-mode-syntax-table) | |
189 (modify-syntax-entry ?% "." simula-mode-syntax-table) | |
190 (modify-syntax-entry ?' "\"" simula-mode-syntax-table) | |
191 (modify-syntax-entry ?\( "()" simula-mode-syntax-table) | |
192 (modify-syntax-entry ?\) ")(" simula-mode-syntax-table) | |
193 (modify-syntax-entry ?\; ">" simula-mode-syntax-table) | |
194 (modify-syntax-entry ?\[ "." simula-mode-syntax-table) | |
195 (modify-syntax-entry ?\\ "." simula-mode-syntax-table) | |
196 (modify-syntax-entry ?\] "." simula-mode-syntax-table) | |
197 (modify-syntax-entry ?_ "w" simula-mode-syntax-table) | |
198 (modify-syntax-entry ?\| "." simula-mode-syntax-table) | |
199 (modify-syntax-entry ?\{ "." simula-mode-syntax-table) | |
200 (modify-syntax-entry ?\} "." simula-mode-syntax-table)) | |
201 | |
202 (defvar simula-mode-map () | |
4664 | 203 "Keymap used in SIMULA mode.") |
805 | 204 |
205 (if simula-mode-map | |
206 () | |
207 (setq simula-mode-map (make-sparse-keymap)) | |
208 (define-key simula-mode-map "\C-c\C-u" 'simula-backward-up-level) | |
209 (define-key simula-mode-map "\C-c\C-p" 'simula-previous-statement) | |
210 (define-key simula-mode-map "\C-c\C-d" 'simula-forward-down-level) | |
211 (define-key simula-mode-map "\C-c\C-n" 'simula-next-statement) | |
212 ;(define-key simula-mode-map "\C-c\C-g" 'simula-goto-definition) | |
213 ;(define-key simula-mode-map "\C-c\C-h" 'simula-standard-help) | |
214 (define-key simula-mode-map "\177" 'backward-delete-char-untabify) | |
215 (define-key simula-mode-map ":" 'simula-electric-label) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
216 (define-key simula-mode-map "\e\C-q" 'simula-indent-exp) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
217 (define-key simula-mode-map "\t" 'simula-indent-command) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
218 ;; Emacs 19 defines menus in the mode map |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
219 (if (memq 'FSF simula-emacs-features) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
220 (progn |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
221 (define-key simula-mode-map [menu-bar] (make-sparse-keymap)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
222 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
223 (define-key simula-mode-map [menu-bar simula] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
224 (cons "SIMULA" (make-sparse-keymap "SIMULA"))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
225 (define-key simula-mode-map [menu-bar simula bug-report] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
226 '("Submit Bug Report" . simula-submit-bug-report)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
227 (define-key simula-mode-map [menu-bar simula separator-indent] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
228 '("--")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
229 (define-key simula-mode-map [menu-bar simula indent-exp] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
230 '("Indent Expression" . simula-indent-exp)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
231 (define-key simula-mode-map [menu-bar simula indent-line] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
232 '("Indent Line" . simula-indent-command)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
233 (define-key simula-mode-map [menu-bar simula separator-navigate] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
234 '("--")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
235 (define-key simula-mode-map [menu-bar simula backward-stmt] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
236 '("Previous Statement" . simula-previous-statement)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
237 (define-key simula-mode-map [menu-bar simula forward-stmt] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
238 '("Next Statement" . simula-next-statement)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
239 (define-key simula-mode-map [menu-bar simula backward-up] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
240 '("Backward Up Level" . simula-backward-up-level)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
241 (define-key simula-mode-map [menu-bar simula forward-down] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
242 '("Forward Down Statement" . simula-forward-down-level)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
243 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
244 (put 'simula-next-statement 'menu-enable '(not (eobp))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
245 (put 'simula-previous-statement 'menu-enable '(not (bobp))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
246 (put 'simula-forward-down-level 'menu-enable '(not (eobp))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
247 (put 'simula-backward-up-level 'menu-enable '(not (bobp))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
248 (put 'simula-indent-command 'menu-enable '(not buffer-read-only)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
249 (put 'simula-indent-exp 'menu-enable '(not buffer-read-only)))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
250 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
251 ;; RMS: mouse-3 should not select this menu. mouse-3's global |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
252 ;; definition is useful in SIMULA mode and we should not interfere |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
253 ;; with that. The menu is mainly for beginners, and for them, |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
254 ;; the menubar requires less memory than a special click. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
255 ;; in Lucid Emacs, we want the menu to popup when the 3rd button is |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
256 ;; hit. In 19.10 and beyond this is done automatically if we put |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
257 ;; the menu on mode-popup-menu variable, see c-common-init [cc-mode.el] |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
258 (if (memq 'Lucid simula-emacs-features) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
259 (if (not (boundp 'mode-popup-menu)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
260 (define-key simula-mode-map 'button3 'simula-popup-menu)))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
261 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
262 ;; menus for Lucid |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
263 (defun simula-popup-menu (e) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
264 "Pops up the SIMULA menu." |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
265 (interactive "@e") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
266 (popup-menu (cons (concat mode-name " Mode Commands") simula-mode-menu)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
267 (simula-keep-region-active)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
268 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
269 ;; active regions, and auto-newline/hungry delete key |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
270 (defun simula-keep-region-active () |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
271 ;; do whatever is necessary to keep the region active in |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
272 ;; Lucid. ignore byte-compiler warnings you might see |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
273 (and (boundp 'zmacs-region-stays) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
274 (setq zmacs-region-stays t))) |
805 | 275 |
276 (defvar simula-mode-abbrev-table nil | |
4664 | 277 "Abbrev table in SIMULA mode buffers") |
805 | 278 |
279 | |
280 (defun simula-mode () | |
281 "Major mode for editing SIMULA code. | |
282 \\{simula-mode-map} | |
283 Variables controlling indentation style: | |
284 simula-tab-always-indent | |
285 Non-nil means TAB in SIMULA mode should always reindent the current line, | |
286 regardless of where in the line point is when the TAB command is used. | |
287 simula-indent-level | |
288 Indentation of SIMULA statements with respect to containing block. | |
289 simula-substatement-offset | |
290 Extra indentation after DO, THEN, ELSE, WHEN and OTHERWISE. | |
291 simula-continued-statement-offset 3 | |
292 Extra indentation for lines not starting a statement or substatement, | |
4664 | 293 e.g. a nested FOR-loop. If value is a list, each line in a multiple- |
805 | 294 line continued statement will have the car of the list extra indentation |
295 with respect to the previous line of the statement. | |
296 simula-label-offset -4711 | |
4664 | 297 Offset of SIMULA label lines relative to usual indentation. |
805 | 298 simula-if-indent '(0 . 0) |
299 Extra indentation of THEN and ELSE with respect to the starting IF. | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
300 Value is a cons cell, the car is extra THEN indentation and the cdr |
4664 | 301 extra ELSE indentation. IF after ELSE is indented as the starting IF. |
805 | 302 simula-inspect-indent '(0 . 0) |
303 Extra indentation of WHEN and OTHERWISE with respect to the | |
4664 | 304 corresponding INSPECT. Value is a cons cell, the car is |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
305 extra WHEN indentation and the cdr extra OTHERWISE indentation. |
805 | 306 simula-electric-indent nil |
4664 | 307 If this variable is non-nil, `simula-indent-line' |
805 | 308 will check the previous line to see if it has to be reindented. |
309 simula-abbrev-keyword 'upcase | |
4664 | 310 Determine how SIMULA keywords will be expanded. Value is one of |
311 the symbols `upcase', `downcase', `capitalize', (as in) `abbrev-table', | |
312 or nil if they should not be changed. | |
805 | 313 simula-abbrev-stdproc 'abbrev-table |
314 Determine how standard SIMULA procedure and class names will be | |
4664 | 315 expanded. Value is one of the symbols `upcase', `downcase', `capitalize', |
316 (as in) `abbrev-table', or nil if they should not be changed. | |
805 | 317 |
318 Turning on SIMULA mode calls the value of the variable simula-mode-hook | |
319 with no arguments, if that value is non-nil | |
320 | |
321 Warning: simula-mode-hook should not read in an abbrev file without calling | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
322 the function simula-install-standard-abbrevs afterwards, preferably not |
805 | 323 at all." |
324 (interactive) | |
325 (kill-all-local-variables) | |
326 (use-local-map simula-mode-map) | |
327 (setq major-mode 'simula-mode) | |
328 (setq mode-name "SIMULA") | |
329 (make-local-variable 'comment-column) | |
330 (setq comment-column 40) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
331 ; (make-local-variable 'end-comment-column) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
332 ; (setq end-comment-column 75) |
805 | 333 (set-syntax-table simula-mode-syntax-table) |
334 (make-local-variable 'paragraph-start) | |
10895
27b6776dc562
(simula-mode): Remove ^ from paragraph-start & paragraph-separate.
Boris Goldowsky <boris@gnu.org>
parents:
7639
diff
changeset
|
335 (setq paragraph-start "[ \t]*$\\|\\f") |
805 | 336 (make-local-variable 'paragraph-separate) |
337 (setq paragraph-separate paragraph-start) | |
338 (make-local-variable 'indent-line-function) | |
339 (setq indent-line-function 'simula-indent-line) | |
340 (make-local-variable 'require-final-newline) | |
341 (setq require-final-newline t) | |
342 (make-local-variable 'comment-start) | |
343 (setq comment-start "! ") | |
344 (make-local-variable 'comment-end) | |
345 (setq comment-end " ;") | |
346 (make-local-variable 'comment-start-skip) | |
347 (setq comment-start-skip "!+ *") | |
348 (make-local-variable 'parse-sexp-ignore-comments) | |
349 (setq parse-sexp-ignore-comments nil) | |
350 (make-local-variable 'comment-multi-line) | |
351 (setq comment-multi-line t) | |
352 (if simula-mode-abbrev-table | |
353 () | |
354 (if simula-abbrev-file | |
355 (read-abbrev-file simula-abbrev-file) | |
356 (define-abbrev-table 'simula-mode-abbrev-table ())) | |
357 (let (abbrevs-changed) | |
358 (simula-install-standard-abbrevs))) | |
359 (setq local-abbrev-table simula-mode-abbrev-table) | |
360 (abbrev-mode 1) | |
361 (run-hooks 'simula-mode-hook)) | |
362 | |
363 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
364 (defun simula-indent-exp () |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
365 "Indent SIMULA expression following point." |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
366 (interactive) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
367 (let ((here (point)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
368 (simula-electric-indent nil) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
369 end) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
370 (simula-skip-comment-forward) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
371 (if (eobp) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
372 (goto-char here) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
373 (unwind-protect |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
374 (progn |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
375 (simula-next-statement 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
376 (setq end (point-marker)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
377 (simula-previous-statement 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
378 (beginning-of-line) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
379 (while (< (point) end) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
380 (if (not (looking-at "[ \t]*$")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
381 (simula-indent-line)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
382 (forward-line 1))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
383 (and end (set-marker end nil)))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
384 |
805 | 385 |
386 (defun simula-indent-line () | |
4664 | 387 "Indent this line as SIMULA code. |
388 If `simula-electric-indent' is non-nil, indent previous line if necessary." | |
805 | 389 (let ((origin (- (point-max) (point))) |
390 (indent (simula-calculate-indent)) | |
391 (case-fold-search t)) | |
392 (unwind-protect | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
393 (if simula-electric-indent |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
394 (progn |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
395 ;; |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
396 ;; manually expand abbrev on last line, if any |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
397 ;; |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
398 (end-of-line 0) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
399 (expand-abbrev) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
400 ;; now maybe we should reindent that line |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
401 (beginning-of-line) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
402 (skip-chars-forward " \t\f") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
403 (if (and |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
404 (looking-at |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
405 "\\(end\\|if\\|then\\|else\\|when\\|otherwise\\)\\>") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
406 (not (simula-context))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
407 ;; yes - reindent |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
408 (let ((post-indent (simula-calculate-indent))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
409 (if (eq (current-indentation) post-indent) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
410 () |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
411 (delete-horizontal-space) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
412 (indent-to post-indent)))))) |
805 | 413 (goto-char (- (point-max) origin)) |
414 (if (eq (current-indentation) indent) | |
415 (back-to-indentation) | |
416 (delete-horizontal-space) | |
417 (indent-to indent))))) | |
418 | |
419 | |
420 (defun simula-indent-command (&optional whole-exp) | |
421 "Indent current line as SIMULA code, or insert TAB character. | |
4664 | 422 If `simula-tab-always-indent' is non-nil, always indent current line. |
805 | 423 Otherwise, indent only if point is before any non-whitespace |
424 character on the line. | |
425 | |
426 A numeric argument, regardless of its value, means indent rigidly | |
427 all the lines of the SIMULA statement after point so that this line | |
428 becomes properly indented. | |
429 The relative indentation among the lines of the statement are preserved." | |
430 (interactive "P") | |
431 (let ((case-fold-search t)) | |
432 (if (or whole-exp simula-tab-always-indent | |
433 (save-excursion | |
434 (skip-chars-backward " \t\f") | |
435 (bolp))) | |
436 ;; reindent current line | |
437 (let ((indent (save-excursion | |
438 (beginning-of-line) | |
439 (simula-calculate-indent))) | |
440 (current (current-indentation)) | |
441 (origin (- (point-max) (point))) | |
442 (bol (save-excursion | |
443 (skip-chars-backward " \t\f") | |
444 (bolp))) | |
445 beg end) | |
446 (unwind-protect | |
447 (if (eq current indent) | |
448 (if (save-excursion | |
449 (skip-chars-backward " \t\f") | |
450 (bolp)) | |
451 (back-to-indentation)) | |
452 (beginning-of-line) | |
453 (delete-horizontal-space) | |
454 (indent-to indent)) | |
455 (if (not bol) | |
456 (goto-char (- (point-max) origin)))) | |
457 (setq origin (point)) | |
458 (if whole-exp | |
459 (save-excursion | |
460 (beginning-of-line 2) | |
461 (setq beg (point)) | |
462 (goto-char origin) | |
463 (simula-next-statement 1) | |
464 (setq end (point)) | |
465 (if (and (> end beg) (not (eq indent current))) | |
466 (indent-code-rigidly beg end (- indent current) "%"))))) | |
467 (insert-tab)))) | |
468 | |
469 | |
470 (defun simula-context () | |
4664 | 471 "Returns value according to syntactic SIMULA context of point. |
472 0 point inside COMMENT comment | |
805 | 473 1 point on SIMULA-compiler directive line |
474 2 point inside END comment | |
475 3 point inside string | |
476 4 point inside character constant | |
477 nil otherwise." | |
478 ;; first, find out if this is a compiler directive line | |
479 (if (save-excursion | |
480 (beginning-of-line) | |
481 (eq (following-char) ?%)) | |
482 ;; YES - return 1 | |
483 1 | |
484 (save-excursion | |
485 ;; The current line is NOT a compiler directive line. | |
486 ;; Now, the strategy is to search backward to find a semicolon | |
487 ;; that is NOT inside a string. The point after semicolon MUST be | |
488 ;; outside a comment, since semicolons are comment-ending and | |
489 ;; comments are non-recursive. We take advantage of the fact | |
490 ;; that strings MUST end on the same line as they started, so | |
491 ;; that we can easily decide whether we are inside a string or not. | |
492 (let (return-value (origin (point))) | |
493 (skip-chars-backward "^;" (point-min)) | |
494 ;; found semicolon or beginning of buffer | |
495 (let (loopvalue (saved-point origin)) | |
496 (while (and (not (bobp)) | |
497 (if (progn | |
498 (beginning-of-line) | |
499 ;; compiler directive line? If so, cont searching.. | |
500 (eq (following-char) ?%)) | |
501 t | |
502 (while (< (point) saved-point) | |
503 (skip-chars-forward "^;\"'") | |
504 (forward-char 1) | |
505 (cond | |
506 ((eq (preceding-char) ?\;) | |
507 (setq saved-point (point))) | |
508 ((eq (preceding-char) ?\") | |
509 (skip-chars-forward "^\";") | |
510 (if (eq (following-char) ?\;) | |
511 (setq saved-point (point) loopvalue t) | |
512 (forward-char 1))) | |
513 (t | |
514 (if (eq (following-char) ?') | |
515 (forward-char 1)) | |
516 (skip-chars-forward "^';") | |
517 (if (eq (following-char) ?\;) | |
518 (setq saved-point (point) loopvalue t) | |
519 (forward-char 1))))) | |
520 loopvalue)) | |
521 (backward-char 1) | |
522 (skip-chars-backward "^;") | |
523 (setq saved-point (point) loopvalue nil))) | |
524 ;; Now we are CERTAIN that we are outside comments and strings. | |
525 ;; The job now is to search forward again towards the origin | |
526 ;; skipping directives, comments and strings correctly, | |
527 ;; so that we know what context we are in when we find the origin. | |
528 (while (and | |
529 (< (point) origin) | |
530 (re-search-forward | |
531 "\\<end\\>\\|!\\|\"\\|'\\|^%\\|\\<comment\\>" origin 'move)) | |
532 (cond | |
533 ((memq (preceding-char) '(?d ?D)) | |
534 (setq return-value 2) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
535 (while (and (re-search-forward |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
536 ";\\|\\<end\\>\\|\\<else\\>\\|\\<otherwise\\>\\|\\<when\\>\\|^%" |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
537 origin 'move) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
538 ;; found another END? |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
539 (or (memq (preceding-char) '(?d ?D)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
540 ;; if directive, skip line |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
541 (and (eq (preceding-char) ?%) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
542 (beginning-of-line 2)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
543 ;; found other keyword, out of END comment |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
544 (setq return-value nil)))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
545 (if (and (eq (char-syntax (preceding-char)) ?w) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
546 (eq (char-syntax (following-char)) ?w)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
547 (save-excursion |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
548 (backward-word 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
549 (if (looking-at "end\\>\\|else\\>\\|otherwise\\>\\|when\\>") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
550 (setq return-value nil))))) |
805 | 551 ((memq (preceding-char) '(?! ?t ?T)) |
552 ; skip comment | |
553 (setq return-value 0) | |
554 (skip-chars-forward "^%;" origin) | |
555 (while (and return-value (< (point) origin)) | |
556 (if (eq (following-char) ?\;) | |
557 (setq return-value nil) | |
558 (if (bolp) | |
559 (beginning-of-line 2) ; skip directive inside comment | |
560 (forward-char 1)) ; or single '%' | |
561 (skip-chars-forward "^%;" origin)))) | |
562 ((eq (preceding-char) ?\") | |
563 (if (not (search-forward "\"" origin 'move)) | |
564 (setq return-value 3))) | |
565 ((eq (preceding-char) ?\') | |
566 (if (or (eq (point) origin) (eobp)) | |
567 (setq return-value 4) | |
568 (forward-char 1) | |
569 (if (not (search-forward "'" origin 'move)) | |
570 (setq return-value 4)))) | |
571 ;; compiler directive line - skip | |
572 (t (beginning-of-line 2)))) | |
573 return-value) | |
574 ))) | |
575 | |
576 | |
577 (defun simula-electric-label () | |
4664 | 578 "If this is a label that starts the line, reindent the line." |
805 | 579 (interactive) |
580 (expand-abbrev) | |
581 (insert ?:) | |
582 (let ((origin (- (point-max) (point))) | |
583 (case-fold-search t) | |
584 ;; don't mix a label with an assignment operator := :- | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
585 ;; therefore take a peek at next typed character... |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
586 (next-char (read-event))) |
805 | 587 (unwind-protect |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
588 (setq unread-command-events (append unread-command-events |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
589 (list next-char))) |
805 | 590 ;; Problem: find out if character just read is a command char |
591 ;; that would insert something after ':' making it a label. | |
592 ;; At least \n, \r (and maybe \t) falls into this category. | |
593 ;; This is a real crock, it depends on traditional keymap | |
594 ;; bindings, that is, printing characters doing self-insert, | |
595 ;; and no other command sequence inserting '-' or '='. | |
596 ;; simula-electric-label can be easily fooled... | |
597 (if (and (not (memq next-char '(?= ?-))) | |
598 (or (memq next-char '(?\n ?\r)) | |
599 (and (eq next-char ?\t) | |
600 simula-tab-always-indent) | |
601 (not (memq (following-char) '(?= ?-)))) | |
602 (not (simula-context)) | |
603 ;; label? | |
604 (progn | |
605 (backward-char 1) | |
606 (skip-chars-backward " \t\f") | |
607 (skip-chars-backward "a-zA-Z0-9_") | |
608 (if (looking-at "virtual\\>") | |
609 nil | |
610 (skip-chars-backward " \t\f") | |
611 (bolp)))) | |
612 (let ((amount (simula-calculate-indent))) | |
613 (delete-horizontal-space) | |
614 (indent-to amount))) | |
615 (goto-char (- (point-max) origin))))) | |
616 | |
617 | |
618 (defun simula-backward-up-level (count) | |
619 "Move backward up COUNT block levels. | |
4664 | 620 If COUNT is negative, move forward up block level instead." |
805 | 621 (interactive "p") |
622 (let ((origin (point)) | |
623 (case-fold-search t)) | |
624 (condition-case () | |
625 (if (> count 0) | |
626 (while (> count 0) | |
627 (re-search-backward "\\<begin\\>\\|\\<end\\>") | |
628 (if (not (simula-context)) | |
629 (setq count (if (memq (following-char) '(?b ?B)) | |
630 (1- count) | |
631 (1+ count))))) | |
632 (while (< count 0) | |
633 (re-search-forward "\\<begin\\>\\|\\<end\\>") | |
634 (backward-word 1) | |
635 (if (not (simula-context)) | |
636 (setq count (if (memq (following-char) '(?e ?E)) | |
637 (1+ count) | |
638 (1- count)))) | |
639 (backward-word -1))) | |
640 ;; If block level not found, jump back to origin and signal an error | |
641 (error (progn | |
642 (goto-char origin) | |
643 (error "No higher block level"))) | |
644 (quit (progn | |
645 (goto-char origin) | |
646 (signal 'quit nil)))))) | |
647 | |
648 | |
649 (defun simula-forward-down-level (count) | |
650 "Move forward down COUNT block levels. | |
4664 | 651 If COUNT is negative, move backward down block level instead." |
805 | 652 (interactive "p") |
653 ;; When we search for a deeper block level, we must never | |
654 ;; get out of the block where we started -> count >= start-count | |
655 (let ((start-count count) | |
656 (origin (point)) | |
657 (case-fold-search t)) | |
658 (condition-case () | |
659 (if (< count 0) | |
660 (while (< count 0) | |
661 (re-search-backward "\\<begin\\>\\|\\<end\\>") | |
662 (if (not (simula-context)) | |
663 (setq count (if (memq (following-char) '(?e ?E)) | |
664 (1+ count) | |
665 (1- count)))) | |
666 (if (< count start-count) (signal 'error nil))) | |
667 (while (> count 0) | |
668 (re-search-forward "\\<begin\\>\\|\\<end\\>") | |
669 (backward-word 1) | |
670 (if (not (simula-context)) | |
671 (setq count (if (memq (following-char) '(?b ?B)) | |
672 (1- count) | |
673 (1+ count)))) | |
674 (backward-word -1) | |
675 ;; deeper level has to be found within starting block | |
676 (if (> count start-count) (signal 'error nil)))) | |
677 ;; If block level not found, jump back to origin and signal an error | |
678 (error (progn | |
679 (goto-char origin) | |
680 (error "No containing block level"))) | |
681 (quit (progn | |
682 (goto-char origin) | |
683 (signal 'quit nil)))))) | |
684 | |
685 | |
686 (defun simula-previous-statement (count) | |
687 "Move backward COUNT statements. | |
4664 | 688 If COUNT is negative, move forward instead." |
805 | 689 (interactive "p") |
690 (if (< count 0) | |
691 (simula-next-statement (- count)) | |
692 (let (status | |
693 (case-fold-search t) | |
694 (origin (point))) | |
695 (condition-case () | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
696 ;; |
805 | 697 (progn |
698 (simula-skip-comment-backward) | |
699 (if (memq (preceding-char) '(?n ?N)) | |
700 (progn | |
701 (backward-word 1) | |
702 (if (not (looking-at "\\<begin\\>")) | |
703 (backward-word -1))) | |
704 (if (eq (preceding-char) ?\;) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
705 (backward-char 1)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
706 ) |
805 | 707 (while (and (natnump (setq count (1- count))) |
708 (setq status (simula-search-backward | |
709 ";\\|\\<begin\\>" nil 'move)))) | |
710 (if status | |
711 (progn | |
712 (if (eq (following-char) ?\;) | |
713 (forward-char 1) | |
714 (backward-word -1)))) | |
715 (simula-skip-comment-forward)) | |
716 (error (progn (goto-char origin) | |
717 (error "Incomplete statement (too many ENDs)"))) | |
718 (quit (progn (goto-char origin) (signal 'quit nil))))))) | |
719 | |
720 | |
721 (defun simula-next-statement (count) | |
4664 | 722 "Move forward COUNT statements. |
723 If COUNT is negative, move backward instead." | |
805 | 724 (interactive "p") |
725 (if (< count 0) | |
726 (simula-previous-statement (- count)) | |
727 (let (status | |
728 (case-fold-search t) | |
729 (origin (point))) | |
730 (condition-case () | |
731 (progn | |
732 (simula-skip-comment-forward) | |
733 (if (looking-at "\\<end\\>") (forward-word 1)) | |
734 (while (and (natnump (setq count (1- count))) | |
735 (setq status (simula-search-forward | |
736 ";\\|\\<end\\>" (point-max) 'move)))) | |
737 (if (and status (/= (preceding-char) ?\;)) | |
738 (progn | |
739 (backward-word 1) | |
740 (simula-skip-comment-backward)))) | |
741 (error (progn (goto-char origin) | |
742 (error "Incomplete statement (too few ENDs)"))) | |
743 (quit (progn (goto-char origin) (signal 'quit nil))))))) | |
744 | |
745 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
746 (defun simula-skip-comment-backward (&optional stop-at-end) |
4664 | 747 "Search towards bob to find first char that is outside a comment." |
805 | 748 (interactive) |
749 (catch 'simula-out | |
750 (let (context) | |
751 (while t | |
752 (skip-chars-backward " \t\n\f") | |
753 (if (eq (preceding-char) ?\;) | |
754 (save-excursion | |
755 (backward-char 1) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
756 (setq context (simula-context)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
757 (if (and stop-at-end (eq context 2)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
758 (setq context nil))) |
805 | 759 (setq context (simula-context))) |
760 (cond | |
761 ((memq context '(nil 3 4)) | |
762 ;; check to see if we found a label | |
763 (if (and (eq (preceding-char) ?:) | |
764 (not (memq (following-char) '(?- ?=))) | |
765 (save-excursion | |
766 (skip-chars-backward ": \t\fa-zA-Z0-9_") | |
767 (not (looking-at "virtual\\>")))) | |
768 (skip-chars-backward ": \t\fa-zA-Z0-9_") | |
769 (throw 'simula-out nil))) | |
770 ((eq context 0) | |
771 ;; since we are inside a comment, it must start somewhere! | |
772 (while (and (re-search-backward "!\\|\\<comment\\>") | |
773 (memq (simula-context) '(0 1))))) | |
774 ((eq context 1) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
775 (beginning-of-line) |
805 | 776 (if (bobp) |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
777 (throw 'simula-out nil) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
778 (backward-char))) |
805 | 779 ((eq context 2) |
780 ;; an END-comment must belong to an END | |
781 (re-search-backward "\\<end\\>") | |
782 (forward-word 1) | |
783 (throw 'simula-out nil)) | |
784 ;; should be impossible to get here.. | |
785 ))))) | |
786 | |
787 | |
788 (defun simula-skip-comment-forward () | |
4664 | 789 "Search towards eob to find first char that is outside a comment." |
805 | 790 ;; this function assumes we start with point .outside a comment |
791 (interactive) | |
792 (catch 'simula-out | |
793 (while t | |
794 (skip-chars-forward " \t\n\f") | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
795 ;; BUG: the following (0 2) branches don't take into account intermixing |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
796 ;; directive lines |
805 | 797 (cond |
798 ((looking-at "!\\|\\<comment\\>") | |
799 (search-forward ";" nil 'move)) | |
800 ((and (bolp) (eq (following-char) ?%)) | |
801 (beginning-of-line 2)) | |
802 ((and (looking-at "[a-z0-9_]*[ \t\f]*:[^-=]") | |
803 (not (looking-at "virtual\\>"))) | |
804 (skip-chars-forward "a-zA-Z0-9_ \t\f:")) | |
805 (t | |
806 (throw 'simula-out t)))))) | |
807 | |
808 | |
809 (defun simula-forward-up-level () | |
810 (let ((continue-loop t) | |
811 (origin (point)) | |
812 (case-fold-search t) | |
813 return-value | |
814 temp) | |
815 (while continue-loop | |
816 (if (re-search-backward "\\<begin\\>\\|\\<end\\>" (point-min) 'move) | |
817 (setq temp (simula-context) | |
818 return-value (and (memq (preceding-char) '(?d ?D)) | |
819 (memq temp '(nil 2))) | |
820 continue-loop (and (not return-value) | |
821 (simula-forward-up-level))) | |
822 (setq continue-loop nil))) | |
823 (if return-value | |
824 t | |
825 (goto-char origin) | |
826 nil))) | |
827 | |
828 | |
829 (defun simula-calculate-indent () | |
830 (save-excursion | |
831 (let ((where (simula-context)) | |
832 (origin (point)) | |
833 (indent 0) | |
834 continued | |
835 start-line | |
836 temp | |
837 found-end | |
838 prev-cont) | |
839 (cond | |
840 ((eq where 0) | |
841 ;; | |
842 ;; Comment. | |
843 ;; If comment started on previous non-blank line, indent to the | |
844 ;; column where the comment started, else indent as that line. | |
845 ;; | |
846 (skip-chars-backward " \t\n\f") | |
847 (while (and (not (bolp)) (eq (simula-context) 0)) | |
848 (re-search-backward "^\\|!\\|\\<comment\\>")) | |
849 (skip-chars-forward " \t\n\f") | |
850 (prog1 | |
851 (current-column) | |
852 (goto-char origin))) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
853 ((eq where 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
854 ;; |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
855 ;; Directive. Always 0. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
856 ;; |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
857 0) |
805 | 858 ;; |
859 ;; Detect missing string delimiters | |
860 ;; | |
861 ((eq where 3) | |
862 (error "Inside string")) | |
863 ((eq where 4) | |
864 (error "Inside character constant")) | |
865 ;; | |
866 ;; check to see if inside ()'s | |
867 ;; | |
868 ((setq temp (simula-inside-parens)) | |
869 temp) | |
870 ;; | |
871 ;; Calculate non-comment indentation | |
872 (t | |
873 ;; first, find out if this line starts with something that needs | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
874 ;; special indentation (END/IF/THEN/ELSE/WHEN/OTHERWISE or label) |
805 | 875 ;; |
876 (skip-chars-forward " \t\f") | |
877 (cond | |
878 ;; | |
879 ;; END | |
880 ;; | |
881 ((looking-at "end\\>") | |
882 (setq indent (- simula-indent-level) | |
883 found-end t)) | |
884 ;; | |
885 ;; IF/THEN/ELSE | |
886 ;; | |
887 ((looking-at "if\\>\\|then\\>\\|else\\>") | |
888 ;; search for the *starting* IF | |
889 (cond | |
890 ((memq (following-char) '(?T ?t)) | |
891 (setq indent (car simula-if-indent))) | |
892 ((memq (following-char) '(?E ?e)) | |
893 (setq indent (cdr simula-if-indent))) | |
894 (t | |
895 (forward-word 1) | |
896 (setq indent 0))) | |
897 (simula-find-if)) | |
898 ;; | |
899 ;; WHEN/OTHERWISE | |
900 ;; | |
901 ((looking-at "when\\>\\|otherwise\\>") | |
902 ;; search for corresponding INSPECT | |
903 (if (memq (following-char) '(?W ?w)) | |
904 (setq indent (car simula-inspect-indent)) | |
905 (setq indent (cdr simula-inspect-indent))) | |
906 (simula-find-inspect)) | |
907 ;; | |
908 ;; label: | |
909 ;; | |
910 ((and (not (looking-at "virtual\\>")) | |
911 (looking-at "[a-z0-9_]*[ \t\f]*:[^-=]")) | |
912 (setq indent simula-label-offset))) | |
913 ;; find line with non-comment text | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
914 (simula-skip-comment-backward 'dont-skip-end) |
805 | 915 (if (and found-end |
916 (not (eq (preceding-char) ?\;)) | |
917 (if (memq (preceding-char) '(?N ?n)) | |
918 (save-excursion | |
1621
ec2c000b8b69
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
841
diff
changeset
|
919 (backward-word 1) |
805 | 920 (not (looking-at "begin\\>"))) |
921 t)) | |
922 (progn | |
923 (simula-previous-statement 1) | |
924 (simula-skip-comment-backward))) | |
925 (setq start-line | |
926 (save-excursion (beginning-of-line) (point)) | |
927 ;; - perhaps this is a continued statement | |
928 continued | |
929 (save-excursion | |
930 (and (not (bobp)) | |
931 ;; (not found-end) | |
932 (if (eq (char-syntax (preceding-char)) ?w) | |
933 (progn | |
934 (backward-word 1) | |
935 (not (looking-at | |
936 "begin\\|then\\|else\\|when\\|otherwise\\|do" | |
937 ))) | |
938 (not (memq (preceding-char) '(?: ?\;))))))) | |
939 ;; | |
940 ;; MAIN calculation loop - count BEGIN/DO etc. | |
941 ;; | |
942 (while (not (bolp)) | |
943 (if (re-search-backward | |
944 ";\\|\\<\\(begin\\|end\\|if\\|else\\|then\\|when\\|otherwise\\|do\\)\\>" | |
945 start-line 'move) | |
946 (if (simula-context) | |
947 ();; found something in a comment/string - ignore | |
948 (setq temp (following-char)) | |
949 (cond | |
950 ((eq temp ?\;) | |
951 (simula-previous-statement 1)) | |
952 ((looking-at "begin\\>") | |
953 (setq indent (+ indent simula-indent-level))) | |
954 ((looking-at "end\\>") | |
955 (forward-word 1) | |
956 (simula-previous-statement 1)) | |
957 ((looking-at "do\\>") | |
958 (setq indent (+ indent simula-substatement-offset)) | |
959 (simula-find-do-match)) | |
960 ((looking-at "\\(if\\|then\\|else\\)\\>") | |
961 (if (memq temp '(?I ?i)) | |
962 (forward-word 1) | |
963 (setq indent (+ indent | |
964 simula-substatement-offset | |
965 (if (memq temp '(?T ?t)) | |
966 (car simula-if-indent) | |
967 (cdr simula-if-indent))))) | |
968 (simula-find-if)) | |
969 ((looking-at "\\<when\\>\\|\\<otherwise\\>") | |
970 (setq indent (+ indent | |
971 simula-substatement-offset | |
972 (if (memq temp '(?W ?w)) | |
973 (car simula-if-indent) | |
974 (cdr simula-if-indent)))) | |
975 (simula-find-inspect))) | |
976 ;; found the start of a [sub]statement | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
977 ;; add indentation for continued statement |
805 | 978 (if continued |
979 (setq indent | |
980 (+ indent | |
981 (if (listp simula-continued-statement-offset) | |
982 (car simula-continued-statement-offset) | |
983 simula-continued-statement-offset)))) | |
984 (setq start-line | |
985 (save-excursion (beginning-of-line) (point)) | |
986 continued nil)) | |
987 ;; search failed .. point is at beginning of line | |
988 ;; determine if we should continue searching | |
989 ;; (at or before comment or label) | |
990 ;; temp = t means finished | |
991 (setq temp | |
992 (and (not (simula-context)) | |
993 (save-excursion | |
994 (skip-chars-forward " \t\f") | |
995 (or (looking-at "virtual") | |
996 (not | |
997 (looking-at | |
998 "!\\|comment\\>\\|[a-z0-9_]*[ \t\f]*:[^-=]"))))) | |
999 prev-cont continued) | |
1000 ;; if we are finished, find current line's indentation | |
1001 (if temp | |
1002 (setq indent (+ indent (current-indentation)))) | |
1003 ;; find next line with non-comment SIMULA text | |
1004 ;; maybe indent extra if statement continues | |
1005 (simula-skip-comment-backward) | |
1006 (setq continued | |
1007 (and (not (bobp)) | |
1008 (if (eq (char-syntax (preceding-char)) ?w) | |
1009 (save-excursion | |
1010 (backward-word 1) | |
1011 (not (looking-at | |
1012 "begin\\|then\\|else\\|when\\|otherwise\\|do"))) | |
1013 (not (memq (preceding-char) '(?: ?\;)))))) | |
1014 ;; if we the state of the continued-variable | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
1015 ;; changed, add indentation for continued statement |
805 | 1016 (if (or (and prev-cont (not continued)) |
1017 (and continued | |
1018 (listp simula-continued-statement-offset))) | |
1019 (setq indent | |
1020 (+ indent | |
1021 (if (listp simula-continued-statement-offset) | |
1022 (car simula-continued-statement-offset) | |
1023 simula-continued-statement-offset)))) | |
1024 ;; while ends if point is at beginning of line at loop test | |
1025 (if (not temp) | |
1026 (setq start-line (save-excursion (beginning-of-line) (point))) | |
1027 (beginning-of-line)))) | |
1028 ;; | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
1029 ;; return indentation |
805 | 1030 ;; |
1031 indent))))) | |
1032 | |
1033 | |
1034 (defun simula-find-if () | |
4664 | 1035 "Find starting IF of a IF-THEN[-ELSE[-IF-THEN...]] statement." |
805 | 1036 (catch 'simula-out |
1037 (while t | |
1038 (if (and (simula-search-backward "\\<if\\>\\|;\\|\\<begin\\>"nil t) | |
1039 (memq (following-char) '(?I ?i))) | |
1040 (save-excursion | |
1041 ;; | |
1042 ;; find out if this IF was really the start of the IF statement | |
1043 ;; | |
1044 (simula-skip-comment-backward) | |
1045 (if (and (eq (char-syntax (preceding-char)) ?w) | |
1046 (progn | |
1047 (backward-word 1) | |
1048 (looking-at "else\\>"))) | |
1049 () | |
1050 (throw 'simula-out t))) | |
1051 (if (not (looking-at "\\<if\\>")) | |
1052 (error "Missing IF or misplaced BEGIN or ';' (can't find IF)") | |
1053 ;; | |
1054 ;; we were at the starting IF in the first place.. | |
1055 ;; | |
1056 (throw 'simula-out t)))))) | |
1057 | |
1058 | |
1059 (defun simula-find-inspect () | |
4664 | 1060 "Find INSPECT matching WHEN or OTHERWISE." |
805 | 1061 (catch 'simula-out |
1062 (let ((level 0)) | |
1063 ;; | |
1064 ;; INSPECTs can be nested, have to find the corresponding one | |
1065 ;; | |
1066 (while t | |
1067 (if (and (simula-search-backward "\\<inspect\\>\\|\\<otherwise\\>\\|;" | |
1068 nil t) | |
1069 (/= (following-char) ?\;)) | |
1070 (if (memq (following-char) '(?O ?o)) | |
1071 (setq level (1+ level)) | |
1072 (if (zerop level) | |
1073 (throw 'simula-out t) | |
1074 (setq level (1- level)))) | |
1075 (error "Missing INSPECT or misplaced ';' (can't find INSPECT)")))))) | |
1076 | |
1077 | |
1078 (defun simula-find-do-match () | |
1079 "Find keyword matching DO: FOR, WHILE, INSPECT or WHEN" | |
1080 (while (and (re-search-backward | |
1081 "\\<\\(do\\|for\\|while\\|inspect\\|when\\|end\\|begin\\)\\>\\|;" | |
1082 nil 'move) | |
1083 (simula-context))) | |
1084 (if (and (looking-at "\\<\\(for\\|while\\|inspect\\|when\\)\\>") | |
1085 (not (simula-context))) | |
1086 () ;; found match | |
1087 (error "No matching FOR, WHILE or INSPECT for DO, or misplaced ';'"))) | |
1088 | |
1089 | |
1090 (defun simula-inside-parens () | |
4664 | 1091 "Return position after `(' on line if inside parentheses, nil otherwise." |
805 | 1092 (save-excursion |
1093 (let ((parlevel 0)) | |
1094 (catch 'simula-out | |
1095 (while t | |
1096 (if (re-search-backward "(\\|)\\|;" nil t) | |
1097 (if (eq (simula-context) nil) | |
1098 ;; found something - check it out | |
1099 (cond | |
1100 ((eq (following-char) ?\;) | |
1101 (if (zerop parlevel) | |
1102 (throw 'simula-out nil) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
1103 (error "Parenthesis mismatch or misplaced ';'"))) |
805 | 1104 ((eq (following-char) ?\() |
1105 (if (zerop parlevel) | |
1106 (throw 'simula-out (1+ (current-column))) | |
1107 (setq parlevel (1- parlevel)))) | |
1108 (t (setq parlevel (1+ parlevel)))) | |
1109 );; nothing - inside comment or string | |
1110 ;; search failed | |
1111 (throw 'simula-out nil))))))) | |
1112 | |
1113 | |
1114 (defun simula-goto-definition () | |
1115 "Goto point of definition of variable, procedure or class." | |
1116 (interactive)) | |
1117 | |
1118 | |
1119 (defun simula-expand-stdproc () | |
1120 (if (or (not simula-abbrev-stdproc) (simula-context)) | |
1121 (unexpand-abbrev) | |
1122 (cond | |
1123 ((eq simula-abbrev-stdproc 'upcase) (upcase-word -1)) | |
1124 ((eq simula-abbrev-stdproc 'downcase) (downcase-word -1)) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1125 ((eq simula-abbrev-stdproc 'capitalize) (capitalize-word -1)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1126 ((eq simula-abbrev-stdproc 'abbrev-table) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1127 ;; If not in lowercase, expansions are always capitalized. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1128 ;; We then want to replace with the exact expansion. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1129 (if (equal (symbol-name last-abbrev) last-abbrev-text) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1130 () |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1131 (downcase-word -1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1132 (expand-abbrev)))))) |
805 | 1133 |
1134 | |
1135 (defun simula-expand-keyword () | |
1136 (if (or (not simula-abbrev-keyword) (simula-context)) | |
1137 (unexpand-abbrev) | |
1138 (cond | |
1139 ((eq simula-abbrev-keyword 'upcase) (upcase-word -1)) | |
1140 ((eq simula-abbrev-keyword 'downcase) (downcase-word -1)) | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1141 ((eq simula-abbrev-keyword 'capitalize) (capitalize-word -1)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1142 ((eq simula-abbrev-stdproc 'abbrev-table) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1143 (if (equal (symbol-name last-abbrev) last-abbrev-text) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1144 () |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1145 (downcase-word -1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1146 (expand-abbrev)))))) |
805 | 1147 |
1148 | |
1149 (defun simula-electric-keyword () | |
4664 | 1150 "Expand SIMULA keyword. If it starts the line, reindent." |
805 | 1151 ;; redisplay |
1152 (let ((show-char (eq this-command 'self-insert-command))) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2315
diff
changeset
|
1153 ;; If the abbrev expansion results in reindentation, the user may have |
805 | 1154 ;; to wait some time before the character he typed is displayed |
1155 ;; (the char causing the expansion is inserted AFTER the hook function | |
1156 ;; is called). This is annoying in case of normal characters. | |
1157 ;; However, if the user pressed a key bound to newline, it is better | |
1158 ;; to have the line inserted after the begin-end match. | |
1159 (if show-char | |
1160 (progn | |
1161 (insert-char last-command-char 1) | |
1162 (sit-for 0) | |
1163 (backward-char 1))) | |
1164 (if (let ((where (simula-context)) | |
1165 (case-fold-search t)) | |
1166 (if where | |
1167 (if (and (eq where 2) (eq (char-syntax (preceding-char)) ?w)) | |
1168 (save-excursion | |
1169 (backward-word 1) | |
1170 (not (looking-at "end\\>")))))) | |
1171 (unexpand-abbrev) | |
1172 (cond | |
1173 ((not simula-abbrev-keyword) (unexpand-abbrev)) | |
1174 ((eq simula-abbrev-keyword 'upcase) (upcase-word -1)) | |
1175 ((eq simula-abbrev-keyword 'downcase) (downcase-word -1)) | |
1176 ((eq simula-abbrev-keyword 'capitalize) (capitalize-word -1))) | |
1177 (let ((pos (- (point-max) (point))) | |
1178 (case-fold-search t) | |
1179 null) | |
1180 (condition-case null | |
1181 (progn | |
1182 ;; check if the expanded word is on the beginning of the line. | |
1183 (if (and (eq (char-syntax (preceding-char)) ?w) | |
1184 (progn | |
1185 (backward-word 1) | |
1186 (if (looking-at "end\\>") | |
1187 (save-excursion | |
1188 (simula-backward-up-level 1) | |
1189 (if (pos-visible-in-window-p) | |
1190 (sit-for 1) | |
14330
35a18ea09b7b
(simula-electric-keyword): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1191 (message "Matches %s" |
805 | 1192 (buffer-substring |
1193 (point) | |
14330
35a18ea09b7b
(simula-electric-keyword): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
1194 (+ (point) (window-width))))))) |
805 | 1195 (skip-chars-backward " \t\f") |
1196 (bolp))) | |
1197 (let ((indent (simula-calculate-indent))) | |
1198 (if (eq indent (current-indentation)) | |
1199 () | |
1200 (delete-horizontal-space) | |
1201 (indent-to indent))) | |
1202 (skip-chars-forward " \t\f")) | |
1203 ;; check for END - blow whistles and ring bells | |
1204 | |
1205 (goto-char (- (point-max) pos)) | |
1206 (if show-char | |
1207 (delete-char 1))) | |
1208 (quit (goto-char (- (point-max) pos)))))))) | |
1209 | |
1210 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1211 (defun simula-search-backward (regexp &optional bound noerror) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1212 "Search backward from point for regular expression REGEXP, ignoring matches |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1213 found inside SIMULA comments, string literals, and BEGIN..END blocks. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1214 Set point to the end of the occurrence found, and return point. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1215 An optional second argument BOUND bounds the search, it is a buffer position. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1216 The match found must not extend after that position. Optional third argument |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1217 NOERROR, if t, means if fail just return nil (no error). |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1218 If not nil and not t, move to limit of search and return nil." |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1219 (let (begin end context (comb-regexp (concat regexp "\\|\\<end\\>")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1220 match (start-point (point))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1221 (catch 'simula-backward |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1222 (while (re-search-backward comb-regexp bound 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1223 ;; We have a match, check SIMULA context at match-beginning |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1224 ;; to see if we are outside comments etc. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1225 ;; Set MATCH to t if we found a true match, |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1226 ;; set MATCH to 'BLOCK if we found a BEGIN..END block, |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1227 ;; else set MATCH to nil. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1228 (save-match-data |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1229 (setq context (simula-context)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1230 (cond |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1231 ((eq context nil) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1232 (setq match (if (looking-at regexp) t 'BLOCK))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1233 ;;; A comment-ending semicolon is part of the comment, and shouldn't match. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1234 ;;; ((eq context 0) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1235 ;;; (setq match (if (eq (following-char) ?\;) t nil))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1236 ((eq context 2) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1237 (setq match (if (and (looking-at regexp) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1238 (looking-at ";\\|\\<end\\>\\|\\<else\\>\\|\\<otherwise\\>\\|\\<when\\>")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1239 t |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1240 (if (looking-at "\\<end\\>") 'BLOCK nil)))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1241 (t (setq match nil)))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1242 ;; Exit if true match |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1243 (if (eq match t) (throw 'simula-backward (point))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1244 (if (eq match 'BLOCK) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1245 ;; We found the END of a block |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1246 (let ((level 0)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1247 (while (natnump level) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1248 (if (re-search-backward "\\<begin\\>\\|\\<end\\>" bound 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1249 (let ((context (simula-context))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1250 ;; We found a BEGIN -> decrease level count |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1251 (cond ((and (eq context nil) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1252 (memq (following-char) '(?b ?B))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1253 (setq level (1- level))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1254 ;; END -> increase level count |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1255 ((and (memq context '(nil 2)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1256 (memq (following-char) '(?e ?E))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1257 (setq level (1+ level))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1258 ;; Block search failed. Action depends on noerror. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1259 (if (or (not noerror) (eq noerror t)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1260 (goto-char start-point)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1261 (if (not noerror) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1262 (signal 'search-failed (list regexp))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1263 (throw 'simula-backward nil)))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1264 ;; Search failed. Action depends on noerror. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1265 (if (or (not noerror) (eq noerror t)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1266 (goto-char start-point)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1267 (if noerror |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1268 nil |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1269 (signal 'search-failed (list regexp)))))) |
805 | 1270 |
1271 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1272 (defun simula-search-forward (regexp &optional bound noerror) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1273 "Search forward from point for regular expression REGEXP, ignoring matches |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1274 found inside SIMULA comments, string literals, and BEGIN..END blocks. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1275 Set point to the end of the occurrence found, and return point. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1276 An optional second argument BOUND bounds the search, it is a buffer position. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1277 The match found must not extend after that position. Optional third argument |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1278 NOERROR, if t, means if fail just return nil (no error). |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1279 If not nil and not t, move to limit of search and return nil." |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1280 (let (begin end context (comb-regexp (concat regexp "\\|\\<begin\\>")) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1281 match (start-point (point))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1282 (catch 'simula-forward |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1283 (while (re-search-forward comb-regexp bound 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1284 ;; We have a match, check SIMULA context at match-beginning |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1285 ;; to see if we are outside comments. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1286 ;; Set MATCH to t if we found a true match, |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1287 ;; set MATCH to 'BLOCK if we found a BEGIN..END block, |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1288 ;; else set MATCH to nil. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1289 (save-match-data |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1290 (save-excursion |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1291 (goto-char (match-beginning 0)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1292 (setq context (simula-context)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1293 (cond |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1294 ((not context) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1295 (setq match (if (looking-at regexp) t 'BLOCK))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1296 ;;; A comment-ending semicolon is part of the comment, and shouldn't match. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1297 ;;; ((eq context 0) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1298 ;;; (setq match (if (eq (following-char) ?\;) t nil))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1299 ((eq context 2) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1300 (setq match (if (and (looking-at regexp) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1301 (looking-at ";\\|\\<end\\>\\|\\<else\\>\\|\\<otherwise\\>\\|\\<when\\>")) t nil))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1302 (t (setq match nil))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1303 ;; Exit if true match |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1304 (if (eq match t) (throw 'simula-forward (point))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1305 (if (eq match 'BLOCK) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1306 ;; We found the BEGINning of a block |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1307 (let ((level 0)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1308 (while (natnump level) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1309 (if (re-search-forward "\\<begin\\>\\|\\<end\\>" bound 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1310 (let ((context (simula-context))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1311 ;; We found a BEGIN -> increase level count |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1312 (cond ((eq context nil) (setq level (1+ level))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1313 ;; END -> decrease level count |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1314 ((and (eq context 2) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1315 ;; Don't match BEGIN inside END comment |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1316 (memq (preceding-char) '(?d ?D))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1317 (setq level (1- level))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1318 ;; Block search failed. Action depends on noerror. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1319 (if (or (not noerror) (eq noerror t)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1320 (goto-char start-point)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1321 (if (not noerror) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1322 (signal 'search-failed (list regexp))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1323 (throw 'simula-forward nil)))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1324 ;; Search failed. Action depends on noerror. |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1325 (if (or (not noerror) (eq noerror t)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1326 (goto-char start-point)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1327 (if noerror |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1328 nil |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1329 (signal 'search-failed (list regexp)))))) |
805 | 1330 |
1331 | |
1332 (defun simula-install-standard-abbrevs () | |
4664 | 1333 "Define Simula keywords, procedures and classes in local abbrev table." |
805 | 1334 ;; procedure and class names are as of the SIMULA 87 standard. |
1335 (interactive) | |
1336 (mapcar (function (lambda (args) | |
1337 (apply 'define-abbrev simula-mode-abbrev-table args))) | |
1338 '(("abs" "Abs" simula-expand-stdproc) | |
1339 ("accum" "Accum" simula-expand-stdproc) | |
1340 ("activate" "ACTIVATE" simula-expand-keyword) | |
1341 ("addepsilon" "AddEpsilon" simula-expand-stdproc) | |
1342 ("after" "AFTER" simula-expand-keyword) | |
1343 ("and" "AND" simula-expand-keyword) | |
1344 ("arccos" "ArcCos" simula-expand-stdproc) | |
1345 ("arcsin" "ArcSin" simula-expand-stdproc) | |
1346 ("arctan" "ArcTan" simula-expand-stdproc) | |
1347 ("arctan2" "ArcTan2" simula-expand-stdproc) | |
1348 ("array" "ARRAY" simula-expand-keyword) | |
1349 ("at" "AT" simula-expand-keyword) | |
1350 ("before" "BEFORE" simula-expand-keyword) | |
1351 ("begin" "BEGIN" simula-expand-keyword) | |
1352 ("blanks" "Blanks" simula-expand-stdproc) | |
1353 ("boolean" "BOOLEAN" simula-expand-keyword) | |
1354 ("breakoutimage" "BreakOutImage" simula-expand-stdproc) | |
1355 ("bytefile" "ByteFile" simula-expand-stdproc) | |
1356 ("call" "Call" simula-expand-stdproc) | |
1357 ("cancel" "Cancel" simula-expand-stdproc) | |
1358 ("cardinal" "Cardinal" simula-expand-stdproc) | |
1359 ("char" "Char" simula-expand-stdproc) | |
1360 ("character" "CHARACTER" simula-expand-keyword) | |
1361 ("checkpoint" "CheckPoint" simula-expand-stdproc) | |
1362 ("class" "CLASS" simula-expand-keyword) | |
1363 ("clear" "Clear" simula-expand-stdproc) | |
1364 ("clocktime" "ClockTime" simula-expand-stdproc) | |
1365 ("close" "Close" simula-expand-stdproc) | |
1366 ("comment" "COMMENT" simula-expand-keyword) | |
1367 ("constant" "Constant" simula-expand-stdproc) | |
1368 ("copy" "Copy" simula-expand-stdproc) | |
1369 ("cos" "Cos" simula-expand-stdproc) | |
1370 ("cosh" "CosH" simula-expand-stdproc) | |
1371 ("cotan" "CoTan" simula-expand-stdproc) | |
1372 ("cputime" "CpuTime" simula-expand-stdproc) | |
1373 ("current" "Current" simula-expand-stdproc) | |
1374 ("datetime" "DateTime" simula-expand-stdproc) | |
1375 ("decimalmark" "DecimalMark" simula-expand-stdproc) | |
1376 ("delay" "DELAY" simula-expand-keyword) | |
1377 ("deleteimage" "DeleteImage" simula-expand-stdproc) | |
1378 ("detach" "Detach" simula-expand-stdproc) | |
1379 ("digit" "Digit" simula-expand-stdproc) | |
1380 ("directbytefile" "DirectByteFile" simula-expand-stdproc) | |
1381 ("directfile" "DirectFile" simula-expand-stdproc) | |
1382 ("discrete" "Discrete" simula-expand-stdproc) | |
1383 ("do" "DO" simula-expand-keyword) | |
1384 ("downcase" "Downcase" simula-expand-stdproc) | |
1385 ("draw" "Draw" simula-expand-stdproc) | |
1386 ("eject" "Eject" simula-expand-stdproc) | |
1387 ("else" "ELSE" simula-electric-keyword) | |
1388 ("empty" "Empty" simula-expand-stdproc) | |
1389 ("end" "END" simula-electric-keyword) | |
1390 ("endfile" "Endfile" simula-expand-stdproc) | |
1391 ("entier" "Entier" simula-expand-stdproc) | |
1392 ("eq" "EQ" simula-expand-keyword) | |
1393 ("eqv" "EQV" simula-expand-keyword) | |
1394 ("erlang" "Erlang" simula-expand-stdproc) | |
1395 ("error" "Error" simula-expand-stdproc) | |
1396 ("evtime" "EvTime" simula-expand-stdproc) | |
1397 ("exp" "Exp" simula-expand-stdproc) | |
1398 ("external" "EXTERNAL" simula-expand-keyword) | |
1399 ("false" "FALSE" simula-expand-keyword) | |
1400 ("field" "Field" simula-expand-stdproc) | |
1401 ("file" "File" simula-expand-stdproc) | |
1402 ("first" "First" simula-expand-stdproc) | |
1403 ("follow" "Follow" simula-expand-stdproc) | |
1404 ("for" "FOR" simula-expand-keyword) | |
1405 ("ge" "GE" simula-expand-keyword) | |
1406 ("getchar" "GetChar" simula-expand-stdproc) | |
1407 ("getfrac" "GetFrac" simula-expand-stdproc) | |
1408 ("getint" "GetInt" simula-expand-stdproc) | |
1409 ("getreal" "GetReal" simula-expand-stdproc) | |
1410 ("go" "GO" simula-expand-keyword) | |
1411 ("goto" "GOTO" simula-expand-keyword) | |
1412 ("gt" "GT" simula-expand-keyword) | |
1413 ("head" "Head" simula-expand-stdproc) | |
1414 ("hidden" "HIDDEN" simula-expand-keyword) | |
1415 ("histd" "HistD" simula-expand-stdproc) | |
1416 ("histo" "Histo" simula-expand-stdproc) | |
1417 ("hold" "Hold" simula-expand-stdproc) | |
1418 ("idle" "Idle" simula-expand-stdproc) | |
1419 ("if" "IF" simula-expand-keyword) | |
1420 ("image" "Image" simula-expand-stdproc) | |
1421 ("imagefile" "ImageFile" simula-expand-stdproc) | |
1422 ("imp" "IMP" simula-expand-keyword) | |
1423 ("in" "IN" simula-expand-keyword) | |
1424 ("inbyte" "InByte" simula-expand-stdproc) | |
1425 ("inbytefile" "InByteFile" simula-expand-stdproc) | |
1426 ("inchar" "InChar" simula-expand-stdproc) | |
1427 ("infile" "InFile" simula-expand-stdproc) | |
1428 ("infrac" "InFrac" simula-expand-stdproc) | |
1429 ("inimage" "InImage" simula-expand-stdproc) | |
1430 ("inint" "InInt" simula-expand-stdproc) | |
1431 ("inner" "INNER" simula-expand-keyword) | |
1432 ("inreal" "InReal" simula-expand-stdproc) | |
1433 ("inrecord" "InRecord" simula-expand-stdproc) | |
1434 ("inspect" "INSPECT" simula-expand-keyword) | |
1435 ("integer" "INTEGER" simula-expand-keyword) | |
1436 ("intext" "InText" simula-expand-stdproc) | |
1437 ("into" "Into" simula-expand-stdproc) | |
1438 ("is" "IS" simula-expand-keyword) | |
1439 ("isochar" "ISOChar" simula-expand-stdproc) | |
1440 ("isopen" "IsOpen" simula-expand-stdproc) | |
1441 ("isorank" "ISORank" simula-expand-stdproc) | |
1442 ("label" "LABEL" simula-expand-keyword) | |
1443 ("last" "Last" simula-expand-stdproc) | |
1444 ("lastitem" "LastItem" simula-expand-stdproc) | |
1445 ("lastloc" "LastLoc" simula-expand-stdproc) | |
1446 ("le" "LE" simula-expand-keyword) | |
1447 ("length" "Length" simula-expand-stdproc) | |
1448 ("letter" "Letter" simula-expand-stdproc) | |
1449 ("line" "Line" simula-expand-stdproc) | |
1450 ("linear" "Linear" simula-expand-stdproc) | |
1451 ("linesperpage" "LinesPerPage" simula-expand-stdproc) | |
1452 ("link" "Link" simula-expand-stdproc) | |
1453 ("linkage" "Linkage" simula-expand-stdproc) | |
1454 ("ln" "Ln" simula-expand-stdproc) | |
1455 ("locate" "Locate" simula-expand-stdproc) | |
1456 ("location" "Location" simula-expand-stdproc) | |
1457 ("lock" "Lock" simula-expand-stdproc) | |
1458 ("locked" "Locked" simula-expand-stdproc) | |
1459 ("log10" "Log10" simula-expand-stdproc) | |
1460 ("long" "LONG" simula-expand-keyword) | |
1461 ("lowcase" "LowCase" simula-expand-stdproc) | |
1462 ("lowerbound" "LowerBound" simula-expand-stdproc) | |
1463 ("lowten" "LowTen" simula-expand-stdproc) | |
1464 ("lt" "LT" simula-expand-keyword) | |
1465 ("main" "Main" simula-expand-stdproc) | |
1466 ("max" "Max" simula-expand-stdproc) | |
1467 ("maxint" "MaxInt" simula-expand-stdproc) | |
1468 ("maxlongreal" "MaxLongReal" simula-expand-stdproc) | |
1469 ("maxloc" "MaxLoc" simula-expand-stdproc) | |
1470 ("maxrank" "MaxRank" simula-expand-stdproc) | |
1471 ("maxreal" "MaxReal" simula-expand-stdproc) | |
1472 ("min" "Min" simula-expand-stdproc) | |
1473 ("minint" "MinInt" simula-expand-stdproc) | |
1474 ("minlongreal" "MinLongReal" simula-expand-stdproc) | |
1475 ("minrank" "MinRank" simula-expand-stdproc) | |
1476 ("minreal" "MinReal" simula-expand-stdproc) | |
1477 ("mod" "Mod" simula-expand-stdproc) | |
1478 ("more" "More" simula-expand-stdproc) | |
1479 ("name" "NAME" simula-expand-keyword) | |
1480 ("ne" "NE" simula-expand-keyword) | |
1481 ("negexp" "NegExp" simula-expand-stdproc) | |
1482 ("new" "NEW" simula-expand-keyword) | |
1483 ("nextev" "NextEv" simula-expand-stdproc) | |
1484 ("none" "NONE" simula-expand-keyword) | |
1485 ("normal" "Normal" simula-expand-stdproc) | |
1486 ("not" "NOT" simula-expand-keyword) | |
1487 ("notext" "NOTEXT" simula-expand-keyword) | |
1488 ("open" "Open" simula-expand-stdproc) | |
1489 ("or" "OR" simula-expand-keyword) | |
1490 ("otherwise" "OTHERWISE" simula-electric-keyword) | |
1491 ("out" "Out" simula-expand-stdproc) | |
1492 ("outbyte" "OutByte" simula-expand-stdproc) | |
1493 ("outbytefile" "OutByteFile" simula-expand-stdproc) | |
1494 ("outchar" "OutChar" simula-expand-stdproc) | |
1495 ("outfile" "OutFile" simula-expand-stdproc) | |
1496 ("outfix" "OutFix" simula-expand-stdproc) | |
1497 ("outfrac" "OutFrac" simula-expand-stdproc) | |
1498 ("outimage" "OutImage" simula-expand-stdproc) | |
1499 ("outint" "OutInt" simula-expand-stdproc) | |
1500 ("outreal" "OutReal" simula-expand-stdproc) | |
1501 ("outrecord" "OutRecord" simula-expand-stdproc) | |
1502 ("outtext" "OutText" simula-expand-stdproc) | |
1503 ("page" "Page" simula-expand-stdproc) | |
1504 ("passivate" "Passivate" simula-expand-stdproc) | |
1505 ("poisson" "Poisson" simula-expand-stdproc) | |
1506 ("pos" "Pos" simula-expand-stdproc) | |
1507 ("precede" "Precede" simula-expand-stdproc) | |
1508 ("pred" "Pred" simula-expand-stdproc) | |
1509 ("prev" "Prev" simula-expand-stdproc) | |
1510 ("printfile" "PrintFile" simula-expand-stdproc) | |
1511 ("prior" "PRIOR" simula-expand-keyword) | |
1512 ("procedure" "PROCEDURE" simula-expand-keyword) | |
1513 ("process" "Process" simula-expand-stdproc) | |
1514 ("protected" "PROTECTED" simula-expand-keyword) | |
1515 ("putchar" "PutChar" simula-expand-stdproc) | |
1516 ("putfix" "PutFix" simula-expand-stdproc) | |
1517 ("putfrac" "PutFrac" simula-expand-stdproc) | |
1518 ("putint" "PutInt" simula-expand-stdproc) | |
1519 ("putreal" "PutReal" simula-expand-stdproc) | |
1520 ("qua" "QUA" simula-expand-keyword) | |
1521 ("randint" "RandInt" simula-expand-stdproc) | |
1522 ("rank" "Rank" simula-expand-stdproc) | |
1523 ("reactivate" "REACTIVATE" simula-expand-keyword) | |
1524 ("real" "REAL" simula-expand-keyword) | |
1525 ("ref" "REF" simula-expand-keyword) | |
1526 ("resume" "Resume" simula-expand-stdproc) | |
1527 ("setaccess" "SetAccess" simula-expand-stdproc) | |
1528 ("setpos" "SetPos" simula-expand-stdproc) | |
1529 ("short" "SHORT" simula-expand-keyword) | |
1530 ("sign" "Sign" simula-expand-stdproc) | |
1531 ("simset" "SimSet" simula-expand-stdproc) | |
1532 ("simulaid" "SimulaId" simula-expand-stdproc) | |
1533 ("simulation" "Simulation" simula-expand-stdproc) | |
1534 ("sin" "Sin" simula-expand-stdproc) | |
1535 ("sinh" "SinH" simula-expand-stdproc) | |
1536 ("sourceline" "SourceLine" simula-expand-stdproc) | |
1537 ("spacing" "Spacing" simula-expand-stdproc) | |
1538 ("sqrt" "Sqrt" simula-expand-stdproc) | |
1539 ("start" "Start" simula-expand-stdproc) | |
1540 ("step" "STEP" simula-expand-keyword) | |
1541 ("strip" "Strip" simula-expand-stdproc) | |
1542 ("sub" "Sub" simula-expand-stdproc) | |
1543 ("subepsilon" "SubEpsilon" simula-expand-stdproc) | |
1544 ("suc" "Suc" simula-expand-stdproc) | |
1545 ("switch" "SWITCH" simula-expand-keyword) | |
1546 ("sysin" "SysIn" simula-expand-stdproc) | |
1547 ("sysout" "SysOut" simula-expand-stdproc) | |
1548 ("tan" "Tan" simula-expand-stdproc) | |
1549 ("tanh" "TanH" simula-expand-stdproc) | |
1550 ("terminate_program" "Terminate_Program" simula-expand-stdproc) | |
1551 ("terminated" "Terminated" simula-expand-stdproc) | |
1552 ("text" "TEXT" simula-expand-keyword) | |
1553 ("then" "THEN" simula-electric-keyword) | |
1554 ("this" "THIS" simula-expand-keyword) | |
1555 ("time" "Time" simula-expand-stdproc) | |
1556 ("to" "TO" simula-expand-keyword) | |
1557 ("true" "TRUE" simula-expand-keyword) | |
1558 ("uniform" "Uniform" simula-expand-stdproc) | |
1559 ("unlock" "Unlock" simula-expand-stdproc) | |
1560 ("until" "UNTIL" simula-expand-keyword) | |
1561 ("upcase" "Upcase" simula-expand-stdproc) | |
1562 ("upperbound" "UpperBound" simula-expand-stdproc) | |
1563 ("value" "VALUE" simula-expand-keyword) | |
1564 ("virtual" "VIRTUAL" simula-expand-keyword) | |
1565 ("wait" "Wait" simula-expand-stdproc) | |
1566 ("when" "WHEN" simula-electric-keyword) | |
1567 ("while" "WHILE" simula-expand-keyword)))) | |
1568 | |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1569 (if (and (fboundp 'hilit-set-mode-patterns) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1570 (boundp 'hilit-patterns-alist) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1571 (not (assoc 'simula-mode hilit-patterns-alist))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1572 (hilit-set-mode-patterns |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1573 'simula-mode |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1574 '( |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1575 ("^%\\([ \t\f].*\\)?$" nil comment) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1576 ("^%include\\>" nil include) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1577 ("\"[^\"\n]*\"\\|'.'\\|'![0-9]+!'" nil string) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1578 ("\\<\\(ACTIVATE\\|AFTER\\|AND\\|ARRAY\\|AT\\|BEFORE\\|BEGIN\\|BOOLEAN\\|CHARACTER\\|CLASS\\|DELAY\\|DO\\|ELSE\\|END\\|EQ\\|EQV\\|EXTERNAL\\|FALSE\\|FOR\\|GE\\|GO\\|GOTO\\|GT\\|HIDDEN\\|IF\\|IMP\\|IN\\|INNER\\|INSPECT\\|INTEGER\\|IS\\|LABEL\\|LE\\|LONG\\|LT\\|NAME\\|NE\\|NEW\\|NONE\\|NOT\\|NOTEXT\\|OR\\|OTHERWISE\\|PRIOR\\|PROCEDURE\\|PROTECTED\\|QUA\\|REACTIVATE\\|REAL\\|REF\\|SHORT\\|STEP\\|SWITCH\\|TEXT\\|THEN\\|THIS\\|TO\\|TRUE\\|UNTIL\\|VALUE\\|VIRTUAL\\|WHEN\\|WHILE\\)\\>" nil keyword) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1579 ("!\\|\\<COMMENT\\>" ";" comment)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1580 nil 'case-insensitive)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1581 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1582 (setq simula-find-comment-point -1 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1583 simula-find-comment-context nil) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1584 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1585 ;; function used by hilit19 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1586 (defun simula-find-next-comment-region (param) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1587 "Return region (start end) cons of comment after point, or NIL" |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1588 (let (start end) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1589 ;; This function is called repeatedly, check if point is |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1590 ;; where we left it in the last call |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1591 (if (not (eq simula-find-comment-point (point))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1592 (setq simula-find-comment-point (point) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1593 simula-find-comment-context (simula-context))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1594 ;; loop as long as we haven't found the end of a comment |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1595 (if (memq simula-find-comment-context '(0 1 2)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1596 (setq start (point)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1597 (if (re-search-forward "\\<end\\>\\|!\\|\"\\|'\\|^%\\|\\<comment\\>" |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1598 nil 'move) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1599 (let ((previous-char (preceding-char))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1600 (cond |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1601 ((memq previous-char '(?d ?D)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1602 (setq start (point) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1603 simula-find-comment-context 2)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1604 ((memq previous-char '(?t ?T ?\!)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1605 (setq start (point) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1606 simula-find-comment-context 0)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1607 ((eq previous-char ?%) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1608 (setq start (point) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1609 simula-find-comment-context 0)))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1610 ;; BUG: the following (0 2) branches don't take into account intermixing |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1611 ;; directive lines |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1612 (cond |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1613 ((eq simula-find-comment-context 0) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1614 (search-forward ";" nil 'move)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1615 ((eq simula-find-comment-context 1) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1616 (beginning-of-line 2)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1617 ((eq simula-find-comment-context 2) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1618 (re-search-forward ";\\|\\<end\\>\\|\\<else\\>\\|\\<otherwise\\>\\|\\<when\\>\\" (point-max) 'move))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1619 (if start |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1620 (setq end (point))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1621 ;; save point for later calls to this function |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1622 (setq simula-find-comment-point (if end (point) -1)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1623 (and end (cons start end)))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1624 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1625 (if (not (fboundp 'save-match-data)) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1626 (defmacro save-match-data (&rest body) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1627 "Execute the BODY forms, restoring the global value of the match data." |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1628 (let ((original (make-symbol "match-data"))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1629 (list |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1630 'let (list (list original '(match-data))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1631 (list 'unwind-protect |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1632 (cons 'progn body) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1633 (list 'store-match-data original)))))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1634 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1635 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1636 ;; defuns for submitting bug reports |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1637 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1638 (defconst simula-mode-help-address "simula-mode@ifi.uio.no" |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1639 "Address accepting submission of simula-mode bug reports.") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1640 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1641 ;; get reporter-submit-bug-report when byte-compiling |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1642 (and (fboundp 'eval-when-compile) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1643 (eval-when-compile |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1644 (require 'reporter))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1645 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1646 (defun simula-submit-bug-report () |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1647 "Submit via mail a bug report on simula-mode." |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1648 (interactive) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1649 (and |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1650 (y-or-n-p "Do you want to submit a report on simula-mode? ") |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1651 (require 'reporter) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1652 (reporter-submit-bug-report |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1653 simula-mode-help-address |
15054
df34d8bec5fc
(simula-submit-bug-report): Use emacs-version.
Richard M. Stallman <rms@gnu.org>
parents:
15053
diff
changeset
|
1654 (concat "simula-mode from Emacs " emacs-version) |
15053
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1655 (list |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1656 ;; report only the vars that affect indentation |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1657 'simula-emacs-features |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1658 'simula-indent-level |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1659 'simula-substatement-offset |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1660 'simula-continued-statement-offset |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1661 'simula-label-offset |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1662 'simula-if-indent |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1663 'simula-inspect-indent |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1664 'simula-electric-indent |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1665 'simula-abbrev-keyword |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1666 'simula-abbrev-stdproc |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1667 'simula-abbrev-file |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1668 'simula-tab-always-indent |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1669 )))) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1670 |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1671 (provide 'simula-mode) |
68d9a01cfb23
(simula-tab-always-indent, simula-indent-level)
Richard M. Stallman <rms@gnu.org>
parents:
14330
diff
changeset
|
1672 |
805 | 1673 ;;; simula.el ends here |