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