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