Mercurial > emacs
annotate lisp/progmodes/f90.el @ 92216:f6fa050c615a
* textmodes/bibtex.el: Remove support for hideshow minor mode as
it duplicates the bibtex support in progmodes/hideshow.el.
* progmodes/hideshow.el (hs-special-modes-alist): Allow bibtex
entry that do not start at the beginning of a line.
author | Roland Winkler <Roland.Winkler@physik.uni-erlangen.de> |
---|---|
date | Mon, 25 Feb 2008 19:47:34 +0000 |
parents | d77b6e5ee8af |
children | c70e45a7acfd 9c73b1f69e7e |
rev | line source |
---|---|
13337 | 1 ;;; f90.el --- Fortran-90 mode (free format) |
14169 | 2 |
68721 | 3 ;; Copyright (C) 1995, 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, |
79717 | 4 ;; 2006, 2007, 2008 Free Software Foundation, Inc. |
10612 | 5 |
28915
0371c5f8f98b
Change author's mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
28170
diff
changeset
|
6 ;; Author: Torbj\"orn Einarsson <Torbjorn.Einarsson@era.ericsson.se> |
65918
e58f331c3cba
(f90-keywords-re, f90-mode): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
64699
diff
changeset
|
7 ;; Maintainer: Glenn Morris <rgm@gnu.org> |
10612 | 8 ;; Keywords: fortran, f90, languages |
9 | |
14169 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10612 | 13 ;; it under the terms of the GNU General Public License as published by |
78234
c1ec1c8a8d2e
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
14169 | 15 ;; any later version. |
10612 | 16 |
14169 | 17 ;; GNU Emacs is distributed in the hope that it will be useful, |
10612 | 18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
10612 | 26 |
27 ;;; Commentary: | |
14169 | 28 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
29 ;; Major mode for editing F90 programs in FREE FORMAT. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
30 ;; The minor language revision F95 is also supported (with font-locking). |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
31 ;; Some/many (?) aspects of F2003 are supported. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
32 |
10612 | 33 ;; Knows about continuation lines, named structured statements, and other |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
34 ;; features in F90 including HPF (High Performance Fortran) structures. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
35 ;; The basic feature provides accurate indentation of F90 programs. |
10612 | 36 ;; In addition, there are many more features like automatic matching of all |
37 ;; end statements, an auto-fill function to break long lines, a join-lines | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
38 ;; function which joins continued lines, etc. |
10612 | 39 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
40 ;; To facilitate typing, a fairly complete list of abbreviations is provided. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
41 ;; All abbreviations begin with the backquote character "`" |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
42 ;; (this requires modification of the syntax-table). |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
43 ;; For example, `i expands to integer (if abbrev-mode is on). |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
44 |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
45 ;; There are two separate features for altering the appearance of code: |
10612 | 46 ;; 1) Upcasing or capitalizing of all keywords. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
47 ;; 2) Colors/fonts using font-lock-mode. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
48 ;; Automatic upcase or downcase of keywords is controlled by the variable |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
49 ;; f90-auto-keyword-case. |
10612 | 50 |
51 ;; The indentations of lines starting with ! is determined by the first of the | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
52 ;; following matches (values in the left column are the defaults): |
13064 | 53 |
54 ;; start-string/regexp indent variable holding start-string/regexp | |
55 ;; !!! 0 | |
56 ;; !hpf\\$ (re) 0 f90-directive-comment-re | |
57 ;; !!$ 0 f90-comment-region | |
58 ;; ! (re) as code f90-indented-comment-re | |
59 ;; default comment-column | |
60 | |
61 ;; Ex: Here is the result of 3 different settings of f90-indented-comment-re | |
62 ;; f90-indented-comment-re !-indentation !!-indentation | |
63 ;; ! as code as code | |
64 ;; !! comment-column as code | |
65 ;; ![^!] as code comment-column | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
66 ;; Trailing comments are indented to comment-column with indent-for-comment. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
67 ;; The function f90-comment-region toggles insertion of |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
68 ;; the variable f90-comment-region in every line of the region. |
10612 | 69 |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
70 ;; One common convention for free vs. fixed format is that free format files |
44997 | 71 ;; have the ending .f90 or .f95 while fixed format files have the ending .f. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
72 ;; Emacs automatically loads Fortran files in the appropriate mode based |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
73 ;; on extension. You can modify this by adjusting the variable auto-mode-alist. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
74 ;; For example: |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
75 ;; (add-to-list 'auto-mode-alist '("\\.f\\'" . f90-mode)) |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
76 |
10612 | 77 ;; Once you have entered f90-mode, you may get more info by using |
44997 | 78 ;; the command describe-mode (C-h m). For online help use |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
79 ;; C-h f <Name of function you want described>, or |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
80 ;; C-h v <Name of variable you want described>. |
10612 | 81 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
82 ;; To customize f90-mode for your taste, use, for example: |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
83 ;; (you don't have to specify values for all the parameters below) |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
84 ;; |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
85 ;;(add-hook 'f90-mode-hook |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
86 ;; ;; These are the default values. |
10612 | 87 ;; '(lambda () (setq f90-do-indent 3 |
88 ;; f90-if-indent 3 | |
89 ;; f90-type-indent 3 | |
90 ;; f90-program-indent 2 | |
91 ;; f90-continuation-indent 5 | |
92 ;; f90-comment-region "!!$" | |
13064 | 93 ;; f90-directive-comment-re "!hpf\\$" |
94 ;; f90-indented-comment-re "!" | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
95 ;; f90-break-delimiters "[-+\\*/><=,% \t]" |
10612 | 96 ;; f90-break-before-delimiters t |
97 ;; f90-beginning-ampersand t | |
98 ;; f90-smart-end 'blink | |
99 ;; f90-auto-keyword-case nil | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
100 ;; f90-leave-line-no nil |
11501
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
101 ;; indent-tabs-mode nil |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
102 ;; 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
|
103 ;; ) |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
104 ;; ;; These are not default. |
10612 | 105 ;; (abbrev-mode 1) ; turn on abbreviation mode |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
106 ;; (f90-add-imenu-menu) ; extra menu with functions etc. |
10612 | 107 ;; (if f90-auto-keyword-case ; change case of all keywords on startup |
108 ;; (f90-change-keywords f90-auto-keyword-case)) | |
85535 | 109 ;; )) |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
110 ;; |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
111 ;; in your .emacs file. You can also customize the lists |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
112 ;; f90-font-lock-keywords, etc. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
113 ;; |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
114 ;; The auto-fill and abbreviation minor modes are accessible from the F90 menu, |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
115 ;; or by using M-x auto-fill-mode and M-x abbrev-mode, respectively. |
10612 | 116 |
117 ;; Remarks | |
118 ;; 1) Line numbers are by default left-justified. If f90-leave-line-no is | |
119 ;; non-nil, the line numbers are never touched. | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
120 ;; 2) Multi-; statements like "do i=1,20 ; j=j+i ; end do" are not handled |
10612 | 121 ;; correctly, but I imagine them to be rare. |
13064 | 122 ;; 3) Regexps for hilit19 are no longer supported. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
123 ;; 4) For FIXED FORMAT code, use fortran mode. |
10612 | 124 ;; 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
|
125 ;; 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
|
126 ;; 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
|
127 ;; mechanism for treating multi-line directives (continued by \ ). |
13064 | 128 ;; 7) f77 do-loops do 10 i=.. ; ; 10 continue are not correctly indented. |
129 ;; 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
|
130 ;; 8) The highlighting mode under XEmacs is not as complete as under Emacs. |
10612 | 131 |
132 ;; List of user commands | |
133 ;; f90-previous-statement f90-next-statement | |
134 ;; f90-beginning-of-subprogram f90-end-of-subprogram f90-mark-subprogram | |
135 ;; f90-comment-region | |
136 ;; f90-indent-line f90-indent-new-line | |
137 ;; f90-indent-region (can be called by calling indent-region) | |
138 ;; f90-indent-subprogram | |
139 ;; f90-break-line f90-join-lines | |
140 ;; f90-fill-region | |
141 ;; f90-insert-end | |
142 ;; f90-upcase-keywords f90-upcase-region-keywords | |
143 ;; f90-downcase-keywords f90-downcase-region-keywords | |
144 ;; f90-capitalize-keywords f90-capitalize-region-keywords | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
145 ;; f90-add-imenu-menu |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
146 ;; f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4 |
10612 | 147 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
148 ;; Original author's thanks |
10612 | 149 ;; Thanks to all the people who have tested the mode. Special thanks to Jens |
150 ;; Bloch Helmers for encouraging me to write this code, for creative | |
151 ;; suggestions as well as for the lists of hpf-commands. | |
152 ;; Also thanks to the authors of the fortran and pascal modes, on which some | |
153 ;; of this code is built. | |
154 | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
155 ;;; Code: |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
156 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
157 ;; TODO |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
158 ;; 1. Any missing F2003 syntax? |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
159 ;; 2. Have "f90-mode" just recognize F90 syntax, then derived modes |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
160 ;; "f95-mode", "f2003-mode" for the language revisions. |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
161 ;; 3. Support for align. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
162 ;; Font-locking: |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
163 ;; 1. OpenMP, OpenMPI?, preprocessor highlighting. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
164 ;; 2. interface blah - Highlight "blah" in function-name face? |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
165 ;; Need to avoid "interface operator (+)" etc. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
166 ;; 3. integer_name = 1 |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
167 ;; 4. Labels for "else" statements (F2003)? |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
168 |
47178
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
169 (defvar comment-auto-fill-only-comments) |
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
170 (defvar font-lock-keywords) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
171 |
10612 | 172 ;; User options |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
173 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
174 (defgroup f90 nil |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
175 "Major mode for editing free format Fortran 90,95 code." |
66963
a11fdee52c05
Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
66633
diff
changeset
|
176 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
177 :group 'languages) |
10612 | 178 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
179 (defgroup f90-indent nil |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
180 "Indentation in free format Fortran." |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
181 :prefix "f90-" |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
182 :group 'f90) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
183 |
10612 | 184 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
185 (defcustom f90-do-indent 3 |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
186 "Extra indentation applied to DO blocks." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
187 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
188 :group 'f90-indent) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
189 (put 'f90-do-indent 'safe-local-variable 'integerp) |
10612 | 190 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
191 (defcustom f90-if-indent 3 |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
192 "Extra indentation applied to IF, SELECT CASE, WHERE and FORALL blocks." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
193 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
194 :group 'f90-indent) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
195 (put 'f90-if-indent 'safe-local-variable 'integerp) |
10612 | 196 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
197 (defcustom f90-type-indent 3 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
198 "Extra indentation applied to TYPE, ENUM, INTERFACE and BLOCK DATA blocks." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
199 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
200 :group 'f90-indent) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
201 (put 'f90-type-indent 'safe-local-variable 'integerp) |
10612 | 202 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
203 (defcustom f90-program-indent 2 |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
204 "Extra indentation applied to PROGRAM, MODULE, SUBROUTINE, FUNCTION blocks." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
205 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
206 :group 'f90-indent) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
207 (put 'f90-program-indent 'safe-local-variable 'integerp) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
208 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
209 (defcustom f90-associate-indent 2 |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
210 "Extra indentation applied to ASSOCIATE blocks." |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
211 :type 'integer |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
212 :group 'f90-indent |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
213 :version "23.1") |
85578
40360655a978
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
85536
diff
changeset
|
214 (put 'f90-associate-indent 'safe-local-variable 'integerp) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
215 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
216 (defcustom f90-continuation-indent 5 |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
217 "Extra indentation applied to continuation lines." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
218 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
219 :group 'f90-indent) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
220 (put 'f90-continuation-indent 'safe-local-variable 'integerp) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
221 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
222 (defcustom f90-comment-region "!!$" |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
223 "String inserted by \\[f90-comment-region] at start of each line in region." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
224 :type 'string |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
225 :group 'f90-indent) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
226 (put 'f90-comment-region 'safe-local-variable 'stringp) |
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-indented-comment-re "!" |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
229 "Regexp matching comments to indent as code." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
230 :type 'regexp |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
231 :group 'f90-indent) |
79220
7348eddedaed
(f90-indented-comment-re, f90-directive-comment-re)
Glenn Morris <rgm@gnu.org>
parents:
79177
diff
changeset
|
232 (put 'f90-indented-comment-re 'safe-local-variable 'stringp) |
10612 | 233 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
234 (defcustom f90-directive-comment-re "!hpf\\$" |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
235 "Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
236 :type 'regexp |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
237 :group 'f90-indent) |
79220
7348eddedaed
(f90-indented-comment-re, f90-directive-comment-re)
Glenn Morris <rgm@gnu.org>
parents:
79177
diff
changeset
|
238 (put 'f90-directive-comment-re 'safe-local-variable 'stringp) |
10612 | 239 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
240 (defcustom f90-beginning-ampersand t |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
241 "Non-nil gives automatic insertion of \& at start of continuation line." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
242 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
243 :group 'f90) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
244 (put 'f90-beginning-ampersand 'safe-local-variable 'booleanp) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
245 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
246 (defcustom f90-smart-end 'blink |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
247 "Qualification of END statements according to the matching block start. |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
248 For example, the END that closes an IF block is changed to END |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
249 IF. If the block has a label, this is added as well. Allowed |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
250 values are 'blink, 'no-blink, and nil. If nil, nothing is done. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
251 The other two settings have the same effect, but 'blink |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
252 additionally blinks the cursor to the start of the block." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
253 :type '(choice (const blink) (const no-blink) (const nil)) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
254 :group 'f90) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
255 (put 'f90-smart-end 'safe-local-variable |
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
256 (lambda (value) (memq value '(blink no-blink nil)))) |
10612 | 257 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
258 (defcustom f90-break-delimiters "[-+\\*/><=,% \t]" |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
259 "Regexp matching delimiter characters at which lines may be broken. |
53699
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
260 There are certain tokens comprised entirely of characters |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
261 matching this regexp that should not be split, and these are |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
262 specified by the constant `f90-no-break-re'." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
263 :type 'regexp |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
264 :group 'f90) |
79220
7348eddedaed
(f90-indented-comment-re, f90-directive-comment-re)
Glenn Morris <rgm@gnu.org>
parents:
79177
diff
changeset
|
265 (put 'f90-break-delimiters 'safe-local-variable 'stringp) |
10612 | 266 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
267 (defcustom f90-break-before-delimiters t |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
268 "Non-nil causes `f90-do-auto-fill' to break lines before delimiters." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
269 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
270 :group 'f90) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
271 (put 'f90-break-before-delimiters 'safe-local-variable 'booleanp) |
10612 | 272 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
273 (defcustom f90-auto-keyword-case nil |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
274 "Automatic case conversion of keywords. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
275 The options are 'downcase-word, 'upcase-word, 'capitalize-word and nil." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
276 :type '(choice (const downcase-word) (const upcase-word) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
277 (const capitalize-word) (const nil)) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
278 :group 'f90) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
279 (put 'f90-auto-keyword-case 'safe-local-variable |
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
280 (lambda (value) (memq value '(downcase-word |
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
281 capitalize-word upcase-word nil)))) |
10612 | 282 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
283 (defcustom f90-leave-line-no nil |
85533
309e01535a04
Remove leading "*" from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
85471
diff
changeset
|
284 "If non-nil, line numbers are not left justified." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
285 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
286 :group 'f90) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
287 (put 'f90-leave-line-no 'safe-local-variable 'booleanp) |
10612 | 288 |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
289 (defcustom f90-mode-hook nil |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
290 "Hook run when entering F90 mode." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
291 :type 'hook |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
292 :options '(f90-add-imenu-menu) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
293 :group 'f90) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
294 (put 'f90-mode-hook 'safe-local-variable |
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
295 (lambda (value) (member value '((f90-add-imenu-menu) nil)))) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
296 |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
297 ;; User options end here. |
44942
972dc81abf82
(f90-xemacs-flag): New variable to put the test for Emacs flavor in one
Glenn Morris <rgm@gnu.org>
parents:
44866
diff
changeset
|
298 |
13064 | 299 (defconst f90-keywords-re |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
300 (regexp-opt '("allocatable" "allocate" "assign" "assignment" "backspace" |
85535 | 301 "block" "call" "case" "character" "close" "common" "complex" |
302 "contains" "continue" "cycle" "data" "deallocate" | |
303 "dimension" "do" "double" "else" "elseif" "elsewhere" "end" | |
304 "enddo" "endfile" "endif" "entry" "equivalence" "exit" | |
305 "external" "forall" "format" "function" "goto" "if" | |
306 "implicit" "include" "inquire" "integer" "intent" | |
307 "interface" "intrinsic" "logical" "module" "namelist" "none" | |
308 "nullify" "only" "open" "operator" "optional" "parameter" | |
309 "pause" "pointer" "precision" "print" "private" "procedure" | |
310 "program" "public" "read" "real" "recursive" "result" "return" | |
311 "rewind" "save" "select" "sequence" "stop" "subroutine" | |
312 "target" "then" "type" "use" "where" "while" "write" | |
313 ;; F95 keywords. | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
314 "elemental" "pure" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
315 ;; F2003 |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
316 "abstract" "associate" "asynchronous" "bind" "class" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
317 "deferred" "enum" "enumerator" "extends" "extends_type_of" |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
318 "final" "generic" "import" "non_intrinsic" "non_overridable" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
319 "nopass" "pass" "protected" "same_type_as" "value" "volatile" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
320 ) 'words) |
65918
e58f331c3cba
(f90-keywords-re, f90-mode): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
64699
diff
changeset
|
321 "Regexp used by the function `f90-change-keywords'.") |
13064 | 322 |
323 (defconst f90-keywords-level-3-re | |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
324 (regexp-opt |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
325 '("allocatable" "allocate" "assign" "assignment" "backspace" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
326 "close" "deallocate" "dimension" "endfile" "entry" "equivalence" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
327 "external" "inquire" "intent" "intrinsic" "nullify" "only" "open" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
328 ;; FIXME operator and assignment should be F2003 procedures? |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
329 "operator" "optional" "parameter" "pause" "pointer" "print" "private" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
330 "public" "read" "recursive" "result" "rewind" "save" "select" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
331 "sequence" "target" "write" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
332 ;; F95 keywords. |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
333 "elemental" "pure" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
334 ;; F2003. asynchronous separate. |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
335 "abstract" "deferred" "import" "final" "non_intrinsic" "non_overridable" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
336 "nopass" "pass" "protected" "value" "volatile" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
337 ) 'words) |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
338 "Keyword-regexp for font-lock level >= 3.") |
13064 | 339 |
340 (defconst f90-procedures-re | |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
341 (concat "\\<" |
44997 | 342 (regexp-opt |
343 '("abs" "achar" "acos" "adjustl" "adjustr" "aimag" "aint" | |
344 "all" "allocated" "anint" "any" "asin" "associated" | |
345 "atan" "atan2" "bit_size" "btest" "ceiling" "char" "cmplx" | |
346 "conjg" "cos" "cosh" "count" "cshift" "date_and_time" "dble" | |
347 "digits" "dim" "dot_product" "dprod" "eoshift" "epsilon" | |
348 "exp" "exponent" "floor" "fraction" "huge" "iachar" "iand" | |
349 "ibclr" "ibits" "ibset" "ichar" "ieor" "index" "int" "ior" | |
350 "ishft" "ishftc" "kind" "lbound" "len" "len_trim" "lge" "lgt" | |
351 "lle" "llt" "log" "log10" "logical" "matmul" "max" | |
352 "maxexponent" "maxloc" "maxval" "merge" "min" "minexponent" | |
353 "minloc" "minval" "mod" "modulo" "mvbits" "nearest" "nint" | |
354 "not" "pack" "precision" "present" "product" "radix" | |
355 ;; Real is taken out here to avoid highlighting declarations. | |
356 "random_number" "random_seed" "range" ;; "real" | |
357 "repeat" "reshape" "rrspacing" "scale" "scan" | |
358 "selected_int_kind" "selected_real_kind" "set_exponent" | |
359 "shape" "sign" "sin" "sinh" "size" "spacing" "spread" "sqrt" | |
360 "sum" "system_clock" "tan" "tanh" "tiny" "transfer" | |
361 "transpose" "trim" "ubound" "unpack" "verify" | |
362 ;; F95 intrinsic functions. | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
363 "null" "cpu_time" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
364 ;; F2003. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
365 "move_alloc" "command_argument_count" "get_command" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
366 "get_command_argument" "get_environment_variable" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
367 "selected_char_kind" "wait" "flush" "new_line" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
368 "extends" "extends_type_of" "same_type_as" "bind" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
369 ;; F2003 ieee_arithmetic intrinsic module. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
370 "ieee_support_underflow_control" "ieee_get_underflow_mode" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
371 "ieee_set_underflow_mode" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
372 ;; F2003 iso_c_binding intrinsic module. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
373 "c_loc" "c_funloc" "c_associated" "c_f_pointer" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
374 "c_f_procpointer" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
375 ) t) |
44997 | 376 ;; A left parenthesis to avoid highlighting non-procedures. |
377 "[ \t]*(") | |
13064 | 378 "Regexp whose first part matches F90 intrinsic procedures.") |
10612 | 379 |
13064 | 380 (defconst f90-operators-re |
44997 | 381 (concat "\\." |
382 (regexp-opt '("and" "eq" "eqv" "false" "ge" "gt" "le" "lt" "ne" | |
383 "neqv" "not" "or" "true") t) | |
384 "\\.") | |
13064 | 385 "Regexp matching intrinsic operators.") |
10612 | 386 |
13064 | 387 (defconst f90-hpf-keywords-re |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
388 (regexp-opt |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
389 ;; Intrinsic procedures. |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
390 '("all_prefix" "all_scatter" "all_suffix" "any_prefix" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
391 "any_scatter" "any_suffix" "copy_prefix" "copy_scatter" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
392 "copy_suffix" "count_prefix" "count_scatter" "count_suffix" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
393 "grade_down" "grade_up" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
394 "hpf_alignment" "hpf_distribution" "hpf_template" "iall" "iall_prefix" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
395 "iall_scatter" "iall_suffix" "iany" "iany_prefix" "iany_scatter" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
396 "iany_suffix" "ilen" "iparity" "iparity_prefix" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
397 "iparity_scatter" "iparity_suffix" "leadz" "maxval_prefix" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
398 "maxval_scatter" "maxval_suffix" "minval_prefix" "minval_scatter" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
399 "minval_suffix" "number_of_processors" "parity" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
400 "parity_prefix" "parity_scatter" "parity_suffix" "popcnt" "poppar" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
401 "processors_shape" "product_prefix" "product_scatter" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
402 "product_suffix" "sum_prefix" "sum_scatter" "sum_suffix" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
403 ;; Directives. |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
404 "align" "distribute" "dynamic" "independent" "inherit" "processors" |
44997 | 405 "realign" "redistribute" "template" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
406 ;; Keywords. |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
407 "block" "cyclic" "extrinsic" "new" "onto" "pure" "with") 'words) |
13064 | 408 "Regexp for all HPF keywords, procedures and directives.") |
10612 | 409 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
410 (defconst f90-constants-re |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
411 (regexp-opt '( ;; F2003 iso_fortran_env constants. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
412 "iso_fortran_env" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
413 "input_unit" "output_unit" "error_unit" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
414 "iostat_end" "iostat_eor" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
415 "numeric_storage_size" "character_storage_size" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
416 "file_storage_size" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
417 ;; F2003 iso_c_binding constants. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
418 "iso_c_binding" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
419 "c_int" "c_short" "c_long" "c_long_long" "c_signed_char" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
420 "c_size_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
421 "c_int8_t" "c_int16_t" "c_int32_t" "c_int64_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
422 "c_int_least8_t" "c_int_least16_t" "c_int_least32_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
423 "c_int_least64_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
424 "c_int_fast8_t" "c_int_fast16_t" "c_int_fast32_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
425 "c_int_fast64_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
426 "c_intmax_t" "c_intptr_t" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
427 "c_float" "c_double" "c_long_double" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
428 "c_float_complex" "c_double_complex" "c_long_double_complex" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
429 "c_bool" "c_char" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
430 "c_null_char" "c_alert" "c_backspace" "c_form_feed" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
431 "c_new_line" "c_carriage_return" "c_horizontal_tab" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
432 "c_vertical_tab" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
433 "c_ptr" "c_funptr" "c_null_ptr" "c_null_funptr" |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
434 "ieee_exceptions" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
435 "ieee_arithmetic" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
436 "ieee_features" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
437 ) 'words) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
438 "Regexp for Fortran intrinsic constants.") |
10612 | 439 |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
440 ;; cf f90-looking-at-type-like. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
441 (defun f90-typedef-matcher (limit) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
442 "Search for the start/end of the definition of a derived type, up to LIMIT. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
443 Set the match data so that subexpression 1,2 are the TYPE, and |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
444 type-name parts, respectively." |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
445 (let (found l) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
446 (while (and (re-search-forward "\\<\\(\\(?:end[ \t]*\\)?type\\)[ \t]*" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
447 limit t) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
448 (not (setq found |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
449 (progn |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
450 (setq l (match-data)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
451 (unless (looking-at "\\(is\\>\\|(\\)") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
452 (when (if (looking-at "\\(\\sw+\\)") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
453 (goto-char (match-end 0)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
454 (re-search-forward |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
455 "[ \t]*::[ \t]*\\(\\sw+\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
456 (line-end-position) t)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
457 ;; 0 is wrong, but we don't use it. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
458 (set-match-data |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
459 (append l (list (match-beginning 1) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
460 (match-end 1)))) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
461 t))))))) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
462 found)) |
10612 | 463 |
13064 | 464 (defvar f90-font-lock-keywords-1 |
23997 | 465 (list |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
466 ;; Special highlighting of "module procedure". |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
467 '("\\<\\(module[ \t]*procedure\\)\\>\\([^()\n]*::\\)?[ \t]*\\([^&!\n]*\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
468 (1 font-lock-keyword-face) (3 font-lock-function-name-face nil t)) |
46796
342b3e8fd75c
(f90-font-lock-keywords-1): Simplify `type' value a little.
Glenn Morris <rgm@gnu.org>
parents:
46793
diff
changeset
|
469 ;; Highlight definition of derived type. |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
470 ;;; '("\\<\\(\\(?:end[ \t]*\\)?type\\)\\>\\([^()\n]*::\\)?[ \t]*\\(\\sw+\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
471 ;;; (1 font-lock-keyword-face) (3 font-lock-function-name-face)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
472 '(f90-typedef-matcher |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
473 (1 font-lock-keyword-face) (2 font-lock-function-name-face)) |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
474 ;; Other functions and declarations. |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
475 '("\\<\\(\\(?:end[ \t]*\\)?\\(program\\|module\\|function\\|associate\\|\ |
46793
3fcd9700f0fc
(f90-font-lock-keywords-1): Fix highlighting of `type' forms.
Glenn Morris <rgm@gnu.org>
parents:
45972
diff
changeset
|
476 subroutine\\)\\|use\\|call\\)\\>[ \t]*\\(\\sw+\\)?" |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
477 (1 font-lock-keyword-face) (3 font-lock-function-name-face nil t)) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
478 ;; F2003. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
479 '("\\<\\(use\\)[ \t]*,[ \t]*\\(\\(?:non_\\)?intrinsic\\)[ \t]*::[ \t]*\ |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
480 \\(\\sw+\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
481 (1 font-lock-keyword-face) (2 font-lock-keyword-face) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
482 (3 font-lock-function-name-face)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
483 "\\<\\(\\(end[ \t]*\\)?block[ \t]*data\\|contains\\|\ |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
484 end[ \t]*interface\\)\\>" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
485 ;; "abstract interface" is F2003. Must come after previous entry. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
486 '("\\<\\(\\(?:abstract[ \t]*\\)?interface\\)\\>" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
487 ;; [ \t]*\\(\\(\\sw+\\)[ \t]*[^(]\\)?" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
488 ;; (2) messes up "interface operator ()", etc. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
489 (1 font-lock-keyword-face))) ;(2 font-lock-function-name-face nil t))) |
13064 | 490 "This does fairly subdued highlighting of comments and function calls.") |
10612 | 491 |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
492 ;; NB not explicitly handling this, yet it seems to work. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
493 ;; type(...) function foo() |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
494 (defun f90-typedec-matcher (limit) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
495 "Search for the declaration of variables of derived type, up to LIMIT. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
496 Set the match data so that subexpression 1,2 are the TYPE(...), |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
497 and variable-name parts, respectively." |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
498 ;; Matcher functions must return nil only when there are no more |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
499 ;; matches within the search range. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
500 (let (found l) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
501 (while (and (re-search-forward "\\<\\(type\\|class\\)[ \t]*(" limit t) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
502 (not |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
503 (setq found |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
504 (condition-case nil |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
505 (progn |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
506 ;; Set l after this to just highlight |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
507 ;; the "type" part. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
508 (backward-char 1) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
509 ;; Needed for: type( foo(...) ) :: bar |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
510 (forward-sexp) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
511 (setq l (list (match-beginning 0) (point))) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
512 (skip-chars-forward " \t") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
513 (when |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
514 (re-search-forward |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
515 ;; type (foo) bar, qux |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
516 (if (looking-at "\\sw+") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
517 "\\([^&!\n]+\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
518 ;; type (foo), stuff :: bar, qux |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
519 "::[ \t]*\\([^&!\n]+\\)") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
520 (line-end-position) t) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
521 (set-match-data |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
522 (append (list (car l) (match-end 1)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
523 l (list (match-beginning 1) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
524 (match-end 1)))) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
525 t)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
526 (error nil)))))) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
527 found)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
528 |
13064 | 529 (defvar f90-font-lock-keywords-2 |
44997 | 530 (append |
531 f90-font-lock-keywords-1 | |
532 (list | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
533 ;; Variable declarations (avoid the real function call). |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
534 ;; NB by accident (?), this correctly fontifies the "integer" in: |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
535 ;; integer () function foo () |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
536 ;; because "() function foo ()" matches \\3. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
537 ;; The "pure" part does not really belong here, but was added to |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
538 ;; exploit that hack. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
539 ;; The "function foo" bit is correctly fontified by keywords-1. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
540 ;; TODO ? actually check for balanced parens in that case. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
541 '("^[ \t0-9]*\\(?:pure\\|elemental\\)?[ \t]*\ |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
542 \\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\ |
85699
f240b732dbe0
(f90-font-lock-keywords-1): Revert change merged in from EMACS_22 branch.
Glenn Morris <rgm@gnu.org>
parents:
85688
diff
changeset
|
543 enumerator\\|generic\\|procedure\\|logical\\|double[ \t]*precision\\)\ |
65918
e58f331c3cba
(f90-keywords-re, f90-mode): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
64699
diff
changeset
|
544 \\(.*::\\|[ \t]*(.*)\\)?\\([^&!\n]*\\)" |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
545 (1 font-lock-type-face t) (4 font-lock-variable-name-face t)) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
546 ;; Derived type/class variables. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
547 ;; TODO ? If we just highlighted the "type" part, rather than |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
548 ;; "type(...)", this could be in the previous expression. And this |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
549 ;; would be consistent with integer( kind=8 ), etc. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
550 '(f90-typedec-matcher |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
551 (1 font-lock-type-face) (2 font-lock-variable-name-face)) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
552 ;; "real function foo (args)". Must override previous. Note hack |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
553 ;; to get "args" unhighlighted again. Might not always be right, |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
554 ;; but probably better than leaving them as variables. |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
555 ;; NB not explicitly handling this case: |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
556 ;; integer( kind=1 ) function foo() |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
557 ;; thanks to the happy accident described above. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
558 ;; Not anchored, so don't need to worry about "pure" etc. |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
559 '("\\<\\(\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\ |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
560 logical\\|double[ \t]*precision\\|\ |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
561 \\(?:type\\|class\\)[ \t]*([ \t]*\\sw+[ \t]*)\\)[ \t]*\\)\ |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
562 \\(function\\)\\>[ \t]*\\(\\sw+\\)[ \t]*\\(([^&!\n]*)\\)" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
563 (1 font-lock-type-face t) (4 font-lock-keyword-face t) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
564 (5 font-lock-function-name-face t) (6 'default t)) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
565 ;; enum (F2003; cf type in -1). |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
566 '("\\<\\(enum\\)\\>\\([^()\n]*::\\)?[ \t]*\\(\\sw+\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
567 (1 font-lock-keyword-face) (3 font-lock-function-name-face)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
568 ;; end do, enum (F2003), if, select, where, and forall constructs. |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
569 '("\\<\\(end[ \t]*\\(do\\|if\\|enum\\|select\\|forall\\|where\\)\\)\\>\ |
44997 | 570 \\([ \t]+\\(\\sw+\\)\\)?" |
571 (1 font-lock-keyword-face) (3 font-lock-constant-face nil t)) | |
572 '("^[ \t0-9]*\\(\\(\\sw+\\)[ \t]*:[ \t]*\\)?\\(\\(if\\|\ | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
573 do\\([ \t]*while\\)?\\|select[ \t]*\\(?:case\\|type\\)\\|where\\|\ |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
574 forall\\)\\)\\>" |
44997 | 575 (2 font-lock-constant-face nil t) (3 font-lock-keyword-face)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
576 ;; Implicit declaration. |
44997 | 577 '("\\<\\(implicit\\)[ \t]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\ |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
578 \\|enumerator\\|procedure\\|\ |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
579 logical\\|double[ \t]*precision\\|type[ \t]*(\\sw+)\\|none\\)[ \t]*" |
44997 | 580 (1 font-lock-keyword-face) (2 font-lock-type-face)) |
581 '("\\<\\(namelist\\|common\\)[ \t]*\/\\(\\sw+\\)?\/" | |
582 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) | |
583 "\\<else\\([ \t]*if\\|where\\)?\\>" | |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
584 '("\\(&\\)[ \t]*\\(!\\|$\\)" (1 font-lock-keyword-face)) |
44997 | 585 "\\<\\(then\\|continue\\|format\\|include\\|stop\\|return\\)\\>" |
586 '("\\<\\(exit\\|cycle\\)[ \t]*\\(\\sw+\\)?\\>" | |
587 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) | |
588 '("\\<\\(case\\)[ \t]*\\(default\\|(\\)" . 1) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
589 ;; F2003 "class default". |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
590 '("\\<\\(class\\)[ \t]*default" . 1) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
591 ;; F2003 "type is" in a "select type" block. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
592 '("\\<\\(\\(type\\|class\\)[ \t]*is\\)[ \t]*(" (1 font-lock-keyword-face t)) |
79177
3aa5f50b34c0
(f90-do-indent, f90-if-indent)
Glenn Morris <rgm@gnu.org>
parents:
79158
diff
changeset
|
593 '("\\<\\(do\\|go[ \t]*to\\)\\>[ \t]*\\([0-9]+\\)" |
44997 | 594 (1 font-lock-keyword-face) (2 font-lock-constant-face)) |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
595 ;; Line numbers (lines whose first character after number is letter). |
44997 | 596 '("^[ \t]*\\([0-9]+\\)[ \t]*[a-z]+" (1 font-lock-constant-face t)))) |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
597 "Highlights declarations, do-loops and other constructs.") |
10612 | 598 |
13064 | 599 (defvar f90-font-lock-keywords-3 |
600 (append f90-font-lock-keywords-2 | |
44997 | 601 (list |
602 f90-keywords-level-3-re | |
603 f90-operators-re | |
604 (list f90-procedures-re '(1 font-lock-keyword-face keep)) | |
85535 | 605 "\\<real\\>" ; avoid overwriting real defs |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
606 ;; As an attribute, but not as an optional argument. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
607 '("\\<\\(asynchronous\\)[ \t]*[^=]" . 1) |
44997 | 608 )) |
13064 | 609 "Highlights all F90 keywords and intrinsic procedures.") |
610 | |
611 (defvar f90-font-lock-keywords-4 | |
612 (append f90-font-lock-keywords-3 | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
613 (list (cons f90-constants-re 'font-lock-constant-face) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
614 f90-hpf-keywords-re)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
615 "Highlights all F90 and HPF keywords and constants.") |
13064 | 616 |
617 (defvar f90-font-lock-keywords | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
618 f90-font-lock-keywords-2 |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
619 "*Default expressions to highlight in F90 mode. |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
620 Can be overridden by the value of `font-lock-maximum-decoration'.") |
10612 | 621 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
622 |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
623 (defvar f90-mode-syntax-table |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
624 (let ((table (make-syntax-table))) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
625 (modify-syntax-entry ?\! "<" table) ; begin comment |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
626 (modify-syntax-entry ?\n ">" table) ; end comment |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
627 (modify-syntax-entry ?_ "w" table) ; underscore in names |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
628 (modify-syntax-entry ?\' "\"" table) ; string quote |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
629 (modify-syntax-entry ?\" "\"" table) ; string quote |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
630 (modify-syntax-entry ?\` "w" table) ; for abbrevs |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
631 (modify-syntax-entry ?\r " " table) ; return is whitespace |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
632 (modify-syntax-entry ?+ "." table) ; punctuation |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
633 (modify-syntax-entry ?- "." table) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
634 (modify-syntax-entry ?= "." table) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
635 (modify-syntax-entry ?* "." table) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
636 (modify-syntax-entry ?/ "." table) |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
637 ;; I think that the f95 standard leaves the behaviour of \ |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
638 ;; unspecified, but that f2k will require it to be non-special. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
639 ;; Use `f90-backslash-not-special' to change. |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
640 (modify-syntax-entry ?\\ "\\" table) ; escape chars |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
641 table) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
642 "Syntax table used in F90 mode.") |
10612 | 643 |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
644 (defvar f90-mode-map |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
645 (let ((map (make-sparse-keymap))) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
646 (define-key map "`" 'f90-abbrev-start) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
647 (define-key map "\C-c;" 'f90-comment-region) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
648 (define-key map "\C-\M-a" 'f90-beginning-of-subprogram) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
649 (define-key map "\C-\M-e" 'f90-end-of-subprogram) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
650 (define-key map "\C-\M-h" 'f90-mark-subprogram) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
651 (define-key map "\C-\M-n" 'f90-end-of-block) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
652 (define-key map "\C-\M-p" 'f90-beginning-of-block) |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
653 (define-key map "\C-\M-q" 'f90-indent-subprogram) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
654 (define-key map "\C-j" 'f90-indent-new-line) ; LFD equals C-j |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
655 (define-key map "\r" 'newline) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
656 (define-key map "\C-c\r" 'f90-break-line) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
657 ;;; (define-key map [M-return] 'f90-break-line) |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
658 (define-key map "\C-c\C-a" 'f90-previous-block) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
659 (define-key map "\C-c\C-e" 'f90-next-block) |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
660 (define-key map "\C-c\C-d" 'f90-join-lines) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
661 (define-key map "\C-c\C-f" 'f90-fill-region) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
662 (define-key map "\C-c\C-p" 'f90-previous-statement) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
663 (define-key map "\C-c\C-n" 'f90-next-statement) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
664 (define-key map "\C-c\C-w" 'f90-insert-end) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
665 (define-key map "\t" 'f90-indent-line) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
666 (define-key map "," 'f90-electric-insert) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
667 (define-key map "+" 'f90-electric-insert) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
668 (define-key map "-" 'f90-electric-insert) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
669 (define-key map "*" 'f90-electric-insert) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
670 (define-key map "/" 'f90-electric-insert) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
671 |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
672 (easy-menu-define f90-menu map "Menu for F90 mode." |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
673 `("F90" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
674 ("Customization" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
675 ,(custom-menu-create 'f90) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
676 ["Set" Custom-set t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
677 ["Save" Custom-save t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
678 ["Reset to Current" Custom-reset-current t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
679 ["Reset to Saved" Custom-reset-saved t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
680 ["Reset to Standard Settings" Custom-reset-standard t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
681 ) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
682 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
683 ["Indent Subprogram" f90-indent-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
684 ["Mark Subprogram" f90-mark-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
685 ["Beginning of Subprogram" f90-beginning-of-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
686 ["End of Subprogram" f90-end-of-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
687 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
688 ["(Un)Comment Region" f90-comment-region mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
689 ["Indent Region" f90-indent-region mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
690 ["Fill Region" f90-fill-region mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
691 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
692 ["Break Line at Point" f90-break-line t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
693 ["Join with Previous Line" f90-join-lines t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
694 ["Insert Block End" f90-insert-end t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
695 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
696 ("Highlighting" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
697 ["Toggle font-lock-mode" font-lock-mode :selected font-lock-mode |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
698 :style toggle] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
699 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
700 ["Light highlighting (level 1)" f90-font-lock-1 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
701 ["Moderate highlighting (level 2)" f90-font-lock-2 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
702 ["Heavy highlighting (level 3)" f90-font-lock-3 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
703 ["Maximum highlighting (level 4)" f90-font-lock-4 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
704 ) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
705 ("Change Keyword Case" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
706 ["Upcase Keywords (buffer)" f90-upcase-keywords t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
707 ["Capitalize Keywords (buffer)" f90-capitalize-keywords t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
708 ["Downcase Keywords (buffer)" f90-downcase-keywords t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
709 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
710 ["Upcase Keywords (region)" f90-upcase-region-keywords |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
711 mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
712 ["Capitalize Keywords (region)" f90-capitalize-region-keywords |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
713 mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
714 ["Downcase Keywords (region)" f90-downcase-region-keywords |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
715 mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
716 ) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
717 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
718 ["Toggle auto-fill" auto-fill-mode :selected auto-fill-function |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
719 :style toggle] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
720 ["Toggle abbrev-mode" abbrev-mode :selected abbrev-mode |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
721 :style toggle] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
722 ["Add imenu Menu" f90-add-imenu-menu |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
723 :active (not (lookup-key (current-local-map) [menu-bar index])) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
724 :included (fboundp 'imenu-add-to-menubar)])) |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
725 map) |
10612 | 726 "Keymap used in F90 mode.") |
13064 | 727 |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
728 |
47010
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
729 (defun f90-font-lock-1 () |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
730 "Set `font-lock-keywords' to `f90-font-lock-keywords-1'." |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
731 (interactive) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
732 (font-lock-mode 1) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
733 (setq font-lock-keywords f90-font-lock-keywords-1) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
734 (font-lock-fontify-buffer)) |
44997 | 735 |
47010
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
736 (defun f90-font-lock-2 () |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
737 "Set `font-lock-keywords' to `f90-font-lock-keywords-2'." |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
738 (interactive) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
739 (font-lock-mode 1) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
740 (setq font-lock-keywords f90-font-lock-keywords-2) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
741 (font-lock-fontify-buffer)) |
44997 | 742 |
47010
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
743 (defun f90-font-lock-3 () |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
744 "Set `font-lock-keywords' to `f90-font-lock-keywords-3'." |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
745 (interactive) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
746 (font-lock-mode 1) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
747 (setq font-lock-keywords f90-font-lock-keywords-3) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
748 (font-lock-fontify-buffer)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
749 |
47010
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
750 (defun f90-font-lock-4 () |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
751 "Set `font-lock-keywords' to `f90-font-lock-keywords-4'." |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
752 (interactive) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
753 (font-lock-mode 1) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
754 (setq font-lock-keywords f90-font-lock-keywords-4) |
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
755 (font-lock-fontify-buffer)) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
756 |
47010
dd3a10c87fe8
(f90-xemacs-flag, f90-xemacs-menu, f90-menu-bar-menu, f90-change-case-menu)
Glenn Morris <rgm@gnu.org>
parents:
46993
diff
changeset
|
757 |
13064 | 758 ;; Regexps for finding program structures. |
44997 | 759 (defconst f90-blocks-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
760 (concat "\\(block[ \t]*data\\|" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
761 (regexp-opt '("do" "if" "interface" "function" "module" "program" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
762 "select" "subroutine" "type" "where" "forall" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
763 ;; F2003. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
764 "enum" "associate")) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
765 "\\)\\>") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
766 "Regexp potentially indicating a \"block\" of F90 code.") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
767 |
44997 | 768 (defconst f90-program-block-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
769 (regexp-opt '("program" "module" "subroutine" "function") 'paren) |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
770 "Regexp used to locate the start/end of a \"subprogram\".") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
771 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
772 ;; "class is" is F2003. |
44997 | 773 (defconst f90-else-like-re |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
774 "\\(else\\([ \t]*if\\|where\\)?\\|case[ \t]*\\(default\\|(\\)\\|\ |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
775 \\(class\\|type\\)[ \t]*is[ \t]*(\\|class[ \t]*default\\)" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
776 "Regexp matching an ELSE IF, ELSEWHERE, CASE, CLASS/TYPE IS statement.") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
777 |
44997 | 778 (defconst f90-end-if-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
779 (concat "end[ \t]*" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
780 (regexp-opt '("if" "select" "where" "forall") 'paren) |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
781 "\\>") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
782 "Regexp matching the end of an IF, SELECT, WHERE, FORALL block.") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
783 |
44997 | 784 (defconst f90-end-type-re |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
785 "end[ \t]*\\(type\\|enum\\|interface\\|block[ \t]*data\\)\\>" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
786 "Regexp matching the end of a TYPE, ENUM, INTERFACE, BLOCK DATA section.") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
787 |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
788 (defconst f90-end-associate-re |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
789 "end[ \t]*associate\\>" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
790 "Regexp matching the end of an ASSOCIATE block.") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
791 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
792 ;; This is for a TYPE block, not a variable of derived TYPE. |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
793 ;; Hence no need to add CLASS for F2003. |
13064 | 794 (defconst f90-type-def-re |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
795 ;; type word |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
796 ;; type :: word |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
797 ;; type, stuff :: word |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
798 ;; NOT "type (" |
46796
342b3e8fd75c
(f90-font-lock-keywords-1): Simplify `type' value a little.
Glenn Morris <rgm@gnu.org>
parents:
46793
diff
changeset
|
799 "\\<\\(type\\)\\>\\(?:[^()\n]*::\\)?[ \t]*\\(\\sw+\\)" |
45912 | 800 "Regexp matching the definition of a derived type.") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
801 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
802 (defconst f90-typeis-re |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
803 "\\<\\(class\\|type\\)[ \t]*is[ \t]*(" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
804 "Regexp matching a CLASS/TYPE IS statement.") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
805 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
806 (defconst f90-no-break-re |
53699
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
807 (regexp-opt '("**" "//" "=>" ">=" "<=" "==" "/=") 'paren) |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
808 "Regexp specifying where not to break lines when filling. |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
809 This regexp matches certain tokens comprised entirely of |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
810 characters matching the regexp `f90-break-delimiters' that should |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
811 not be split by filling. Each element is assumed to be two |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
812 characters long.") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
813 |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
814 (defvar f90-cache-position nil |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
815 "Temporary position used to speed up region operations.") |
10612 | 816 (make-variable-buffer-local 'f90-cache-position) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
817 |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
818 |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
819 ;; Hideshow support. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
820 (defconst f90-end-block-re |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
821 (concat "^[ \t0-9]*\\<end[ \t]*" |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
822 (regexp-opt '("do" "if" "forall" "function" "interface" |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
823 "module" "program" "select" "subroutine" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
824 "type" "where" "enum" "associate") t) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
825 "\\>") |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
826 "Regexp matching the end of an F90 \"block\", from the line start. |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
827 Used in the F90 entry in `hs-special-modes-alist'.") |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
828 |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
829 ;; Ignore the fact that FUNCTION, SUBROUTINE, WHERE, FORALL have a |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
830 ;; following "(". DO, CASE, IF can have labels. |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
831 (defconst f90-start-block-re |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
832 (concat |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
833 "^[ \t0-9]*" ; statement number |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
834 "\\(\\(" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
835 "\\(\\sw+[ \t]*:[ \t]*\\)?" ; structure label |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
836 "\\(do\\|select[ \t]*\\(case\\|type\\)\\|" |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
837 ;; See comments in fortran-start-block-re for the problems of IF. |
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
838 "if[ \t]*(\\(.*\\|" |
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
839 ".*\n\\([^if]*\\([^i].\\|.[^f]\\|.\\>\\)\\)\\)\\<then\\|" |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
840 ;; Distinguish WHERE block from isolated WHERE. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
841 "\\(where\\|forall\\)[ \t]*(.*)[ \t]*\\(!\\|$\\)\\)\\)" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
842 "\\|" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
843 ;; Avoid F2003 "type is" in "select type", |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
844 ;; and also variables of derived type "type (foo)". |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
845 ;; "type, foo" must be a block (?). |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
846 "type[ \t,]\\(" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
847 "[^i(!\n\"\& \t]\\|" ; not-i( |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
848 "i[^s!\n\"\& \t]\\|" ; i not-s |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
849 "is\\sw\\)\\|" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
850 ;; "abstract interface" is F2003. |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
851 "program\\|\\(?:abstract[ \t]*\\)?interface\\|module\\|" |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
852 ;; "enum", but not "enumerator". |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
853 "function\\|subroutine\\|enum[^e]\\|associate" |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
854 "\\)" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
855 "[ \t]*") |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
856 "Regexp matching the start of an F90 \"block\", from the line start. |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
857 A simple regexp cannot do this in fully correct fashion, so this |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
858 tries to strike a compromise between complexity and flexibility. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
859 Used in the F90 entry in `hs-special-modes-alist'.") |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
860 |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
861 ;; hs-special-modes-alist is autoloaded. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
862 (add-to-list 'hs-special-modes-alist |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
863 `(f90-mode ,f90-start-block-re ,f90-end-block-re |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
864 "!" f90-end-of-block nil)) |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
865 |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
866 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
867 ;; Imenu support. |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
868 ;; FIXME trivial to extend this to enum. Worth it? |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
869 (defun f90-imenu-type-matcher () |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
870 "Search backward for the start of a derived type. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
871 Set subexpression 1 in the match-data to the name of the type." |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
872 (let (found l) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
873 (while (and (re-search-backward "^[ \t0-9]*type[ \t]*" nil t) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
874 (not (setq found |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
875 (save-excursion |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
876 (goto-char (match-end 0)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
877 (unless (looking-at "\\(is\\>\\|(\\)") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
878 (or (looking-at "\\(\\sw+\\)") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
879 (re-search-forward |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
880 "[ \t]*::[ \t]*\\(\\sw+\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
881 (line-end-position) t)))))))) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
882 found)) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
883 |
13064 | 884 (defvar f90-imenu-generic-expression |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
885 (let ((good-char "[^!\"\&\n \t]") (not-e "[^e!\n\"\& \t]") |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
886 (not-n "[^n!\n\"\& \t]") (not-d "[^d!\n\"\& \t]") |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
887 (not-ib "[^i(!\n\"\& \t]") (not-s "[^s!\n\"\& \t]")) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
888 (list |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
889 '(nil "^[ \t0-9]*program[ \t]+\\(\\sw+\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
890 '("Modules" "^[ \t0-9]*module[ \t]+\\(\\sw+\\)[ \t]*\\(!\\|$\\)" 1) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
891 (list "Types" 'f90-imenu-type-matcher 1) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
892 ;; Does not handle: "type[, stuff] :: foo". |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
893 ;;; (format "^[ \t0-9]*type[ \t]+\\(\\(%s\\|i%s\\|is\\sw\\)\\sw*\\)" |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
894 ;;; not-ib not-s) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
895 ;;; 1) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
896 ;; Can't get the subexpression numbers to match in the two branches. |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
897 ;;; (format "^[ \t0-9]*type\\([ \t]*,.*\\(::\\)[ \t]*\\(\\sw+\\)\\|[ \t]+\\(\\(%s\\|i%s\\|is\\sw\\)\\sw*\\)\\)" not-ib not-s) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
898 ;;; 3) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
899 (list |
44997 | 900 "Procedures" |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
901 (concat |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
902 "^[ \t0-9]*" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
903 "\\(" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
904 ;; At least three non-space characters before function/subroutine. |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
905 ;; Check that the last three non-space characters do not spell E N D. |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
906 "[^!\"\&\n]*\\(" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
907 not-e good-char good-char "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
908 good-char not-n good-char "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
909 good-char good-char not-d "\\)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
910 "\\|" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
911 ;; Less than three non-space characters before function/subroutine. |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
912 good-char "?" good-char "?" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
913 "\\)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
914 "[ \t]*\\(function\\|subroutine\\)[ \t]+\\(\\sw+\\)") |
44997 | 915 4))) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
916 "Value for `imenu-generic-expression' in F90 mode.") |
13064 | 917 |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
918 (defun f90-add-imenu-menu () |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
919 "Add an imenu menu to the menubar." |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
920 (interactive) |
47178
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
921 (if (lookup-key (current-local-map) [menu-bar index]) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
922 (message "%s" "F90-imenu already exists.") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
923 (imenu-add-to-menubar "F90-imenu") |
47012
978b0db16be0
(f90-imenu-flag): Deleted - use imenu--index-alist instead.
Glenn Morris <rgm@gnu.org>
parents:
47010
diff
changeset
|
924 (redraw-frame (selected-frame)))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
925 |
10612 | 926 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
927 ;; Abbrevs have generally two letters, except standard types `c, `i, `r, `t. |
45355
d1b710ae9184
(f90-mode-abbrev-table): Initialize in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45353
diff
changeset
|
928 (defvar f90-mode-abbrev-table |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
929 (progn |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
930 (define-abbrev-table 'f90-mode-abbrev-table nil) |
45355
d1b710ae9184
(f90-mode-abbrev-table): Initialize in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45353
diff
changeset
|
931 f90-mode-abbrev-table) |
d1b710ae9184
(f90-mode-abbrev-table): Initialize in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45353
diff
changeset
|
932 "Abbrev table for F90 mode.") |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
933 |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
934 (let (abbrevs-changed) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
935 ;; Use the 6th arg (SYSTEM-FLAG) of define-abbrev if possible. |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
936 ;; A little baroque to quieten the byte-compiler. |
84761
32ed8aa23e1c
(f90-mode-abbrev-table): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
78234
diff
changeset
|
937 (mapc |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
938 (function (lambda (element) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
939 (condition-case nil |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
940 (apply 'define-abbrev f90-mode-abbrev-table |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
941 (append element '(nil 0 t))) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
942 (wrong-number-of-arguments |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
943 (apply 'define-abbrev f90-mode-abbrev-table |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
944 (append element '(nil 0))))))) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
945 '(("`al" "allocate" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
946 ("`ab" "allocatable" ) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
947 ("`ai" "abstract interface") |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
948 ("`as" "assignment" ) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
949 ("`asy" "asynchronous" ) |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
950 ("`ba" "backspace" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
951 ("`bd" "block data" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
952 ("`c" "character" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
953 ("`cl" "close" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
954 ("`cm" "common" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
955 ("`cx" "complex" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
956 ("`cn" "contains" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
957 ("`cy" "cycle" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
958 ("`de" "deallocate" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
959 ("`df" "define" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
960 ("`di" "dimension" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
961 ("`dp" "double precision") |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
962 ("`dw" "do while" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
963 ("`el" "else" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
964 ("`eli" "else if" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
965 ("`elw" "elsewhere" ) |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
966 ("`em" "elemental" ) |
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
967 ("`e" "enumerator" ) |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
968 ("`eq" "equivalence" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
969 ("`ex" "external" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
970 ("`ey" "entry" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
971 ("`fl" "forall" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
972 ("`fo" "format" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
973 ("`fu" "function" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
974 ("`fa" ".false." ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
975 ("`im" "implicit none") |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
976 ("`in" "include" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
977 ("`i" "integer" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
978 ("`it" "intent" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
979 ("`if" "interface" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
980 ("`lo" "logical" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
981 ("`mo" "module" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
982 ("`na" "namelist" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
983 ("`nu" "nullify" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
984 ("`op" "optional" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
985 ("`pa" "parameter" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
986 ("`po" "pointer" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
987 ("`pr" "print" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
988 ("`pi" "private" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
989 ("`pm" "program" ) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
990 ("`pr" "protected" ) |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
991 ("`pu" "public" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
992 ("`r" "real" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
993 ("`rc" "recursive" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
994 ("`rt" "return" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
995 ("`rw" "rewind" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
996 ("`se" "select" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
997 ("`sq" "sequence" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
998 ("`su" "subroutine" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
999 ("`ta" "target" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
1000 ("`tr" ".true." ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
1001 ("`t" "type" ) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1002 ("`vo" "volatile" ) |
74430
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
1003 ("`wh" "where" ) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
1004 ("`wr" "write" )))) |
1ca429066367
(f90-mode-abbrev-table): Define abbrevs even if abbrev-table is
Glenn Morris <rgm@gnu.org>
parents:
74133
diff
changeset
|
1005 |
10612 | 1006 |
1007 ;;;###autoload | |
1008 (defun f90-mode () | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1009 "Major mode for editing Fortran 90,95 code in free format. |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1010 For fixed format code, use `fortran-mode'. |
10612 | 1011 |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1012 \\[f90-indent-line] indents the current line. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1013 \\[f90-indent-new-line] indents current line and creates a new\ |
10612 | 1014 indented line. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1015 \\[f90-indent-subprogram] indents the current subprogram. |
10612 | 1016 |
1017 Type `? or `\\[help-command] to display a list of built-in\ | |
1018 abbrevs for F90 keywords. | |
1019 | |
1020 Key definitions: | |
1021 \\{f90-mode-map} | |
1022 | |
1023 Variables controlling indentation style and extra features: | |
1024 | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1025 `f90-do-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1026 Extra indentation within do blocks (default 3). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1027 `f90-if-indent' |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1028 Extra indentation within if/select/where/forall blocks (default 3). |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1029 `f90-type-indent' |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1030 Extra indentation within type/enum/interface/block-data blocks (default 3). |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1031 `f90-program-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1032 Extra indentation within program/module/subroutine/function blocks |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1033 (default 2). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1034 `f90-continuation-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1035 Extra indentation applied to continuation lines (default 5). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1036 `f90-comment-region' |
45076 | 1037 String inserted by function \\[f90-comment-region] at start of each |
1038 line in region (default \"!!!$\"). | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1039 `f90-indented-comment-re' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1040 Regexp determining the type of comment to be intended like code |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1041 (default \"!\"). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1042 `f90-directive-comment-re' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1043 Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1044 (default \"!hpf\\\\$\"). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1045 `f90-break-delimiters' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1046 Regexp holding list of delimiters at which lines may be broken |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1047 (default \"[-+*/><=,% \\t]\"). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1048 `f90-break-before-delimiters' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1049 Non-nil causes `f90-do-auto-fill' to break lines before delimiters |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1050 (default t). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1051 `f90-beginning-ampersand' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1052 Automatic insertion of \& at beginning of continuation lines (default t). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1053 `f90-smart-end' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1054 From an END statement, check and fill the end using matching block start. |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1055 Allowed values are 'blink, 'no-blink, and nil, which determine |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1056 whether to blink the matching beginning (default 'blink). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1057 `f90-auto-keyword-case' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1058 Automatic change of case of keywords (default nil). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1059 The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word. |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1060 `f90-leave-line-no' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1061 Do not left-justify line numbers (default nil). |
10612 | 1062 |
1063 Turning on F90 mode calls the value of the variable `f90-mode-hook' | |
1064 with no args, if that value is non-nil." | |
1065 (interactive) | |
1066 (kill-all-local-variables) | |
45076 | 1067 (setq major-mode 'f90-mode |
1068 mode-name "F90" | |
1069 local-abbrev-table f90-mode-abbrev-table) | |
10612 | 1070 (set-syntax-table f90-mode-syntax-table) |
1071 (use-local-map f90-mode-map) | |
45076 | 1072 (set (make-local-variable 'indent-line-function) 'f90-indent-line) |
1073 (set (make-local-variable 'indent-region-function) 'f90-indent-region) | |
59243
d4561cc8329d
(f90-mode): Use mode-require-final-newline.
Richard M. Stallman <rms@gnu.org>
parents:
58482
diff
changeset
|
1074 (set (make-local-variable 'require-final-newline) mode-require-final-newline) |
45076 | 1075 (set (make-local-variable 'comment-start) "!") |
1076 (set (make-local-variable 'comment-start-skip) "!+ *") | |
1077 (set (make-local-variable 'comment-indent-function) 'f90-comment-indent) | |
1078 (set (make-local-variable 'abbrev-all-caps) t) | |
1079 (set (make-local-variable 'normal-auto-fill-function) 'f90-do-auto-fill) | |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
1080 (setq indent-tabs-mode nil) ; auto buffer local |
45076 | 1081 (set (make-local-variable 'font-lock-defaults) |
1082 '((f90-font-lock-keywords f90-font-lock-keywords-1 | |
1083 f90-font-lock-keywords-2 | |
1084 f90-font-lock-keywords-3 | |
1085 f90-font-lock-keywords-4) | |
1086 nil t)) | |
23997 | 1087 (set (make-local-variable 'imenu-case-fold-search) t) |
45076 | 1088 (set (make-local-variable 'imenu-generic-expression) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1089 f90-imenu-generic-expression) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1090 (set (make-local-variable 'beginning-of-defun-function) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1091 'f90-beginning-of-subprogram) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1092 (set (make-local-variable 'end-of-defun-function) 'f90-end-of-subprogram) |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1093 (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
|
1094 #'f90-current-defun) |
62772
f2892faa87d4
* progmodes/ada-mode.el (ada-mode):
Lute Kamstra <lute@gnu.org>
parents:
61810
diff
changeset
|
1095 (run-mode-hooks 'f90-mode-hook)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1096 |
10612 | 1097 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1098 ;; Inline-functions. |
10612 | 1099 (defsubst f90-in-string () |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1100 "Return non-nil if point is inside a string. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1101 Checks from `point-min', or `f90-cache-position', if that is non-nil |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1102 and lies before point." |
10612 | 1103 (let ((beg-pnt |
85535 | 1104 (if (and f90-cache-position (> (point) f90-cache-position)) |
1105 f90-cache-position | |
1106 (point-min)))) | |
10612 | 1107 (nth 3 (parse-partial-sexp beg-pnt (point))))) |
44997 | 1108 |
10612 | 1109 (defsubst f90-in-comment () |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1110 "Return non-nil if point is inside a comment. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1111 Checks from `point-min', or `f90-cache-position', if that is non-nil |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1112 and lies before point." |
10612 | 1113 (let ((beg-pnt |
85535 | 1114 (if (and f90-cache-position (> (point) f90-cache-position)) |
1115 f90-cache-position | |
1116 (point-min)))) | |
10612 | 1117 (nth 4 (parse-partial-sexp beg-pnt (point))))) |
1118 | |
1119 (defsubst f90-line-continued () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1120 "Return t if the current line is a continued one. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1121 This includes comment lines embedded in continued lines, but |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1122 not the last line of a continued statement." |
10612 | 1123 (save-excursion |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1124 (beginning-of-line) |
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1125 (while (and (looking-at "[ \t]*\\(!\\|$\\)") (zerop (forward-line -1)))) |
45076 | 1126 (end-of-line) |
1127 (while (f90-in-comment) | |
1128 (search-backward "!" (line-beginning-position)) | |
1129 (skip-chars-backward "!")) | |
1130 (skip-chars-backward " \t") | |
1131 (= (preceding-char) ?&))) | |
10612 | 1132 |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1133 ;; GM this is not right, eg a continuation line starting with a number. |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1134 ;; Need f90-code-start-position function. |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1135 ;; And yet, things seems to work with this... |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1136 ;; cf f90-indent-line |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1137 ;; (beginning-of-line) ; digits after & \n are not line-nos |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1138 ;; (if (not (save-excursion (and (f90-previous-statement) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1139 ;; (f90-line-continued)))) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1140 ;; (f90-indent-line-no) |
10612 | 1141 (defsubst f90-current-indentation () |
1142 "Return indentation of current line. | |
1143 Line-numbers are considered whitespace characters." | |
45076 | 1144 (save-excursion (beginning-of-line) (skip-chars-forward " \t0-9"))) |
10612 | 1145 |
1146 (defsubst f90-indent-to (col &optional no-line-number) | |
1147 "Indent current line to column COL. | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1148 If optional argument NO-LINE-NUMBER is nil, jump over a possible |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1149 line-number before indenting." |
10612 | 1150 (beginning-of-line) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1151 (or no-line-number |
10612 | 1152 (skip-chars-forward " \t0-9")) |
1153 (delete-horizontal-space) | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1154 ;; Leave >= 1 space after line number. |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1155 (indent-to col (if (zerop (current-column)) 0 1))) |
10612 | 1156 |
1157 (defsubst f90-get-present-comment-type () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1158 "If point lies within a comment, return the string starting the comment. |
55250
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1159 For example, \"!\" or \"!!\", followed by the appropriate amount of |
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1160 whitespace, if any." |
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1161 ;; Include the whitespace for consistent auto-filling of comment blocks. |
10612 | 1162 (save-excursion |
45076 | 1163 (when (f90-in-comment) |
1164 (beginning-of-line) | |
55250
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1165 (re-search-forward "!+[ \t]*" (line-end-position)) |
45076 | 1166 (while (f90-in-string) |
55250
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1167 (re-search-forward "!+[ \t]*" (line-end-position))) |
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1168 (match-string-no-properties 0)))) |
10612 | 1169 |
1170 (defsubst f90-equal-symbols (a b) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1171 "Compare strings A and B neglecting case and allowing for nil value." |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1172 (equal (if a (downcase a) nil) |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1173 (if b (downcase b) nil))) |
10612 | 1174 |
1175 (defsubst f90-looking-at-do () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1176 "Return (\"do\" NAME) if a do statement starts after point. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1177 NAME is nil if the statement has no label." |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1178 (if (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\\(do\\)\\>") |
50616
2e4300c14e95
(f90-looking-at-do, f90-find-breakpoint): Fix previous change.
Glenn Morris <rgm@gnu.org>
parents:
50610
diff
changeset
|
1179 (list (match-string 3) (match-string 2)))) |
13064 | 1180 |
1181 (defsubst f90-looking-at-select-case () | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1182 "Return (\"select\" NAME) if a select statement starts after point. |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1183 NAME is nil if the statement has no label." |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1184 (if (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\ |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1185 \\(select\\)[ \t]*\\(case\\|type\\)[ \t]*(") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1186 (list (match-string 3) (match-string 2)))) |
10612 | 1187 |
1188 (defsubst f90-looking-at-if-then () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1189 "Return (\"if\" NAME) if an if () then statement starts after point. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1190 NAME is nil if the statement has no label." |
10612 | 1191 (save-excursion |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1192 (when (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\\(if\\)\\>") |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1193 (let ((struct (match-string 3)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1194 (label (match-string 2)) |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1195 (pos (scan-lists (point) 1 0))) |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1196 (and pos (goto-char pos)) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1197 (skip-chars-forward " \t") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1198 (if (or (looking-at "then\\>") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1199 (when (f90-line-continued) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1200 (f90-next-statement) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1201 (skip-chars-forward " \t0-9&") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1202 (looking-at "then\\>"))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1203 (list struct label)))))) |
10612 | 1204 |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1205 ;; FIXME label? |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1206 (defsubst f90-looking-at-associate () |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1207 "Return (\"associate\") if an associate block starts after point." |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1208 (if (looking-at "\\<\\(associate\\)[ \t]*(") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1209 (list (match-string 1)))) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1210 |
45434
1c0762514eaa
(f90-looking-at-where-or-forall): Oops, defsubst, not defun.
Glenn Morris <rgm@gnu.org>
parents:
45379
diff
changeset
|
1211 (defsubst f90-looking-at-where-or-forall () |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1212 "Return (KIND NAME) if a where or forall block starts after point. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1213 NAME is nil if the statement has no label." |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1214 (save-excursion |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1215 (when (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\ |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1216 \\(where\\|forall\\)\\>") |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1217 (let ((struct (match-string 3)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1218 (label (match-string 2)) |
45377
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1219 (pos (scan-lists (point) 1 0))) |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1220 (and pos (goto-char pos)) |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1221 (skip-chars-forward " \t") |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
1222 (if (looking-at "\\(!\\|$\\)") (list struct label)))))) |
10612 | 1223 |
1224 (defsubst f90-looking-at-type-like () | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1225 "Return (KIND NAME) if a type/enum/interface/block-data starts after point. |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1226 NAME is non-nil only for type." |
44997 | 1227 (cond |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1228 ((save-excursion |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1229 (and (looking-at "\\<type[ \t]*") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1230 (goto-char (match-end 0)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1231 (not (looking-at "\\(is\\>\\|(\\)")) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1232 (or (looking-at "\\(\\sw+\\)") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1233 (re-search-forward "[ \t]*::[ \t]*\\(\\sw+\\)" |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1234 (line-end-position) t)))) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1235 (list "type" (match-string 1))) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1236 ;;; ((and (not (looking-at f90-typeis-re)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1237 ;;; (looking-at f90-type-def-re)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1238 ;;; (list (match-string 1) (match-string 2))) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1239 ((looking-at "\\(enum\\|interface\\|block[ \t]*data\\)\\>") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1240 (list (match-string 1) nil)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1241 ((looking-at "abstract[ \t]*\\(interface\\)\\>") |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1242 (list (match-string 1) nil)))) |
10612 | 1243 |
1244 (defsubst f90-looking-at-program-block-start () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1245 "Return (KIND NAME) if a program block with name NAME starts after point." |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1246 ;;;NAME is nil for an un-named main PROGRAM block." |
10612 | 1247 (cond |
13064 | 1248 ((looking-at "\\(program\\)[ \t]+\\(\\sw+\\)\\>") |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1249 (list (match-string 1) (match-string 2))) |
10612 | 1250 ((and (not (looking-at "module[ \t]*procedure\\>")) |
85535 | 1251 (looking-at "\\(module\\)[ \t]+\\(\\sw+\\)\\>")) |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1252 (list (match-string 1) (match-string 2))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1253 ((and (not (looking-at "end[ \t]*\\(function\\|subroutine\\)")) |
85535 | 1254 (looking-at "[^!'\"\&\n]*\\(function\\|subroutine\\)[ \t]+\ |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1255 \\(\\sw+\\)")) |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1256 (list (match-string 1) (match-string 2))))) |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1257 ;; Following will match an un-named main program block; however |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1258 ;; one needs to check if there is an actual PROGRAM statement after |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1259 ;; point (and before any END program). Adding this will require |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1260 ;; change to eg f90-calculate-indent. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1261 ;;; ((save-excursion |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1262 ;;; (not (f90-previous-statement))) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1263 ;;; '("program" nil)))) |
10612 | 1264 |
1265 (defsubst f90-looking-at-program-block-end () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1266 "Return (KIND NAME) if a block with name NAME ends after point." |
44997 | 1267 (if (looking-at (concat "end[ \t]*" f90-blocks-re |
85535 | 1268 "?\\([ \t]+\\(\\sw+\\)\\)?\\>")) |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1269 (list (match-string 1) (match-string 3)))) |
10612 | 1270 |
1271 (defsubst f90-comment-indent () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1272 "Return the indentation to be used for a comment starting at point. |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1273 Used for `comment-indent-function' by F90 mode. |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1274 \"!!!\", `f90-directive-comment-re', variable `f90-comment-region' return 0. |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1275 `f90-indented-comment-re' (if not trailing code) calls `f90-calculate-indent'. |
45372
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1276 All others return `comment-column', leaving at least one space after code." |
10612 | 1277 (cond ((looking-at "!!!") 0) |
85535 | 1278 ((and f90-directive-comment-re |
1279 (looking-at f90-directive-comment-re)) 0) | |
1280 ((looking-at (regexp-quote f90-comment-region)) 0) | |
1281 ((and (looking-at f90-indented-comment-re) | |
1282 ;; Don't attempt to indent trailing comment as code. | |
1283 (save-excursion | |
1284 (skip-chars-backward " \t") | |
1285 (bolp))) | |
1286 (f90-calculate-indent)) | |
1287 (t (save-excursion | |
74133
2942fb5a1900
(f90-comment-indent): Do not move point in default case.
Glenn Morris <rgm@gnu.org>
parents:
73870
diff
changeset
|
1288 (skip-chars-backward " \t") |
2942fb5a1900
(f90-comment-indent): Do not move point in default case.
Glenn Morris <rgm@gnu.org>
parents:
73870
diff
changeset
|
1289 (max (if (bolp) 0 (1+ (current-column))) comment-column))))) |
10612 | 1290 |
1291 (defsubst f90-present-statement-cont () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1292 "Return continuation properties of present statement. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1293 Possible return values are: |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1294 single - statement is not continued. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1295 begin - current line is the first in a continued statement. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1296 end - current line is the last in a continued statement |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1297 middle - current line is neither first nor last in a continued statement. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1298 Comment lines embedded amongst continued lines return 'middle." |
10612 | 1299 (let (pcont cont) |
1300 (save-excursion | |
45076 | 1301 (setq pcont (if (f90-previous-statement) (f90-line-continued)))) |
10612 | 1302 (setq cont (f90-line-continued)) |
1303 (cond ((and (not pcont) (not cont)) 'single) | |
85535 | 1304 ((and (not pcont) cont) 'begin) |
1305 ((and pcont (not cont)) 'end) | |
1306 ((and pcont cont) 'middle) | |
1307 (t (error "The impossible occurred"))))) | |
10612 | 1308 |
1309 (defsubst f90-indent-line-no () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1310 "If `f90-leave-line-no' is nil, left-justify a line number. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1311 Leaves point at the first non-blank character after the line number. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1312 Call from beginning of line." |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1313 (and (null f90-leave-line-no) (looking-at "[ \t]+[0-9]") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1314 (delete-horizontal-space)) |
10612 | 1315 (skip-chars-forward " \t0-9")) |
1316 | |
1317 (defsubst f90-no-block-limit () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1318 "Return nil if point is at the edge of a code block. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1319 Searches line forward for \"function\" or \"subroutine\", |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1320 if all else fails." |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1321 (save-excursion |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1322 (not (or (looking-at "end") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1323 (looking-at "\\(do\\|if\\|else\\(if\\|where\\)?\ |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1324 \\|select[ \t]*\\(case\\|type\\)\\|case\\|where\\|forall\\)\\>") |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1325 (looking-at "\\(program\\|module\\|\ |
85617
4cbfa6e02bcd
(f90-keywords-re, f90-keywords-level-3-re): Add `non_intrinsic'.
Glenn Morris <rgm@gnu.org>
parents:
85578
diff
changeset
|
1326 \\(?:abstract[ \t]*\\)?interface\\|block[ \t]*data\\)\\>") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1327 (looking-at "\\(contains\\|\\sw+[ \t]*:\\)") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1328 (looking-at f90-type-def-re) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1329 (re-search-forward "\\(function\\|subroutine\\)" |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1330 (line-end-position) t))))) |
10612 | 1331 |
1332 (defsubst f90-update-line () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1333 "Change case of current line as per `f90-auto-keyword-case'." |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1334 (if f90-auto-keyword-case |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1335 (f90-change-keywords f90-auto-keyword-case |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1336 (line-beginning-position) (line-end-position)))) |
10612 | 1337 |
61461
7924ec3eef18
(f90-electric-insert): Add optional prefix arg, and pass to
Glenn Morris <rgm@gnu.org>
parents:
61106
diff
changeset
|
1338 (defun f90-electric-insert (&optional arg) |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1339 "Change keyword case and auto-fill line as operators are inserted." |
61461
7924ec3eef18
(f90-electric-insert): Add optional prefix arg, and pass to
Glenn Morris <rgm@gnu.org>
parents:
61106
diff
changeset
|
1340 (interactive "*p") |
7924ec3eef18
(f90-electric-insert): Add optional prefix arg, and pass to
Glenn Morris <rgm@gnu.org>
parents:
61106
diff
changeset
|
1341 (self-insert-command arg) |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1342 (if auto-fill-function (f90-do-auto-fill) ; also updates line |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1343 (f90-update-line))) |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1344 |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1345 |
10612 | 1346 (defun f90-get-correct-indent () |
1347 "Get correct indent for a line starting with line number. | |
1348 Does not check type and subprogram indentation." | |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1349 (let ((epnt (line-end-position)) icol cont) |
10612 | 1350 (save-excursion |
1351 (while (and (f90-previous-statement) | |
85535 | 1352 (or (progn |
1353 (setq cont (f90-present-statement-cont)) | |
1354 (or (eq cont 'end) (eq cont 'middle))) | |
1355 (looking-at "[ \t]*[0-9]")))) | |
10612 | 1356 (setq icol (current-indentation)) |
1357 (beginning-of-line) | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1358 (when (re-search-forward "\\(if\\|do\\|select\\|where\\|forall\\)" |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1359 (line-end-position) t) |
45076 | 1360 (beginning-of-line) |
1361 (skip-chars-forward " \t") | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1362 (cond ((f90-looking-at-do) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1363 (setq icol (+ icol f90-do-indent))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1364 ((or (f90-looking-at-if-then) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1365 (f90-looking-at-where-or-forall) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1366 (f90-looking-at-select-case)) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1367 (setq icol (+ icol f90-if-indent))) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1368 ((f90-looking-at-associate) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1369 (setq icol (+ icol f90-associate-indent)))) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1370 (end-of-line)) |
10612 | 1371 (while (re-search-forward |
85535 | 1372 "\\(if\\|do\\|select\\|where\\|forall\\)" epnt t) |
1373 (beginning-of-line) | |
45076 | 1374 (skip-chars-forward " \t0-9") |
85535 | 1375 (cond ((f90-looking-at-do) |
45076 | 1376 (setq icol (+ icol f90-do-indent))) |
1377 ((or (f90-looking-at-if-then) | |
1378 (f90-looking-at-where-or-forall) | |
1379 (f90-looking-at-select-case)) | |
1380 (setq icol (+ icol f90-if-indent))) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1381 ((f90-looking-at-associate) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1382 (setq icol (+ icol f90-associate-indent))) |
45076 | 1383 ((looking-at f90-end-if-re) |
1384 (setq icol (- icol f90-if-indent))) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1385 ((looking-at f90-end-associate-re) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1386 (setq icol (- icol f90-associate-indent))) |
45076 | 1387 ((looking-at "end[ \t]*do\\>") |
1388 (setq icol (- icol f90-do-indent)))) | |
85535 | 1389 (end-of-line)) |
10612 | 1390 icol))) |
44997 | 1391 |
10612 | 1392 (defun f90-calculate-indent () |
1393 "Calculate the indent column based on previous statements." | |
1394 (interactive) | |
1395 (let (icol cont (case-fold-search t) (pnt (point))) | |
1396 (save-excursion | |
1397 (if (not (f90-previous-statement)) | |
61810
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1398 ;; If f90-previous-statement returns nil, we must have been |
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1399 ;; called from on or before the first line of the first statement. |
85535 | 1400 (setq icol (if (save-excursion |
61810
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1401 ;; f90-previous-statement has moved us over |
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1402 ;; comment/blank lines, so we need to get |
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1403 ;; back to the first code statement. |
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1404 (when (looking-at "[ \t]*\\([!#]\\|$\\)") |
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1405 (f90-next-statement)) |
ab4b241ac836
(f90-calculate-indent): Fix treatment of first statement in buffer
Glenn Morris <rgm@gnu.org>
parents:
61461
diff
changeset
|
1406 (skip-chars-forward " \t0-9") |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1407 (f90-looking-at-program-block-start)) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1408 0 |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1409 ;; No explicit PROGRAM start statement. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1410 f90-program-indent)) |
85535 | 1411 (setq cont (f90-present-statement-cont)) |
1412 (if (eq cont 'end) | |
1413 (while (not (eq 'begin (f90-present-statement-cont))) | |
1414 (f90-previous-statement))) | |
1415 (cond ((eq cont 'begin) | |
1416 (setq icol (+ (f90-current-indentation) | |
1417 f90-continuation-indent))) | |
1418 ((eq cont 'middle) (setq icol (current-indentation))) | |
1419 (t (setq icol (f90-current-indentation)) | |
1420 (skip-chars-forward " \t") | |
1421 (if (looking-at "[0-9]") | |
1422 (setq icol (f90-get-correct-indent)) | |
1423 (cond ((or (f90-looking-at-if-then) | |
1424 (f90-looking-at-where-or-forall) | |
1425 (f90-looking-at-select-case) | |
1426 (looking-at f90-else-like-re)) | |
1427 (setq icol (+ icol f90-if-indent))) | |
1428 ((f90-looking-at-do) | |
1429 (setq icol (+ icol f90-do-indent))) | |
1430 ((f90-looking-at-type-like) | |
1431 (setq icol (+ icol f90-type-indent))) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1432 ((f90-looking-at-associate) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1433 (setq icol (+ icol f90-associate-indent))) |
85535 | 1434 ((or (f90-looking-at-program-block-start) |
1435 (looking-at "contains[ \t]*\\($\\|!\\)")) | |
1436 (setq icol (+ icol f90-program-indent))))) | |
1437 (goto-char pnt) | |
1438 (beginning-of-line) | |
1439 (cond ((looking-at "[ \t]*$")) | |
1440 ((looking-at "[ \t]*#") ; check for cpp directive | |
1441 (setq icol 0)) | |
1442 (t | |
1443 (skip-chars-forward " \t0-9") | |
1444 (cond ((or (looking-at f90-else-like-re) | |
1445 (looking-at f90-end-if-re)) | |
1446 (setq icol (- icol f90-if-indent))) | |
1447 ((looking-at "end[ \t]*do\\>") | |
1448 (setq icol (- icol f90-do-indent))) | |
1449 ((looking-at f90-end-type-re) | |
1450 (setq icol (- icol f90-type-indent))) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1451 ((looking-at f90-end-associate-re) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1452 (setq icol (- icol f90-associate-indent))) |
85535 | 1453 ((or (looking-at "contains[ \t]*\\(!\\|$\\)") |
1454 (f90-looking-at-program-block-end)) | |
1455 (setq icol (- icol f90-program-indent)))))) | |
1456 )))) | |
10612 | 1457 icol)) |
1458 | |
1459 (defun f90-previous-statement () | |
1460 "Move point to beginning of the previous F90 statement. | |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1461 If no previous statement is found (i.e. if called from the first |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1462 statement in the buffer), move to the start of the buffer and |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1463 return nil. A statement is a line which is neither blank nor a |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1464 comment." |
10612 | 1465 (interactive) |
1466 (let (not-first-statement) | |
1467 (beginning-of-line) | |
1468 (while (and (setq not-first-statement (zerop (forward-line -1))) | |
85535 | 1469 (looking-at "[ \t0-9]*\\(!\\|$\\|#\\)"))) |
10612 | 1470 not-first-statement)) |
1471 | |
1472 (defun f90-next-statement () | |
1473 "Move point to beginning of the next F90 statement. | |
1474 Return nil if no later statement is found." | |
1475 (interactive) | |
1476 (let (not-last-statement) | |
1477 (beginning-of-line) | |
1478 (while (and (setq not-last-statement | |
85535 | 1479 (and (zerop (forward-line 1)) |
1480 (not (eobp)))) | |
1481 (looking-at "[ \t0-9]*\\(!\\|$\\)"))) | |
10612 | 1482 not-last-statement)) |
1483 | |
1484 (defun f90-beginning-of-subprogram () | |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1485 "Move point to the beginning of the current subprogram. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1486 Return (TYPE NAME), or nil if not found." |
10612 | 1487 (interactive) |
1488 (let ((count 1) (case-fold-search t) matching-beg) | |
45076 | 1489 (beginning-of-line) |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1490 (while (and (> count 0) |
85535 | 1491 (re-search-backward f90-program-block-re nil 'move)) |
45076 | 1492 (beginning-of-line) |
1493 (skip-chars-forward " \t0-9") | |
1494 (cond ((setq matching-beg (f90-looking-at-program-block-start)) | |
1495 (setq count (1- count))) | |
1496 ((f90-looking-at-program-block-end) | |
1497 (setq count (1+ count))))) | |
10612 | 1498 (beginning-of-line) |
1499 (if (zerop count) | |
85535 | 1500 matching-beg |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1501 ;; Note this includes the case of an un-named main program, |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1502 ;; in which case we go to (point-min). |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1503 (message "No beginning found.") |
10612 | 1504 nil))) |
1505 | |
1506 (defun f90-end-of-subprogram () | |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1507 "Move point to the end of the current subprogram. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1508 Return (TYPE NAME), or nil if not found." |
10612 | 1509 (interactive) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1510 (let ((case-fold-search t) |
85699
f240b732dbe0
(f90-font-lock-keywords-1): Revert change merged in from EMACS_22 branch.
Glenn Morris <rgm@gnu.org>
parents:
85688
diff
changeset
|
1511 (count 1) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1512 matching-end) |
10612 | 1513 (end-of-line) |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1514 (while (and (> count 0) |
85535 | 1515 (re-search-forward f90-program-block-re nil 'move)) |
45076 | 1516 (beginning-of-line) |
1517 (skip-chars-forward " \t0-9") | |
10612 | 1518 (cond ((f90-looking-at-program-block-start) |
85535 | 1519 (setq count (1+ count))) |
1520 ((setq matching-end (f90-looking-at-program-block-end)) | |
1521 (setq count (1- count)))) | |
10612 | 1522 (end-of-line)) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1523 ;; This means f90-end-of-subprogram followed by f90-start-of-subprogram |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1524 ;; has a net non-zero effect, which seems odd. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1525 ;;; (forward-line 1) |
10612 | 1526 (if (zerop count) |
85535 | 1527 matching-end |
10612 | 1528 (message "No end found.") |
1529 nil))) | |
1530 | |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1531 |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1532 (defun f90-end-of-block (&optional num) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1533 "Move point forward to the end of the current code block. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1534 With optional argument NUM, go forward that many balanced blocks. |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1535 If NUM is negative, go backward to the start of a block. Checks |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1536 for consistency of block types and labels (if present), and |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1537 completes outermost block if `f90-smart-end' is non-nil. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1538 Interactively, pushes mark before moving point." |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1539 (interactive "p") |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1540 (if (interactive-p) (push-mark (point) t)) ; can move some distance |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1541 (and num (< num 0) (f90-beginning-of-block (- num))) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1542 (let ((f90-smart-end (if f90-smart-end 'no-blink)) ; for final match-end |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1543 (case-fold-search t) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1544 (count (or num 1)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1545 start-list start-this start-type start-label end-type end-label) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1546 (end-of-line) ; probably want this |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1547 (while (and (> count 0) (re-search-forward f90-blocks-re nil 'move)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1548 (beginning-of-line) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1549 (skip-chars-forward " \t0-9") |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1550 (cond ((or (f90-in-string) (f90-in-comment))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1551 ((setq start-this |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1552 (or |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1553 (f90-looking-at-do) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1554 (f90-looking-at-select-case) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1555 (f90-looking-at-type-like) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1556 (f90-looking-at-associate) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1557 (f90-looking-at-program-block-start) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1558 (f90-looking-at-if-then) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1559 (f90-looking-at-where-or-forall))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1560 (setq start-list (cons start-this start-list) ; not add-to-list! |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1561 count (1+ count))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1562 ((looking-at (concat "end[ \t]*" f90-blocks-re |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1563 "[ \t]*\\(\\sw+\\)?")) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1564 (setq end-type (match-string 1) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1565 end-label (match-string 2) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1566 count (1- count)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1567 ;; Check any internal blocks. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1568 (when start-list |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1569 (setq start-this (car start-list) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1570 start-list (cdr start-list) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1571 start-type (car start-this) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1572 start-label (cadr start-this)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1573 (or (f90-equal-symbols start-type end-type) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1574 (error "End type `%s' does not match start type `%s'" |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1575 end-type start-type)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1576 (or (f90-equal-symbols start-label end-label) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1577 (error "End label `%s' does not match start label `%s'" |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1578 end-label start-label))))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1579 (end-of-line)) |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1580 (if (> count 0) (error "Missing block end")) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1581 ;; Check outermost block. |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1582 (when f90-smart-end |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1583 (save-excursion |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1584 (beginning-of-line) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1585 (skip-chars-forward " \t0-9") |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1586 (f90-match-end))))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1587 |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1588 (defun f90-beginning-of-block (&optional num) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1589 "Move point backwards to the start of the current code block. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1590 With optional argument NUM, go backward that many balanced blocks. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1591 If NUM is negative, go forward to the end of a block. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1592 Checks for consistency of block types and labels (if present). |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1593 Does not check the outermost block, because it may be incomplete. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1594 Interactively, pushes mark before moving point." |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1595 (interactive "p") |
61106
888d43e15dfd
(f90-end-block-re, f90-start-block-re): Doc fix. Tweak regexp.
Glenn Morris <rgm@gnu.org>
parents:
59243
diff
changeset
|
1596 (if (interactive-p) (push-mark (point) t)) |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1597 (and num (< num 0) (f90-end-of-block (- num))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1598 (let ((case-fold-search t) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1599 (count (or num 1)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1600 end-list end-this end-type end-label |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1601 start-this start-type start-label) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1602 (beginning-of-line) ; probably want this |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1603 (while (and (> count 0) (re-search-backward f90-blocks-re nil 'move)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1604 (beginning-of-line) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1605 (skip-chars-forward " \t0-9") |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1606 (cond ((or (f90-in-string) (f90-in-comment))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1607 ((looking-at (concat "end[ \t]*" f90-blocks-re |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1608 "[ \t]*\\(\\sw+\\)?")) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1609 (setq end-list (cons (list (match-string 1) (match-string 2)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1610 end-list) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1611 count (1+ count))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1612 ((setq start-this |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1613 (or |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1614 (f90-looking-at-do) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1615 (f90-looking-at-select-case) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1616 (f90-looking-at-type-like) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1617 (f90-looking-at-associate) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1618 (f90-looking-at-program-block-start) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1619 (f90-looking-at-if-then) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1620 (f90-looking-at-where-or-forall))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1621 (setq start-type (car start-this) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1622 start-label (cadr start-this) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1623 count (1- count)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1624 ;; Check any internal blocks. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1625 (when end-list |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1626 (setq end-this (car end-list) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1627 end-list (cdr end-list) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1628 end-type (car end-this) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1629 end-label (cadr end-this)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1630 (or (f90-equal-symbols start-type end-type) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1631 (error "Start type `%s' does not match end type `%s'" |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1632 start-type end-type)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1633 (or (f90-equal-symbols start-label end-label) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1634 (error "Start label `%s' does not match end label `%s'" |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1635 start-label end-label)))))) |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1636 ;; Includes an un-named main program block. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1637 (if (> count 0) (error "Missing block start")))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1638 |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1639 (defun f90-next-block (&optional num) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1640 "Move point forward to the next end or start of a code block. |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1641 With optional argument NUM, go forward that many blocks. |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1642 If NUM is negative, go backwards. |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1643 A block is a subroutine, if-endif, etc." |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1644 (interactive "p") |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1645 (let ((case-fold-search t) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1646 (count (if num (abs num) 1))) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1647 (while (and (> count 0) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1648 (if (> num 0) (re-search-forward f90-blocks-re nil 'move) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1649 (re-search-backward f90-blocks-re nil 'move))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1650 (beginning-of-line) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1651 (skip-chars-forward " \t0-9") |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1652 (cond ((or (f90-in-string) (f90-in-comment))) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1653 ((or |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1654 (looking-at "end[ \t]*") |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1655 (f90-looking-at-do) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1656 (f90-looking-at-select-case) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1657 (f90-looking-at-type-like) |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1658 (f90-looking-at-associate) |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1659 (f90-looking-at-program-block-start) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1660 (f90-looking-at-if-then) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1661 (f90-looking-at-where-or-forall)) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1662 (setq count (1- count)))) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1663 (if (> num 0) (end-of-line) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1664 (beginning-of-line))))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1665 |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1666 |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1667 (defun f90-previous-block (&optional num) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1668 "Move point backward to the previous end or start of a code block. |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1669 With optional argument NUM, go backward that many blocks. |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1670 If NUM is negative, go forwards. |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1671 A block is a subroutine, if-endif, etc." |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1672 (interactive "p") |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1673 (f90-next-block (- (or num 1)))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1674 |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1675 |
10612 | 1676 (defun f90-mark-subprogram () |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1677 "Put mark at end of F90 subprogram, point at beginning, push mark." |
10612 | 1678 (interactive) |
1679 (let ((pos (point)) program) | |
1680 (f90-end-of-subprogram) | |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
1681 (push-mark) |
10612 | 1682 (goto-char pos) |
1683 (setq program (f90-beginning-of-subprogram)) | |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
1684 (if (featurep 'xemacs) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
1685 (zmacs-activate-region) |
44942
972dc81abf82
(f90-xemacs-flag): New variable to put the test for Emacs flavor in one
Glenn Morris <rgm@gnu.org>
parents:
44866
diff
changeset
|
1686 (setq mark-active t |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
1687 deactivate-mark nil)) |
10612 | 1688 program)) |
1689 | |
1690 (defun f90-comment-region (beg-region end-region) | |
1691 "Comment/uncomment every line in the region. | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1692 Insert the variable `f90-comment-region' at the start of every line |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1693 in the region, or, if already present, remove it." |
10612 | 1694 (interactive "*r") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1695 (let ((end (copy-marker end-region))) |
10612 | 1696 (goto-char beg-region) |
1697 (beginning-of-line) | |
1698 (if (looking-at (regexp-quote f90-comment-region)) | |
85535 | 1699 (delete-region (point) (match-end 0)) |
10612 | 1700 (insert f90-comment-region)) |
45076 | 1701 (while (and (zerop (forward-line 1)) |
85535 | 1702 (< (point) end)) |
10612 | 1703 (if (looking-at (regexp-quote f90-comment-region)) |
85535 | 1704 (delete-region (point) (match-end 0)) |
1705 (insert f90-comment-region))) | |
10612 | 1706 (set-marker end nil))) |
1707 | |
1708 (defun f90-indent-line (&optional no-update) | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1709 "Indent current line as F90 code. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1710 Unless optional argument NO-UPDATE is non-nil, call `f90-update-line' |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1711 after indenting." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1712 (interactive "*P") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1713 (let ((case-fold-search t) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1714 (pos (point-marker)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1715 indent no-line-number) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1716 (beginning-of-line) ; digits after & \n are not line-nos |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1717 (if (not (save-excursion (and (f90-previous-statement) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1718 (f90-line-continued)))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1719 (f90-indent-line-no) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1720 (setq no-line-number t) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1721 (skip-chars-forward " \t")) |
10612 | 1722 (if (looking-at "!") |
85535 | 1723 (setq indent (f90-comment-indent)) |
68723
d7669e5fe59f
Revert previous inadvertent check-in of local changes.
Glenn Morris <rgm@gnu.org>
parents:
68721
diff
changeset
|
1724 (and f90-smart-end (looking-at "end") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1725 (f90-match-end)) |
10612 | 1726 (setq indent (f90-calculate-indent))) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1727 (or (= indent (current-column)) |
45076 | 1728 (f90-indent-to indent no-line-number)) |
10612 | 1729 ;; If initial point was within line's indentation, |
1730 ;; position after the indentation. Else stay at same point in text. | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1731 (and (< (point) pos) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1732 (goto-char pos)) |
44997 | 1733 (if auto-fill-function |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1734 ;; GM NO-UPDATE not honoured, since this calls f90-update-line. |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1735 (f90-do-auto-fill) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1736 (or no-update (f90-update-line))) |
10612 | 1737 (set-marker pos nil))) |
1738 | |
1739 (defun f90-indent-new-line () | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1740 "Re-indent current line, insert a newline and indent the newline. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1741 An abbrev before point is expanded if the variable `abbrev-mode' is non-nil. |
10612 | 1742 If run in the middle of a line, the line is not broken." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1743 (interactive "*") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1744 (if abbrev-mode (expand-abbrev)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1745 (beginning-of-line) ; reindent where likely to be needed |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1746 (f90-indent-line) ; calls indent-line-no, update-line |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1747 (end-of-line) |
85535 | 1748 (delete-horizontal-space) ; destroy trailing whitespace |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1749 (let ((string (f90-in-string)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1750 (cont (f90-line-continued))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1751 (and string (not cont) (insert "&")) |
10612 | 1752 (newline) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1753 (if (or string (and cont f90-beginning-ampersand)) (insert "&"))) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1754 (f90-indent-line 'no-update)) ; nothing to update |
10612 | 1755 |
1756 | |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1757 ;; TODO not add spaces to empty lines at the start. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1758 ;; Why is second line getting extra indent over first? |
10612 | 1759 (defun f90-indent-region (beg-region end-region) |
1760 "Indent every line in region by forward parsing." | |
1761 (interactive "*r") | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1762 (let ((end-region-mark (copy-marker end-region)) |
45076 | 1763 (save-point (point-marker)) |
73870
c46f00343034
(f90-indent-region): Bind case-fold-search to t.
Glenn Morris <rgm@gnu.org>
parents:
68723
diff
changeset
|
1764 (case-fold-search t) |
85535 | 1765 block-list ind-lev ind-curr ind-b cont struct beg-struct end-struct) |
10612 | 1766 (goto-char beg-region) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1767 ;; First find a line which is not a continuation line or comment. |
10612 | 1768 (beginning-of-line) |
13064 | 1769 (while (and (looking-at "[ \t]*[0-9]*\\(!\\|#\\|[ \t]*$\\)") |
85535 | 1770 (progn (f90-indent-line 'no-update) |
1771 (zerop (forward-line 1))) | |
1772 (< (point) end-region-mark))) | |
10612 | 1773 (setq cont (f90-present-statement-cont)) |
1774 (while (and (or (eq cont 'middle) (eq cont 'end)) | |
85535 | 1775 (f90-previous-statement)) |
10612 | 1776 (setq cont (f90-present-statement-cont))) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1777 ;; Process present line for beginning of block. |
10612 | 1778 (setq f90-cache-position (point)) |
1779 (f90-indent-line 'no-update) | |
45076 | 1780 (setq ind-lev (f90-current-indentation) |
1781 ind-curr ind-lev) | |
1782 (beginning-of-line) | |
1783 (skip-chars-forward " \t0-9") | |
1784 (setq struct nil | |
1785 ind-b (cond ((setq struct (f90-looking-at-do)) f90-do-indent) | |
85535 | 1786 ((or (setq struct (f90-looking-at-if-then)) |
1787 (setq struct (f90-looking-at-select-case)) | |
1788 (setq struct (f90-looking-at-where-or-forall)) | |
1789 (looking-at f90-else-like-re)) | |
1790 f90-if-indent) | |
1791 ((setq struct (f90-looking-at-type-like)) | |
1792 f90-type-indent) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1793 ((setq struct (f90-looking-at-associate)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1794 f90-associate-indent) |
85535 | 1795 ((or (setq struct (f90-looking-at-program-block-start)) |
47178
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
1796 (looking-at "contains[ \t]*\\($\\|!\\)")) |
85535 | 1797 f90-program-indent))) |
10612 | 1798 (if ind-b (setq ind-lev (+ ind-lev ind-b))) |
1799 (if struct (setq block-list (cons struct block-list))) | |
1800 (while (and (f90-line-continued) (zerop (forward-line 1)) | |
85535 | 1801 (< (point) end-region-mark)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1802 (if (looking-at "[ \t]*!") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1803 (f90-indent-to (f90-comment-indent)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1804 (or (= (current-indentation) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1805 (+ ind-curr f90-continuation-indent)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1806 (f90-indent-to (+ ind-curr f90-continuation-indent) 'no-line-no)))) |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1807 ;; Process all following lines. |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1808 (while (and (zerop (forward-line 1)) (< (point) end-region-mark)) |
10612 | 1809 (beginning-of-line) |
1810 (f90-indent-line-no) | |
1811 (setq f90-cache-position (point)) | |
1812 (cond ((looking-at "[ \t]*$") (setq ind-curr 0)) | |
85535 | 1813 ((looking-at "[ \t]*#") (setq ind-curr 0)) |
1814 ((looking-at "!") (setq ind-curr (f90-comment-indent))) | |
1815 ((f90-no-block-limit) (setq ind-curr ind-lev)) | |
1816 ((looking-at f90-else-like-re) (setq ind-curr | |
1817 (- ind-lev f90-if-indent))) | |
1818 ((looking-at "contains[ \t]*\\($\\|!\\)") | |
1819 (setq ind-curr (- ind-lev f90-program-indent))) | |
1820 ((setq ind-b | |
1821 (cond ((setq struct (f90-looking-at-do)) f90-do-indent) | |
1822 ((or (setq struct (f90-looking-at-if-then)) | |
1823 (setq struct (f90-looking-at-select-case)) | |
1824 (setq struct (f90-looking-at-where-or-forall))) | |
1825 f90-if-indent) | |
1826 ((setq struct (f90-looking-at-type-like)) | |
1827 f90-type-indent) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1828 ((setq struct (f90-looking-at-associate)) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1829 f90-associate-indent) |
85535 | 1830 ((setq struct (f90-looking-at-program-block-start)) |
1831 f90-program-indent))) | |
1832 (setq ind-curr ind-lev) | |
1833 (if ind-b (setq ind-lev (+ ind-lev ind-b))) | |
1834 (setq block-list (cons struct block-list))) | |
1835 ((setq end-struct (f90-looking-at-program-block-end)) | |
1836 (setq beg-struct (car block-list) | |
1837 block-list (cdr block-list)) | |
1838 (if f90-smart-end | |
1839 (save-excursion | |
1840 (f90-block-match (car beg-struct) (car (cdr beg-struct)) | |
1841 (car end-struct) (car (cdr end-struct))))) | |
1842 (setq ind-b | |
1843 (cond ((looking-at f90-end-if-re) f90-if-indent) | |
1844 ((looking-at "end[ \t]*do\\>") f90-do-indent) | |
1845 ((looking-at f90-end-type-re) f90-type-indent) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1846 ((looking-at f90-end-associate-re) |
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
1847 f90-associate-indent) |
85535 | 1848 ((f90-looking-at-program-block-end) |
1849 f90-program-indent))) | |
1850 (if ind-b (setq ind-lev (- ind-lev ind-b))) | |
1851 (setq ind-curr ind-lev)) | |
1852 (t (setq ind-curr ind-lev))) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1853 ;; Do the indentation if necessary. |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1854 (or (= ind-curr (current-column)) |
85535 | 1855 (f90-indent-to ind-curr)) |
10612 | 1856 (while (and (f90-line-continued) (zerop (forward-line 1)) |
85535 | 1857 (< (point) end-region-mark)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1858 (if (looking-at "[ \t]*!") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1859 (f90-indent-to (f90-comment-indent)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1860 (or (= (current-indentation) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1861 (+ ind-curr f90-continuation-indent)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1862 (f90-indent-to |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1863 (+ ind-curr f90-continuation-indent) 'no-line-no))))) |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1864 ;; Restore point, etc. |
10612 | 1865 (setq f90-cache-position nil) |
1866 (goto-char save-point) | |
1867 (set-marker end-region-mark nil) | |
1868 (set-marker save-point nil) | |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
1869 (if (featurep 'xemacs) |
85535 | 1870 (zmacs-deactivate-region) |
10612 | 1871 (deactivate-mark)))) |
1872 | |
1873 (defun f90-indent-subprogram () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1874 "Properly indent the subprogram containing point." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1875 (interactive "*") |
10612 | 1876 (save-excursion |
45076 | 1877 (let ((program (f90-mark-subprogram))) |
10612 | 1878 (if program |
85535 | 1879 (progn |
1880 (message "Indenting %s %s..." | |
1881 (car program) (car (cdr program))) | |
1882 (indent-region (point) (mark) nil) | |
1883 (message "Indenting %s %s...done" | |
1884 (car program) (car (cdr program)))) | |
1885 (message "Indenting the whole file...") | |
1886 (indent-region (point) (mark) nil) | |
1887 (message "Indenting the whole file...done"))))) | |
10612 | 1888 |
1889 (defun f90-break-line (&optional no-update) | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1890 "Break line at point, insert continuation marker(s) and indent. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1891 Unless in a string or comment, or if the optional argument NO-UPDATE |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1892 is non-nil, call `f90-update-line' after inserting the continuation marker." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1893 (interactive "*P") |
45372
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1894 (cond ((f90-in-string) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1895 (insert "&\n&")) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1896 ((f90-in-comment) |
55250
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
1897 (delete-horizontal-space 'backwards) ; remove trailing whitespace |
45372
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1898 (insert "\n" (f90-get-present-comment-type))) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1899 (t (insert "&") |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1900 (or no-update (f90-update-line)) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1901 (newline 1) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1902 (if f90-beginning-ampersand (insert "&")))) |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
1903 (indent-according-to-mode)) |
44997 | 1904 |
10612 | 1905 (defun f90-find-breakpoint () |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1906 "From `fill-column', search backward for break-delimiter." |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1907 (re-search-backward f90-break-delimiters (line-beginning-position)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1908 (if (not f90-break-before-delimiters) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1909 (forward-char (if (looking-at f90-no-break-re) 2 1)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1910 (backward-char) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1911 (or (looking-at f90-no-break-re) |
50616
2e4300c14e95
(f90-looking-at-do, f90-find-breakpoint): Fix previous change.
Glenn Morris <rgm@gnu.org>
parents:
50610
diff
changeset
|
1912 (forward-char)))) |
10612 | 1913 |
1914 (defun f90-do-auto-fill () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1915 "Break line if non-white characters beyond `fill-column'. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1916 Update keyword case first." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1917 (interactive "*") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1918 ;; Break line before or after last delimiter (non-word char) if |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1919 ;; position is beyond fill-column. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1920 ;; Will not break **, //, or => (as 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
|
1921 (f90-update-line) |
45972
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1922 ;; Need this for `f90-electric-insert' and other f90- callers. |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1923 (unless (and (boundp 'comment-auto-fill-only-comments) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1924 comment-auto-fill-only-comments |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1925 (not (f90-in-comment))) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1926 (while (> (current-column) fill-column) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1927 (let ((pos-mark (point-marker))) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1928 (move-to-column fill-column) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1929 (or (f90-in-string) (f90-find-breakpoint)) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1930 (f90-break-line) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1931 (goto-char pos-mark) |
50b1541ec981
(f90-do-auto-fill): Make it respect `comment-auto-fill-only-comments'.
Glenn Morris <rgm@gnu.org>
parents:
45912
diff
changeset
|
1932 (set-marker pos-mark nil))))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1933 |
50571
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1934 (defun f90-join-lines (&optional arg) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1935 "Join current line to previous, fix whitespace, continuation, comments. |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1936 With optional argument ARG, join current line to following line. |
50571
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1937 Like `join-line', but handles F90 syntax." |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1938 (interactive "*P") |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1939 (beginning-of-line) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1940 (if arg (forward-line 1)) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1941 (when (eq (preceding-char) ?\n) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1942 (skip-chars-forward " \t") |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1943 (if (looking-at "\&") (delete-char 1)) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1944 (beginning-of-line) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1945 (delete-region (point) (1- (point))) |
10612 | 1946 (skip-chars-backward " \t") |
50571
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1947 (and (eq (preceding-char) ?&) (delete-char -1)) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1948 (and (f90-in-comment) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1949 (looking-at "[ \t]*!+") |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1950 (replace-match "")) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1951 (or (f90-in-string) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1952 (fixup-whitespace)))) |
10612 | 1953 |
1954 (defun f90-fill-region (beg-region end-region) | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1955 "Fill every line in region by forward parsing. Join lines if possible." |
10612 | 1956 (interactive "*r") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1957 (let ((end-region-mark (copy-marker end-region)) |
45076 | 1958 (go-on t) |
85535 | 1959 f90-smart-end f90-auto-keyword-case auto-fill-function) |
10612 | 1960 (goto-char beg-region) |
1961 (while go-on | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1962 ;; Join as much as possible. |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1963 (while (progn |
50571
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1964 (end-of-line) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1965 (skip-chars-backward " \t") |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1966 (eq (preceding-char) ?&)) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1967 (f90-join-lines 'forward)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1968 ;; Chop the line if necessary. |
10612 | 1969 (while (> (save-excursion (end-of-line) (current-column)) |
85535 | 1970 fill-column) |
1971 (move-to-column fill-column) | |
1972 (f90-find-breakpoint) | |
1973 (f90-break-line 'no-update)) | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1974 (setq go-on (and (< (point) end-region-mark) |
45076 | 1975 (zerop (forward-line 1))) |
1976 f90-cache-position (point))) | |
10612 | 1977 (setq f90-cache-position nil) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1978 (set-marker end-region-mark nil) |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87649
diff
changeset
|
1979 (if (featurep 'xemacs) |
85535 | 1980 (zmacs-deactivate-region) |
10612 | 1981 (deactivate-mark)))) |
1982 | |
1983 (defun f90-block-match (beg-block beg-name end-block end-name) | |
1984 "Match end-struct with beg-struct and complete end-block if possible. | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1985 BEG-BLOCK is the type of block as indicated at the start (e.g., do). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1986 BEG-NAME is the block start name (may be nil). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1987 END-BLOCK is the type of block as indicated at the end (may be nil). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1988 END-NAME is the block end name (may be nil). |
10612 | 1989 Leave point at the end of line." |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1990 ;; Hack to deal with the case when this is called from |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1991 ;; f90-indent-region on a program block without an explicit PROGRAM |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1992 ;; statement at the start. Should really be an error (?). |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1993 (or beg-block (setq beg-block "program")) |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
1994 (search-forward "end" (line-end-position)) |
10612 | 1995 (catch 'no-match |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1996 (if (and end-block (f90-equal-symbols beg-block end-block)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1997 (search-forward end-block) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1998 (if end-block |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1999 (progn |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2000 (message "END %s does not match %s." end-block beg-block) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2001 (end-of-line) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2002 (throw 'no-match nil)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2003 (message "Inserting %s." beg-block) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2004 (insert (concat " " beg-block)))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2005 (if (f90-equal-symbols beg-name end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2006 (and end-name (search-forward end-name)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2007 (cond ((and beg-name (not end-name)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2008 (message "Inserting %s." beg-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2009 (insert (concat " " beg-name))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2010 ((and beg-name end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2011 (message "Replacing %s with %s." end-name beg-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2012 (search-forward end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2013 (replace-match beg-name)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2014 ((and (not beg-name) end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2015 (message "Deleting %s." end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2016 (search-forward end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2017 (replace-match "")))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2018 (or (looking-at "[ \t]*!") (delete-horizontal-space)))) |
10612 | 2019 |
2020 (defun f90-match-end () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
2021 "From an end block statement, find the corresponding block and name." |
10612 | 2022 (interactive) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2023 (let ((count 1) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2024 (top-of-window (window-start)) |
85535 | 2025 (end-point (point)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2026 (case-fold-search t) |
85535 | 2027 matching-beg beg-name end-name beg-block end-block end-struct) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2028 (when (save-excursion (beginning-of-line) (skip-chars-forward " \t0-9") |
68723
d7669e5fe59f
Revert previous inadvertent check-in of local changes.
Glenn Morris <rgm@gnu.org>
parents:
68721
diff
changeset
|
2029 (setq end-struct (f90-looking-at-program-block-end))) |
d7669e5fe59f
Revert previous inadvertent check-in of local changes.
Glenn Morris <rgm@gnu.org>
parents:
68721
diff
changeset
|
2030 (setq end-block (car end-struct) |
d7669e5fe59f
Revert previous inadvertent check-in of local changes.
Glenn Morris <rgm@gnu.org>
parents:
68721
diff
changeset
|
2031 end-name (car (cdr end-struct))) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2032 (save-excursion |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2033 (beginning-of-line) |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2034 (while (and (> count 0) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2035 (not (= (line-beginning-position) (point-min)))) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2036 (re-search-backward f90-blocks-re nil 'move) |
45076 | 2037 (beginning-of-line) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2038 ;; GM not a line number if continued line. |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2039 ;;; (skip-chars-forward " \t") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2040 ;;; (skip-chars-forward "0-9") |
45076 | 2041 (skip-chars-forward " \t0-9") |
45370
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
2042 (cond ((or (f90-in-string) (f90-in-comment))) |
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
2043 ((setq matching-beg |
45076 | 2044 (or |
2045 (f90-looking-at-do) | |
2046 (f90-looking-at-if-then) | |
2047 (f90-looking-at-where-or-forall) | |
2048 (f90-looking-at-select-case) | |
2049 (f90-looking-at-type-like) | |
85536
a23a7c302a2c
Add some support for Fortran 2003 syntax:
Glenn Morris <rgm@gnu.org>
parents:
85535
diff
changeset
|
2050 (f90-looking-at-associate) |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2051 (f90-looking-at-program-block-start) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2052 ;; Interpret a single END without a block |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2053 ;; start to be the END of a program block |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2054 ;; without an initial PROGRAM line. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2055 (if (= (line-beginning-position) (point-min)) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2056 '("program" nil)))) |
45076 | 2057 (setq count (1- count))) |
45370
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
2058 ((looking-at (concat "end[ \t]*" f90-blocks-re)) |
45076 | 2059 (setq count (1+ count))))) |
45370
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
2060 (if (> count 0) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2061 (message "No matching beginning.") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2062 (f90-update-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2063 (if (eq f90-smart-end 'blink) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2064 (if (< (point) top-of-window) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2065 (message "Matches %s: %s" |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2066 (what-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2067 (buffer-substring |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2068 (line-beginning-position) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2069 (line-end-position))) |
66633
ae0e8d9f7793
From John Mongan <jmongan@mccammon.ucsd.edu> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
65918
diff
changeset
|
2070 (sit-for blink-matching-delay))) |
45076 | 2071 (setq beg-block (car matching-beg) |
2072 beg-name (car (cdr matching-beg))) | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2073 (goto-char end-point) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2074 (beginning-of-line) |
68723
d7669e5fe59f
Revert previous inadvertent check-in of local changes.
Glenn Morris <rgm@gnu.org>
parents:
68721
diff
changeset
|
2075 (f90-block-match beg-block beg-name end-block end-name)))))) |
10612 | 2076 |
2077 (defun f90-insert-end () | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
2078 "Insert a complete end statement matching beginning of present block." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
2079 (interactive "*") |
45076 | 2080 (let ((f90-smart-end (or f90-smart-end 'blink))) |
10612 | 2081 (insert "end") |
2082 (f90-indent-new-line))) | |
2083 | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
2084 ;; Abbrevs and keywords. |
10612 | 2085 |
2086 (defun f90-abbrev-start () | |
44997 | 2087 "Typing `\\[help-command] or `? lists all the F90 abbrevs. |
10612 | 2088 Any other key combination is executed normally." |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2089 (interactive "*") |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2090 (insert last-command-char) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2091 (let (char event) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2092 (if (fboundp 'next-command-event) ; XEmacs |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2093 (setq event (next-command-event) |
64395
16a2152f8d11
(f90-abbrev-start): Avoid warning.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
2094 char (and (fboundp 'event-to-character) |
85535 | 2095 (event-to-character event))) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2096 (setq event (read-event) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2097 char event)) |
50562
6ee9d94eaca3
(f90-abbrev-start): Only offer help if abbrev-mode is active.
Glenn Morris <rgm@gnu.org>
parents:
49598
diff
changeset
|
2098 ;; Insert char if not equal to `?', or if abbrev-mode is off. |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2099 (if (and abbrev-mode (or (eq char ??) (eq char help-char))) |
85535 | 2100 (f90-abbrev-help) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
2101 (setq unread-command-events (list event))))) |
10612 | 2102 |
2103 (defun f90-abbrev-help () | |
2104 "List the currently defined abbrevs in F90 mode." | |
2105 (interactive) | |
2106 (message "Listing abbrev table...") | |
2107 (display-buffer (f90-prepare-abbrev-list-buffer)) | |
2108 (message "Listing abbrev table...done")) | |
2109 | |
2110 (defun f90-prepare-abbrev-list-buffer () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
2111 "Create a buffer listing the F90 mode abbreviations." |
10612 | 2112 (save-excursion |
2113 (set-buffer (get-buffer-create "*Abbrevs*")) | |
2114 (erase-buffer) | |
2115 (insert-abbrev-table-description 'f90-mode-abbrev-table t) | |
2116 (goto-char (point-min)) | |
2117 (set-buffer-modified-p nil) | |
2118 (edit-abbrevs-mode)) | |
2119 (get-buffer-create "*Abbrevs*")) | |
2120 | |
2121 (defun f90-upcase-keywords () | |
2122 "Upcase all F90 keywords in the buffer." | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
2123 (interactive "*") |
10612 | 2124 (f90-change-keywords 'upcase-word)) |
2125 | |
2126 (defun f90-capitalize-keywords () | |
2127 "Capitalize all F90 keywords in the buffer." | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
2128 (interactive "*") |
10612 | 2129 (f90-change-keywords 'capitalize-word)) |
2130 | |
2131 (defun f90-downcase-keywords () | |
2132 "Downcase all F90 keywords in the buffer." | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
2133 (interactive "*") |
10612 | 2134 (f90-change-keywords 'downcase-word)) |
2135 | |
2136 (defun f90-upcase-region-keywords (beg end) | |
2137 "Upcase all F90 keywords in the region." | |
2138 (interactive "*r") | |
2139 (f90-change-keywords 'upcase-word beg end)) | |
2140 | |
2141 (defun f90-capitalize-region-keywords (beg end) | |
2142 "Capitalize all F90 keywords in the region." | |
2143 (interactive "*r") | |
2144 (f90-change-keywords 'capitalize-word beg end)) | |
2145 | |
2146 (defun f90-downcase-region-keywords (beg end) | |
2147 "Downcase all F90 keywords in the region." | |
2148 (interactive "*r") | |
2149 (f90-change-keywords 'downcase-word beg end)) | |
2150 | |
2151 ;; Change the keywords according to argument. | |
2152 (defun f90-change-keywords (change-word &optional beg end) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
2153 "Change the case of F90 keywords in the region (if specified) or buffer. |
45379
eadb2403fb8a
(f90-change-keywords): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
45377
diff
changeset
|
2154 CHANGE-WORD should be one of 'upcase-word, 'downcase-word, 'capitalize-word." |
10612 | 2155 (save-excursion |
45076 | 2156 (setq beg (or beg (point-min)) |
2157 end (or end (point-max))) | |
44997 | 2158 (let ((keyword-re |
85535 | 2159 (concat "\\(" |
2160 f90-keywords-re "\\|" f90-procedures-re "\\|" | |
2161 f90-hpf-keywords-re "\\|" f90-operators-re "\\)")) | |
2162 (ref-point (point-min)) | |
2163 (modified (buffer-modified-p)) | |
45076 | 2164 state saveword back-point) |
10612 | 2165 (goto-char beg) |
13064 | 2166 (unwind-protect |
85535 | 2167 (while (re-search-forward keyword-re end t) |
2168 (unless (progn | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2169 (setq state (parse-partial-sexp ref-point (point))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2170 (or (nth 3 state) (nth 4 state) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
2171 ;; GM f90-directive-comment-re? |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
2172 (save-excursion ; check for cpp directive |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2173 (beginning-of-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2174 (skip-chars-forward " \t0-9") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
2175 (looking-at "#")))) |
85535 | 2176 (setq ref-point (point) |
2177 back-point (save-excursion (backward-word 1) (point)) | |
45076 | 2178 saveword (buffer-substring back-point ref-point)) |
85535 | 2179 (funcall change-word -1) |
2180 (or (string= saveword (buffer-substring back-point ref-point)) | |
2181 (setq modified t)))) | |
2182 (or modified (set-buffer-modified-p nil)))))) | |
10612 | 2183 |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
2184 |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
2185 (defun f90-current-defun () |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
2186 "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
|
2187 (save-excursion |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
2188 (nth 1 (f90-beginning-of-subprogram)))) |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
2189 |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2190 |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2191 (defun f90-backslash-not-special (&optional all) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2192 "Make the backslash character (\\) be non-special in the current buffer. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2193 With optional argument ALL, change the default for all present |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2194 and future F90 buffers. F90 mode normally treats backslash as an |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2195 escape character." |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2196 (or (eq major-mode 'f90-mode) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2197 (error "This function should only be used in F90 buffers")) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2198 (when (equal (char-syntax ?\\ ) ?\\ ) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2199 (or all (set-syntax-table (copy-syntax-table (syntax-table)))) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2200 (modify-syntax-entry ?\\ "."))) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2201 |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
2202 |
10612 | 2203 (provide 'f90) |
10613 | 2204 |
52401 | 2205 ;;; arch-tag: fceac97c-c147-44bd-aec0-172d4b560ef8 |
10612 | 2206 ;;; f90.el ends here |