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