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