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