annotate lisp/progmodes/f90.el @ 46796:342b3e8fd75c

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