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