Mercurial > emacs
annotate lisp/progmodes/f90.el @ 29953:dad7b11391a3
(Fplist_member): Renamed from Fwidget_plist_member.
(Fwidget_get): Use it.
(syms_of_fns): Defsubr it.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 26 Jun 2000 21:53:57 +0000 |
parents | 0371c5f8f98b |
children | fc4250f64a77 |
rev | line source |
---|---|
13337 | 1 ;;; f90.el --- Fortran-90 mode (free format) |
14169 | 2 |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc. |
10612 | 4 |
28915
0371c5f8f98b
Change author's mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
28170
diff
changeset
|
5 ;; Author: Torbj\"orn Einarsson <Torbjorn.Einarsson@era.ericsson.se> |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
6 ;; Maintainer: Dave Love <fx@gnu.org> |
10612 | 7 ;; Keywords: fortran, f90, languages |
8 | |
14169 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10612 | 12 ;; it under the terms of the GNU General Public License as published by |
14169 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
14 ;; any later version. | |
10612 | 15 |
14169 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
10612 | 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
10612 | 25 |
26 ;;; Commentary: | |
14169 | 27 |
10612 | 28 ;; Smart mode for editing F90 programs in FREE FORMAT. |
29 ;; Knows about continuation lines, named structured statements, and other | |
30 ;; new features in F90 including HPF (High Performance Fortran) structures. | |
31 ;; The basic feature is to provide an accurate indentation of F90 programs. | |
32 ;; In addition, there are many more features like automatic matching of all | |
33 ;; end statements, an auto-fill function to break long lines, a join-lines | |
34 ;; function which joins continued lines etc etc. | |
35 ;; To facilitate typing, a fairly complete list of abbreviations is provided. | |
36 ;; For example, `i is short-hand for integer (if abbrev-mode is on). | |
37 | |
38 ;; There are two separate features for highlighting the code. | |
39 ;; 1) Upcasing or capitalizing of all keywords. | |
13064 | 40 ;; 2) Colors/fonts using font-lock-mode. (only when using X-windows) |
10612 | 41 ;; Automatic upcase of downcase of keywords is controlled by the parameter |
42 ;; f90-auto-keyword-case. | |
43 | |
44 ;; The indentations of lines starting with ! is determined by the first of the | |
13064 | 45 ;; following matches (the values in the left column are the default values): |
46 | |
47 ;; start-string/regexp indent variable holding start-string/regexp | |
48 ;; !!! 0 | |
49 ;; !hpf\\$ (re) 0 f90-directive-comment-re | |
50 ;; !!$ 0 f90-comment-region | |
51 ;; ! (re) as code f90-indented-comment-re | |
52 ;; default comment-column | |
53 | |
54 ;; Ex: Here is the result of 3 different settings of f90-indented-comment-re | |
55 ;; f90-indented-comment-re !-indentation !!-indentation | |
56 ;; ! as code as code | |
57 ;; !! comment-column as code | |
58 ;; ![^!] as code comment-column | |
10612 | 59 ;; Trailing comments are indented to comment-column with indent-for-comment M-; |
60 ;; f90-comment-region (C-c;) toggles insertion of f90-comment-region in region. | |
61 | |
62 ;; One common convention for free vs. fixed format is that free-format files | |
63 ;; have the ending .f90 while the fixed format files have the ending .f. | |
64 ;; To make f90-mode work, put this file in, for example, your directory | |
65 ;; ~/lisp, and be sure that you have the following in your .emacs-file | |
66 ;; (setq load-path (append load-path '("~/lisp"))) | |
67 ;; (autoload 'f90-mode "f90" | |
68 ;; "Major mode for editing Fortran 90 code in free format." t) | |
69 ;; (setq auto-mode-alist (append auto-mode-alist | |
70 ;; (list '("\\.f90$" . f90-mode)))) | |
71 ;; Once you have entered f90-mode, you may get more info by using | |
72 ;; the command describe-mode (C-h m). For online help describing various | |
73 ;; functions use C-h f <Name of function you want described> | |
74 | |
75 ;; To customize the f90-mode for your taste, use, for example: | |
76 ;; (you don't have to specify values for all the parameters below) | |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
77 ;;(add-hook 'f90-mode-hook |
10612 | 78 ;; '(lambda () (setq f90-do-indent 3 |
79 ;; f90-if-indent 3 | |
80 ;; f90-type-indent 3 | |
81 ;; f90-program-indent 2 | |
82 ;; f90-continuation-indent 5 | |
83 ;; f90-comment-region "!!$" | |
13064 | 84 ;; f90-directive-comment-re "!hpf\\$" |
85 ;; f90-indented-comment-re "!" | |
10612 | 86 ;; f90-break-delimiters "[-+\\*/,><=% \t]" |
87 ;; f90-break-before-delimiters t | |
88 ;; f90-beginning-ampersand t | |
89 ;; f90-smart-end 'blink | |
90 ;; f90-auto-keyword-case nil | |
91 ;; f90-leave-line-no nil | |
11501
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
92 ;; f90-startup-message t |
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
93 ;; indent-tabs-mode nil |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
94 ;; f90-font-lock-keywords f90-font-lock-keywords-2 |
11501
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
95 ;; ) |
10612 | 96 ;; ;;The rest is not default. |
97 ;; (abbrev-mode 1) ; turn on abbreviation mode | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
98 ;; (f90-add-imenu-menu) ; extra menu with functions etc. |
10612 | 99 ;; (if f90-auto-keyword-case ; change case of all keywords on startup |
100 ;; (f90-change-keywords f90-auto-keyword-case)) | |
101 ;; )) | |
102 ;; in your .emacs file (the shown values are the defaults). You can also | |
103 ;; change the values of the lists f90-keywords etc. | |
104 ;; The auto-fill and abbreviation minor modes are accessible from the menu, | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
105 ;; or by using M-x auto-fill-mode and M-x abbrev-mode, respectively. |
10612 | 106 |
107 ;; Remarks | |
108 ;; 1) Line numbers are by default left-justified. If f90-leave-line-no is | |
109 ;; non-nil, the line numbers are never touched. | |
110 ;; 2) Multi-; statements like > do i=1,20 ; j=j+i ; end do < are not handled | |
111 ;; correctly, but I imagine them to be rare. | |
13064 | 112 ;; 3) Regexps for hilit19 are no longer supported. |
10612 | 113 ;; 4) For FIXED FORMAT code, use the ordinary fortran mode. |
114 ;; 5) This mode does not work under emacs-18.x. | |
11501
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
115 ;; 6) Preprocessor directives, i.e., lines starting with # are left-justified |
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
116 ;; and are untouched by all case-changing commands. There is, at present, no |
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
117 ;; mechanism for treating multi-line directives (continued by \ ). |
13064 | 118 ;; 7) f77 do-loops do 10 i=.. ; ; 10 continue are not correctly indented. |
119 ;; You are urged to use f90-do loops (with labels if you wish). | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
120 ;; 8) The highlighting mode under XEmacs is not as complete as under Emacs. |
10612 | 121 |
122 ;; List of user commands | |
123 ;; f90-previous-statement f90-next-statement | |
124 ;; f90-beginning-of-subprogram f90-end-of-subprogram f90-mark-subprogram | |
125 ;; f90-comment-region | |
126 ;; f90-indent-line f90-indent-new-line | |
127 ;; f90-indent-region (can be called by calling indent-region) | |
128 ;; f90-indent-subprogram | |
129 ;; f90-break-line f90-join-lines | |
130 ;; f90-fill-region | |
131 ;; f90-insert-end | |
132 ;; f90-upcase-keywords f90-upcase-region-keywords | |
133 ;; f90-downcase-keywords f90-downcase-region-keywords | |
134 ;; f90-capitalize-keywords f90-capitalize-region-keywords | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
135 ;; f90-add-imenu-menu |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
136 ;; f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4 |
10612 | 137 |
138 ;; Thanks to all the people who have tested the mode. Special thanks to Jens | |
139 ;; Bloch Helmers for encouraging me to write this code, for creative | |
140 ;; suggestions as well as for the lists of hpf-commands. | |
141 ;; Also thanks to the authors of the fortran and pascal modes, on which some | |
142 ;; of this code is built. | |
143 | |
14169 | 144 ;;; Code: |
13064 | 145 |
146 (defconst bug-f90-mode "T.Einarsson@clab.ericsson.se" | |
10612 | 147 "Address of mailing list for F90 mode bugs.") |
148 | |
149 ;; User options | |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
150 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
151 (defgroup f90 nil |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
152 "Fortran-90 mode" |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
153 :group 'languages) |
10612 | 154 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
155 (defgroup f90-indent nil |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
156 "Fortran-90 indentation" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
157 :prefix "f90-" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
158 :group 'f90) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
159 |
10612 | 160 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
161 (defcustom f90-do-indent 3 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
162 "*Extra indentation applied to DO blocks." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
163 :type 'integer |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
164 :group 'f90-indent) |
10612 | 165 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
166 (defcustom f90-if-indent 3 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
167 "*Extra indentation applied to IF, SELECT CASE, WHERE and FORALL blocks." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
168 :type 'integer |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
169 :group 'f90-indent) |
10612 | 170 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
171 (defcustom f90-type-indent 3 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
172 "*Extra indentation applied to TYPE, INTERFACE and BLOCK DATA blocks." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
173 :type 'integer |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
174 :group 'f90-indent) |
10612 | 175 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
176 (defcustom f90-program-indent 2 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
177 "*Extra indentation applied to PROGRAM/MODULE/SUBROUTINE/FUNCTION blocks." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
178 :type 'integer |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
179 :group 'f90-indent) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
180 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
181 (defcustom f90-continuation-indent 5 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
182 "*Extra indentation applied to F90 continuation lines." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
183 :type 'integer |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
184 :group 'f90-indent) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
185 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
186 (defcustom f90-comment-region "!!$" |
10612 | 187 "*String inserted by \\[f90-comment-region]\ |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
188 at start of each line in region." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
189 :type 'string |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
190 :group 'f90-indent) |
10612 | 191 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
192 (defcustom f90-indented-comment-re "!" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
193 "*Regexp saying which comments to be indented like code." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
194 :type 'regexp |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
195 :group 'f90-indent) |
10612 | 196 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
197 (defcustom f90-directive-comment-re "!hpf\\$" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
198 "*Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
199 :type 'regexp |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
200 :group 'f90-indent) |
10612 | 201 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
202 (defcustom f90-beginning-ampersand t |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
203 "*t makes automatic insertion of \& at beginning of continuation line." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
204 :type 'boolean |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
205 :group 'f90) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
206 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
207 (defcustom f90-smart-end 'blink |
10612 | 208 "*From an END statement, check and fill the end using matching block start. |
209 Allowed values are 'blink, 'no-blink, and nil, which determine | |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
210 whether to blink the matching beginning." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
211 :type '(choice (const blink) (const no-blink) (const nil)) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
212 :group 'f90) |
10612 | 213 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
214 (defcustom f90-break-delimiters "[-+\\*/><=,% \t]" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
215 "*Regexp holding list of delimiters at which lines may be broken." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
216 :type 'regexp |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
217 :group 'f90) |
10612 | 218 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
219 (defcustom f90-break-before-delimiters t |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
220 "*Non-nil causes `f90-do-auto-fill' to break lines before delimiters." |
19832
860e27fcf4b1
(f90-break-before-delimiters): Fix customize type.
Richard M. Stallman <rms@gnu.org>
parents:
18213
diff
changeset
|
221 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
222 :group 'f90) |
10612 | 223 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
224 (defcustom f90-auto-keyword-case nil |
10612 | 225 "*Automatic case conversion of keywords. |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
226 The options are 'downcase-word, 'upcase-word, 'capitalize-word and nil" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
227 :type '(choice (const downcase-word) (const upcase-word) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
228 (const capitalize-word) (const nil)) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
229 :group 'f90) |
10612 | 230 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
231 (defcustom f90-leave-line-no nil |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
232 "*If nil, left-justify linenumbers." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
233 :type 'boolean |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
234 :group 'f90) |
10612 | 235 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
236 (defcustom f90-startup-message t |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
237 "*Non-nil displays a startup message when F90 mode is first called." |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
238 :type 'boolean |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
239 :group 'f90) |
10612 | 240 |
13064 | 241 (defconst f90-keywords-re |
242 ;;("allocate" "allocatable" "assign" "assignment" "backspace" "block" | |
243 ;;"call" "case" "character" "close" "common" "complex" "contains" | |
244 ;;"continue" "cycle" "data" "deallocate" "dimension" "do" "double" "else" | |
245 ;;"elseif" "elsewhere" "end" "enddo" "endfile" "endif" "entry" "equivalence" | |
246 ;;"exit" "external" "forall" "format" "function" "goto" "if" "implicit" | |
247 ;;"include" "inquire" "integer" "intent" "interface" "intrinsic" "logical" | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
248 ;;"module" "namelist" "none" "nullify" "only" "open" "operator" "optional" "parameter" |
13064 | 249 ;;"pause" "pointer" "precision" "print" "private" "procedure" "program" |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
250 ;;"public" "read" "real" "recursive" "result" "return" "rewind" "save" "select" |
13064 | 251 ;;"sequence" "stop" "subroutine" "target" "then" "type" "use" "where" |
252 ;;"while" "write") | |
253 (concat | |
254 "\\<\\(a\\(llocat\\(able\\|e\\)\\|ssign\\(\\|ment\\)\\)\\|b\\(ackspace\\|" | |
255 "lock\\)\\|c\\(a\\(ll\\|se\\)\\|haracter\\|lose\\|o\\(m\\(mon\\|plex\\)\\|" | |
256 "nt\\(ains\\|inue\\)\\)\\|ycle\\)\\|d\\(ata\\|eallocate\\|imension\\|" | |
257 "o\\(\\|uble\\)\\)\\|e\\(lse\\(\\|if\\|where\\)\\|n\\(d\\(\\|do\\|file\\|" | |
258 "if\\)\\|try\\)\\|quivalence\\|x\\(it\\|ternal\\)\\)\\|f\\(or\\(all\\|" | |
259 "mat\\)\\|unction\\)\\|goto\\|i\\(f\\|mplicit\\|n\\(clude\\|quire\\|t\\(" | |
260 "e\\(ger\\|nt\\|rface\\)\\|rinsic\\)\\)\\)\\|logical\\|module\\|n\\(" | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
261 "amelist\\|one\\|ullify\\)\\|o\\(nly\\|p\\(en\\|erator\\|tional\\)\\)\\|p\\(a\\(" |
13064 | 262 "rameter\\|use\\)\\|ointer\\|r\\(ecision\\|i\\(nt\\|vate\\)\\|o\\(" |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
263 "cedure\\|gram\\)\\)\\|ublic\\)\\|re\\(a[dl]\\|cursive\\|sult\\|turn\\|wind\\)\\|" |
13064 | 264 "s\\(ave\\|e\\(lect\\|quence\\)\\|top\\|ubroutine\\)\\|t\\(arget\\|hen\\|" |
265 "ype\\)\\|use\\|w\\(h\\(ere\\|ile\\)\\|rite\\)\\)\\>") | |
266 "Regexp for F90 keywords.") | |
267 | |
268 (defconst f90-keywords-level-3-re | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
269 ;; ("allocate" "allocatable" "assign" "assignment" "backspace" "close" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
270 ;; "deallocate" "dimension" "endfile" "entry" "equivalence" "external" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
271 ;; "inquire" "intent" "intrinsic" "nullify" "only" "open" "operator" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
272 ;; "optional" "parameter" "pause" "pointer" "print" "private" "public" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
273 ;; "read" "recursive" "result" "rewind" "save" "select" "sequence" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
274 ;; "target" "write") |
13064 | 275 (concat |
276 "\\<\\(a\\(llocat\\(able\\|e\\)\\|ssign\\(\\|ment\\)\\)\\|backspace\\|" | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
277 "close\\|d\\(eallocate\\|imension\\)\\|e\\(n\\(dfile\\|try\\)\\|" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
278 "quivalence\\|xternal\\)\\|" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
279 "in\\(quire\\|t\\(ent\\|rinsic\\)\\)\\|nullify\\|" |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
280 "o\\(nly\\|p\\(en\\|erator\\|tional\\)\\)\\|" |
13064 | 281 "p\\(a\\(rameter\\|use\\)\\|ointer\\|ri\\(nt\\|vate\\)\\|ublic\\)\\|re\\(" |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
282 "ad\\|cursive\\|sult\\|wind\\)\\|s\\(ave\\|e\\(lect\\|quence\\)\\)\\|target\\|" |
13064 | 283 "write\\)\\>") |
284 "Keyword-regexp for font-lock level >= 3.") | |
285 | |
10612 | 286 |
13064 | 287 (defconst f90-procedures-re |
288 ;; ("abs" "achar" "acos" "adjustl" "adjustr" "aimag" "aint" "all" "allocated" | |
289 ;; "anint" "any" "asin" "associated" "atan" "atan2" "bit_size" "btest" | |
290 ;; "ceiling" "char" "cmplx" "conjg" "cos" "cosh" "count" "cshift" | |
291 ;; "date_and_time" "dble" "digits" "dim" "dot_product" "dprod" "eoshift" | |
292 ;; "epsilon" "exp" "exponent" "floor" "fraction" "huge" "iachar" "iand" | |
293 ;; "ibclr" "ibits" "ibset" "ichar" "ieor" "index" "int" "ior" "ishft" | |
294 ;; "ishftc" "kind" "lbound" "len" "len_trim" "lge" "lgt" "lle" "llt" "log" | |
295 ;; "logical" "log10" "matmul" "max" "maxexponent" "maxloc" "maxval" "merge" | |
296 ;; "min" "minexponent" "minloc" "minval" "mod" "modulo" "mvbits" "nearest" | |
297 ;; "nint" "not" "pack" "precision" "present" "product" "radix" | |
298 ;; "random_number" "random_seed" "range" "real" "repeat" "reshape" | |
299 ;; "rrspacing" "scale" "scan" "selected_int_kind" "selected_real_kind" | |
300 ;; "set_exponent" "shape" "sign" "sin" "sinh" "size" "spacing" "spread" | |
301 ;; "sqrt" "sum" "system_clock" "tan" "tanh" "tiny" "transfer" "transpose" | |
302 ;; "trim" "ubound" "unpack" "verify") | |
14040 | 303 ;; A left parenthesis to avoid highlighting non-procedures. |
13064 | 304 ;; Real is taken out here to avoid highlighting declarations. |
305 (concat | |
306 "\\<\\(a\\(bs\\|c\\(har\\|os\\)\\|djust[lr]\\|i\\(mag\\|nt\\)\\|ll\\(\\|" | |
307 "ocated\\)\\|n\\(int\\|y\\)\\|s\\(in\\|sociated\\)\\|tan2?\\)\\|b\\(" | |
308 "it_size\\|test\\)\\|c\\(eiling\\|har\\|mplx\\|o\\(njg\\|sh?\\|unt\\)\\|" | |
309 "shift\\)\\|d\\(ate_and_time\\|ble\\|i\\(gits\\|m\\)\\|ot_product\\|prod" | |
310 "\\)\\|e\\(oshift\\|psilon\\|xp\\(\\|onent\\)\\)\\|f\\(loor\\|" | |
311 "raction\\)\\|huge\\|i\\(a\\(char\\|nd\\)\\|b\\(clr\\|its\\|set\\)\\|" | |
312 "char\\|eor\\|n\\(dex\\|t\\)\\|or\\|shftc?\\)\\|kind\\|l\\(bound\\|" | |
313 "en\\(\\|_trim\\)\\|g[et]\\|l[et]\\|og\\(\\|10\\|ical\\)\\)\\|m\\(a\\(" | |
314 "tmul\\|x\\(\\|exponent\\|loc\\|val\\)\\)\\|erge\\|in\\(\\|exponent\\|" | |
315 "loc\\|val\\)\\|od\\(\\|ulo\\)\\|vbits\\)\\|n\\(earest\\|int\\|ot\\)\\|" | |
316 "p\\(ack\\|r\\(e\\(cision\\|sent\\)\\|oduct\\)\\)\\|r\\(a\\(dix\\|n\\(" | |
317 "dom_\\(number\\|seed\\)\\|ge\\)\\)\\|e\\(peat\\|shape\\)\\|rspacing\\)\\|" | |
318 "s\\(ca\\(le\\|n\\)\\|e\\(lected_\\(int_kind\\|real_kind\\)\\|" | |
319 "t_exponent\\)\\|hape\\|i\\(gn\\|nh?\\|ze\\)\\|p\\(acing\\|read\\)\\|" | |
320 "qrt\\|um\\|ystem_clock\\)\\|t\\(anh?\\|iny\\|r\\(ans\\(fer\\|pose\\)\\|" | |
321 "im\\)\\)\\|u\\(bound\\|npack\\)\\|verify\\)[ \t]*(") | |
322 "Regexp whose first part matches F90 intrinsic procedures.") | |
10612 | 323 |
13064 | 324 (defconst f90-operators-re |
325 ;; "and" "or" "not" "eqv" "neqv" "eq" "ne" "lt" "le" "gt" "ge" "true" "false" | |
326 (concat | |
327 "\\.\\(and\\|eqv?\\|false\\|g[et]\\|l[et]\\|n\\(e\\(\\|qv\\)\\|" | |
328 "ot\\)\\|or\\|true\\)\\.") | |
329 "Regexp matching intrinsic operators.") | |
10612 | 330 |
13064 | 331 (defconst f90-hpf-keywords-re |
332 ;; Intrinsic procedures | |
333 ;; ("all_prefix" "all_scatter" "all_suffix" "any_prefix" "any_scatter" | |
334 ;; "any_suffix" "copy_prefix" "copy_scatter" "copy_suffix" "count_prefix" | |
335 ;; "count_scatter" "count_suffix" "grade_down" "grade_up" "hpf_alignment" | |
336 ;; "hpf_template" "hpf_distribution" "iall" "iall_prefix" "iall_scatter" | |
337 ;; "iall_suffix" "iany" "iany_prefix" "iany_scatter" "iany_suffix" "iparity" | |
338 ;; "iparity_prefix" "iparity_scatter" "iparity_suffix" "leadz" | |
339 ;; "maxval_prefix" "maxval_scatter" "maxval_suffix" "minval_prefix" | |
340 ;; "minval_scatter" "minval_suffix" "parity" "parity_prefix" | |
341 ;; "parity_scatter" "parity_suffix" "popcnt" "poppar" "product_prefix" | |
342 ;; "product_scatter" "product_suffix" "sum_prefix" "sum_scatter" | |
343 ;; "sum_suffix" "ilen" "number_of_processors" "processors_shape") | |
344 ;; Directives | |
345 ;; ("align" "distribute" "dynamic" "inherit" "template" "processors" | |
346 ;; "realign" "redistribute" "independent") | |
347 ;; Keywords | |
348 ;; ("pure" "extrinsic" "new" "with" "onto" "block" "cyclic") | |
349 (concat | |
350 "\\<\\(a\\(l\\(ign\\|l_\\(prefix\\|s\\(catter\\|uffix\\)\\)\\)\\|ny_\\(" | |
351 "prefix\\|s\\(catter\\|uffix\\)\\)\\)\\|block\\|c\\(o\\(py_\\(prefix\\|" | |
352 "s\\(catter\\|uffix\\)\\)\\|unt_\\(prefix\\|s\\(catter\\|uffix\\)\\)\\)\\|" | |
353 "yclic\\)\\|d\\(istribute\\|ynamic\\)\\|extrinsic\\|grade_\\(down\\|" | |
354 "up\\)\\|hpf_\\(alignment\\|distribution\\|template\\)\\|i\\(a\\(ll\\(\\|" | |
355 "_\\(prefix\\|s\\(catter\\|uffix\\)\\)\\)\\|ny\\(\\|_\\(prefix\\|s\\(" | |
356 "catter\\|uffix\\)\\)\\)\\)\\|len\\|n\\(dependent\\|herit\\)\\|parity\\(\\|" | |
357 "_\\(prefix\\|s\\(catter\\|uffix\\)\\)\\)\\)\\|leadz\\|m\\(axval_\\(" | |
358 "prefix\\|s\\(catter\\|uffix\\)\\)\\|inval_\\(prefix\\|s\\(catter\\|" | |
359 "uffix\\)\\)\\)\\|n\\(ew\\|umber_of_processors\\)\\|onto\\|p\\(arity\\(\\|" | |
360 "_\\(prefix\\|s\\(catter\\|uffix\\)\\)\\)\\|op\\(cnt\\|par\\)\\|ro\\(" | |
361 "cessors\\(\\|_shape\\)\\|duct_\\(prefix\\|s\\(catter\\|uffix\\)\\)\\)\\|" | |
362 "ure\\)\\|re\\(align\\|distribute\\)\\|sum_\\(prefix\\|s\\(catter\\|" | |
363 "uffix\\)\\)\\|template\\|with\\)\\>") | |
364 "Regexp for all HPF keywords, procedures and directives.") | |
10612 | 365 |
366 ;; Highlighting patterns | |
367 | |
13064 | 368 (defvar f90-font-lock-keywords-1 |
23997 | 369 (list |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
370 '("\\<\\(end[ \t]*\\(program\\|module\\|function\\|subroutine\\|type\\)\\)\\>[ \t]*\\(\\sw+\\)?" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
371 (1 font-lock-keyword-face) (3 font-lock-function-name-face nil t)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
372 '("\\<\\(program\\|call\\|module\\|subroutine\\|function\\|use\\)\\>[ \t]*\\(\\sw+\\)?" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
373 (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
374 ;; Special highlighting of "module procedure foo-list" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
375 '("\\<\\(module[ \t]*procedure\\)\\>" (1 font-lock-keyword-face t)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
376 ;; Highlight definition of new type |
23997 | 377 '("\\<\\(type\\)[ \t]*\\(.*::[ \t]*\\|[ \t]+\\)\\(\\sw+\\)" |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
378 (1 font-lock-keyword-face) (3 font-lock-function-name-face)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
379 "\\<\\(\\(end[ \t]*\\)?\\(interface\\|block[ \t]*data\\)\\|contains\\)\\>") |
13064 | 380 "This does fairly subdued highlighting of comments and function calls.") |
10612 | 381 |
13064 | 382 (defvar f90-font-lock-keywords-2 |
383 (append f90-font-lock-keywords-1 | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
384 (list |
13064 | 385 ;; Variable declarations (avoid the real function call) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
386 '("^[ \t0-9]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|logical\\|type[ \t]*(\\sw+)\\)\\(.*::\\|[ \t]*(.*)\\)?\\([^!\n]*\\)" |
13064 | 387 (1 font-lock-type-face) (4 font-lock-variable-name-face)) |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
388 ;; do, if, select, where, and forall constructs |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
389 '("\\<\\(end[ \t]*\\(do\\|if\\|select\\|forall\\|where\\)\\)\\>\\([ \t]+\\(\\sw+\\)\\)?" |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
390 (1 font-lock-keyword-face) (3 font-lock-constant-face nil t)) |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
391 '("^[ \t0-9]*\\(\\(\\sw+\\)[ \t]*:[ \t]*\\)?\\(\\(if\\|do\\([ \t]*while\\)?\\|select[ \t]*case\\|where\\|forall\\)\\)\\>" |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
392 (2 font-lock-constant-face nil t) (3 font-lock-keyword-face)) |
13064 | 393 ;; implicit declaration |
394 '("\\<\\(implicit\\)[ \t]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|logical\\|type[ \t]*(\\sw+)\\|none\\)\\>" (1 font-lock-keyword-face) (2 font-lock-type-face)) | |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
395 '("\\<\\(namelist\\|common\\)[ \t]*\/\\(\\sw+\\)?\/" (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
396 "\\<else\\([ \t]*if\\|where\\)?\\>" |
13064 | 397 "\\<\\(then\\|continue\\|format\\|include\\|stop\\|return\\)\\>" |
398 '("\\<\\(exit\\|cycle\\)[ \t]*\\(\\sw+\\)?\\>" | |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
399 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
400 '("\\<\\(case\\)[ \t]*\\(default\\|(\\)" . 1) |
13064 | 401 '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)" |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
402 (1 font-lock-keyword-face) (2 font-lock-constant-face)) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
403 ;; line numbers (lines whose first character after number is letter) |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20459
diff
changeset
|
404 '("^[ \t]*\\([0-9]+\\)[ \t]*[a-z]+" (1 font-lock-constant-face t)))) |
13064 | 405 "Highlights declarations, do-loops and other constructions") |
10612 | 406 |
13064 | 407 (defvar f90-font-lock-keywords-3 |
408 (append f90-font-lock-keywords-2 | |
409 (list | |
410 f90-keywords-level-3-re | |
411 f90-operators-re | |
23997 | 412 (list f90-procedures-re '(1 font-lock-keyword-face t)) |
413 "\\<real\\>" ; Avoid overwriting real defs. | |
414 )) | |
13064 | 415 "Highlights all F90 keywords and intrinsic procedures.") |
416 | |
417 (defvar f90-font-lock-keywords-4 | |
418 (append f90-font-lock-keywords-3 | |
419 (list f90-hpf-keywords-re)) | |
420 "Highlights all F90 and HPF keywords.") | |
421 | |
422 (defvar f90-font-lock-keywords | |
423 f90-font-lock-keywords-2 | |
424 "*Default expressions to highlight in F90 mode.") | |
10612 | 425 |
426 ;; syntax table | |
427 (defvar f90-mode-syntax-table nil | |
428 "Syntax table in use in F90 mode buffers.") | |
429 | |
430 (if f90-mode-syntax-table | |
431 () | |
432 (setq f90-mode-syntax-table (make-syntax-table)) | |
433 (modify-syntax-entry ?\! "<" f90-mode-syntax-table) ; beg. comment | |
434 (modify-syntax-entry ?\n ">" f90-mode-syntax-table) ; end comment | |
435 (modify-syntax-entry ?_ "w" f90-mode-syntax-table) ; underscore in names | |
436 (modify-syntax-entry ?\' "\"" f90-mode-syntax-table) ; string quote | |
437 (modify-syntax-entry ?\" "\"" f90-mode-syntax-table) ; string quote | |
438 (modify-syntax-entry ?\` "w" f90-mode-syntax-table) ; for abbrevs | |
439 (modify-syntax-entry ?\r " " f90-mode-syntax-table) ; return is whitespace | |
440 (modify-syntax-entry ?+ "." f90-mode-syntax-table) | |
441 (modify-syntax-entry ?- "." f90-mode-syntax-table) | |
442 (modify-syntax-entry ?= "." f90-mode-syntax-table) | |
443 (modify-syntax-entry ?* "." f90-mode-syntax-table) | |
444 (modify-syntax-entry ?/ "." f90-mode-syntax-table) | |
25108
ab359f81e2cc
(f90-mode-syntax-table): Change backslash to escape, not charquote.
Dave Love <fx@gnu.org>
parents:
23997
diff
changeset
|
445 (modify-syntax-entry ?\\ "\\" f90-mode-syntax-table)) ; escape chars |
10612 | 446 |
447 ;; keys | |
448 (defvar f90-mode-map () | |
449 "Keymap used in F90 mode.") | |
13064 | 450 |
10612 | 451 (if f90-mode-map |
452 () | |
453 (setq f90-mode-map (make-sparse-keymap)) | |
454 (define-key f90-mode-map "`" 'f90-abbrev-start) | |
455 (define-key f90-mode-map "\C-c;" 'f90-comment-region) | |
456 (define-key f90-mode-map "\C-\M-a" 'f90-beginning-of-subprogram) | |
457 (define-key f90-mode-map "\C-\M-e" 'f90-end-of-subprogram) | |
458 (define-key f90-mode-map "\C-\M-h" 'f90-mark-subprogram) | |
459 (define-key f90-mode-map "\C-\M-q" 'f90-indent-subprogram) | |
460 (define-key f90-mode-map "\C-j" 'f90-indent-new-line) ; LFD equals C-j | |
461 (define-key f90-mode-map "\r" 'newline) | |
462 (define-key f90-mode-map "\C-c\r" 'f90-break-line) | |
463 ;; (define-key f90-mode-map [M-return] 'f90-break-line) | |
464 (define-key f90-mode-map "\C-c\C-d" 'f90-join-lines) | |
465 (define-key f90-mode-map "\C-c\C-f" 'f90-fill-region) | |
466 (define-key f90-mode-map "\C-c\C-p" 'f90-previous-statement) | |
467 (define-key f90-mode-map "\C-c\C-n" 'f90-next-statement) | |
468 (define-key f90-mode-map "\C-c\C-w" 'f90-insert-end) | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
469 (define-key f90-mode-map "\t" 'f90-indent-line) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
470 (define-key f90-mode-map "," 'f90-electric-insert) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
471 (define-key f90-mode-map "+" 'f90-electric-insert) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
472 (define-key f90-mode-map "-" 'f90-electric-insert) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
473 (define-key f90-mode-map "*" 'f90-electric-insert) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
474 (define-key f90-mode-map "/" 'f90-electric-insert)) |
13064 | 475 |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
476 |
10612 | 477 ;; menus |
13064 | 478 (if (string-match "XEmacs" emacs-version) |
479 (defvar f90-xemacs-menu | |
480 '("F90" | |
481 ["Indent Subprogram" f90-indent-subprogram t] | |
482 ["Mark Subprogram" f90-mark-subprogram t] | |
483 ["Beginning of Subprogram" f90-beginning-of-subprogram t] | |
484 ["End of Subprogram" f90-end-of-subprogram t] | |
485 "-----" | |
486 ["(Un)Comment Region" f90-comment-region t] | |
487 ["Indent Region" indent-region t] | |
488 ["Fill Region" f90-fill-region t] | |
489 "-----" | |
490 ["Break Line at Point" f90-break-line t] | |
491 ["Join with Next Line" f90-join-lines t] | |
492 ["Insert Newline" newline t] | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
493 ["Insert Block End" f90-insert-end t] |
13064 | 494 "-----" |
495 ["Upcase Keywords (buffer)" f90-upcase-keywords t] | |
496 ["Upcase Keywords (region)" f90-upcase-region-keywords | |
497 t] | |
498 ["Capitalize Keywords (buffer)" f90-capitalize-keywords t] | |
499 ["Capitalize Keywords (region)" | |
500 f90-capitalize-region-keywords t] | |
501 ["Downcase Keywords (buffer)" f90-downcase-keywords t] | |
502 ["Downcase Keywords (region)" | |
503 f90-downcase-region-keywords t] | |
504 "-----" | |
505 ["Toggle abbrev-mode" abbrev-mode t] | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
506 ["Toggle auto-fill" auto-fill-mode t]) |
13064 | 507 "XEmacs menu for F90 mode.") |
10613 | 508 ;; Emacs |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
509 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
510 (defvar f90-change-case-menu |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
511 (let ((map (make-sparse-keymap "Change Keyword Case"))) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
512 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
513 (define-key map [dkr] (cons "Downcase Keywords (region)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
514 'f90-downcase-region-keywords)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
515 (put 'f90-downcase-region-keywords 'menu-enable 'mark-active) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
516 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
517 (define-key map [ckr] (cons "Capitalize Keywords (region)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
518 'f90-capitalize-region-keywords)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
519 (put 'f90-capitalize-region-keywords 'menu-enable 'mark-active) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
520 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
521 (define-key map [ukr] (cons "Upcase Keywords (region)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
522 'f90-upcase-region-keywords)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
523 (put 'f90-upcase-region-keywords 'menu-enable 'mark-active) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
524 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
525 (define-key map [line] (list "-----------------")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
526 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
527 (define-key map [dkb] (cons "Downcase Keywords (buffer)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
528 'f90-downcase-keywords)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
529 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
530 (define-key map [ckb] (cons "Capitalize Keywords (buffer)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
531 'f90-capitalize-keywords)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
532 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
533 (define-key map [ukb] (cons "Upcase Keywords (buffer)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
534 'f90-upcase-keywords)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
535 map) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
536 "Submenu for change of case.") |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
537 (defalias 'f90-change-case-menu f90-change-case-menu) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
538 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
539 ;; font-lock-menu and function calls |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
540 (defalias 'f90-font-lock-on 'font-lock-mode) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
541 (defalias 'f90-font-lock-off 'font-lock-mode) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
542 (put 'f90-font-lock-on 'menu-enable 'font-lock-mode) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
543 (put 'f90-font-lock-off 'menu-enable '(not font-lock-mode)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
544 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
545 (defun f90-font-lock-1 () |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
546 (interactive) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
547 "Set font-lock-keywords to f90-font-lock-keywords-1." |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
548 (font-lock-mode 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
549 (setq font-lock-keywords f90-font-lock-keywords-1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
550 (font-lock-fontify-buffer)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
551 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
552 (defun f90-font-lock-2 () |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
553 (interactive) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
554 "Set font-lock-keywords to f90-font-lock-keywords-2." |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
555 (font-lock-mode 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
556 (setq font-lock-keywords f90-font-lock-keywords-2) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
557 (font-lock-fontify-buffer)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
558 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
559 (defun f90-font-lock-3 () |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
560 (interactive) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
561 "Set font-lock-keywords to f90-font-lock-keywords-3." |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
562 (font-lock-mode 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
563 (setq font-lock-keywords f90-font-lock-keywords-3) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
564 (font-lock-fontify-buffer)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
565 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
566 (defun f90-font-lock-4 () |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
567 (interactive) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
568 "Set font-lock-keywords to f90-font-lock-keywords-4." |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
569 (font-lock-mode 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
570 (setq font-lock-keywords f90-font-lock-keywords-4) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
571 (font-lock-fontify-buffer)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
572 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
573 (defvar f90-font-lock-menu |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
574 (let ((map (make-sparse-keymap "f90-font-lock-menu"))) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
575 (define-key map [h4] (cons "Maximum highlighting (level 4)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
576 'f90-font-lock-4)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
577 (define-key map [h3] (cons "Heavy highlighting (level 3)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
578 'f90-font-lock-3)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
579 (define-key map [h2] (cons "Default highlighting (level 2)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
580 'f90-font-lock-2)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
581 (define-key map [h1] (cons "Light highlighting (level 1)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
582 'f90-font-lock-1)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
583 (define-key map [line] (list "-----------------")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
584 (define-key map [floff] (cons "Turn off font-lock-mode" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
585 'f90-font-lock-on)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
586 (define-key map [flon] (cons "Turn on font-lock-mode" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
587 'f90-font-lock-off)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
588 map) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
589 "Submenu for highlighting using font-lock-mode.") |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
590 (defalias 'f90-font-lock-menu f90-font-lock-menu) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
591 |
10612 | 592 (define-key f90-mode-map [menu-bar] (make-sparse-keymap)) |
593 (define-key f90-mode-map [menu-bar f90] | |
594 (cons "F90" (make-sparse-keymap "f90"))) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
595 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
596 (define-key f90-mode-map [menu-bar f90 f90-imenu-menu] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
597 '("Add imenu Menu" . f90-add-imenu-menu)) |
10612 | 598 (define-key f90-mode-map [menu-bar f90 abbrev-mode] |
599 '("Toggle abbrev-mode" . abbrev-mode)) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
600 (define-key f90-mode-map [menu-bar f90 auto-fill-mode] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
601 '("Toggle auto-fill" . auto-fill-mode)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
602 (define-key f90-mode-map [menu-bar f90 line1] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
603 '("----")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
604 (define-key f90-mode-map [menu-bar f90 f90-change-case-menu] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
605 (cons "Change Keyword Case" 'f90-change-case-menu)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
606 (define-key f90-mode-map [menu-bar f90 f90-font-lock-menu] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
607 (cons "Highlighting" 'f90-font-lock-menu)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
608 (define-key f90-mode-map [menu-bar f90 line2] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
609 '("----")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
610 |
10612 | 611 (define-key f90-mode-map [menu-bar f90 f90-insert-end] |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
612 '("Insert Block End" . f90-insert-end)) |
10612 | 613 (define-key f90-mode-map [menu-bar f90 f90-join-lines] |
12030
649ecab4ba11
Fix capitalization and punctuation in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11559
diff
changeset
|
614 '("Join with Next Line" . f90-join-lines)) |
10612 | 615 (define-key f90-mode-map [menu-bar f90 f90-break-line] |
12030
649ecab4ba11
Fix capitalization and punctuation in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11559
diff
changeset
|
616 '("Break Line at Point" . f90-break-line)) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
617 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
618 (define-key f90-mode-map [menu-bar f90 line3] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
619 '("----")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
620 |
10612 | 621 (define-key f90-mode-map [menu-bar f90 f90-fill-region] |
622 '("Fill Region" . f90-fill-region)) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
623 (put 'f90-fill-region 'menu-enable 'mark-active) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
624 |
10612 | 625 (define-key f90-mode-map [menu-bar f90 indent-region] |
626 '("Indent Region" . indent-region)) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
627 |
10612 | 628 (define-key f90-mode-map [menu-bar f90 f90-comment-region] |
629 '("(Un)Comment Region" . f90-comment-region)) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
630 (put 'f90-comment-region 'menu-enable 'mark-active) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
631 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
632 (define-key f90-mode-map [menu-bar f90 line4] |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
633 '("----")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
634 |
10612 | 635 (define-key f90-mode-map [menu-bar f90 f90-end-of-subprogram] |
636 '("End of Subprogram" . f90-end-of-subprogram)) | |
637 (define-key f90-mode-map [menu-bar f90 f90-beginning-of-subprogram] | |
638 '("Beginning of Subprogram" . f90-beginning-of-subprogram)) | |
639 (define-key f90-mode-map [menu-bar f90 f90-mark-subprogram] | |
640 '("Mark Subprogram" . f90-mark-subprogram)) | |
641 (define-key f90-mode-map [menu-bar f90 f90-indent-subprogram] | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
642 '("Indent Subprogram" . f90-indent-subprogram)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
643 ) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
644 |
13064 | 645 ;; Regexps for finding program structures. |
10612 | 646 (defconst f90-blocks-re |
647 "\\(block[ \t]*data\\|do\\|if\\|interface\\|function\\|module\\|\ | |
648 program\\|select\\|subroutine\\|type\\|where\\|forall\\)\\>") | |
649 (defconst f90-program-block-re | |
650 "\\(program\\|module\\|subroutine\\|function\\)") | |
651 (defconst f90-else-like-re | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
652 "\\(else\\([ \t]*if\\|where\\)?\\|case[ \t]*\\(default\\|(\\)\\)") |
10612 | 653 (defconst f90-end-if-re |
654 "end[ \t]*\\(if\\|select\\|where\\|forall\\)\\>") | |
655 (defconst f90-end-type-re | |
13064 | 656 "end[ \t]*\\(type\\|interface\\|block[ \t]*data\\)") |
657 (defconst f90-type-def-re | |
23997 | 658 "\\<\\(type\\)\\([^(\n]*\\)\\(::\\)?[ \t]*\\b\\(\\sw+\\)") |
10612 | 659 (defconst f90-no-break-re "\\(\\*\\*\\|//\\|=>\\)") |
660 ;; A temporary position to make region operators faster | |
661 (defvar f90-cache-position nil) | |
662 (make-variable-buffer-local 'f90-cache-position) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
663 ;; A flag to tell whether f90-imenu is turned on. |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
664 (defvar f90-imenu nil) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
665 (make-variable-buffer-local 'f90-imenu) |
13064 | 666 |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
667 |
13064 | 668 ;; Imenu support |
669 (defvar f90-imenu-generic-expression | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
670 (let ((good-char "[^!\"\&\n \t]") (not-e "[^e!\n\"\& \t]") |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
671 (not-n "[^n!\n\"\& \t]") (not-d "[^d!\n\"\& \t]")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
672 (list |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
673 '(nil "^[ \t0-9]*program[ \t]+\\(\\sw+\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
674 '("Modules" "^[ \t0-9]*module[ \t]+\\(\\sw+\\)[ \t]*\\(!\\|$\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
675 '("Types" "^[ \t0-9]*type[ \t]+\\(\\sw+\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
676 (list |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
677 "Procedures" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
678 (concat |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
679 "^[ \t0-9]*" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
680 "\\(" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
681 ;; At least three non-space characters before function/subroutine |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
682 ;; Check that the last three non-space characters don't spell E N D |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
683 "[^!\"\&\n]*\\(" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
684 not-e good-char good-char "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
685 good-char not-n good-char "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
686 good-char good-char not-d "\\)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
687 "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
688 ;; Less than three non-space characters before function/subroutine |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
689 good-char "?" good-char "?" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
690 "\\)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
691 "[ \t]*\\(function\\|subroutine\\)[ \t]+\\(\\sw+\\)") |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
692 4))) |
13064 | 693 "imenu generic expression for F90 mode.") |
694 | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
695 (defun f90-add-imenu-menu () |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
696 (interactive) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
697 "Add an imenu menu to the menubar." |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
698 (if (not f90-imenu) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
699 (progn |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
700 (imenu-add-to-menubar "F90-imenu") |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
701 (redraw-frame (selected-frame)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
702 (setq f90-imenu t)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
703 (message "%s" "F90-imenu already exists."))) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
704 (put 'f90-add-imenu-menu 'menu-enable '(not f90-imenu)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
705 |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
706 |
13064 | 707 ;; When compiling under GNU Emacs, load imenu during compilation. If |
708 ;; you have 19.22 or earlier, comment this out, or get imenu. | |
709 (and (fboundp 'eval-when-compile) | |
710 (eval-when-compile | |
711 (if (not (string-match "XEmacs" emacs-version)) | |
712 (require 'imenu)) | |
713 ())) | |
10612 | 714 |
715 ;; abbrevs have generally two letters, except standard types `c, `i, `r, `t | |
716 (defvar f90-mode-abbrev-table nil) | |
717 (if f90-mode-abbrev-table | |
718 () | |
719 (let ((ac abbrevs-changed)) | |
720 (define-abbrev-table 'f90-mode-abbrev-table ()) | |
721 (define-abbrev f90-mode-abbrev-table "`al" "allocate" nil) | |
13064 | 722 (define-abbrev f90-mode-abbrev-table "`ab" "allocatable" nil) |
10612 | 723 (define-abbrev f90-mode-abbrev-table "`as" "assignment" nil) |
724 (define-abbrev f90-mode-abbrev-table "`ba" "backspace" nil) | |
725 (define-abbrev f90-mode-abbrev-table "`bd" "block data" nil) | |
726 (define-abbrev f90-mode-abbrev-table "`c" "character" nil) | |
727 (define-abbrev f90-mode-abbrev-table "`cl" "close" nil) | |
728 (define-abbrev f90-mode-abbrev-table "`cm" "common" nil) | |
729 (define-abbrev f90-mode-abbrev-table "`cx" "complex" nil) | |
730 (define-abbrev f90-mode-abbrev-table "`cn" "contains" nil) | |
731 (define-abbrev f90-mode-abbrev-table "`cy" "cycle" nil) | |
732 (define-abbrev f90-mode-abbrev-table "`de" "deallocate" nil) | |
733 (define-abbrev f90-mode-abbrev-table "`df" "define" nil) | |
734 (define-abbrev f90-mode-abbrev-table "`di" "dimension" nil) | |
735 (define-abbrev f90-mode-abbrev-table "`dw" "do while" nil) | |
736 (define-abbrev f90-mode-abbrev-table "`el" "else" nil) | |
737 (define-abbrev f90-mode-abbrev-table "`eli" "else if" nil) | |
738 (define-abbrev f90-mode-abbrev-table "`elw" "elsewhere" nil) | |
739 (define-abbrev f90-mode-abbrev-table "`eq" "equivalence" nil) | |
740 (define-abbrev f90-mode-abbrev-table "`ex" "external" nil) | |
741 (define-abbrev f90-mode-abbrev-table "`ey" "entry" nil) | |
742 (define-abbrev f90-mode-abbrev-table "`fl" "forall" nil) | |
743 (define-abbrev f90-mode-abbrev-table "`fo" "format" nil) | |
744 (define-abbrev f90-mode-abbrev-table "`fu" "function" nil) | |
745 (define-abbrev f90-mode-abbrev-table "`fa" ".false." nil) | |
746 (define-abbrev f90-mode-abbrev-table "`im" "implicit none" nil) | |
747 (define-abbrev f90-mode-abbrev-table "`in " "include" nil) | |
748 (define-abbrev f90-mode-abbrev-table "`i" "integer" nil) | |
749 (define-abbrev f90-mode-abbrev-table "`it" "intent" nil) | |
750 (define-abbrev f90-mode-abbrev-table "`if" "interface" nil) | |
751 (define-abbrev f90-mode-abbrev-table "`lo" "logical" nil) | |
752 (define-abbrev f90-mode-abbrev-table "`mo" "module" nil) | |
753 (define-abbrev f90-mode-abbrev-table "`na" "namelist" nil) | |
754 (define-abbrev f90-mode-abbrev-table "`nu" "nullify" nil) | |
755 (define-abbrev f90-mode-abbrev-table "`op" "optional" nil) | |
756 (define-abbrev f90-mode-abbrev-table "`pa" "parameter" nil) | |
757 (define-abbrev f90-mode-abbrev-table "`po" "pointer" nil) | |
758 (define-abbrev f90-mode-abbrev-table "`pr" "print" nil) | |
759 (define-abbrev f90-mode-abbrev-table "`pi" "private" nil) | |
760 (define-abbrev f90-mode-abbrev-table "`pm" "program" nil) | |
761 (define-abbrev f90-mode-abbrev-table "`pu" "public" nil) | |
762 (define-abbrev f90-mode-abbrev-table "`r" "real" nil) | |
763 (define-abbrev f90-mode-abbrev-table "`rc" "recursive" nil) | |
764 (define-abbrev f90-mode-abbrev-table "`rt" "return" nil) | |
765 (define-abbrev f90-mode-abbrev-table "`rw" "rewind" nil) | |
766 (define-abbrev f90-mode-abbrev-table "`se" "select" nil) | |
767 (define-abbrev f90-mode-abbrev-table "`sq" "sequence" nil) | |
768 (define-abbrev f90-mode-abbrev-table "`su" "subroutine" nil) | |
769 (define-abbrev f90-mode-abbrev-table "`ta" "target" nil) | |
770 (define-abbrev f90-mode-abbrev-table "`tr" ".true." nil) | |
771 (define-abbrev f90-mode-abbrev-table "`t" "type" nil) | |
772 (define-abbrev f90-mode-abbrev-table "`wh" "where" nil) | |
773 (define-abbrev f90-mode-abbrev-table "`wr" "write" nil) | |
774 (setq abbrevs-changed ac))) | |
775 | |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
776 (defcustom f90-mode-hook nil |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
777 "Hook run by F90 mode." |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
778 :type 'hook |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
779 :options '(f90-add-imenu-menu) |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
780 :group 'f90) |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
781 |
10612 | 782 ;;;###autoload |
783 (defun f90-mode () | |
784 "Major mode for editing Fortran 90 code in free format. | |
785 | |
786 \\[f90-indent-new-line] corrects current indentation and creates new\ | |
787 indented line. | |
788 \\[f90-indent-line] indents the current line correctly. | |
789 \\[f90-indent-subprogram] indents the current subprogram. | |
790 | |
791 Type `? or `\\[help-command] to display a list of built-in\ | |
792 abbrevs for F90 keywords. | |
793 | |
794 Key definitions: | |
795 \\{f90-mode-map} | |
796 | |
797 Variables controlling indentation style and extra features: | |
798 | |
799 f90-do-indent | |
800 Extra indentation within do blocks. (default 3) | |
801 f90-if-indent | |
802 Extra indentation within if/select case/where/forall blocks. (default 3) | |
803 f90-type-indent | |
804 Extra indentation within type/interface/block-data blocks. (default 3) | |
805 f90-program-indent | |
806 Extra indentation within program/module/subroutine/function blocks. | |
807 (default 2) | |
808 f90-continuation-indent | |
809 Extra indentation applied to continuation lines. (default 5) | |
810 f90-comment-region | |
811 String inserted by \\[f90-comment-region] at start of each line in | |
812 region. (default \"!!!$\") | |
13064 | 813 f90-indented-comment-re |
814 Regexp determining the type of comment to be intended like code. | |
815 (default \"!\") | |
816 f90-directive-comment-re | |
817 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented. | |
818 (default \"!hpf\\\\$\") | |
10612 | 819 f90-break-delimiters |
820 Regexp holding list of delimiters at which lines may be broken. | |
821 (default \"[-+*/><=,% \\t]\") | |
822 f90-break-before-delimiters | |
823 Non-nil causes `f90-do-auto-fill' to break lines before delimiters. | |
824 (default t) | |
825 f90-beginning-ampersand | |
826 Automatic insertion of \& at beginning of continuation lines. (default t) | |
827 f90-smart-end | |
828 From an END statement, check and fill the end using matching block start. | |
829 Allowed values are 'blink, 'no-blink, and nil, which determine | |
830 whether to blink the matching beginning.) (default 'blink) | |
831 f90-auto-keyword-case | |
832 Automatic change of case of keywords. (default nil) | |
833 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word. | |
834 f90-leave-line-no | |
835 Do not left-justify line numbers. (default nil) | |
836 f90-startup-message | |
837 Set to nil to inhibit message first time F90 mode is used. (default t) | |
15207
5be55ce2c9fa
(f90-hilit-patterns): Avoid using undefined variables.
Richard M. Stallman <rms@gnu.org>
parents:
15052
diff
changeset
|
838 f90-keywords-re |
10612 | 839 List of keywords used for highlighting/upcase-keywords etc. |
840 | |
841 Turning on F90 mode calls the value of the variable `f90-mode-hook' | |
842 with no args, if that value is non-nil." | |
843 (interactive) | |
844 (kill-all-local-variables) | |
845 (setq major-mode 'f90-mode) | |
846 (setq mode-name "F90") | |
847 (setq local-abbrev-table f90-mode-abbrev-table) | |
848 (set-syntax-table f90-mode-syntax-table) | |
849 (use-local-map f90-mode-map) | |
850 (make-local-variable 'indent-line-function) | |
851 (setq indent-line-function 'f90-indent-line) | |
852 (make-local-variable 'indent-region-function) | |
853 (setq indent-region-function 'f90-indent-region) | |
854 (make-local-variable 'require-final-newline) | |
855 (setq require-final-newline t) | |
856 (make-local-variable 'comment-start) | |
857 (setq comment-start "!") | |
858 (make-local-variable 'comment-start-skip) | |
859 (setq comment-start-skip "!+ *") | |
860 (make-local-variable 'comment-indent-function) | |
861 (setq comment-indent-function 'f90-comment-indent) | |
862 (make-local-variable 'abbrev-all-caps) | |
863 (setq abbrev-all-caps t) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
864 (make-local-variable 'normal-auto-fill-function) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
865 (setq normal-auto-fill-function 'f90-do-auto-fill) |
11501
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
866 (setq indent-tabs-mode nil) |
10612 | 867 ;; Setting up things for font-lock |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
868 (if (string-match "XEmacs" emacs-version) |
13064 | 869 (progn |
870 (put 'f90-mode 'font-lock-keywords-case-fold-search t) | |
23997 | 871 (if (and (featurep 'menubar) |
872 current-menubar | |
13064 | 873 (not (assoc "F90" current-menubar))) |
874 (progn | |
875 (set-buffer-menubar (copy-sequence current-menubar)) | |
23997 | 876 (add-submenu nil f90-xemacs-menu))))) |
877 ;; XEmacs: (Don't need a special case, since both emacsen work alike -sb) | |
878 (make-local-variable 'font-lock-defaults) | |
879 (setq font-lock-defaults | |
880 '((f90-font-lock-keywords f90-font-lock-keywords-1 | |
881 f90-font-lock-keywords-2 | |
882 f90-font-lock-keywords-3 | |
883 f90-font-lock-keywords-4) | |
884 nil t)) | |
885 ;; Tell imenu how to handle f90. | |
886 (set (make-local-variable 'imenu-case-fold-search) t) | |
887 (make-local-variable 'imenu-generic-expression) | |
888 (setq imenu-generic-expression f90-imenu-generic-expression) | |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
889 (set (make-local-variable 'add-log-current-defun-function) |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
890 #'f90-current-defun) |
10612 | 891 (run-hooks 'f90-mode-hook) |
892 (if f90-startup-message | |
10644
ce2d2fe2fa79
(f90-mode-version): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10613
diff
changeset
|
893 (message "Emacs F90 mode; please report bugs to %s" bug-f90-mode)) |
10612 | 894 (setq f90-startup-message nil)) |
895 | |
896 ;; inline-functions | |
897 (defsubst f90-get-beg-of-line () | |
898 (save-excursion (beginning-of-line) (point))) | |
899 | |
900 (defsubst f90-get-end-of-line () | |
901 (save-excursion (end-of-line) (point))) | |
902 | |
903 (defsubst f90-in-string () | |
904 (let ((beg-pnt | |
905 (if (and f90-cache-position (> (point) f90-cache-position)) | |
906 f90-cache-position | |
907 (point-min)))) | |
908 (nth 3 (parse-partial-sexp beg-pnt (point))))) | |
909 | |
910 (defsubst f90-in-comment () | |
911 (let ((beg-pnt | |
912 (if (and f90-cache-position (> (point) f90-cache-position)) | |
913 f90-cache-position | |
914 (point-min)))) | |
915 (nth 4 (parse-partial-sexp beg-pnt (point))))) | |
916 | |
917 (defsubst f90-line-continued () | |
918 (save-excursion | |
919 (let ((bol (f90-get-beg-of-line))) | |
920 (end-of-line) | |
921 (while (f90-in-comment) | |
922 (search-backward "!" bol) | |
923 (skip-chars-backward "!")) | |
924 (skip-chars-backward " \t") | |
925 (= (preceding-char) ?&)))) | |
926 | |
927 (defsubst f90-current-indentation () | |
928 "Return indentation of current line. | |
929 Line-numbers are considered whitespace characters." | |
930 (save-excursion | |
931 (beginning-of-line) (skip-chars-forward " \t0-9") | |
932 (current-column))) | |
933 | |
934 (defsubst f90-indent-to (col &optional no-line-number) | |
935 "Indent current line to column COL. | |
936 If no-line-number nil, jump over a possible line-number." | |
937 (beginning-of-line) | |
938 (if (not no-line-number) | |
939 (skip-chars-forward " \t0-9")) | |
940 (delete-horizontal-space) | |
941 (if (zerop (current-column)) | |
942 (indent-to col) | |
943 (indent-to col 1))) | |
944 | |
945 (defsubst f90-match-piece (arg) | |
946 (if (match-beginning arg) | |
947 (buffer-substring (match-beginning arg) (match-end arg)))) | |
948 | |
949 (defsubst f90-get-present-comment-type () | |
950 (save-excursion | |
951 (let ((type nil) (eol (f90-get-end-of-line))) | |
952 (if (f90-in-comment) | |
953 (progn | |
954 (beginning-of-line) | |
955 (re-search-forward "[!]+" eol) | |
956 (while (f90-in-string) | |
957 (re-search-forward "[!]+" eol)) | |
958 (setq type (buffer-substring (match-beginning 0) (match-end 0))))) | |
959 type))) | |
960 | |
961 (defsubst f90-equal-symbols (a b) | |
962 "Compare strings neglecting case and allowing for nil value." | |
963 (let ((a-local (if a (downcase a) nil)) | |
964 (b-local (if b (downcase b) nil))) | |
965 (equal a-local b-local))) | |
966 | |
13064 | 967 ;; XEmacs 19.11 & 19.12 gives back a single char when matching an empty regular |
968 ;; expression. Therefore, the next 2 functions are longer than necessary. | |
10612 | 969 |
970 (defsubst f90-looking-at-do () | |
971 "Return (\"do\" name) if a do statement starts after point. | |
972 Name is nil if the statement has no label." | |
13064 | 973 (if (looking-at "\\(\\(\\sw+\\)[ \t]*\:\\)?[ \t]*\\(do\\)\\>") |
974 (let (label | |
975 (struct (f90-match-piece 3))) | |
976 (if (looking-at "\\(\\sw+\\)[ \t]*\:") | |
977 (setq label (f90-match-piece 1))) | |
978 (list struct label)))) | |
979 | |
980 (defsubst f90-looking-at-select-case () | |
981 "Return (\"select\" name) if a select-case statement starts after point. | |
982 Name is nil if the statement has no label." | |
983 (if (looking-at "\\(\\(\\sw+\\)[ \t]*\:\\)?[ \t]*\\(select\\)[ \t]*case[ \t]*(") | |
984 (let (label | |
985 (struct (f90-match-piece 3))) | |
986 (if (looking-at "\\(\\sw+\\)[ \t]*\:") | |
987 (setq label (f90-match-piece 1))) | |
988 (list struct label)))) | |
10612 | 989 |
990 (defsubst f90-looking-at-if-then () | |
991 "Return (\"if\" name) if an if () then statement starts after point. | |
992 Name is nil if the statement has no label." | |
993 (save-excursion | |
994 (let (struct (label nil)) | |
13064 | 995 (if (looking-at "\\(\\(\\sw+\\)[ \t]*\:\\)?[ \t]*\\(if\\)\\>") |
10612 | 996 (progn |
997 (setq struct (f90-match-piece 3)) | |
13064 | 998 (if (looking-at "\\(\\sw+\\)[ \t]*\:") |
10612 | 999 (setq label (f90-match-piece 1))) |
22228
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1000 (let ((pos (scan-lists (point) 1 0))) |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1001 (and pos (goto-char pos))) |
10612 | 1002 (skip-chars-forward " \t") |
13064 | 1003 (if (or (looking-at "then\\>") |
10612 | 1004 (if (f90-line-continued) |
1005 (progn | |
1006 (f90-next-statement) | |
1007 (skip-chars-forward " \t0-9&") | |
13064 | 1008 (looking-at "then\\>")))) |
10612 | 1009 (list struct label))))))) |
1010 | |
1011 (defsubst f90-looking-at-where-or-forall () | |
18213
94f007fc6138
(f90-looking-at-where-or-forall): Recognize where/forall
Karl Heuer <kwzh@gnu.org>
parents:
17413
diff
changeset
|
1012 "Return (kind name) if a where or forall block starts after point. |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1013 Name is nil if the statement has no label." |
18213
94f007fc6138
(f90-looking-at-where-or-forall): Recognize where/forall
Karl Heuer <kwzh@gnu.org>
parents:
17413
diff
changeset
|
1014 (if (looking-at "\\(\\(\\sw+\\)[ \t]*\:\\)?[ \t]*\\(where\\|forall\\)[ \t]*(.*)[ \t]*\\(!\\|$\\)") |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1015 (let (label |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1016 (struct (f90-match-piece 3))) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1017 (if (looking-at "\\(\\sw+\\)[ \t]*\:") |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1018 (setq label (f90-match-piece 1))) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1019 (list struct label)))) |
10612 | 1020 |
1021 (defsubst f90-looking-at-type-like () | |
1022 "Return (kind name) at the start of a type/interface/block-data block. | |
1023 Name is non-nil only for type." | |
1024 (cond | |
13064 | 1025 ((looking-at f90-type-def-re) |
23997 | 1026 (list (f90-match-piece 1) (f90-match-piece 4))) |
13064 | 1027 ((looking-at "\\(interface\\|block[\t]*data\\)\\>") |
10612 | 1028 (list (f90-match-piece 1) nil)))) |
1029 | |
1030 (defsubst f90-looking-at-program-block-start () | |
1031 "Return (kind name) if a program block with name name starts after point." | |
1032 (cond | |
13064 | 1033 ((looking-at "\\(program\\)[ \t]+\\(\\sw+\\)\\>") |
10612 | 1034 (list (f90-match-piece 1) (f90-match-piece 2))) |
1035 ((and (not (looking-at "module[ \t]*procedure\\>")) | |
13064 | 1036 (looking-at "\\(module\\)[ \t]+\\(\\sw+\\)\\>")) |
10612 | 1037 (list (f90-match-piece 1) (f90-match-piece 2))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1038 ((and (not (looking-at "end[ \t]*\\(function\\|subroutine\\)")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1039 (looking-at "[^!\"\&\n]*\\(function\\|subroutine\\)[ \t]+\\(\\sw+\\)")) |
10612 | 1040 (list (f90-match-piece 1) (f90-match-piece 2))))) |
1041 | |
1042 (defsubst f90-looking-at-program-block-end () | |
1043 "Return list of type and name of end of block." | |
13064 | 1044 (if (looking-at (concat "end[ \t]*" f90-blocks-re |
1045 "?\\([ \t]+\\(\\sw+\\)\\)?\\>")) | |
10612 | 1046 (list (f90-match-piece 1) (f90-match-piece 3)))) |
1047 | |
1048 (defsubst f90-comment-indent () | |
1049 (cond ((looking-at "!!!") 0) | |
13064 | 1050 ((and f90-directive-comment-re |
1051 (looking-at f90-directive-comment-re)) 0) | |
10612 | 1052 ((looking-at (regexp-quote f90-comment-region)) 0) |
22228
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1053 ((and (looking-at f90-indented-comment-re) |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1054 ;; Don't attempt to indent trailing comment as code. |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1055 (save-excursion |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1056 (skip-chars-backward " \t") |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1057 (bolp))) |
10612 | 1058 (f90-calculate-indent)) |
1059 (t (skip-chars-backward " \t") | |
1060 (max (if (bolp) 0 (1+ (current-column))) comment-column)))) | |
1061 | |
1062 (defsubst f90-present-statement-cont () | |
1063 "Return continuation properties of present statement." | |
1064 (let (pcont cont) | |
1065 (save-excursion | |
1066 (setq pcont (if (f90-previous-statement) (f90-line-continued) nil))) | |
1067 (setq cont (f90-line-continued)) | |
1068 (cond ((and (not pcont) (not cont)) 'single) | |
1069 ((and (not pcont) cont) 'begin) | |
1070 ((and pcont (not cont)) 'end) | |
1071 ((and pcont cont) 'middle) | |
1072 (t (error))))) | |
1073 | |
1074 (defsubst f90-indent-line-no () | |
1075 (if f90-leave-line-no | |
1076 () | |
1077 (if (and (not (zerop (skip-chars-forward " \t"))) | |
1078 (looking-at "[0-9]")) | |
1079 (delete-horizontal-space))) | |
1080 (skip-chars-forward " \t0-9")) | |
1081 | |
1082 (defsubst f90-no-block-limit () | |
1083 (let ((eol (f90-get-end-of-line))) | |
1084 (save-excursion | |
1085 (not (or (looking-at "end") | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1086 (looking-at "\\(do\\|if\\|else\\(if\\|where\\)?\ |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1087 \\|select[ \t]*case\\|case\\|where\\|forall\\)\\>") |
10612 | 1088 (looking-at "\\(program\\|module\\|interface\\|\ |
1089 block[ \t]*data\\)\\>") | |
13064 | 1090 (looking-at "\\(contains\\|\\sw+[ \t]*:\\)") |
1091 (looking-at f90-type-def-re) | |
10612 | 1092 (re-search-forward "\\(function\\|subroutine\\)" eol t)))))) |
1093 | |
1094 (defsubst f90-update-line () | |
1095 (let (bol eol) | |
13064 | 1096 (if f90-auto-keyword-case |
10612 | 1097 (progn (setq bol (f90-get-beg-of-line) |
1098 eol (f90-get-end-of-line)) | |
1099 (if f90-auto-keyword-case | |
15244
be4d30237fe6
Delete the hilit19 support--it doesn't work.
Karl Heuer <kwzh@gnu.org>
parents:
15207
diff
changeset
|
1100 (f90-change-keywords f90-auto-keyword-case bol eol)))))) |
10612 | 1101 |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1102 (defun f90-electric-insert () |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1103 (interactive) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1104 "Calls f90-do-auto-fill at each operator insertion." |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1105 (self-insert-command 1) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1106 (f90-update-line) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1107 (if auto-fill-function (f90-do-auto-fill))) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1108 |
10612 | 1109 (defun f90-get-correct-indent () |
1110 "Get correct indent for a line starting with line number. | |
1111 Does not check type and subprogram indentation." | |
1112 (let ((epnt (f90-get-end-of-line)) icol cont) | |
1113 (save-excursion | |
1114 (while (and (f90-previous-statement) | |
1115 (or (progn | |
1116 (setq cont (f90-present-statement-cont)) | |
1117 (or (eq cont 'end) (eq cont 'middle))) | |
1118 (looking-at "[ \t]*[0-9]")))) | |
1119 (setq icol (current-indentation)) | |
1120 (beginning-of-line) | |
1121 (if (re-search-forward "\\(if\\|do\\|select\\|where\\|forall\\)" | |
1122 (f90-get-end-of-line) t) | |
1123 (progn | |
1124 (beginning-of-line) (skip-chars-forward " \t") | |
1125 (cond ((f90-looking-at-do) | |
1126 (setq icol (+ icol f90-do-indent))) | |
1127 ((or (f90-looking-at-if-then) | |
1128 (f90-looking-at-where-or-forall) | |
1129 (f90-looking-at-select-case)) | |
1130 (setq icol (+ icol f90-if-indent)))) | |
1131 (end-of-line))) | |
1132 (while (re-search-forward | |
13064 | 1133 "\\(if\\|do\\|select\\|where\\|forall\\)" epnt t) |
10612 | 1134 (beginning-of-line) (skip-chars-forward " \t0-9") |
1135 (cond ((f90-looking-at-do) | |
1136 (setq icol (+ icol f90-do-indent))) | |
1137 ((or (f90-looking-at-if-then) | |
1138 (f90-looking-at-where-or-forall) | |
1139 (f90-looking-at-select-case)) | |
1140 (setq icol (+ icol f90-if-indent))) | |
1141 ((looking-at f90-end-if-re) | |
1142 (setq icol (- icol f90-if-indent))) | |
13064 | 1143 ((looking-at "end[ \t]*do\\>") |
10612 | 1144 (setq icol (- icol f90-do-indent)))) |
1145 (end-of-line)) | |
1146 icol))) | |
1147 | |
1148 | |
1149 (defun f90-calculate-indent () | |
1150 "Calculate the indent column based on previous statements." | |
1151 (interactive) | |
1152 (let (icol cont (case-fold-search t) (pnt (point))) | |
1153 (save-excursion | |
1154 (if (not (f90-previous-statement)) | |
1155 (setq icol 0) | |
1156 (setq cont (f90-present-statement-cont)) | |
1157 (if (eq cont 'end) | |
1158 (while (not (eq 'begin (f90-present-statement-cont))) | |
1159 (f90-previous-statement))) | |
1160 (cond ((eq cont 'begin) | |
1161 (setq icol (+ (f90-current-indentation) | |
1162 f90-continuation-indent))) | |
1163 ((eq cont 'middle) (setq icol(current-indentation))) | |
1164 (t (setq icol (f90-current-indentation)) | |
1165 (skip-chars-forward " \t") | |
1166 (if (looking-at "[0-9]") | |
1167 (setq icol (f90-get-correct-indent)) | |
1168 (cond ((or (f90-looking-at-if-then) | |
1169 (f90-looking-at-where-or-forall) | |
1170 (f90-looking-at-select-case) | |
1171 (looking-at f90-else-like-re)) | |
1172 (setq icol (+ icol f90-if-indent))) | |
1173 ((f90-looking-at-do) | |
1174 (setq icol (+ icol f90-do-indent))) | |
1175 ((f90-looking-at-type-like) | |
1176 (setq icol (+ icol f90-type-indent))) | |
1177 ((or (f90-looking-at-program-block-start) | |
1178 (looking-at "contains[ \t]*\\($\\|!\\)")) | |
1179 (setq icol (+ icol f90-program-indent))))) | |
1180 (goto-char pnt) | |
1181 (beginning-of-line) | |
1182 (cond ((looking-at "[ \t]*$")) | |
1183 ((looking-at "[ \t]*#") ; Check for cpp directive. | |
1184 (setq icol 0)) | |
1185 (t | |
1186 (skip-chars-forward " \t0-9") | |
1187 (cond ((or (looking-at f90-else-like-re) | |
1188 (looking-at f90-end-if-re)) | |
1189 (setq icol (- icol f90-if-indent))) | |
13064 | 1190 ((looking-at "end[ \t]*do\\>") |
10612 | 1191 (setq icol (- icol f90-do-indent))) |
1192 ((looking-at f90-end-type-re) | |
1193 (setq icol (- icol f90-type-indent))) | |
1194 ((or (looking-at "contains[ \t]*\\(!\\|$\\)") | |
1195 (f90-looking-at-program-block-end)) | |
1196 (setq icol (- icol f90-program-indent)))))) | |
1197 )))) | |
1198 icol)) | |
1199 | |
1200 ;; Statement = statement line, a line which is neither blank, nor a comment. | |
1201 (defun f90-previous-statement () | |
1202 "Move point to beginning of the previous F90 statement. | |
1203 Return nil if no previous statement is found." | |
1204 (interactive) | |
1205 (let (not-first-statement) | |
1206 (beginning-of-line) | |
1207 (while (and (setq not-first-statement (zerop (forward-line -1))) | |
13064 | 1208 (looking-at "[ \t0-9]*\\(!\\|$\\|#\\)"))) |
10612 | 1209 not-first-statement)) |
1210 | |
1211 (defun f90-next-statement () | |
1212 "Move point to beginning of the next F90 statement. | |
1213 Return nil if no later statement is found." | |
1214 (interactive) | |
1215 (let (not-last-statement) | |
1216 (beginning-of-line) | |
1217 (while (and (setq not-last-statement | |
1218 (and (zerop (forward-line 1)) | |
1219 (not (eobp)))) | |
1220 (looking-at "[ \t0-9]*\\(!\\|$\\)"))) | |
1221 not-last-statement)) | |
1222 | |
1223 (defun f90-beginning-of-subprogram () | |
1224 "Move point to the beginning of subprogram. | |
1225 Return (type name) or nil if not found." | |
1226 (interactive) | |
1227 (let ((count 1) (case-fold-search t) matching-beg) | |
1228 (beginning-of-line) (skip-chars-forward " \t0-9") | |
1229 (if (setq matching-beg (f90-looking-at-program-block-start)) | |
1230 (setq count (- count 1))) | |
1231 (while (and (not (zerop count)) | |
1232 (re-search-backward f90-program-block-re nil 'move)) | |
1233 (beginning-of-line) (skip-chars-forward " \t0-9") | |
1234 (cond | |
1235 ((setq matching-beg (f90-looking-at-program-block-start)) | |
1236 (setq count (- count 1))) | |
1237 ((f90-looking-at-program-block-end) | |
1238 (setq count (+ count 1))))) | |
1239 (beginning-of-line) | |
1240 (if (zerop count) | |
1241 matching-beg | |
1242 (message "No beginning-found.") | |
1243 nil))) | |
1244 | |
1245 (defun f90-end-of-subprogram () | |
1246 "Move point to the end of subprogram. | |
1247 Return (type name) or nil if not found." | |
1248 (interactive) | |
1249 (let ((count 1) (case-fold-search t) matching-end) | |
1250 (beginning-of-line) (skip-chars-forward " \t0-9") | |
1251 (if (setq matching-end (f90-looking-at-program-block-end)) | |
1252 (setq count (1- count))) | |
1253 (end-of-line) | |
1254 (while (and (not (zerop count)) | |
1255 (re-search-forward f90-program-block-re nil 'move)) | |
1256 (beginning-of-line) (skip-chars-forward " \t0-9") | |
1257 (cond ((f90-looking-at-program-block-start) | |
1258 (setq count (+ count 1))) | |
1259 ((setq matching-end (f90-looking-at-program-block-end)) | |
1260 (setq count (1- count )))) | |
1261 (end-of-line)) | |
1262 (forward-line 1) | |
1263 (if (zerop count) | |
1264 matching-end | |
1265 (message "No end found.") | |
1266 nil))) | |
1267 | |
1268 (defun f90-mark-subprogram () | |
1269 "Put mark at end of F90 subprogram, point at beginning. | |
1270 Marks are pushed and highlight (grey shadow) is turned on." | |
1271 (interactive) | |
1272 (let ((pos (point)) program) | |
1273 (f90-end-of-subprogram) | |
1274 (push-mark (point) t) | |
1275 (goto-char pos) | |
1276 (setq program (f90-beginning-of-subprogram)) | |
1277 ;; The keywords in the preceding lists assume case-insensitivity. | |
13064 | 1278 (if (string-match "XEmacs" emacs-version) |
10612 | 1279 (zmacs-activate-region) |
1280 (setq mark-active t) | |
1281 (setq deactivate-mark nil)) | |
1282 program)) | |
1283 | |
1284 (defun f90-comment-region (beg-region end-region) | |
1285 "Comment/uncomment every line in the region. | |
1286 Insert f90-comment-region at the beginning of every line in the region | |
1287 or, if already present, remove it." | |
1288 (interactive "*r") | |
1289 (let ((end (make-marker))) | |
1290 (set-marker end end-region) | |
1291 (goto-char beg-region) | |
1292 (beginning-of-line) | |
1293 (if (looking-at (regexp-quote f90-comment-region)) | |
1294 (delete-region (point) (match-end 0)) | |
1295 (insert f90-comment-region)) | |
1296 (while (and (zerop (forward-line 1)) | |
1297 (< (point) (marker-position end))) | |
1298 (if (looking-at (regexp-quote f90-comment-region)) | |
1299 (delete-region (point) (match-end 0)) | |
1300 (insert f90-comment-region))) | |
1301 (set-marker end nil))) | |
1302 | |
1303 (defun f90-indent-line (&optional no-update) | |
1304 "Indent current line as F90 code." | |
1305 (interactive) | |
1306 (let (indent (no-line-number nil) (pos (make-marker)) (case-fold-search t)) | |
1307 (set-marker pos (point)) | |
1308 (beginning-of-line) ; Digits after & \n are not line-no | |
1309 (if (save-excursion (and (f90-previous-statement) (f90-line-continued))) | |
1310 (progn (setq no-line-number t) (skip-chars-forward " \t")) | |
1311 (f90-indent-line-no)) | |
1312 (if (looking-at "!") | |
1313 (setq indent (f90-comment-indent)) | |
13064 | 1314 (if (and (looking-at "end") f90-smart-end) |
1315 (f90-match-end)) | |
10612 | 1316 (setq indent (f90-calculate-indent))) |
1317 (if (zerop (- indent (current-column))) | |
1318 nil | |
1319 (f90-indent-to indent no-line-number)) | |
1320 ;; If initial point was within line's indentation, | |
1321 ;; position after the indentation. Else stay at same point in text. | |
1322 (if (< (point) (marker-position pos)) | |
1323 (goto-char (marker-position pos))) | |
1324 (if (not no-update) (f90-update-line)) | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1325 (if auto-fill-function (f90-do-auto-fill)) |
10612 | 1326 (set-marker pos nil))) |
1327 | |
1328 (defun f90-indent-new-line () | |
1329 "Reindent the current F90 line, insert a newline and indent the newline. | |
1330 An abbrev before point is expanded if `abbrev-mode' is non-nil. | |
1331 If run in the middle of a line, the line is not broken." | |
1332 (interactive) | |
1333 (let (string cont (case-fold-search t)) | |
1334 (if abbrev-mode (expand-abbrev)) | |
1335 (beginning-of-line) ; Reindent where likely to be needed. | |
1336 (f90-indent-line-no) | |
1337 (if (or (looking-at "\\(end\\|else\\|!\\)")) | |
1338 (f90-indent-line 'no-update)) | |
1339 (end-of-line) | |
1340 (delete-horizontal-space) ;Destroy trailing whitespace | |
1341 (setq string (f90-in-string)) | |
1342 (setq cont (f90-line-continued)) | |
1343 (if (and string (not cont)) (insert "&")) | |
1344 (f90-update-line) | |
1345 (newline) | |
1346 (if (or string (and cont f90-beginning-ampersand)) (insert "&")) | |
1347 (f90-indent-line 'no-update))) | |
1348 | |
1349 | |
1350 (defun f90-indent-region (beg-region end-region) | |
1351 "Indent every line in region by forward parsing." | |
1352 (interactive "*r") | |
1353 (let ((end-region-mark (make-marker)) (save-point (point-marker)) | |
1354 (block-list nil) ind-lev ind-curr ind-b cont | |
1355 struct beg-struct end-struct) | |
1356 (set-marker end-region-mark end-region) | |
1357 (goto-char beg-region) | |
1358 ;; first find a line which is not a continuation line or comment | |
1359 (beginning-of-line) | |
13064 | 1360 (while (and (looking-at "[ \t]*[0-9]*\\(!\\|#\\|[ \t]*$\\)") |
10612 | 1361 (progn (f90-indent-line 'no-update) |
1362 (zerop (forward-line 1))) | |
1363 (< (point) end-region-mark))) | |
1364 (setq cont (f90-present-statement-cont)) | |
1365 (while (and (or (eq cont 'middle) (eq cont 'end)) | |
1366 (f90-previous-statement)) | |
1367 (setq cont (f90-present-statement-cont))) | |
1368 ;; process present line for beginning of block | |
1369 (setq f90-cache-position (point)) | |
1370 (f90-indent-line 'no-update) | |
1371 (setq ind-lev (f90-current-indentation)) | |
1372 (setq ind-curr ind-lev) | |
1373 (beginning-of-line) (skip-chars-forward " \t0-9") | |
1374 (setq struct nil) | |
1375 (setq ind-b (cond ((setq struct (f90-looking-at-do)) f90-do-indent) | |
1376 ((or (setq struct (f90-looking-at-if-then)) | |
1377 (setq struct (f90-looking-at-select-case)) | |
1378 (setq struct (f90-looking-at-where-or-forall)) | |
1379 (looking-at f90-else-like-re)) | |
1380 f90-if-indent) | |
1381 ((setq struct (f90-looking-at-type-like)) | |
1382 f90-type-indent) | |
1383 ((or(setq struct (f90-looking-at-program-block-start)) | |
1384 (looking-at "contains[ \t]*\\($\\|!\\)")) | |
1385 f90-program-indent))) | |
1386 (if ind-b (setq ind-lev (+ ind-lev ind-b))) | |
1387 (if struct (setq block-list (cons struct block-list))) | |
1388 (while (and (f90-line-continued) (zerop (forward-line 1)) | |
1389 (< (point) end-region-mark)) | |
1390 (if (not (zerop (- (current-indentation) | |
1391 (+ ind-curr f90-continuation-indent)))) | |
1392 (f90-indent-to (+ ind-curr f90-continuation-indent) 'no-line-no))) | |
1393 ;; process all following lines | |
1394 (while (and (zerop (forward-line 1)) (< (point) end-region-mark)) | |
1395 (beginning-of-line) | |
1396 (f90-indent-line-no) | |
1397 (setq f90-cache-position (point)) | |
1398 (cond ((looking-at "[ \t]*$") (setq ind-curr 0)) | |
1399 ((looking-at "[ \t]*#") (setq ind-curr 0)) | |
1400 ((looking-at "!") (setq ind-curr (f90-comment-indent))) | |
1401 ((f90-no-block-limit) (setq ind-curr ind-lev)) | |
1402 ((looking-at f90-else-like-re) (setq ind-curr | |
1403 (- ind-lev f90-if-indent))) | |
1404 ((looking-at "contains[ \t]*\\($\\|!\\)") | |
1405 (setq ind-curr (- ind-lev f90-program-indent))) | |
1406 ((setq ind-b | |
1407 (cond ((setq struct (f90-looking-at-do)) f90-do-indent) | |
1408 ((or (setq struct (f90-looking-at-if-then)) | |
1409 (setq struct (f90-looking-at-select-case)) | |
1410 (setq struct (f90-looking-at-where-or-forall))) | |
1411 f90-if-indent) | |
1412 ((setq struct (f90-looking-at-type-like)) | |
1413 f90-type-indent) | |
1414 ((setq struct (f90-looking-at-program-block-start)) | |
1415 f90-program-indent))) | |
1416 (setq ind-curr ind-lev) | |
1417 (if ind-b (setq ind-lev (+ ind-lev ind-b))) | |
1418 (setq block-list (cons struct block-list))) | |
1419 ((setq end-struct (f90-looking-at-program-block-end)) | |
1420 (setq beg-struct (car block-list) | |
1421 block-list (cdr block-list)) | |
1422 (if f90-smart-end | |
1423 (save-excursion | |
1424 (f90-block-match (car beg-struct)(car (cdr beg-struct)) | |
1425 (car end-struct)(car (cdr end-struct))))) | |
1426 (setq ind-b | |
1427 (cond ((looking-at f90-end-if-re) f90-if-indent) | |
1428 ((looking-at "end[ \t]*do\\>") f90-do-indent) | |
1429 ((looking-at f90-end-type-re) f90-type-indent) | |
1430 ((f90-looking-at-program-block-end) | |
1431 f90-program-indent))) | |
1432 (if ind-b (setq ind-lev (- ind-lev ind-b))) | |
1433 (setq ind-curr ind-lev)) | |
1434 (t (setq ind-curr ind-lev))) | |
1435 ;; do the indentation if necessary | |
1436 (if (not (zerop (- ind-curr (current-column)))) | |
1437 (f90-indent-to ind-curr)) | |
1438 (while (and (f90-line-continued) (zerop (forward-line 1)) | |
1439 (< (point) end-region-mark)) | |
1440 (if (not (zerop (- (current-indentation) | |
1441 (+ ind-curr f90-continuation-indent)))) | |
1442 (f90-indent-to (+ ind-curr f90-continuation-indent) 'no-line-no)))) | |
1443 ;; restore point etc | |
1444 (setq f90-cache-position nil) | |
1445 (goto-char save-point) | |
1446 (set-marker end-region-mark nil) | |
1447 (set-marker save-point nil) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1448 (if (string-match "XEmacs" emacs-version) |
10612 | 1449 (zmacs-deactivate-region) |
1450 (deactivate-mark)))) | |
1451 | |
1452 (defun f90-indent-subprogram () | |
1453 "Properly indent the subprogram which contains point." | |
1454 (interactive) | |
1455 (save-excursion | |
1456 (let (program) | |
1457 (setq program (f90-mark-subprogram)) | |
1458 (if program | |
1459 (progn | |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1460 (message "Indenting %s %s..." |
14526
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1461 (car program) (car (cdr program))) |
10612 | 1462 (f90-indent-region (point) (mark)) |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1463 (message "Indenting %s %s...done" |
14526
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1464 (car program) (car (cdr program)))) |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1465 (message "Indenting the whole file...") |
10612 | 1466 (f90-indent-region (point) (mark)) |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1467 (message "Indenting the whole file...done"))))) |
10612 | 1468 |
1469 ;; autofill and break-line | |
1470 (defun f90-break-line (&optional no-update) | |
1471 "Break line at point, insert continuation marker(s) and indent." | |
1472 (interactive) | |
1473 (let (ctype) | |
1474 (cond ((f90-in-string) | |
1475 (insert "&") (newline) (insert "&")) | |
1476 ((f90-in-comment) | |
1477 (setq ctype (f90-get-present-comment-type)) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1478 (newline) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1479 (insert ctype)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1480 (t (insert "&") |
10612 | 1481 (if (not no-update) (f90-update-line)) |
1482 (newline) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1483 (if f90-beginning-ampersand (insert "&"))))) |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1484 (f90-indent-line)) |
10612 | 1485 |
1486 (defun f90-find-breakpoint () | |
1487 "From fill-column, search backward for break-delimiter." | |
1488 (let ((bol (f90-get-beg-of-line))) | |
1489 (re-search-backward f90-break-delimiters bol) | |
1490 (if f90-break-before-delimiters | |
1491 (progn (backward-char) | |
1492 (if (not (looking-at f90-no-break-re)) | |
1493 (forward-char))) | |
1494 (if (looking-at f90-no-break-re) | |
1495 (forward-char 2) | |
1496 (forward-char))))) | |
1497 | |
1498 (defun f90-do-auto-fill () | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1499 "Break line if non-white characters beyond fill-column. Also, update line. " |
10612 | 1500 (interactive) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1501 ;; Break the line before or after the last delimiter (non-word char) if |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1502 ;; position is beyond fill-column. |
10612 | 1503 ;; Will not break **, //, or => (specified by f90-no-break-re). |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1504 (f90-update-line) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1505 (while (> (current-column) fill-column) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1506 (let ((pos-mark (point-marker))) |
13064 | 1507 (move-to-column fill-column) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1508 (if (not (f90-in-string)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1509 (f90-find-breakpoint)) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1510 (f90-break-line) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1511 (goto-char pos-mark) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1512 (set-marker pos-mark nil)))) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1513 |
10612 | 1514 |
1515 (defun f90-join-lines () | |
1516 "Join present line with next line, if this line ends with \&." | |
1517 (interactive) | |
1518 (let (pos (oldpos (point))) | |
1519 (end-of-line) | |
1520 (skip-chars-backward " \t") | |
1521 (cond ((= (preceding-char) ?&) | |
1522 (delete-char -1) | |
1523 (setq pos (point)) | |
1524 (forward-line 1) | |
1525 (skip-chars-forward " \t") | |
1526 (if (looking-at "\&") (delete-char 1)) | |
1527 (delete-region pos (point)) | |
1528 (if (not (f90-in-string)) | |
1529 (progn (delete-horizontal-space) (insert " "))) | |
1530 (if (and auto-fill-function | |
1531 (> (save-excursion (end-of-line) | |
1532 (current-column)) | |
1533 fill-column)) | |
1534 (f90-do-auto-fill)) | |
1535 (goto-char oldpos) | |
1536 t)))) | |
1537 | |
1538 (defun f90-fill-region (beg-region end-region) | |
1539 "Fill every line in region by forward parsing. Join lines if possible." | |
1540 (interactive "*r") | |
1541 (let ((end-region-mark (make-marker)) | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1542 (f90-smart-end nil) (f90-auto-keyword-case nil) (go-on t) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1543 (auto-fill-function nil)) |
10612 | 1544 (set-marker end-region-mark end-region) |
1545 (goto-char beg-region) | |
1546 (while go-on | |
1547 ;; join as much as possible | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1548 (while (f90-join-lines)) |
10612 | 1549 ;; chop the line if necessary |
1550 (while (> (save-excursion (end-of-line) (current-column)) | |
1551 fill-column) | |
1552 (move-to-column fill-column) | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1553 (f90-find-breakpoint) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1554 (f90-break-line 'no-update)) |
10612 | 1555 (setq go-on (and (< (point) (marker-position end-region-mark)) |
1556 (zerop (forward-line 1)))) | |
1557 (setq f90-cache-position (point))) | |
1558 (setq f90-cache-position nil) | |
13064 | 1559 (if (string-match "XEmacs" emacs-version) |
10612 | 1560 (zmacs-deactivate-region) |
1561 (deactivate-mark)))) | |
1562 | |
1563 (defun f90-block-match (beg-block beg-name end-block end-name) | |
1564 "Match end-struct with beg-struct and complete end-block if possible. | |
1565 Leave point at the end of line." | |
1566 (search-forward "end" (f90-get-end-of-line)) | |
1567 (catch 'no-match | |
1568 (if (not (f90-equal-symbols beg-block end-block)) | |
1569 (if end-block | |
1570 (progn | |
1571 (message "END %s does not match %s." end-block beg-block) | |
1572 (end-of-line) | |
1573 (throw 'no-match nil)) | |
1574 (message "Inserting %s." beg-block) | |
1575 (insert (concat " " beg-block))) | |
1576 (search-forward end-block)) | |
1577 (if (not (f90-equal-symbols beg-name end-name)) | |
1578 (cond ((and beg-name (not end-name)) | |
1579 (message "Inserting %s." beg-name) | |
1580 (insert (concat " " beg-name))) | |
1581 ((and beg-name end-name) | |
1582 (message "Replacing %s with %s." end-name beg-name) | |
1583 (search-forward end-name) | |
1584 (replace-match beg-name)) | |
1585 ((and (not beg-name) end-name) | |
1586 (message "Deleting %s." end-name) | |
1587 (search-forward end-name) | |
1588 (replace-match ""))) | |
1589 (if end-name (search-forward end-name))) | |
13064 | 1590 (if (not (looking-at "[ \t]*!")) (delete-horizontal-space)))) |
10612 | 1591 |
1592 (defun f90-match-end () | |
1593 "From an end foo statement, find the corresponding foo including name." | |
1594 (interactive) | |
1595 (let ((count 1) (top-of-window (window-start)) (matching-beg nil) | |
1596 (end-point (point)) (case-fold-search t) | |
1597 beg-name end-name beg-block end-block end-struct) | |
1598 (if (save-excursion (beginning-of-line) (skip-chars-forward " \t0-9") | |
1599 (setq end-struct (f90-looking-at-program-block-end))) | |
1600 (progn | |
1601 (setq end-block (car end-struct)) | |
1602 (setq end-name (car (cdr end-struct))) | |
1603 (save-excursion | |
1604 (beginning-of-line) | |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1605 (while |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1606 (and (not (zerop count)) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1607 (let ((stop nil) notexist) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1608 (while (not stop) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1609 (setq notexist |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1610 (not (re-search-backward |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1611 (concat "\\(" f90-blocks-re "\\)") nil t))) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1612 (if notexist |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1613 (setq stop t) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1614 (setq stop |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1615 (not (or (f90-in-string) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1616 (f90-in-comment)))))) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1617 (not notexist))) |
10612 | 1618 (beginning-of-line) (skip-chars-forward " \t0-9") |
1619 (cond ((setq matching-beg | |
1620 (cond | |
1621 ((f90-looking-at-do)) | |
1622 ((f90-looking-at-if-then)) | |
1623 ((f90-looking-at-where-or-forall)) | |
1624 ((f90-looking-at-select-case)) | |
1625 ((f90-looking-at-type-like)) | |
1626 ((f90-looking-at-program-block-start)))) | |
1627 (setq count (- count 1))) | |
1628 ((looking-at (concat "end[ \t]*" f90-blocks-re "\\b")) | |
13064 | 1629 (setq count (+ count 1))))) |
10612 | 1630 (if (not (zerop count)) |
1631 (message "No matching beginning.") | |
1632 (f90-update-line) | |
1633 (if (eq f90-smart-end 'blink) | |
1634 (if (< (point) top-of-window) | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1635 (message "Matches %s: %s" |
14526
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1636 (what-line) |
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1637 (buffer-substring |
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1638 (progn (beginning-of-line) (point)) |
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1639 (progn (end-of-line) (point)))) |
10612 | 1640 (sit-for 1))) |
1641 (setq beg-block (car matching-beg)) | |
1642 (setq beg-name (car (cdr matching-beg))) | |
1643 (goto-char end-point) | |
1644 (beginning-of-line) | |
1645 (f90-block-match beg-block beg-name end-block end-name))))))) | |
1646 | |
1647 (defun f90-insert-end () | |
1648 "Inserts an complete end statement matching beginning of present block." | |
1649 (interactive) | |
1650 (let ((f90-smart-end (if f90-smart-end f90-smart-end 'blink))) | |
1651 (insert "end") | |
1652 (f90-indent-new-line))) | |
1653 | |
1654 ;; abbrevs and keywords | |
1655 | |
1656 (defun f90-abbrev-start () | |
1657 "Typing `\\[help-command] or `? lists all the F90 abbrevs. | |
1658 Any other key combination is executed normally." | |
1659 (interactive) | |
13064 | 1660 (let (e c) |
10612 | 1661 (insert last-command-char) |
15052
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1662 (if (string-match "XEmacs" emacs-version) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1663 (progn |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1664 (setq e (next-command-event)) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1665 (setq c (event-to-character e))) |
1abb847e6bff
(f90-keywords-re): Added operator and result.
Karl Heuer <kwzh@gnu.org>
parents:
14533
diff
changeset
|
1666 (setq c (read-event))) |
13064 | 1667 ;; insert char if not equal to `?' |
26607
4cd19d3e4f0f
(f90-abbrev-start): Use `eq' instead of `='.
Gerd Moellmann <gerd@gnu.org>
parents:
25108
diff
changeset
|
1668 (if (or (eq c ??) (eq c help-char)) |
10612 | 1669 (f90-abbrev-help) |
13064 | 1670 (if (string-match "XEmacs" emacs-version) |
1671 (setq unread-command-event e) | |
10612 | 1672 (setq unread-command-events (list c)))))) |
1673 | |
1674 (defun f90-abbrev-help () | |
1675 "List the currently defined abbrevs in F90 mode." | |
1676 (interactive) | |
1677 (message "Listing abbrev table...") | |
1678 (display-buffer (f90-prepare-abbrev-list-buffer)) | |
1679 (message "Listing abbrev table...done")) | |
1680 | |
1681 (defun f90-prepare-abbrev-list-buffer () | |
1682 (save-excursion | |
1683 (set-buffer (get-buffer-create "*Abbrevs*")) | |
1684 (erase-buffer) | |
1685 (insert-abbrev-table-description 'f90-mode-abbrev-table t) | |
1686 (goto-char (point-min)) | |
1687 (set-buffer-modified-p nil) | |
1688 (edit-abbrevs-mode)) | |
1689 (get-buffer-create "*Abbrevs*")) | |
1690 | |
1691 (defun f90-upcase-keywords () | |
1692 "Upcase all F90 keywords in the buffer." | |
1693 (interactive) | |
1694 (f90-change-keywords 'upcase-word)) | |
1695 | |
1696 (defun f90-capitalize-keywords () | |
1697 "Capitalize all F90 keywords in the buffer." | |
1698 (interactive) | |
1699 (f90-change-keywords 'capitalize-word)) | |
1700 | |
1701 (defun f90-downcase-keywords () | |
1702 "Downcase all F90 keywords in the buffer." | |
1703 (interactive) | |
1704 (f90-change-keywords 'downcase-word)) | |
1705 | |
1706 (defun f90-upcase-region-keywords (beg end) | |
1707 "Upcase all F90 keywords in the region." | |
1708 (interactive "*r") | |
1709 (f90-change-keywords 'upcase-word beg end)) | |
1710 | |
1711 (defun f90-capitalize-region-keywords (beg end) | |
1712 "Capitalize all F90 keywords in the region." | |
1713 (interactive "*r") | |
1714 (f90-change-keywords 'capitalize-word beg end)) | |
1715 | |
1716 (defun f90-downcase-region-keywords (beg end) | |
1717 "Downcase all F90 keywords in the region." | |
1718 (interactive "*r") | |
1719 (f90-change-keywords 'downcase-word beg end)) | |
1720 | |
1721 ;; Change the keywords according to argument. | |
1722 (defun f90-change-keywords (change-word &optional beg end) | |
1723 (save-excursion | |
1724 (setq beg (if beg beg (point-min))) | |
1725 (setq end (if end end (point-max))) | |
1726 (let ((keyword-re | |
13064 | 1727 (concat "\\(" |
1728 f90-keywords-re "\\|" f90-procedures-re "\\|" | |
1729 f90-hpf-keywords-re "\\|" f90-operators-re "\\)")) | |
1730 (ref-point (point-min)) state | |
1731 (modified (buffer-modified-p)) saveword back-point) | |
10612 | 1732 (goto-char beg) |
13064 | 1733 (unwind-protect |
1734 (while (re-search-forward keyword-re end t) | |
1735 (if (progn | |
1736 (setq state (parse-partial-sexp ref-point (point))) | |
1737 (or (nth 3 state) (nth 4 state) | |
1738 (save-excursion ; Check for cpp directive. | |
1739 (beginning-of-line) | |
1740 (skip-chars-forward " \t0-9") | |
1741 (looking-at "#")))) | |
1742 () | |
1743 (setq ref-point (point) | |
1744 back-point (save-excursion (backward-word 1) (point))) | |
1745 (setq saveword (buffer-substring back-point ref-point)) | |
1746 (funcall change-word -1) | |
1747 (or (string= saveword (buffer-substring back-point ref-point)) | |
1748 (setq modified t)))) | |
1749 (or modified (set-buffer-modified-p nil)))))) | |
10612 | 1750 |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1751 |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1752 (defun f90-current-defun () |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1753 "Function to use for `add-log-current-defun-function' in F90 mode." |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1754 (save-excursion |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1755 (nth 1 (f90-beginning-of-subprogram)))) |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1756 |
10612 | 1757 (provide 'f90) |
10613 | 1758 |
10612 | 1759 ;;; f90.el ends here |