Mercurial > emacs
annotate lisp/progmodes/f90.el @ 59604:15fecef37804
(decipher-mode): Don't call decipher-read-alphabet if buffer is empty.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 17 Jan 2005 23:50:23 +0000 |
parents | d4561cc8329d |
children | 888d43e15dfd 95879cc1ed20 |
rev | line source |
---|---|
13337 | 1 ;;; f90.el --- Fortran-90 mode (free format) |
14169 | 2 |
53699
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
3 ;; Copyright (C) 1995, 1996, 1997, 2000, 2004 Free Software Foundation, Inc. |
10612 | 4 |
28915
0371c5f8f98b
Change author's mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
28170
diff
changeset
|
5 ;; Author: Torbj\"orn Einarsson <Torbjorn.Einarsson@era.ericsson.se> |
44697 | 6 ;; Maintainer: Glenn Morris <gmorris@ast.cam.ac.uk> |
10612 | 7 ;; Keywords: fortran, f90, languages |
8 | |
14169 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10612 | 12 ;; it under the terms of the GNU General Public License as published by |
14169 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
14 ;; any later version. | |
10612 | 15 |
14169 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
10612 | 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
10612 | 25 |
26 ;;; Commentary: | |
14169 | 27 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
28 ;; 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
|
29 ;; The minor language revision F95 is also supported (with font-locking). |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
30 |
10612 | 31 ;; 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
|
32 ;; 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
|
33 ;; The basic feature provides accurate indentation of F90 programs. |
10612 | 34 ;; In addition, there are many more features like automatic matching of all |
35 ;; 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
|
36 ;; function which joins continued lines, etc. |
10612 | 37 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
38 ;; 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
|
39 ;; 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
|
40 ;; (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
|
41 ;; 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
|
42 |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
43 ;; There are two separate features for altering the appearance of code: |
10612 | 44 ;; 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
|
45 ;; 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
|
46 ;; 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
|
47 ;; f90-auto-keyword-case. |
10612 | 48 |
49 ;; 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
|
50 ;; following matches (values in the left column are the defaults): |
13064 | 51 |
52 ;; start-string/regexp indent variable holding start-string/regexp | |
53 ;; !!! 0 | |
54 ;; !hpf\\$ (re) 0 f90-directive-comment-re | |
55 ;; !!$ 0 f90-comment-region | |
56 ;; ! (re) as code f90-indented-comment-re | |
57 ;; default comment-column | |
58 | |
59 ;; Ex: Here is the result of 3 different settings of f90-indented-comment-re | |
60 ;; f90-indented-comment-re !-indentation !!-indentation | |
61 ;; ! as code as code | |
62 ;; !! comment-column as code | |
63 ;; ![^!] as code comment-column | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
64 ;; 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
|
65 ;; 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
|
66 ;; the variable f90-comment-region in every line of the region. |
10612 | 67 |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
68 ;; One common convention for free vs. fixed format is that free format files |
44997 | 69 ;; 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
|
70 ;; 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
|
71 ;; 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
|
72 ;; For example: |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
73 ;; (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
|
74 |
10612 | 75 ;; Once you have entered f90-mode, you may get more info by using |
44997 | 76 ;; 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
|
77 ;; 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
|
78 ;; C-h v <Name of variable you want described>. |
10612 | 79 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
80 ;; 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
|
81 ;; (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
|
82 ;; |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
83 ;;(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
|
84 ;; ;; These are the default values. |
10612 | 85 ;; '(lambda () (setq f90-do-indent 3 |
86 ;; f90-if-indent 3 | |
87 ;; f90-type-indent 3 | |
88 ;; f90-program-indent 2 | |
89 ;; f90-continuation-indent 5 | |
90 ;; f90-comment-region "!!$" | |
13064 | 91 ;; f90-directive-comment-re "!hpf\\$" |
92 ;; f90-indented-comment-re "!" | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
93 ;; f90-break-delimiters "[-+\\*/><=,% \t]" |
10612 | 94 ;; f90-break-before-delimiters t |
95 ;; f90-beginning-ampersand t | |
96 ;; f90-smart-end 'blink | |
97 ;; 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
|
98 ;; f90-leave-line-no nil |
11501
a56d6a86fa85
(f90-keywords): "only" added to keyword list.
Karl Heuer <kwzh@gnu.org>
parents:
10882
diff
changeset
|
99 ;; indent-tabs-mode nil |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
100 ;; 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
|
101 ;; ) |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
102 ;; ;; These are not default. |
10612 | 103 ;; (abbrev-mode 1) ; turn on abbreviation mode |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
104 ;; (f90-add-imenu-menu) ; extra menu with functions etc. |
10612 | 105 ;; (if f90-auto-keyword-case ; change case of all keywords on startup |
106 ;; (f90-change-keywords f90-auto-keyword-case)) | |
107 ;; )) | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
108 ;; |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
109 ;; 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
|
110 ;; f90-font-lock-keywords, etc. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
111 ;; |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
112 ;; 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
|
113 ;; or by using M-x auto-fill-mode and M-x abbrev-mode, respectively. |
10612 | 114 |
115 ;; Remarks | |
116 ;; 1) Line numbers are by default left-justified. If f90-leave-line-no is | |
117 ;; 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
|
118 ;; 2) Multi-; statements like "do i=1,20 ; j=j+i ; end do" are not handled |
10612 | 119 ;; correctly, but I imagine them to be rare. |
13064 | 120 ;; 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
|
121 ;; 4) For FIXED FORMAT code, use fortran mode. |
10612 | 122 ;; 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
|
123 ;; 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
|
124 ;; 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
|
125 ;; mechanism for treating multi-line directives (continued by \ ). |
13064 | 126 ;; 7) f77 do-loops do 10 i=.. ; ; 10 continue are not correctly indented. |
127 ;; 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
|
128 ;; 8) The highlighting mode under XEmacs is not as complete as under Emacs. |
10612 | 129 |
130 ;; List of user commands | |
131 ;; f90-previous-statement f90-next-statement | |
132 ;; f90-beginning-of-subprogram f90-end-of-subprogram f90-mark-subprogram | |
133 ;; f90-comment-region | |
134 ;; f90-indent-line f90-indent-new-line | |
135 ;; f90-indent-region (can be called by calling indent-region) | |
136 ;; f90-indent-subprogram | |
137 ;; f90-break-line f90-join-lines | |
138 ;; f90-fill-region | |
139 ;; f90-insert-end | |
140 ;; f90-upcase-keywords f90-upcase-region-keywords | |
141 ;; f90-downcase-keywords f90-downcase-region-keywords | |
142 ;; f90-capitalize-keywords f90-capitalize-region-keywords | |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
143 ;; f90-add-imenu-menu |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
144 ;; f90-font-lock-1, f90-font-lock-2, f90-font-lock-3, f90-font-lock-4 |
10612 | 145 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
146 ;; Original author's thanks |
10612 | 147 ;; Thanks to all the people who have tested the mode. Special thanks to Jens |
148 ;; Bloch Helmers for encouraging me to write this code, for creative | |
149 ;; suggestions as well as for the lists of hpf-commands. | |
150 ;; Also thanks to the authors of the fortran and pascal modes, on which some | |
151 ;; of this code is built. | |
152 | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
153 ;;; Code: |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
154 |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
155 ;; TODO |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
156 ;; Support for align. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
157 ;; OpenMP, preprocessor highlighting. |
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
158 |
47178
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
159 (defvar comment-auto-fill-only-comments) |
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
160 (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
|
161 |
10612 | 162 ;; User options |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
163 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
164 (defgroup f90 nil |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
165 "Major mode for editing free format Fortran 90,95 code." |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
166 :group 'languages) |
10612 | 167 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
168 (defgroup f90-indent nil |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
169 "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
|
170 :prefix "f90-" |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
171 :group 'f90) |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
172 |
10612 | 173 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
174 (defcustom f90-do-indent 3 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
175 "*Extra indentation applied to DO blocks." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
176 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
177 :group 'f90-indent) |
10612 | 178 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
179 (defcustom f90-if-indent 3 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
180 "*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
|
181 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
182 :group 'f90-indent) |
10612 | 183 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
184 (defcustom f90-type-indent 3 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
185 "*Extra indentation applied to TYPE, INTERFACE and BLOCK DATA blocks." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
186 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
187 :group 'f90-indent) |
10612 | 188 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
189 (defcustom f90-program-indent 2 |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
190 "*Extra indentation applied to PROGRAM, MODULE, SUBROUTINE, FUNCTION blocks." |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
191 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
192 :group 'f90-indent) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
193 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
194 (defcustom f90-continuation-indent 5 |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
195 "*Extra indentation applied to continuation lines." |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
196 :type 'integer |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
197 :group 'f90-indent) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
198 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
199 (defcustom f90-comment-region "!!$" |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
200 "*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
|
201 :type 'string |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
202 :group 'f90-indent) |
10612 | 203 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
204 (defcustom f90-indented-comment-re "!" |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
205 "*Regexp matching comments to indent as code." |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
206 :type 'regexp |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
207 :group 'f90-indent) |
10612 | 208 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
209 (defcustom f90-directive-comment-re "!hpf\\$" |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
210 "*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
|
211 :type 'regexp |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
212 :group 'f90-indent) |
10612 | 213 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
214 (defcustom f90-beginning-ampersand t |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
215 "*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
|
216 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
217 :group 'f90) |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
218 |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
219 (defcustom f90-smart-end 'blink |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
220 "*Qualification of END statements according to the matching block start. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
221 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
|
222 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
|
223 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
|
224 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
|
225 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
|
226 :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
|
227 :group 'f90) |
10612 | 228 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
229 (defcustom f90-break-delimiters "[-+\\*/><=,% \t]" |
53699
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
230 "*Regexp matching delimiter characters at which lines may be broken. |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
231 There are certain tokens comprised entirely of characters |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
232 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
|
233 specified by the constant `f90-no-break-re'." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
234 :type 'regexp |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
235 :group 'f90) |
10612 | 236 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
237 (defcustom f90-break-before-delimiters t |
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
238 "*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
|
239 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
240 :group 'f90) |
10612 | 241 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
242 (defcustom f90-auto-keyword-case nil |
10612 | 243 "*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
|
244 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
|
245 :type '(choice (const downcase-word) (const upcase-word) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
246 (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
|
247 :group 'f90) |
10612 | 248 |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
249 (defcustom f90-leave-line-no nil |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
250 "*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
|
251 :type 'boolean |
17413
9fa0ed8da0b1
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16444
diff
changeset
|
252 :group 'f90) |
10612 | 253 |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
254 (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
|
255 "Hook run when entering F90 mode." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
256 :type 'hook |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
257 :options '(f90-add-imenu-menu) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
258 :group 'f90) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
259 |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
260 ;; 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
|
261 |
13064 | 262 (defconst f90-keywords-re |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
263 (regexp-opt '("allocatable" "allocate" "assign" "assignment" "backspace" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
264 "block" "call" "case" "character" "close" "common" "complex" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
265 "contains" "continue" "cycle" "data" "deallocate" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
266 "dimension" "do" "double" "else" "elseif" "elsewhere" "end" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
267 "enddo" "endfile" "endif" "entry" "equivalence" "exit" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
268 "external" "forall" "format" "function" "goto" "if" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
269 "implicit" "include" "inquire" "integer" "intent" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
270 "interface" "intrinsic" "logical" "module" "namelist" "none" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
271 "nullify" "only" "open" "operator" "optional" "parameter" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
272 "pause" "pointer" "precision" "print" "private" "procedure" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
273 "program" "public" "read" "real" "recursive" "result" "return" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
274 "rewind" "save" "select" "sequence" "stop" "subroutine" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
275 "target" "then" "type" "use" "where" "while" "write" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
276 ;; F95 keywords. |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
277 "elemental" "pure") 'words) |
13064 | 278 "Regexp for F90 keywords.") |
279 | |
280 (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
|
281 (regexp-opt |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
282 '("allocatable" "allocate" "assign" "assignment" "backspace" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
283 "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
|
284 "external" "inquire" "intent" "intrinsic" "nullify" "only" "open" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
285 "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
|
286 "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
|
287 "sequence" "target" "write" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
288 ;; F95 keywords. |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
289 "elemental" "pure") 'words) |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
290 "Keyword-regexp for font-lock level >= 3.") |
13064 | 291 |
292 (defconst f90-procedures-re | |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
293 (concat "\\<" |
44997 | 294 (regexp-opt |
295 '("abs" "achar" "acos" "adjustl" "adjustr" "aimag" "aint" | |
296 "all" "allocated" "anint" "any" "asin" "associated" | |
297 "atan" "atan2" "bit_size" "btest" "ceiling" "char" "cmplx" | |
298 "conjg" "cos" "cosh" "count" "cshift" "date_and_time" "dble" | |
299 "digits" "dim" "dot_product" "dprod" "eoshift" "epsilon" | |
300 "exp" "exponent" "floor" "fraction" "huge" "iachar" "iand" | |
301 "ibclr" "ibits" "ibset" "ichar" "ieor" "index" "int" "ior" | |
302 "ishft" "ishftc" "kind" "lbound" "len" "len_trim" "lge" "lgt" | |
303 "lle" "llt" "log" "log10" "logical" "matmul" "max" | |
304 "maxexponent" "maxloc" "maxval" "merge" "min" "minexponent" | |
305 "minloc" "minval" "mod" "modulo" "mvbits" "nearest" "nint" | |
306 "not" "pack" "precision" "present" "product" "radix" | |
307 ;; Real is taken out here to avoid highlighting declarations. | |
308 "random_number" "random_seed" "range" ;; "real" | |
309 "repeat" "reshape" "rrspacing" "scale" "scan" | |
310 "selected_int_kind" "selected_real_kind" "set_exponent" | |
311 "shape" "sign" "sin" "sinh" "size" "spacing" "spread" "sqrt" | |
312 "sum" "system_clock" "tan" "tanh" "tiny" "transfer" | |
313 "transpose" "trim" "ubound" "unpack" "verify" | |
314 ;; F95 intrinsic functions. | |
315 "null" "cpu_time") t) | |
316 ;; A left parenthesis to avoid highlighting non-procedures. | |
317 "[ \t]*(") | |
13064 | 318 "Regexp whose first part matches F90 intrinsic procedures.") |
10612 | 319 |
13064 | 320 (defconst f90-operators-re |
44997 | 321 (concat "\\." |
322 (regexp-opt '("and" "eq" "eqv" "false" "ge" "gt" "le" "lt" "ne" | |
323 "neqv" "not" "or" "true") t) | |
324 "\\.") | |
13064 | 325 "Regexp matching intrinsic operators.") |
10612 | 326 |
13064 | 327 (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
|
328 (regexp-opt |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
329 ;; Intrinsic procedures. |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
330 '("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
|
331 "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
|
332 "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
|
333 "grade_down" "grade_up" |
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
334 "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
|
335 "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
|
336 "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
|
337 "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
|
338 "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
|
339 "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
|
340 "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
|
341 "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
|
342 "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
|
343 ;; Directives. |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
344 "align" "distribute" "dynamic" "independent" "inherit" "processors" |
44997 | 345 "realign" "redistribute" "template" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
346 ;; Keywords. |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
347 "block" "cyclic" "extrinsic" "new" "onto" "pure" "with") 'words) |
13064 | 348 "Regexp for all HPF keywords, procedures and directives.") |
10612 | 349 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
350 ;; Highlighting patterns. |
10612 | 351 |
13064 | 352 (defvar f90-font-lock-keywords-1 |
23997 | 353 (list |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
354 ;; Special highlighting of "module procedure". |
44340
93314c938a62
(f90-keywords-re, f90-keywords-level-3-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42442
diff
changeset
|
355 '("\\<\\(module[ \t]*procedure\\)\\>" (1 font-lock-keyword-face)) |
46796
342b3e8fd75c
(f90-font-lock-keywords-1): Simplify `type' value a little.
Glenn Morris <rgm@gnu.org>
parents:
46793
diff
changeset
|
356 ;; Highlight definition of derived type. |
342b3e8fd75c
(f90-font-lock-keywords-1): Simplify `type' value a little.
Glenn Morris <rgm@gnu.org>
parents:
46793
diff
changeset
|
357 '("\\<\\(\\(?:end[ \t]*\\)?type\\)\\>\\([^()\n]*::\\)?[ \t]*\\(\\sw+\\)" |
46793
3fcd9700f0fc
(f90-font-lock-keywords-1): Fix highlighting of `type' forms.
Glenn Morris <rgm@gnu.org>
parents:
45972
diff
changeset
|
358 (1 font-lock-keyword-face) (3 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
|
359 ;; Other functions and declarations. |
44997 | 360 '("\\<\\(\\(?:end[ \t]*\\)?\\(program\\|module\\|function\\|\ |
46793
3fcd9700f0fc
(f90-font-lock-keywords-1): Fix highlighting of `type' forms.
Glenn Morris <rgm@gnu.org>
parents:
45972
diff
changeset
|
361 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
|
362 (1 font-lock-keyword-face) (3 font-lock-function-name-face nil t)) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
363 "\\<\\(\\(end[ \t]*\\)?\\(interface\\|block[ \t]*data\\)\\|contains\\)\\>") |
13064 | 364 "This does fairly subdued highlighting of comments and function calls.") |
10612 | 365 |
13064 | 366 (defvar f90-font-lock-keywords-2 |
44997 | 367 (append |
368 f90-font-lock-keywords-1 | |
369 (list | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
370 ;; Variable declarations (avoid the real function call). |
44997 | 371 '("^[ \t0-9]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|\ |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
372 logical\\|type[ \t]*(\\sw+)\\)\\(.*::\\|[ \t]*(.*)\\)?\\([^&!\n]*\\)" |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
373 (1 font-lock-type-face t) (4 font-lock-variable-name-face t)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
374 ;; do, if, select, where, and forall constructs. |
44997 | 375 '("\\<\\(end[ \t]*\\(do\\|if\\|select\\|forall\\|where\\)\\)\\>\ |
376 \\([ \t]+\\(\\sw+\\)\\)?" | |
377 (1 font-lock-keyword-face) (3 font-lock-constant-face nil t)) | |
378 '("^[ \t0-9]*\\(\\(\\sw+\\)[ \t]*:[ \t]*\\)?\\(\\(if\\|\ | |
379 do\\([ \t]*while\\)?\\|select[ \t]*case\\|where\\|forall\\)\\)\\>" | |
380 (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
|
381 ;; Implicit declaration. |
44997 | 382 '("\\<\\(implicit\\)[ \t]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\ |
46793
3fcd9700f0fc
(f90-font-lock-keywords-1): Fix highlighting of `type' forms.
Glenn Morris <rgm@gnu.org>
parents:
45972
diff
changeset
|
383 \\|logical\\|type[ \t]*(\\sw+)\\|none\\)[ \t]*" |
44997 | 384 (1 font-lock-keyword-face) (2 font-lock-type-face)) |
385 '("\\<\\(namelist\\|common\\)[ \t]*\/\\(\\sw+\\)?\/" | |
386 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) | |
387 "\\<else\\([ \t]*if\\|where\\)?\\>" | |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
388 '("\\(&\\)[ \t]*\\(!\\|$\\)" (1 font-lock-keyword-face)) |
44997 | 389 "\\<\\(then\\|continue\\|format\\|include\\|stop\\|return\\)\\>" |
390 '("\\<\\(exit\\|cycle\\)[ \t]*\\(\\sw+\\)?\\>" | |
391 (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)) | |
392 '("\\<\\(case\\)[ \t]*\\(default\\|(\\)" . 1) | |
393 '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)" | |
394 (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
|
395 ;; Line numbers (lines whose first character after number is letter). |
44997 | 396 '("^[ \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
|
397 "Highlights declarations, do-loops and other constructs.") |
10612 | 398 |
13064 | 399 (defvar f90-font-lock-keywords-3 |
400 (append f90-font-lock-keywords-2 | |
44997 | 401 (list |
402 f90-keywords-level-3-re | |
403 f90-operators-re | |
404 (list f90-procedures-re '(1 font-lock-keyword-face keep)) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
405 "\\<real\\>" ; avoid overwriting real defs |
44997 | 406 )) |
13064 | 407 "Highlights all F90 keywords and intrinsic procedures.") |
408 | |
409 (defvar f90-font-lock-keywords-4 | |
410 (append f90-font-lock-keywords-3 | |
44997 | 411 (list f90-hpf-keywords-re)) |
13064 | 412 "Highlights all F90 and HPF keywords.") |
413 | |
414 (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
|
415 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
|
416 "*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
|
417 Can be overridden by the value of `font-lock-maximum-decoration'.") |
10612 | 418 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
419 |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
420 (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
|
421 (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
|
422 (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
|
423 (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
|
424 (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
|
425 (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
|
426 (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
|
427 (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
|
428 (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
|
429 (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
|
430 (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
|
431 (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
|
432 (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
|
433 (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
|
434 ;; 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
|
435 ;; 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
|
436 ;; 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
|
437 (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
|
438 table) |
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
439 "Syntax table used in F90 mode.") |
10612 | 440 |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
441 (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
|
442 (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
|
443 (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
|
444 (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
|
445 (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
|
446 (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
|
447 (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
|
448 (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
|
449 (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
|
450 (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
|
451 (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
|
452 (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
|
453 (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
|
454 ;;; (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
|
455 (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
|
456 (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
|
457 (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
|
458 (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
|
459 (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
|
460 (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
|
461 (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
|
462 (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
|
463 (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
|
464 (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
|
465 (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
|
466 (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
|
467 (define-key map "/" 'f90-electric-insert) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
468 |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
469 (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
|
470 `("F90" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
471 ("Customization" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
472 ,(custom-menu-create 'f90) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
473 ["Set" Custom-set t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
474 ["Save" Custom-save t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
475 ["Reset to Current" Custom-reset-current t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
476 ["Reset to Saved" Custom-reset-saved t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
477 ["Reset to Standard Settings" Custom-reset-standard t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
478 ) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
479 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
480 ["Indent Subprogram" f90-indent-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
481 ["Mark Subprogram" f90-mark-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
482 ["Beginning of Subprogram" f90-beginning-of-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
483 ["End of Subprogram" f90-end-of-subprogram t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
484 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
485 ["(Un)Comment Region" f90-comment-region mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
486 ["Indent Region" f90-indent-region mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
487 ["Fill Region" f90-fill-region mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
488 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
489 ["Break Line at Point" f90-break-line t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
490 ["Join with Previous Line" f90-join-lines t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
491 ["Insert Block End" f90-insert-end t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
492 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
493 ("Highlighting" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
494 ["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
|
495 :style toggle] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
496 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
497 ["Light highlighting (level 1)" f90-font-lock-1 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
498 ["Moderate highlighting (level 2)" f90-font-lock-2 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
499 ["Heavy highlighting (level 3)" f90-font-lock-3 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
500 ["Maximum highlighting (level 4)" f90-font-lock-4 t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
501 ) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
502 ("Change Keyword Case" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
503 ["Upcase Keywords (buffer)" f90-upcase-keywords t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
504 ["Capitalize Keywords (buffer)" f90-capitalize-keywords t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
505 ["Downcase Keywords (buffer)" f90-downcase-keywords t] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
506 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
507 ["Upcase Keywords (region)" f90-upcase-region-keywords |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
508 mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
509 ["Capitalize Keywords (region)" f90-capitalize-region-keywords |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
510 mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
511 ["Downcase Keywords (region)" f90-downcase-region-keywords |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
512 mark-active] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
513 ) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
514 "--" |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
515 ["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
|
516 :style toggle] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
517 ["Toggle abbrev-mode" abbrev-mode :selected abbrev-mode |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
518 :style toggle] |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
519 ["Add imenu Menu" f90-add-imenu-menu |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
520 :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
|
521 :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
|
522 map) |
10612 | 523 "Keymap used in F90 mode.") |
13064 | 524 |
45351
bd2bdf90e286
(f90-mode-syntax-table, f90-mode-map): Do the initialization in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45076
diff
changeset
|
525 |
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
|
526 (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
|
527 "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
|
528 (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
|
529 (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
|
530 (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
|
531 (font-lock-fontify-buffer)) |
44997 | 532 |
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
|
533 (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
|
534 "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
|
535 (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
|
536 (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
|
537 (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
|
538 (font-lock-fontify-buffer)) |
44997 | 539 |
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
|
540 (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
|
541 "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
|
542 (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
|
543 (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
|
544 (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
|
545 (font-lock-fontify-buffer)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
546 |
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
|
547 (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
|
548 "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
|
549 (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
|
550 (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
|
551 (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
|
552 (font-lock-fontify-buffer)) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
553 |
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
|
554 |
13064 | 555 ;; Regexps for finding program structures. |
44997 | 556 (defconst f90-blocks-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
557 (concat "\\(block[ \t]*data\\|" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
558 (regexp-opt '("do" "if" "interface" "function" "module" "program" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
559 "select" "subroutine" "type" "where" "forall")) |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
560 "\\)\\>") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
561 "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
|
562 |
44997 | 563 (defconst f90-program-block-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
564 (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
|
565 "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
|
566 |
44997 | 567 (defconst f90-else-like-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
568 "\\(else\\([ \t]*if\\|where\\)?\\|case[ \t]*\\(default\\|(\\)\\)" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
569 "Regexp matching an ELSE IF, ELSEWHERE, CASE statement.") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
570 |
44997 | 571 (defconst f90-end-if-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
572 (concat "end[ \t]*" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
573 (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
|
574 "\\>") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
575 "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
|
576 |
44997 | 577 (defconst f90-end-type-re |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
578 "end[ \t]*\\(type\\|interface\\|block[ \t]*data\\)\\>" |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
579 "Regexp matching the end of a TYPE, INTERFACE, BLOCK DATA section.") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
580 |
13064 | 581 (defconst f90-type-def-re |
46796
342b3e8fd75c
(f90-font-lock-keywords-1): Simplify `type' value a little.
Glenn Morris <rgm@gnu.org>
parents:
46793
diff
changeset
|
582 "\\<\\(type\\)\\>\\(?:[^()\n]*::\\)?[ \t]*\\(\\sw+\\)" |
45912 | 583 "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
|
584 |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
585 (defconst f90-no-break-re |
53699
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
586 (regexp-opt '("**" "//" "=>" ">=" "<=" "==" "/=") 'paren) |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
587 "Regexp specifying where not to break lines when filling. |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
588 This regexp matches certain tokens comprised entirely of |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
589 characters matching the regexp `f90-break-delimiters' that should |
859030e39b53
(f90-break-delimiters): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
52401
diff
changeset
|
590 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
|
591 characters long.") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
592 |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
593 (defvar f90-cache-position nil |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
594 "Temporary position used to speed up region operations.") |
10612 | 595 (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
|
596 |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
597 |
55637
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
598 ;; Hideshow support. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
599 (defconst f90-end-block-re |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
600 (concat "^[ \t0-9]*\\<end\\>[ \t]*" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
601 (regexp-opt '("do" "if" "forall" "function" "interface" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
602 "module" "program" "select" "subroutine" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
603 "type" "where" ) t) |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
604 "[ \t]*\\sw*") |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
605 "Regexp matching the end of a \"block\" of F90 code. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
606 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
|
607 |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
608 ;; Ignore the fact that FUNCTION, SUBROUTINE, WHERE, FORALL have a |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
609 ;; following "(". DO, CASE, IF can have labels; IF must be |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
610 ;; accompanied by THEN. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
611 ;; A big problem is that many of these statements can be broken over |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
612 ;; lines, even with embedded comments. We only try to handle this for |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
613 ;; IF ... THEN statements, assuming and hoping it will be less common |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
614 ;; for other constructs. We match up to one new-line, provided ") |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
615 ;; THEN" appears on one line. Matching on just ") THEN" is no good, |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
616 ;; since that includes ELSE branches. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
617 ;; For a fully accurate solution, hideshow would probably have to be |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
618 ;; modified to allow functions as well as regexps to be used to |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
619 ;; specify block start and end positions. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
620 (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
|
621 (concat |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
622 "^[ \t0-9]*" ; statement number |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
623 "\\(\\(" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
624 "\\(\\sw+[ \t]*:[ \t]*\\)?" ; structure label |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
625 "\\(do\\|select[ \t]*case\\|if[ \t]*(.*\n?.*)[ \t]*then\\|" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
626 ;; 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
|
627 "\\(where\\|forall\\)[ \t]*(.*)[ \t]*\\(!\\|$\\)\\)\\)" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
628 "\\|" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
629 "program\\|interface\\|module\\|type\\|function\\|subroutine" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
630 ;; ") THEN" at line end. Problem - also does ELSE. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
631 ;;; "\\|.*)[ \t]*then[ \t]*\\($\\|!\\)" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
632 "\\)" |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
633 "[ \t]*") |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
634 "Regexp matching the start of a \"block\" of F90 code. |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
635 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
|
636 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
|
637 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
|
638 |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
639 ;; 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
|
640 (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
|
641 `(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
|
642 "!" 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
|
643 |
239a750fdcfa
(f90-end-block-re, f90-start-block-re): New constants.
Glenn Morris <rgm@gnu.org>
parents:
55250
diff
changeset
|
644 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
645 ;; Imenu support. |
13064 | 646 (defvar f90-imenu-generic-expression |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
647 (let ((good-char "[^!\"\&\n \t]") (not-e "[^e!\n\"\& \t]") |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
648 (not-n "[^n!\n\"\& \t]") (not-d "[^d!\n\"\& \t]")) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
649 (list |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
650 '(nil "^[ \t0-9]*program[ \t]+\\(\\sw+\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
651 '("Modules" "^[ \t0-9]*module[ \t]+\\(\\sw+\\)[ \t]*\\(!\\|$\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
652 '("Types" "^[ \t0-9]*type[ \t]+\\(\\sw+\\)" 1) |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
653 (list |
44997 | 654 "Procedures" |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
655 (concat |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
656 "^[ \t0-9]*" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
657 "\\(" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
658 ;; 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
|
659 ;; 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
|
660 "[^!\"\&\n]*\\(" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
661 not-e good-char good-char "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
662 good-char not-n good-char "\\|" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
663 good-char good-char not-d "\\)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
664 "\\|" |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
665 ;; 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
|
666 good-char "?" good-char "?" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
667 "\\)" |
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
668 "[ \t]*\\(function\\|subroutine\\)[ \t]+\\(\\sw+\\)") |
44997 | 669 4))) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
670 "Value for `imenu-generic-expression' in F90 mode.") |
13064 | 671 |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
672 (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
|
673 "Add an imenu menu to the menubar." |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
674 (interactive) |
47178
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
675 (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
|
676 (message "%s" "F90-imenu already exists.") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
677 (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
|
678 (redraw-frame (selected-frame)))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
679 |
10612 | 680 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
681 ;; 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
|
682 (defvar f90-mode-abbrev-table |
d1b710ae9184
(f90-mode-abbrev-table): Initialize in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45353
diff
changeset
|
683 (let (abbrevs-changed) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
684 (define-abbrev-table 'f90-mode-abbrev-table nil) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
685 ;; Use the 6th arg (SYSTEM-FLAG) of define-abbrev if possible. |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
686 ;; A little baroque to quieten the byte-compiler. |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
687 (mapcar |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
688 (function (lambda (element) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
689 (condition-case nil |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
690 (apply 'define-abbrev f90-mode-abbrev-table |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
691 (append element '(nil 0 t))) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
692 (wrong-number-of-arguments |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
693 (apply 'define-abbrev f90-mode-abbrev-table |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
694 (append element '(nil 0))))))) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
695 '(("`al" "allocate" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
696 ("`ab" "allocatable" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
697 ("`as" "assignment" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
698 ("`ba" "backspace" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
699 ("`bd" "block data" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
700 ("`c" "character" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
701 ("`cl" "close" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
702 ("`cm" "common" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
703 ("`cx" "complex" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
704 ("`cn" "contains" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
705 ("`cy" "cycle" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
706 ("`de" "deallocate" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
707 ("`df" "define" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
708 ("`di" "dimension" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
709 ("`dw" "do while" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
710 ("`el" "else" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
711 ("`eli" "else if" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
712 ("`elw" "elsewhere" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
713 ("`eq" "equivalence" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
714 ("`ex" "external" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
715 ("`ey" "entry" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
716 ("`fl" "forall" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
717 ("`fo" "format" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
718 ("`fu" "function" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
719 ("`fa" ".false." ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
720 ("`im" "implicit none") |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
721 ("`in" "include" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
722 ("`i" "integer" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
723 ("`it" "intent" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
724 ("`if" "interface" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
725 ("`lo" "logical" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
726 ("`mo" "module" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
727 ("`na" "namelist" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
728 ("`nu" "nullify" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
729 ("`op" "optional" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
730 ("`pa" "parameter" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
731 ("`po" "pointer" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
732 ("`pr" "print" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
733 ("`pi" "private" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
734 ("`pm" "program" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
735 ("`pu" "public" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
736 ("`r" "real" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
737 ("`rc" "recursive" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
738 ("`rt" "return" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
739 ("`rw" "rewind" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
740 ("`se" "select" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
741 ("`sq" "sequence" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
742 ("`su" "subroutine" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
743 ("`ta" "target" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
744 ("`tr" ".true." ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
745 ("`t" "type" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
746 ("`wh" "where" ) |
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
747 ("`wr" "write" ))) |
45355
d1b710ae9184
(f90-mode-abbrev-table): Initialize in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45353
diff
changeset
|
748 f90-mode-abbrev-table) |
d1b710ae9184
(f90-mode-abbrev-table): Initialize in the defvar.
Glenn Morris <rgm@gnu.org>
parents:
45353
diff
changeset
|
749 "Abbrev table for F90 mode.") |
10612 | 750 |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
751 |
10612 | 752 ;;;###autoload |
753 (defun f90-mode () | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
754 "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
|
755 For fixed format code, use `fortran-mode'. |
10612 | 756 |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
757 \\[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
|
758 \\[f90-indent-new-line] indents current line and creates a new\ |
10612 | 759 indented line. |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
760 \\[f90-indent-subprogram] indents the current subprogram. |
10612 | 761 |
762 Type `? or `\\[help-command] to display a list of built-in\ | |
763 abbrevs for F90 keywords. | |
764 | |
765 Key definitions: | |
766 \\{f90-mode-map} | |
767 | |
768 Variables controlling indentation style and extra features: | |
769 | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
770 `f90-do-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
771 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
|
772 `f90-if-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
773 Extra indentation within if/select case/where/forall blocks (default 3). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
774 `f90-type-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
775 Extra indentation within type/interface/block-data blocks (default 3). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
776 `f90-program-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
777 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
|
778 (default 2). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
779 `f90-continuation-indent' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
780 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
|
781 `f90-comment-region' |
45076 | 782 String inserted by function \\[f90-comment-region] at start of each |
783 line in region (default \"!!!$\"). | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
784 `f90-indented-comment-re' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
785 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
|
786 (default \"!\"). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
787 `f90-directive-comment-re' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
788 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
|
789 (default \"!hpf\\\\$\"). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
790 `f90-break-delimiters' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
791 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
|
792 (default \"[-+*/><=,% \\t]\"). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
793 `f90-break-before-delimiters' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
794 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
|
795 (default t). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
796 `f90-beginning-ampersand' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
797 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
|
798 `f90-smart-end' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
799 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
|
800 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
|
801 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
|
802 `f90-auto-keyword-case' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
803 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
|
804 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
|
805 `f90-leave-line-no' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
806 Do not left-justify line numbers (default nil). |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
807 `f90-keywords-re' |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
808 List of keywords used for highlighting/upcase-keywords etc. |
10612 | 809 |
810 Turning on F90 mode calls the value of the variable `f90-mode-hook' | |
811 with no args, if that value is non-nil." | |
812 (interactive) | |
813 (kill-all-local-variables) | |
45076 | 814 (setq major-mode 'f90-mode |
815 mode-name "F90" | |
816 local-abbrev-table f90-mode-abbrev-table) | |
10612 | 817 (set-syntax-table f90-mode-syntax-table) |
818 (use-local-map f90-mode-map) | |
45076 | 819 (set (make-local-variable 'indent-line-function) 'f90-indent-line) |
820 (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
|
821 (set (make-local-variable 'require-final-newline) mode-require-final-newline) |
45076 | 822 (set (make-local-variable 'comment-start) "!") |
823 (set (make-local-variable 'comment-start-skip) "!+ *") | |
824 (set (make-local-variable 'comment-indent-function) 'f90-comment-indent) | |
825 (set (make-local-variable 'abbrev-all-caps) t) | |
826 (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
|
827 (setq indent-tabs-mode nil) ; auto buffer local |
45076 | 828 (set (make-local-variable 'font-lock-defaults) |
829 '((f90-font-lock-keywords f90-font-lock-keywords-1 | |
830 f90-font-lock-keywords-2 | |
831 f90-font-lock-keywords-3 | |
832 f90-font-lock-keywords-4) | |
833 nil t)) | |
23997 | 834 (set (make-local-variable 'imenu-case-fold-search) t) |
45076 | 835 (set (make-local-variable 'imenu-generic-expression) |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
836 f90-imenu-generic-expression) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
837 (set (make-local-variable 'beginning-of-defun-function) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
838 'f90-beginning-of-subprogram) |
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
839 (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
|
840 (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
|
841 #'f90-current-defun) |
44825
82abaa8dbf18
(f90-startup-message): Obsolete variable removed.
Glenn Morris <rgm@gnu.org>
parents:
44824
diff
changeset
|
842 (run-hooks 'f90-mode-hook)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
843 |
10612 | 844 |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
845 ;; Inline-functions. |
10612 | 846 (defsubst f90-in-string () |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
847 "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
|
848 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
|
849 and lies before point." |
10612 | 850 (let ((beg-pnt |
851 (if (and f90-cache-position (> (point) f90-cache-position)) | |
852 f90-cache-position | |
853 (point-min)))) | |
854 (nth 3 (parse-partial-sexp beg-pnt (point))))) | |
44997 | 855 |
10612 | 856 (defsubst f90-in-comment () |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
857 "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
|
858 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
|
859 and lies before point." |
10612 | 860 (let ((beg-pnt |
861 (if (and f90-cache-position (> (point) f90-cache-position)) | |
862 f90-cache-position | |
863 (point-min)))) | |
864 (nth 4 (parse-partial-sexp beg-pnt (point))))) | |
865 | |
866 (defsubst f90-line-continued () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
867 "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
|
868 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
|
869 not the last line of a continued statement." |
10612 | 870 (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
|
871 (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
|
872 (while (and (looking-at "[ \t]*\\(!\\|$\\)") (zerop (forward-line -1)))) |
45076 | 873 (end-of-line) |
874 (while (f90-in-comment) | |
875 (search-backward "!" (line-beginning-position)) | |
876 (skip-chars-backward "!")) | |
877 (skip-chars-backward " \t") | |
878 (= (preceding-char) ?&))) | |
10612 | 879 |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
880 ;; 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
|
881 ;; Need f90-code-start-position function. |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
882 ;; 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
|
883 ;; cf f90-indent-line |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
884 ;; (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
|
885 ;; (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
|
886 ;; (f90-line-continued)))) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
887 ;; (f90-indent-line-no) |
10612 | 888 (defsubst f90-current-indentation () |
889 "Return indentation of current line. | |
890 Line-numbers are considered whitespace characters." | |
45076 | 891 (save-excursion (beginning-of-line) (skip-chars-forward " \t0-9"))) |
10612 | 892 |
893 (defsubst f90-indent-to (col &optional no-line-number) | |
894 "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
|
895 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
|
896 line-number before indenting." |
10612 | 897 (beginning-of-line) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
898 (or no-line-number |
10612 | 899 (skip-chars-forward " \t0-9")) |
900 (delete-horizontal-space) | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
901 ;; Leave >= 1 space after line number. |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
902 (indent-to col (if (zerop (current-column)) 0 1))) |
10612 | 903 |
904 (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
|
905 "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
|
906 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
|
907 whitespace, if any." |
d5d0f1479a4a
(f90-get-present-comment-type): Return whitespace, as well as comment
Glenn Morris <rgm@gnu.org>
parents:
53699
diff
changeset
|
908 ;; Include the whitespace for consistent auto-filling of comment blocks. |
10612 | 909 (save-excursion |
45076 | 910 (when (f90-in-comment) |
911 (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
|
912 (re-search-forward "!+[ \t]*" (line-end-position)) |
45076 | 913 (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
|
914 (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
|
915 (match-string-no-properties 0)))) |
10612 | 916 |
917 (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
|
918 "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
|
919 (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
|
920 (if b (downcase b) nil))) |
10612 | 921 |
922 (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
|
923 "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
|
924 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
|
925 (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
|
926 (list (match-string 3) (match-string 2)))) |
13064 | 927 |
928 (defsubst f90-looking-at-select-case () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
929 "Return (\"select\" NAME) if a select-case statement starts after point. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
930 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
|
931 (if (looking-at "\\(\\(\\sw+\\)[ \t]*:\\)?[ \t]*\ |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
932 \\(select\\)[ \t]*case[ \t]*(") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
933 (list (match-string 3) (match-string 2)))) |
10612 | 934 |
935 (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
|
936 "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
|
937 NAME is nil if the statement has no label." |
10612 | 938 (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
|
939 (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
|
940 (let ((struct (match-string 3)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
941 (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
|
942 (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
|
943 (and pos (goto-char pos)) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
944 (skip-chars-forward " \t") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
945 (if (or (looking-at "then\\>") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
946 (when (f90-line-continued) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
947 (f90-next-statement) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
948 (skip-chars-forward " \t0-9&") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
949 (looking-at "then\\>"))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
950 (list struct label)))))) |
10612 | 951 |
45434
1c0762514eaa
(f90-looking-at-where-or-forall): Oops, defsubst, not defun.
Glenn Morris <rgm@gnu.org>
parents:
45379
diff
changeset
|
952 (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
|
953 "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
|
954 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
|
955 (save-excursion |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
956 (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
|
957 \\(where\\|forall\\)\\>") |
31cf809b5bc2
(f90-equal-symbols, f90-looking-at-do, f90-looking-at-select-case)
Glenn Morris <rgm@gnu.org>
parents:
45372
diff
changeset
|
958 (let ((struct (match-string 3)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
959 (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
|
960 (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
|
961 (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
|
962 (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
|
963 (if (looking-at "\\(!\\|$\\)") (list struct label)))))) |
10612 | 964 |
965 (defsubst f90-looking-at-type-like () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
966 "Return (KIND NAME) if a type/interface/block-data block starts after point. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
967 NAME is non-nil only for type." |
44997 | 968 (cond |
13064 | 969 ((looking-at f90-type-def-re) |
45912 | 970 (list (match-string 1) (match-string 2))) |
13064 | 971 ((looking-at "\\(interface\\|block[\t]*data\\)\\>") |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
972 (list (match-string 1) nil)))) |
10612 | 973 |
974 (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
|
975 "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
|
976 ;;;NAME is nil for an un-named main PROGRAM block." |
10612 | 977 (cond |
13064 | 978 ((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
|
979 (list (match-string 1) (match-string 2))) |
10612 | 980 ((and (not (looking-at "module[ \t]*procedure\\>")) |
13064 | 981 (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
|
982 (list (match-string 1) (match-string 2))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
983 ((and (not (looking-at "end[ \t]*\\(function\\|subroutine\\)")) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
984 (looking-at "[^!'\"\&\n]*\\(function\\|subroutine\\)[ \t]+\ |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
985 \\(\\sw+\\)")) |
44824
637c10f08055
(f90-get-beg-of-line): Removed and replaced with line-beginning-position.
Glenn Morris <rgm@gnu.org>
parents:
44697
diff
changeset
|
986 (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
|
987 ;; 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
|
988 ;; 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
|
989 ;; 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
|
990 ;; 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
|
991 ;;; ((save-excursion |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
992 ;;; (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
|
993 ;;; '("program" nil)))) |
10612 | 994 |
995 (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
|
996 "Return (KIND NAME) if a block with name NAME ends after point." |
44997 | 997 (if (looking-at (concat "end[ \t]*" f90-blocks-re |
13064 | 998 "?\\([ \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
|
999 (list (match-string 1) (match-string 3)))) |
10612 | 1000 |
1001 (defsubst f90-comment-indent () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1002 "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
|
1003 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
|
1004 \"!!!\", `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
|
1005 `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
|
1006 All others return `comment-column', leaving at least one space after code." |
10612 | 1007 (cond ((looking-at "!!!") 0) |
13064 | 1008 ((and f90-directive-comment-re |
1009 (looking-at f90-directive-comment-re)) 0) | |
10612 | 1010 ((looking-at (regexp-quote f90-comment-region)) 0) |
22228
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1011 ((and (looking-at f90-indented-comment-re) |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1012 ;; Don't attempt to indent trailing comment as code. |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1013 (save-excursion |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1014 (skip-chars-backward " \t") |
a12c92c5f4e9
(f90-comment-indent): Don't attempt to indent trailing comment as
Dave Love <fx@gnu.org>
parents:
20953
diff
changeset
|
1015 (bolp))) |
10612 | 1016 (f90-calculate-indent)) |
1017 (t (skip-chars-backward " \t") | |
1018 (max (if (bolp) 0 (1+ (current-column))) comment-column)))) | |
1019 | |
1020 (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
|
1021 "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
|
1022 Possible return values are: |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1023 single - statement is not continued. |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1024 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
|
1025 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
|
1026 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
|
1027 Comment lines embedded amongst continued lines return 'middle." |
10612 | 1028 (let (pcont cont) |
1029 (save-excursion | |
45076 | 1030 (setq pcont (if (f90-previous-statement) (f90-line-continued)))) |
10612 | 1031 (setq cont (f90-line-continued)) |
1032 (cond ((and (not pcont) (not cont)) 'single) | |
1033 ((and (not pcont) cont) 'begin) | |
1034 ((and pcont (not cont)) 'end) | |
1035 ((and pcont cont) 'middle) | |
45076 | 1036 (t (error "The impossible occurred"))))) |
10612 | 1037 |
1038 (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
|
1039 "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
|
1040 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
|
1041 Call from beginning of line." |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1042 (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
|
1043 (delete-horizontal-space)) |
10612 | 1044 (skip-chars-forward " \t0-9")) |
1045 | |
1046 (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
|
1047 "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
|
1048 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
|
1049 if all else fails." |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1050 (save-excursion |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1051 (not (or (looking-at "end") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1052 (looking-at "\\(do\\|if\\|else\\(if\\|where\\)?\ |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1053 \\|select[ \t]*case\\|case\\|where\\|forall\\)\\>") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1054 (looking-at "\\(program\\|module\\|interface\\|\ |
10612 | 1055 block[ \t]*data\\)\\>") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1056 (looking-at "\\(contains\\|\\sw+[ \t]*:\\)") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1057 (looking-at f90-type-def-re) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1058 (re-search-forward "\\(function\\|subroutine\\)" |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1059 (line-end-position) t))))) |
10612 | 1060 |
1061 (defsubst f90-update-line () | |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1062 "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
|
1063 (if f90-auto-keyword-case |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1064 (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
|
1065 (line-beginning-position) (line-end-position)))) |
10612 | 1066 |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1067 (defun f90-electric-insert () |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1068 "Change keyword case and auto-fill line as operators are inserted." |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1069 (interactive) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1070 (self-insert-command 1) |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1071 (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
|
1072 (f90-update-line))) |
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1073 |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1074 |
10612 | 1075 (defun f90-get-correct-indent () |
1076 "Get correct indent for a line starting with line number. | |
1077 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
|
1078 (let ((epnt (line-end-position)) icol cont) |
10612 | 1079 (save-excursion |
1080 (while (and (f90-previous-statement) | |
1081 (or (progn | |
1082 (setq cont (f90-present-statement-cont)) | |
1083 (or (eq cont 'end) (eq cont 'middle))) | |
1084 (looking-at "[ \t]*[0-9]")))) | |
1085 (setq icol (current-indentation)) | |
1086 (beginning-of-line) | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1087 (when (re-search-forward "\\(if\\|do\\|select\\|where\\|forall\\)" |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1088 (line-end-position) t) |
45076 | 1089 (beginning-of-line) |
1090 (skip-chars-forward " \t") | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1091 (cond ((f90-looking-at-do) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1092 (setq icol (+ icol f90-do-indent))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1093 ((or (f90-looking-at-if-then) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1094 (f90-looking-at-where-or-forall) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1095 (f90-looking-at-select-case)) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1096 (setq icol (+ icol f90-if-indent)))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1097 (end-of-line)) |
10612 | 1098 (while (re-search-forward |
13064 | 1099 "\\(if\\|do\\|select\\|where\\|forall\\)" epnt t) |
45076 | 1100 (beginning-of-line) |
1101 (skip-chars-forward " \t0-9") | |
1102 (cond ((f90-looking-at-do) | |
1103 (setq icol (+ icol f90-do-indent))) | |
1104 ((or (f90-looking-at-if-then) | |
1105 (f90-looking-at-where-or-forall) | |
1106 (f90-looking-at-select-case)) | |
1107 (setq icol (+ icol f90-if-indent))) | |
1108 ((looking-at f90-end-if-re) | |
1109 (setq icol (- icol f90-if-indent))) | |
1110 ((looking-at "end[ \t]*do\\>") | |
1111 (setq icol (- icol f90-do-indent)))) | |
10612 | 1112 (end-of-line)) |
1113 icol))) | |
44997 | 1114 |
10612 | 1115 (defun f90-calculate-indent () |
1116 "Calculate the indent column based on previous statements." | |
1117 (interactive) | |
1118 (let (icol cont (case-fold-search t) (pnt (point))) | |
1119 (save-excursion | |
1120 (if (not (f90-previous-statement)) | |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1121 ;; First statement in buffer. |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1122 (setq icol (if (save-excursion |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1123 (f90-next-statement) |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1124 (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
|
1125 0 |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1126 ;; 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
|
1127 f90-program-indent)) |
10612 | 1128 (setq cont (f90-present-statement-cont)) |
1129 (if (eq cont 'end) | |
1130 (while (not (eq 'begin (f90-present-statement-cont))) | |
1131 (f90-previous-statement))) | |
1132 (cond ((eq cont 'begin) | |
1133 (setq icol (+ (f90-current-indentation) | |
1134 f90-continuation-indent))) | |
45076 | 1135 ((eq cont 'middle) (setq icol (current-indentation))) |
10612 | 1136 (t (setq icol (f90-current-indentation)) |
1137 (skip-chars-forward " \t") | |
1138 (if (looking-at "[0-9]") | |
1139 (setq icol (f90-get-correct-indent)) | |
1140 (cond ((or (f90-looking-at-if-then) | |
1141 (f90-looking-at-where-or-forall) | |
1142 (f90-looking-at-select-case) | |
44997 | 1143 (looking-at f90-else-like-re)) |
10612 | 1144 (setq icol (+ icol f90-if-indent))) |
1145 ((f90-looking-at-do) | |
1146 (setq icol (+ icol f90-do-indent))) | |
1147 ((f90-looking-at-type-like) | |
1148 (setq icol (+ icol f90-type-indent))) | |
1149 ((or (f90-looking-at-program-block-start) | |
1150 (looking-at "contains[ \t]*\\($\\|!\\)")) | |
1151 (setq icol (+ icol f90-program-indent))))) | |
1152 (goto-char pnt) | |
1153 (beginning-of-line) | |
1154 (cond ((looking-at "[ \t]*$")) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1155 ((looking-at "[ \t]*#") ; check for cpp directive |
10612 | 1156 (setq icol 0)) |
1157 (t | |
1158 (skip-chars-forward " \t0-9") | |
1159 (cond ((or (looking-at f90-else-like-re) | |
1160 (looking-at f90-end-if-re)) | |
1161 (setq icol (- icol f90-if-indent))) | |
13064 | 1162 ((looking-at "end[ \t]*do\\>") |
10612 | 1163 (setq icol (- icol f90-do-indent))) |
1164 ((looking-at f90-end-type-re) | |
1165 (setq icol (- icol f90-type-indent))) | |
1166 ((or (looking-at "contains[ \t]*\\(!\\|$\\)") | |
1167 (f90-looking-at-program-block-end)) | |
1168 (setq icol (- icol f90-program-indent)))))) | |
1169 )))) | |
1170 icol)) | |
1171 | |
1172 (defun f90-previous-statement () | |
1173 "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
|
1174 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
|
1175 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
|
1176 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
|
1177 comment." |
10612 | 1178 (interactive) |
1179 (let (not-first-statement) | |
1180 (beginning-of-line) | |
1181 (while (and (setq not-first-statement (zerop (forward-line -1))) | |
13064 | 1182 (looking-at "[ \t0-9]*\\(!\\|$\\|#\\)"))) |
10612 | 1183 not-first-statement)) |
1184 | |
1185 (defun f90-next-statement () | |
1186 "Move point to beginning of the next F90 statement. | |
1187 Return nil if no later statement is found." | |
1188 (interactive) | |
1189 (let (not-last-statement) | |
1190 (beginning-of-line) | |
1191 (while (and (setq not-last-statement | |
1192 (and (zerop (forward-line 1)) | |
1193 (not (eobp)))) | |
1194 (looking-at "[ \t0-9]*\\(!\\|$\\)"))) | |
1195 not-last-statement)) | |
1196 | |
1197 (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
|
1198 "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
|
1199 Return (TYPE NAME), or nil if not found." |
10612 | 1200 (interactive) |
1201 (let ((count 1) (case-fold-search t) matching-beg) | |
45076 | 1202 (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
|
1203 (while (and (> count 0) |
10612 | 1204 (re-search-backward f90-program-block-re nil 'move)) |
45076 | 1205 (beginning-of-line) |
1206 (skip-chars-forward " \t0-9") | |
1207 (cond ((setq matching-beg (f90-looking-at-program-block-start)) | |
1208 (setq count (1- count))) | |
1209 ((f90-looking-at-program-block-end) | |
1210 (setq count (1+ count))))) | |
10612 | 1211 (beginning-of-line) |
1212 (if (zerop count) | |
1213 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
|
1214 ;; 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
|
1215 ;; 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
|
1216 (message "No beginning found.") |
10612 | 1217 nil))) |
1218 | |
1219 (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
|
1220 "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
|
1221 Return (TYPE NAME), or nil if not found." |
10612 | 1222 (interactive) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1223 (let ((case-fold-search t) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1224 (count 1) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1225 matching-end) |
10612 | 1226 (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
|
1227 (while (and (> count 0) |
10612 | 1228 (re-search-forward f90-program-block-re nil 'move)) |
45076 | 1229 (beginning-of-line) |
1230 (skip-chars-forward " \t0-9") | |
10612 | 1231 (cond ((f90-looking-at-program-block-start) |
45076 | 1232 (setq count (1+ count))) |
10612 | 1233 ((setq matching-end (f90-looking-at-program-block-end)) |
45076 | 1234 (setq count (1- count)))) |
10612 | 1235 (end-of-line)) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1236 ;; 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
|
1237 ;; 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
|
1238 ;;; (forward-line 1) |
10612 | 1239 (if (zerop count) |
1240 matching-end | |
1241 (message "No end found.") | |
1242 nil))) | |
1243 | |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1244 |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1245 (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
|
1246 "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
|
1247 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
|
1248 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
|
1249 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
|
1250 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
|
1251 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
|
1252 (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
|
1253 (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
|
1254 (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
|
1255 (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
|
1256 (case-fold-search t) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1257 (count (or num 1)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1258 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
|
1259 (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
|
1260 (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
|
1261 (beginning-of-line) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1262 (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
|
1263 (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
|
1264 ((setq start-this |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1265 (or |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1266 (f90-looking-at-do) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1267 (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
|
1268 (f90-looking-at-type-like) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1269 (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
|
1270 (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
|
1271 (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
|
1272 (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
|
1273 count (1+ count))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1274 ((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
|
1275 "[ \t]*\\(\\sw+\\)?")) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1276 (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
|
1277 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
|
1278 count (1- count)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1279 ;; Check any internal blocks. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1280 (when start-list |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1281 (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
|
1282 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
|
1283 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
|
1284 start-label (cadr start-this)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1285 (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
|
1286 (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
|
1287 end-type start-type)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1288 (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
|
1289 (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
|
1290 end-label start-label))))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1291 (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
|
1292 (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
|
1293 ;; 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
|
1294 (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
|
1295 (save-excursion |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1296 (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
|
1297 (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
|
1298 (f90-match-end))))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1299 |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1300 (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
|
1301 "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
|
1302 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
|
1303 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
|
1304 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
|
1305 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
|
1306 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
|
1307 (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
|
1308 (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
|
1309 (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
|
1310 (count (or num 1)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1311 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
|
1312 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
|
1313 (if (interactive-p) (push-mark (point) t)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1314 (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
|
1315 (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
|
1316 (beginning-of-line) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1317 (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
|
1318 (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
|
1319 ((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
|
1320 "[ \t]*\\(\\sw+\\)?")) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1321 (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
|
1322 end-list) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1323 count (1+ count))) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1324 ((setq start-this |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1325 (or |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1326 (f90-looking-at-do) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1327 (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
|
1328 (f90-looking-at-type-like) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1329 (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
|
1330 (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
|
1331 (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
|
1332 (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
|
1333 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
|
1334 count (1- count)) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1335 ;; Check any internal blocks. |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1336 (when end-list |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1337 (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
|
1338 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
|
1339 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
|
1340 end-label (cadr end-this)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1341 (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
|
1342 (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
|
1343 start-type end-type)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1344 (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
|
1345 (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
|
1346 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
|
1347 ;; 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
|
1348 (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
|
1349 |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1350 (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
|
1351 "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
|
1352 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
|
1353 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
|
1354 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
|
1355 (interactive "p") |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1356 (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
|
1357 (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
|
1358 (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
|
1359 (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
|
1360 (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
|
1361 (beginning-of-line) |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1362 (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
|
1363 (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
|
1364 ((or |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1365 (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
|
1366 (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
|
1367 (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
|
1368 (f90-looking-at-type-like) |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1369 (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
|
1370 (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
|
1371 (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
|
1372 (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
|
1373 (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
|
1374 (beginning-of-line))))) |
45497
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1375 |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1376 |
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1377 (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
|
1378 "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
|
1379 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
|
1380 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
|
1381 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
|
1382 (interactive "p") |
45526
fcfb7bc58212
(f90-previous-block, f90-next-block): New names (and slightly changed
Glenn Morris <rgm@gnu.org>
parents:
45497
diff
changeset
|
1383 (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
|
1384 |
599066f40ebe
(f90-end-of-subprogram): Remove the final (forward-line 1).
Glenn Morris <rgm@gnu.org>
parents:
45434
diff
changeset
|
1385 |
10612 | 1386 (defun f90-mark-subprogram () |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1387 "Put mark at end of F90 subprogram, point at beginning, push mark." |
10612 | 1388 (interactive) |
1389 (let ((pos (point)) program) | |
1390 (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
|
1391 (push-mark) |
10612 | 1392 (goto-char pos) |
1393 (setq program (f90-beginning-of-subprogram)) | |
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
|
1394 (if (fboundp 'zmacs-activate-region) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
1395 (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
|
1396 (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
|
1397 deactivate-mark nil)) |
10612 | 1398 program)) |
1399 | |
1400 (defun f90-comment-region (beg-region end-region) | |
1401 "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
|
1402 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
|
1403 in the region, or, if already present, remove it." |
10612 | 1404 (interactive "*r") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1405 (let ((end (copy-marker end-region))) |
10612 | 1406 (goto-char beg-region) |
1407 (beginning-of-line) | |
1408 (if (looking-at (regexp-quote f90-comment-region)) | |
1409 (delete-region (point) (match-end 0)) | |
1410 (insert f90-comment-region)) | |
45076 | 1411 (while (and (zerop (forward-line 1)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1412 (< (point) end)) |
10612 | 1413 (if (looking-at (regexp-quote f90-comment-region)) |
1414 (delete-region (point) (match-end 0)) | |
1415 (insert f90-comment-region))) | |
1416 (set-marker end nil))) | |
1417 | |
1418 (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
|
1419 "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
|
1420 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
|
1421 after indenting." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1422 (interactive "*P") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1423 (let ((case-fold-search t) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1424 (pos (point-marker)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1425 indent no-line-number) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1426 (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
|
1427 (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
|
1428 (f90-line-continued)))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1429 (f90-indent-line-no) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1430 (setq no-line-number t) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1431 (skip-chars-forward " \t")) |
10612 | 1432 (if (looking-at "!") |
1433 (setq indent (f90-comment-indent)) | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1434 (and f90-smart-end (looking-at "end") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1435 (f90-match-end)) |
10612 | 1436 (setq indent (f90-calculate-indent))) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1437 (or (= indent (current-column)) |
45076 | 1438 (f90-indent-to indent no-line-number)) |
10612 | 1439 ;; If initial point was within line's indentation, |
1440 ;; 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
|
1441 (and (< (point) pos) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1442 (goto-char pos)) |
44997 | 1443 (if auto-fill-function |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1444 ;; 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
|
1445 (f90-do-auto-fill) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1446 (or no-update (f90-update-line))) |
10612 | 1447 (set-marker pos nil))) |
1448 | |
1449 (defun f90-indent-new-line () | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1450 "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
|
1451 An abbrev before point is expanded if the variable `abbrev-mode' is non-nil. |
10612 | 1452 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
|
1453 (interactive "*") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1454 (if abbrev-mode (expand-abbrev)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1455 (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
|
1456 (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
|
1457 (end-of-line) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1458 (delete-horizontal-space) ; destroy trailing whitespace |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1459 (let ((string (f90-in-string)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1460 (cont (f90-line-continued))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1461 (and string (not cont) (insert "&")) |
10612 | 1462 (newline) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1463 (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
|
1464 (f90-indent-line 'no-update)) ; nothing to update |
10612 | 1465 |
1466 | |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1467 ;; 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
|
1468 ;; Why is second line getting extra indent over first? |
10612 | 1469 (defun f90-indent-region (beg-region end-region) |
1470 "Indent every line in region by forward parsing." | |
1471 (interactive "*r") | |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1472 (let ((end-region-mark (copy-marker end-region)) |
45076 | 1473 (save-point (point-marker)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1474 block-list ind-lev ind-curr ind-b cont struct beg-struct end-struct) |
10612 | 1475 (goto-char beg-region) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1476 ;; First find a line which is not a continuation line or comment. |
10612 | 1477 (beginning-of-line) |
13064 | 1478 (while (and (looking-at "[ \t]*[0-9]*\\(!\\|#\\|[ \t]*$\\)") |
10612 | 1479 (progn (f90-indent-line 'no-update) |
1480 (zerop (forward-line 1))) | |
1481 (< (point) end-region-mark))) | |
1482 (setq cont (f90-present-statement-cont)) | |
1483 (while (and (or (eq cont 'middle) (eq cont 'end)) | |
1484 (f90-previous-statement)) | |
1485 (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
|
1486 ;; Process present line for beginning of block. |
10612 | 1487 (setq f90-cache-position (point)) |
1488 (f90-indent-line 'no-update) | |
45076 | 1489 (setq ind-lev (f90-current-indentation) |
1490 ind-curr ind-lev) | |
1491 (beginning-of-line) | |
1492 (skip-chars-forward " \t0-9") | |
1493 (setq struct nil | |
1494 ind-b (cond ((setq struct (f90-looking-at-do)) f90-do-indent) | |
10612 | 1495 ((or (setq struct (f90-looking-at-if-then)) |
1496 (setq struct (f90-looking-at-select-case)) | |
1497 (setq struct (f90-looking-at-where-or-forall)) | |
1498 (looking-at f90-else-like-re)) | |
1499 f90-if-indent) | |
1500 ((setq struct (f90-looking-at-type-like)) | |
1501 f90-type-indent) | |
47178
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
1502 ((or (setq struct (f90-looking-at-program-block-start)) |
7a1530aeef3f
Remove (eval-when-compile) for free variables.
Glenn Morris <rgm@gnu.org>
parents:
47012
diff
changeset
|
1503 (looking-at "contains[ \t]*\\($\\|!\\)")) |
10612 | 1504 f90-program-indent))) |
1505 (if ind-b (setq ind-lev (+ ind-lev ind-b))) | |
1506 (if struct (setq block-list (cons struct block-list))) | |
1507 (while (and (f90-line-continued) (zerop (forward-line 1)) | |
1508 (< (point) end-region-mark)) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1509 (if (looking-at "[ \t]*!") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1510 (f90-indent-to (f90-comment-indent)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1511 (or (= (current-indentation) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1512 (+ ind-curr f90-continuation-indent)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1513 (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
|
1514 ;; Process all following lines. |
44990
8412bb92c791
Add/change doc strings for many in-line functions.
Glenn Morris <rgm@gnu.org>
parents:
44950
diff
changeset
|
1515 (while (and (zerop (forward-line 1)) (< (point) end-region-mark)) |
10612 | 1516 (beginning-of-line) |
1517 (f90-indent-line-no) | |
1518 (setq f90-cache-position (point)) | |
1519 (cond ((looking-at "[ \t]*$") (setq ind-curr 0)) | |
1520 ((looking-at "[ \t]*#") (setq ind-curr 0)) | |
1521 ((looking-at "!") (setq ind-curr (f90-comment-indent))) | |
1522 ((f90-no-block-limit) (setq ind-curr ind-lev)) | |
1523 ((looking-at f90-else-like-re) (setq ind-curr | |
1524 (- ind-lev f90-if-indent))) | |
1525 ((looking-at "contains[ \t]*\\($\\|!\\)") | |
1526 (setq ind-curr (- ind-lev f90-program-indent))) | |
1527 ((setq ind-b | |
1528 (cond ((setq struct (f90-looking-at-do)) f90-do-indent) | |
1529 ((or (setq struct (f90-looking-at-if-then)) | |
1530 (setq struct (f90-looking-at-select-case)) | |
1531 (setq struct (f90-looking-at-where-or-forall))) | |
1532 f90-if-indent) | |
1533 ((setq struct (f90-looking-at-type-like)) | |
1534 f90-type-indent) | |
1535 ((setq struct (f90-looking-at-program-block-start)) | |
1536 f90-program-indent))) | |
1537 (setq ind-curr ind-lev) | |
1538 (if ind-b (setq ind-lev (+ ind-lev ind-b))) | |
1539 (setq block-list (cons struct block-list))) | |
1540 ((setq end-struct (f90-looking-at-program-block-end)) | |
1541 (setq beg-struct (car block-list) | |
1542 block-list (cdr block-list)) | |
44997 | 1543 (if f90-smart-end |
10612 | 1544 (save-excursion |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1545 (f90-block-match (car beg-struct) (car (cdr beg-struct)) |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1546 (car end-struct) (car (cdr end-struct))))) |
10612 | 1547 (setq ind-b |
1548 (cond ((looking-at f90-end-if-re) f90-if-indent) | |
1549 ((looking-at "end[ \t]*do\\>") f90-do-indent) | |
1550 ((looking-at f90-end-type-re) f90-type-indent) | |
1551 ((f90-looking-at-program-block-end) | |
1552 f90-program-indent))) | |
1553 (if ind-b (setq ind-lev (- ind-lev ind-b))) | |
1554 (setq ind-curr ind-lev)) | |
1555 (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
|
1556 ;; Do the indentation if necessary. |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1557 (or (= ind-curr (current-column)) |
10612 | 1558 (f90-indent-to ind-curr)) |
1559 (while (and (f90-line-continued) (zerop (forward-line 1)) | |
1560 (< (point) end-region-mark)) | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1561 (if (looking-at "[ \t]*!") |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1562 (f90-indent-to (f90-comment-indent)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1563 (or (= (current-indentation) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1564 (+ ind-curr f90-continuation-indent)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1565 (f90-indent-to |
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1566 (+ 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
|
1567 ;; Restore point, etc. |
10612 | 1568 (setq f90-cache-position nil) |
1569 (goto-char save-point) | |
1570 (set-marker end-region-mark nil) | |
1571 (set-marker save-point nil) | |
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
|
1572 (if (fboundp 'zmacs-deactivate-region) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
1573 (zmacs-deactivate-region) |
10612 | 1574 (deactivate-mark)))) |
1575 | |
1576 (defun f90-indent-subprogram () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1577 "Properly indent the subprogram containing point." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1578 (interactive "*") |
10612 | 1579 (save-excursion |
45076 | 1580 (let ((program (f90-mark-subprogram))) |
10612 | 1581 (if program |
1582 (progn | |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1583 (message "Indenting %s %s..." |
14526
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1584 (car program) (car (cdr program))) |
44341
9c7859045cf8
(f90-indent-subprogram): Braino (missing arg).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44340
diff
changeset
|
1585 (indent-region (point) (mark) nil) |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1586 (message "Indenting %s %s...done" |
14526
e2db2835838d
(f90-indent-subprogram, f90-match-end): Pass proper format string to message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1587 (car program) (car (cdr program)))) |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1588 (message "Indenting the whole file...") |
44341
9c7859045cf8
(f90-indent-subprogram): Braino (missing arg).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44340
diff
changeset
|
1589 (indent-region (point) (mark) nil) |
14533
2eb6c03dcb86
(f90-indent-subprogram): Fix message.
Karl Heuer <kwzh@gnu.org>
parents:
14526
diff
changeset
|
1590 (message "Indenting the whole file...done"))))) |
10612 | 1591 |
1592 (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
|
1593 "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
|
1594 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
|
1595 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
|
1596 (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
|
1597 (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
|
1598 (insert "&\n&")) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1599 ((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
|
1600 (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
|
1601 (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
|
1602 (t (insert "&") |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1603 (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
|
1604 (newline 1) |
ecefa899fdb3
(f90-get-present-comment-type): Fix bug introduced in version 1.46.
Glenn Morris <rgm@gnu.org>
parents:
45370
diff
changeset
|
1605 (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
|
1606 (indent-according-to-mode)) |
44997 | 1607 |
10612 | 1608 (defun f90-find-breakpoint () |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1609 "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
|
1610 (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
|
1611 (if (not f90-break-before-delimiters) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1612 (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
|
1613 (backward-char) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1614 (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
|
1615 (forward-char)))) |
10612 | 1616 |
1617 (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
|
1618 "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
|
1619 Update keyword case first." |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1620 (interactive "*") |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1621 ;; 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
|
1622 ;; position is beyond fill-column. |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1623 ;; 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
|
1624 (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
|
1625 ;; 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
|
1626 (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
|
1627 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
|
1628 (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
|
1629 (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
|
1630 (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
|
1631 (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
|
1632 (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
|
1633 (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
|
1634 (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
|
1635 (set-marker pos-mark nil))))) |
15863
f11b2bfc1275
new version from Torbj?Einarsson.
Erik Naggum <erik@naggum.no>
parents:
15244
diff
changeset
|
1636 |
50571
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1637 (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
|
1638 "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
|
1639 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
|
1640 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
|
1641 (interactive "*P") |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1642 (beginning-of-line) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1643 (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
|
1644 (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
|
1645 (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
|
1646 (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
|
1647 (beginning-of-line) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1648 (delete-region (point) (1- (point))) |
10612 | 1649 (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
|
1650 (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
|
1651 (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
|
1652 (looking-at "[ \t]*!+") |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1653 (replace-match "")) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1654 (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
|
1655 (fixup-whitespace)))) |
10612 | 1656 |
1657 (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
|
1658 "Fill every line in region by forward parsing. Join lines if possible." |
10612 | 1659 (interactive "*r") |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1660 (let ((end-region-mark (copy-marker end-region)) |
45076 | 1661 (go-on t) |
1662 f90-smart-end f90-auto-keyword-case auto-fill-function) | |
10612 | 1663 (goto-char beg-region) |
1664 (while go-on | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1665 ;; Join as much as possible. |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1666 (while (progn |
50571
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1667 (end-of-line) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1668 (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
|
1669 (eq (preceding-char) ?&)) |
9d10c32adde2
(f90-join-lines): Make it behave more like the standard function
Glenn Morris <rgm@gnu.org>
parents:
50562
diff
changeset
|
1670 (f90-join-lines 'forward)) |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1671 ;; Chop the line if necessary. |
10612 | 1672 (while (> (save-excursion (end-of-line) (current-column)) |
1673 fill-column) | |
1674 (move-to-column fill-column) | |
16444
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1675 (f90-find-breakpoint) |
f32ed369901c
(f90-no-block-limit): Fixed bug for indentation of
Richard M. Stallman <rms@gnu.org>
parents:
15863
diff
changeset
|
1676 (f90-break-line 'no-update)) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1677 (setq go-on (and (< (point) end-region-mark) |
45076 | 1678 (zerop (forward-line 1))) |
1679 f90-cache-position (point))) | |
10612 | 1680 (setq f90-cache-position nil) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1681 (set-marker end-region-mark nil) |
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
|
1682 (if (fboundp 'zmacs-deactivate-region) |
46993
c4e4658185e3
eval-when-compile a few defvars to quieten the byte-compiler.
Glenn Morris <rgm@gnu.org>
parents:
46796
diff
changeset
|
1683 (zmacs-deactivate-region) |
10612 | 1684 (deactivate-mark)))) |
1685 | |
1686 (defun f90-block-match (beg-block beg-name end-block end-name) | |
1687 "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
|
1688 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
|
1689 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
|
1690 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
|
1691 END-NAME is the block end name (may be nil). |
10612 | 1692 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
|
1693 ;; 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
|
1694 ;; 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
|
1695 ;; 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
|
1696 (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
|
1697 (search-forward "end" (line-end-position)) |
10612 | 1698 (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
|
1699 (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
|
1700 (search-forward end-block) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1701 (if end-block |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1702 (progn |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1703 (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
|
1704 (end-of-line) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1705 (throw 'no-match nil)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1706 (message "Inserting %s." beg-block) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1707 (insert (concat " " beg-block)))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1708 (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
|
1709 (and end-name (search-forward end-name)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1710 (cond ((and beg-name (not end-name)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1711 (message "Inserting %s." beg-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1712 (insert (concat " " beg-name))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1713 ((and beg-name end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1714 (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
|
1715 (search-forward end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1716 (replace-match beg-name)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1717 ((and (not beg-name) end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1718 (message "Deleting %s." end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1719 (search-forward end-name) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1720 (replace-match "")))) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1721 (or (looking-at "[ \t]*!") (delete-horizontal-space)))) |
10612 | 1722 |
1723 (defun f90-match-end () | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1724 "From an end block statement, find the corresponding block and name." |
10612 | 1725 (interactive) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1726 (let ((count 1) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1727 (top-of-window (window-start)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1728 (end-point (point)) |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1729 (case-fold-search t) |
45076 | 1730 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
|
1731 (when (save-excursion (beginning-of-line) (skip-chars-forward " \t0-9") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1732 (setq end-struct (f90-looking-at-program-block-end))) |
45076 | 1733 (setq end-block (car end-struct) |
1734 end-name (car (cdr end-struct))) | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1735 (save-excursion |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1736 (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
|
1737 (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
|
1738 (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
|
1739 (re-search-backward f90-blocks-re nil 'move) |
45076 | 1740 (beginning-of-line) |
50610
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1741 ;; 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
|
1742 ;;; (skip-chars-forward " \t") |
a8eb65a987d7
(f90-indent-to, f90-indent-line-no)
Glenn Morris <rgm@gnu.org>
parents:
50597
diff
changeset
|
1743 ;;; (skip-chars-forward "0-9") |
45076 | 1744 (skip-chars-forward " \t0-9") |
45370
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
1745 (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
|
1746 ((setq matching-beg |
45076 | 1747 (or |
1748 (f90-looking-at-do) | |
1749 (f90-looking-at-if-then) | |
1750 (f90-looking-at-where-or-forall) | |
1751 (f90-looking-at-select-case) | |
1752 (f90-looking-at-type-like) | |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1753 (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
|
1754 ;; 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
|
1755 ;; 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
|
1756 ;; 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
|
1757 (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
|
1758 '("program" nil)))) |
45076 | 1759 (setq count (1- count))) |
45370
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
1760 ((looking-at (concat "end[ \t]*" f90-blocks-re)) |
45076 | 1761 (setq count (1+ count))))) |
45370
4055a77b0abb
(f90-match-end): Simplify it a bit.
Glenn Morris <rgm@gnu.org>
parents:
45355
diff
changeset
|
1762 (if (> count 0) |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1763 (message "No matching beginning.") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1764 (f90-update-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1765 (if (eq f90-smart-end 'blink) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1766 (if (< (point) top-of-window) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1767 (message "Matches %s: %s" |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1768 (what-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1769 (buffer-substring |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1770 (line-beginning-position) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1771 (line-end-position))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1772 (sit-for 1))) |
45076 | 1773 (setq beg-block (car matching-beg) |
1774 beg-name (car (cdr matching-beg))) | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1775 (goto-char end-point) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1776 (beginning-of-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1777 (f90-block-match beg-block beg-name end-block end-name)))))) |
10612 | 1778 |
1779 (defun f90-insert-end () | |
44866
582f083ed579
General tidy-up of commentary and some doc strings.
Glenn Morris <rgm@gnu.org>
parents:
44825
diff
changeset
|
1780 "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
|
1781 (interactive "*") |
45076 | 1782 (let ((f90-smart-end (or f90-smart-end 'blink))) |
10612 | 1783 (insert "end") |
1784 (f90-indent-new-line))) | |
1785 | |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1786 ;; Abbrevs and keywords. |
10612 | 1787 |
1788 (defun f90-abbrev-start () | |
44997 | 1789 "Typing `\\[help-command] or `? lists all the F90 abbrevs. |
10612 | 1790 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
|
1791 (interactive "*") |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1792 (insert last-command-char) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1793 (let (char event) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1794 (if (fboundp 'next-command-event) ; XEmacs |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1795 (setq event (next-command-event) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1796 char (event-to-character event)) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1797 (setq event (read-event) |
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1798 char event)) |
50562
6ee9d94eaca3
(f90-abbrev-start): Only offer help if abbrev-mode is active.
Glenn Morris <rgm@gnu.org>
parents:
49598
diff
changeset
|
1799 ;; 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
|
1800 (if (and abbrev-mode (or (eq char ??) (eq char help-char))) |
10612 | 1801 (f90-abbrev-help) |
50647
5773e914b2ed
(f90-font-lock-keywords-2): Use override for
Glenn Morris <rgm@gnu.org>
parents:
50616
diff
changeset
|
1802 (setq unread-command-events (list event))))) |
10612 | 1803 |
1804 (defun f90-abbrev-help () | |
1805 "List the currently defined abbrevs in F90 mode." | |
1806 (interactive) | |
1807 (message "Listing abbrev table...") | |
1808 (display-buffer (f90-prepare-abbrev-list-buffer)) | |
1809 (message "Listing abbrev table...done")) | |
1810 | |
1811 (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
|
1812 "Create a buffer listing the F90 mode abbreviations." |
10612 | 1813 (save-excursion |
1814 (set-buffer (get-buffer-create "*Abbrevs*")) | |
1815 (erase-buffer) | |
1816 (insert-abbrev-table-description 'f90-mode-abbrev-table t) | |
1817 (goto-char (point-min)) | |
1818 (set-buffer-modified-p nil) | |
1819 (edit-abbrevs-mode)) | |
1820 (get-buffer-create "*Abbrevs*")) | |
1821 | |
1822 (defun f90-upcase-keywords () | |
1823 "Upcase all F90 keywords in the buffer." | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1824 (interactive "*") |
10612 | 1825 (f90-change-keywords 'upcase-word)) |
1826 | |
1827 (defun f90-capitalize-keywords () | |
1828 "Capitalize all F90 keywords in the buffer." | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1829 (interactive "*") |
10612 | 1830 (f90-change-keywords 'capitalize-word)) |
1831 | |
1832 (defun f90-downcase-keywords () | |
1833 "Downcase all F90 keywords in the buffer." | |
50597
2e53f070cbc3
Whitespace changes, trivial commentary changes.
Glenn Morris <rgm@gnu.org>
parents:
50571
diff
changeset
|
1834 (interactive "*") |
10612 | 1835 (f90-change-keywords 'downcase-word)) |
1836 | |
1837 (defun f90-upcase-region-keywords (beg end) | |
1838 "Upcase all F90 keywords in the region." | |
1839 (interactive "*r") | |
1840 (f90-change-keywords 'upcase-word beg end)) | |
1841 | |
1842 (defun f90-capitalize-region-keywords (beg end) | |
1843 "Capitalize all F90 keywords in the region." | |
1844 (interactive "*r") | |
1845 (f90-change-keywords 'capitalize-word beg end)) | |
1846 | |
1847 (defun f90-downcase-region-keywords (beg end) | |
1848 "Downcase all F90 keywords in the region." | |
1849 (interactive "*r") | |
1850 (f90-change-keywords 'downcase-word beg end)) | |
1851 | |
1852 ;; Change the keywords according to argument. | |
1853 (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
|
1854 "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
|
1855 CHANGE-WORD should be one of 'upcase-word, 'downcase-word, 'capitalize-word." |
10612 | 1856 (save-excursion |
45076 | 1857 (setq beg (or beg (point-min)) |
1858 end (or end (point-max))) | |
44997 | 1859 (let ((keyword-re |
13064 | 1860 (concat "\\(" |
1861 f90-keywords-re "\\|" f90-procedures-re "\\|" | |
1862 f90-hpf-keywords-re "\\|" f90-operators-re "\\)")) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47178
diff
changeset
|
1863 (ref-point (point-min)) |
45076 | 1864 (modified (buffer-modified-p)) |
1865 state saveword back-point) | |
10612 | 1866 (goto-char beg) |
13064 | 1867 (unwind-protect |
1868 (while (re-search-forward keyword-re end t) | |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1869 (unless (progn |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1870 (setq state (parse-partial-sexp ref-point (point))) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1871 (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
|
1872 ;; GM f90-directive-comment-re? |
45066
a770c1eeff8c
Yet more doc string, commment and whitespace changes.
Glenn Morris <rgm@gnu.org>
parents:
44997
diff
changeset
|
1873 (save-excursion ; check for cpp directive |
44944
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1874 (beginning-of-line) |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1875 (skip-chars-forward " \t0-9") |
dbacf99cccc4
Minor reorganization of some code.
Glenn Morris <rgm@gnu.org>
parents:
44943
diff
changeset
|
1876 (looking-at "#")))) |
13064 | 1877 (setq ref-point (point) |
45076 | 1878 back-point (save-excursion (backward-word 1) (point)) |
1879 saveword (buffer-substring back-point ref-point)) | |
13064 | 1880 (funcall change-word -1) |
1881 (or (string= saveword (buffer-substring back-point ref-point)) | |
1882 (setq modified t)))) | |
1883 (or modified (set-buffer-modified-p nil)))))) | |
10612 | 1884 |
28170
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1885 |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1886 (defun f90-current-defun () |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1887 "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
|
1888 (save-excursion |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1889 (nth 1 (f90-beginning-of-subprogram)))) |
5427762a58a5
(f90): Put custom group under `languages', not
Dave Love <fx@gnu.org>
parents:
26607
diff
changeset
|
1890 |
58482
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1891 |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1892 (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
|
1893 "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
|
1894 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
|
1895 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
|
1896 escape character." |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1897 (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
|
1898 (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
|
1899 (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
|
1900 (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
|
1901 (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
|
1902 |
08ece7841cd6
(f90-smart-end, f90-previous-statement, f90-beginning-of-block): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
57935
diff
changeset
|
1903 |
10612 | 1904 (provide 'f90) |
10613 | 1905 |
52401 | 1906 ;;; arch-tag: fceac97c-c147-44bd-aec0-172d4b560ef8 |
10612 | 1907 ;;; f90.el ends here |