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