annotate lisp/progmodes/fortran.el @ 45345:1f3817058799

Update maintainer.
author Glenn Morris <rgm@gnu.org>
date Sat, 18 May 2002 19:05:34 +0000
parents 793bb00af917
children 0ea82abe061c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
1 ;;; fortran.el --- Fortran mode for GNU Emacs
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
2
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
3 ;; Copyright (c) 1986, 93, 94, 95, 97, 98, 99, 2000, 2001
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
4 ;; Free Software Foundation, Inc.
845
213978acbc1e entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 811
diff changeset
5
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
6 ;; Author: Michael D. Prange <prange@erl.mit.edu>
45345
1f3817058799 Update maintainer.
Glenn Morris <rgm@gnu.org>
parents: 45301
diff changeset
7 ;; Maintainer: Glenn Morris <gmorris@ast.cam.ac.uk>
811
e694e0879463 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
8 ;; Keywords: languages
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
9
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
10 ;; This file is part of GNU Emacs.
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
11
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
15 ;; any later version.
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
16
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
20 ;; GNU General Public License for more details.
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
21
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
22 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13300
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13300
diff changeset
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13300
diff changeset
25 ;; Boston, MA 02111-1307, USA.
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
26
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
27 ;;; Commentary:
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 778
diff changeset
28
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
29 ;; This mode is documented in the Emacs manual.
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
30 ;;
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
31 ;; Note that it is for editing Fortran77 or Fortran90 fixed source
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
32 ;; form. For editing Fortran 90 free format source, use `f90-mode'
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
33 ;; (f90.el). It is meant to support the GNU Fortran language
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
34 ;; implemented by g77 (its extensions to Fortran77 and
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
35 ;; interpretations, e.g. of blackslash in strings).
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
36
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
37 ;;; History:
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
38
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
39 ;; Fortran mode was upgraded by Stephen A. Wood (saw@cebaf.gov).
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
40
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
41 ;; We acknowledge many contributions and valuable suggestions by
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
42 ;; Lawrence R. Dodd, Ralf Fassel, Ralph Finch, Stephen Gildea,
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
43 ;; Dr. Anil Gokhale, Ulrich Mueller, Mark Neale, Eric Prestemon,
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
44 ;; Gary Sabot and Richard Stallman.
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
45
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13300
diff changeset
46 ;;; Code:
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
47
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
48 ;; Todo:
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
49
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
50 ;; * Tidy it all up (more)!
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
51 ;; * Implement insertion and removal of statement continuations in
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
52 ;; mixed f77/f90 style, with the first `&' past column 72 and the
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
53 ;; second in column 6.
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
54 ;; * Support any other extensions to f77 grokked by GNU Fortran I've missed.
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
55
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
56 (defgroup fortran nil
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
57 "Fortran mode for Emacs"
24800
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
58 :link '(custom-manual "(emacs)Fortran")
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
59 :group 'languages)
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
60
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
61 (defgroup fortran-indent nil
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
62 "Indentation variables in Fortran mode"
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
63 :prefix "fortran-"
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
64 :group 'fortran)
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
65
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
66 (defgroup fortran-comment nil
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
67 "Comment-handling variables in Fortran mode"
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
68 :prefix "fortran-"
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
69 :group 'fortran)
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
70
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
71
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
72 ;;;###autoload
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
73 (defcustom fortran-tab-mode-default nil
1485
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
74 "*Default tabbing/carriage control style for empty files in Fortran mode.
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
75 A value of t specifies tab-digit style of continuation control.
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
76 A value of nil specifies that continuation lines are marked
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
77 with a character in column 6."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
78 :type 'boolean
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
79 :group 'fortran-indent)
1485
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
80
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
81 ;; Buffer local, used to display mode line.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
82 (defcustom fortran-tab-mode-string nil
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
83 "String to appear in mode line when TAB format mode is on."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
84 :type '(choice (const nil) string)
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
85 :group 'fortran-indent)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
86 (make-variable-buffer-local 'fortran-tab-mode-string)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
88 (defcustom fortran-do-indent 3
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
89 "*Extra indentation applied to DO blocks."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
90 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
91 :group 'fortran-indent)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
92
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
93 (defcustom fortran-if-indent 3
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
94 "*Extra indentation applied to IF blocks."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
95 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
96 :group 'fortran-indent)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
97
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
98 (defcustom fortran-structure-indent 3
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
99 "*Extra indentation applied to STRUCTURE, UNION, MAP and INTERFACE blocks."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
100 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
101 :group 'fortran-indent)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
103 (defcustom fortran-continuation-indent 5
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
104 "*Extra indentation applied to Fortran continuation lines."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
105 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
106 :group 'fortran-indent)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
108 (defcustom fortran-comment-indent-style 'fixed
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
109 "*How to indent comments.
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
110 nil forces comment lines not to be touched,
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
111 `fixed' makes fixed comment indentation to `fortran-comment-line-extra-indent'
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
112 columns beyond `fortran-minimum-statement-indent-fixed' (for
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
113 `indent-tabs-mode' of nil) or `fortran-minimum-statement-indent-tab' (for
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
114 `indent-tabs-mode' of t), and
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
115 `relative' indents to current Fortran indentation plus
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
116 `fortran-comment-line-extra-indent'."
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
117 :type '(radio (const :tag "Untouched" nil) (const fixed) (const relative))
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
118 :group 'fortran-indent)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
120 (defcustom fortran-comment-line-extra-indent 0
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
121 "*Amount of extra indentation for text within full-line comments."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
122 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
123 :group 'fortran-indent
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
124 :group 'fortran-comment)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
125
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
126 (defcustom fortran-comment-line-start "C"
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
127 "*Delimiter inserted to start new full-line comment.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
128 You might want to change this to \"*\", for instance."
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
129 :version "21.1"
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
130 :type 'string
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
131 :group 'fortran-comment)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
132
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
133 ;; This used to match preprocessor lines too, but that messes up
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
134 ;; filling and doesn't seem to be necessary.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
135 (defcustom fortran-comment-line-start-skip
33947
7ade0d187b77 (fortran-mode): Don't set
Dave Love <fx@gnu.org>
parents: 31847
diff changeset
136 "^[CcDd*!]\\(\\([^ \t\n]\\)\\2+\\)?[ \t]*"
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
137 "*Regexp to match the start of a full-line comment."
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
138 :version "21.1"
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
139 :type 'regexp
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
140 :group 'fortran-comment)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
142 (defcustom fortran-directive-re
45242
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
143 "^[ \t]*#.*"
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
144 "*Regexp to match a directive line.
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
145 The matching text will be fontified with `font-lock-keyword-face'.
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
146 The matching line will be given zero indentation."
45255
20c79f08a7da Change all post-21.1 :version attributes to 21.4.
Eli Zaretskii <eliz@gnu.org>
parents: 45242
diff changeset
147 :version "21.4"
45242
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
148 :type 'regexp
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
149 :group 'fortran-indent)
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
150
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
151 (defcustom fortran-minimum-statement-indent-fixed 6
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
152 "*Minimum statement indentation for fixed format continuation style."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
153 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
154 :group 'fortran-indent)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
155
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
156 (defcustom fortran-minimum-statement-indent-tab (max tab-width 6)
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
157 "*Minimum statement indentation for TAB format continuation style."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
158 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
159 :group 'fortran-indent)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
160
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
161 ;; Note that this is documented in the v18 manuals as being a string
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
162 ;; of length one rather than a single character.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
163 ;; The code in this file accepts either format for compatibility.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
164 (defcustom fortran-comment-indent-char " "
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
165 "*Single-character string inserted for Fortran comment indentation.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
166 Normally a space."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
167 :type 'string
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
168 :group 'fortran-comment)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
170 (defcustom fortran-line-number-indent 1
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
171 "*Maximum indentation for Fortran line numbers.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
172 5 means right-justify them within their five-column field."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
173 :type 'integer
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
174 :group 'fortran-indent)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
175
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
176 (defcustom fortran-check-all-num-for-matching-do nil
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
177 "*Non-nil causes all numbered lines to be treated as possible DO loop ends."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
178 :type 'boolean
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
179 :group 'fortran)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
180
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
181 (defcustom fortran-blink-matching-if nil
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
182 "*Non-nil causes \\[fortran-indent-line] on ENDIF statement to blink on matching IF.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
183 Also, from an ENDDO statement blink on matching DO [WHILE] statement."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
184 :type 'boolean
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
185 :group 'fortran)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
187 (defcustom fortran-continuation-string "$"
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
188 "*Single-character string used for Fortran continuation lines.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189 In fixed format continuation style, this character is inserted in
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
190 column 6 by \\[fortran-split-line] to begin a continuation line.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191 Also, if \\[fortran-indent-line] finds this at the beginning of a line, it will
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192 convert the line into a continuation line of the appropriate style.
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
193 Normally $."
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
194 :type 'string
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
195 :group 'fortran)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
196
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
197 (defcustom fortran-comment-region "c$$$"
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
198 "*String inserted by \\[fortran-comment-region] at start of each \
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
199 line in region."
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
200 :type 'string
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
201 :group 'fortran-comment)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
202
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
203 (defcustom fortran-electric-line-number t
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
204 "*Non-nil causes line number digits to be moved to the correct \
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
205 column as typed."
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
206 :type 'boolean
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
207 :group 'fortran)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
208
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
209 (defvar fortran-column-ruler-fixed
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
210 "0 4 6 10 20 30 40 5\
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
211 0 60 70\n\
11516
e7c26522b881 Use new fortran-match-!-comment to do !-style fontification; do rest in regexps
Simon Marshall <simon@gnu.org>
parents: 10883
diff changeset
212 \[ ]|{ | | | | | | | | \
e7c26522b881 Use new fortran-match-!-comment to do !-style fontification; do rest in regexps
Simon Marshall <simon@gnu.org>
parents: 10883
diff changeset
213 \| | | | |}\n"
21079
65ac561ad75c (fortran-column-ruler-fixed,
Dave Love <fx@gnu.org>
parents: 20953
diff changeset
214 "String displayed above current line by \\[fortran-column-ruler].
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
215 This variable used in fixed format mode.")
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
216
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
217 (defvar fortran-column-ruler-tab
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
218 "0 810 20 30 40 5\
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
219 0 60 70\n\
11516
e7c26522b881 Use new fortran-match-!-comment to do !-style fontification; do rest in regexps
Simon Marshall <simon@gnu.org>
parents: 10883
diff changeset
220 \[ ]| { | | | | | | | | \
e7c26522b881 Use new fortran-match-!-comment to do !-style fontification; do rest in regexps
Simon Marshall <simon@gnu.org>
parents: 10883
diff changeset
221 \| | | | |}\n"
21079
65ac561ad75c (fortran-column-ruler-fixed,
Dave Love <fx@gnu.org>
parents: 20953
diff changeset
222 "String displayed above current line by \\[fortran-column-ruler].
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
223 This variable used in TAB format mode.")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 (defvar fortran-analyze-depth 100
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
226 "Number of lines to scan to determine whether to use fixed or TAB \
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
227 format style.")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
229 (defcustom fortran-break-before-delimiters t
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
230 "*Non-nil causes filling to break lines before delimiters."
17413
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
231 :type 'boolean
9fa0ed8da0b1 Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16581
diff changeset
232 :group 'fortran)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
233
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
234 (defvar fortran-mode-syntax-table
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
235 (let ((table (make-syntax-table)))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
236 ;; We might like `;' to be punctuation (g77 multi-statement
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
237 ;; lines), but that screws abbrevs.
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
238 (modify-syntax-entry ?\; "w" table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
239 (modify-syntax-entry ?\r " " table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
240 (modify-syntax-entry ?+ "." table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
241 (modify-syntax-entry ?- "." table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
242 (modify-syntax-entry ?= "." table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
243 (modify-syntax-entry ?* "." table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
244 (modify-syntax-entry ?/ "." table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
245 (modify-syntax-entry ?\' "\"" table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
246 (modify-syntax-entry ?\" "\"" table)
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
247 ;; Consistent with GNU Fortran -- see the manual.
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
248 (modify-syntax-entry ?\\ "\\" table)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
249 ;; This might be better as punctuation, as for C, but this way you
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
250 ;; can treat floating-point numbers as symbols.
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
251 (modify-syntax-entry ?. "_" table) ; e.g. `a.ne.b'
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
252 (modify-syntax-entry ?_ "_" table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
253 (modify-syntax-entry ?$ "_" table) ; esp. VMSisms
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
254 (modify-syntax-entry ?\! "<" table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
255 (modify-syntax-entry ?\n ">" table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
256 table)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
257 "Syntax table in use in Fortran mode buffers.")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
258
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
259 ;; Comments are real pain in Fortran because there is no way to
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
260 ;; represent the standard comment syntax in an Emacs syntax table.
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
261 ;; (We can do so for F90-style). Therefore an unmatched quote in a
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
262 ;; standard comment will throw fontification off on the wrong track.
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
263 ;; So we do syntactic fontification with regexps.
9476
59901c9aa208 * fortran.el: (fortran-mode-syntax-table): Made `!' be a comment.
Simon Marshall <simon@gnu.org>
parents: 7888
diff changeset
264
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
265 (defvar fortran-font-lock-keywords-1 nil
12386
ceccff3df349 Specify all Font Lock keywords in font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 11801
diff changeset
266 "Subdued level highlighting for Fortran mode.")
9476
59901c9aa208 * fortran.el: (fortran-mode-syntax-table): Made `!' be a comment.
Simon Marshall <simon@gnu.org>
parents: 7888
diff changeset
267
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
268 (defvar fortran-font-lock-keywords-2 nil
13300
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
269 "Medium level highlighting for Fortran mode.")
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
270
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
271 (defvar fortran-font-lock-keywords-3 nil
13300
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
272 "Gaudy level highlighting for Fortran mode.")
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
273
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
274 (defvar fortran-font-lock-syntactic-keywords nil
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
275 "`font-lock-syntactic-keywords' for Fortran.
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
276 These get fixed-format comments fontified.")
23616
17ebfb12712f Fix for fontification of strings lost
Dave Love <fx@gnu.org>
parents: 23607
diff changeset
277
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
278 (let ((comment-chars "cd\\*") ; `d' for `debugging' comments
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
279 (fortran-type-types
24125
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
280 (eval-when-compile
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
281 (let ((re (regexp-opt
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
282 (let ((simple-types
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
283 '("character" "byte" "integer" "logical"
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
284 "none" "real" "complex"
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
285 "double precision" "double complex"))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
286 (structured-types '("structure" "union" "map"))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
287 (other-types '("record" "dimension"
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
288 "parameter" "common" "save"
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
289 "external" "intrinsic" "data"
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
290 "equivalence")))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
291 (append
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
292 (mapcar (lambda (x) (concat "implicit " x))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
293 simple-types)
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
294 simple-types
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
295 (mapcar (lambda (x) (concat "end " x))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
296 structured-types)
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
297 structured-types
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
298 other-types)))))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
299 ;; In the optimized regexp above, replace spaces by a
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
300 ;; regexp for optional whitespace; regexp-opt would have
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
301 ;; escaped that.
24125
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
302 (mapconcat #'identity (split-string re) "[ \t]*"))))
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
303 (fortran-keywords
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
304 (eval-when-compile
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
305 (regexp-opt '("continue" "format" "end" "enddo" "if" "then"
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
306 "else" "endif" "elseif" "while" "inquire" "stop"
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
307 "return" "include" "open" "close" "read" "write"
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
308 "format" "print" "select" "case" "cycle" "exit"
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
309 "rewind" "backspace"))))
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
310 (fortran-logicals
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
311 (eval-when-compile
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
312 (regexp-opt '("and" "or" "not" "lt" "le" "eq" "ge" "gt" "ne"
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
313 "true" "false")))))
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
314 (setq fortran-font-lock-syntactic-keywords
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
315 ;; Fixed format comments. (!-style handled normally.)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
316 (list
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
317 (list (concat "^[" comment-chars "]") 0 '(11))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
318 (list (concat "^[^" comment-chars "\t\n]" ".\\{71\\}"
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
319 "\\([^\n]+\\)")
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
320 1 '(11))))
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
321 (setq fortran-font-lock-keywords-1
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
322 (list
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
323 ;; Program, subroutine and function declarations, plus calls.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
324 (list (concat "\\<\\(block[ \t]*data\\|call\\|entry\\|function\\|"
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
325 "program\\|subroutine\\)\\>[ \t]*\\(\\sw+\\)?")
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
326 '(1 font-lock-keyword-face)
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
327 '(2 font-lock-function-name-face nil t))))
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
328 (setq fortran-font-lock-keywords-2
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
329 (append fortran-font-lock-keywords-1
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
330 (list
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
331 ;; Fontify all type specifiers (must be first; see below).
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
332 (cons (concat "\\<\\(" fortran-type-types "\\)\\>")
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
333 'font-lock-type-face)
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
334 ;; Fontify all builtin keywords (except logical, do
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
335 ;; and goto; see below).
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
336 (concat "\\<\\(" fortran-keywords "\\)\\>")
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
337 ;; Fontify all builtin operators.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
338 (concat "\\.\\(" fortran-logicals "\\)\\.")
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
339 ;; Fontify do/goto keywords and targets, and goto tags.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
340 (list "\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?"
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
341 '(1 font-lock-keyword-face)
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
342 '(2 font-lock-constant-face nil t))
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
343 (cons "^ *\\([0-9]+\\)" 'font-lock-constant-face))))
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
344 (setq fortran-font-lock-keywords-3
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
345 (append
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
346 ;; The list `fortran-font-lock-keywords-1'.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
347 fortran-font-lock-keywords-1
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
348 ;; Fontify all type specifiers plus their declared items.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
349 (list
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
350 (list (concat "\\<\\(" fortran-type-types "\\)\\>[ \t(/]*\\(*\\)?")
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
351 ;; Fontify the type specifier.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
352 '(1 font-lock-type-face)
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
353 ;; Fontify each declaration item (or just the /.../ block name).
24125
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
354 `(font-lock-match-c-style-declaration-item-and-skip-to-next
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
355 ;; Start after any *(...) expression.
24125
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
356 (condition-case nil
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
357 (and (and (match-beginning ,(+ 2 (regexp-opt-depth
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
358 fortran-type-types)))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
359 (forward-sexp))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
360 (forward-sexp))
5c8305dd352f (fortran-narrow-to-subprogram): Ensure mark
Dave Love <fx@gnu.org>
parents: 24012
diff changeset
361 (error nil))
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
362 ;; No need to clean up.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
363 nil
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
364 ;; Fontify as a variable name, functions are
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
365 ;; fontified elsewhere.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
366 (1 font-lock-variable-name-face nil t))))
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
367 ;; Things extra to `fortran-font-lock-keywords-3'
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
368 ;; (must be done first).
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
369 (list
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
370 ;; Fontify goto-like `err=label'/`end=label' in read/write
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
371 ;; statements.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
372 '(", *\\(e\\(nd\\|rr\\)\\)\\> *\\(= *\\([0-9]+\\)\\)?"
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
373 (1 font-lock-keyword-face) (4 font-lock-constant-face nil t))
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
374 ;; Highlight standard continuation character and in a
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
375 ;; TAB-formatted line.
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
376 '("^ \\([^ 0]\\)" 1 font-lock-string-face)
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
377 '("^\t\\([1-9]\\)" 1 font-lock-string-face))
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
378 (list
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
379 ;; cpp stuff (ugh)
45242
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
380 ;;; '("^# *[a-z]+" . font-lock-keyword-face))
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
381 `(,fortran-directive-re (0 font-lock-keyword-face t)))
21575
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
382 ;; The list `fortran-font-lock-keywords-2' less that for types
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
383 ;; (see above).
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
384 (cdr (nthcdr (length fortran-font-lock-keywords-1)
6300c1c645da Move eval-when-compile off top level.
Dave Love <fx@gnu.org>
parents: 21538
diff changeset
385 fortran-font-lock-keywords-2)))))
11516
e7c26522b881 Use new fortran-match-!-comment to do !-style fontification; do rest in regexps
Simon Marshall <simon@gnu.org>
parents: 10883
diff changeset
386
12386
ceccff3df349 Specify all Font Lock keywords in font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 11801
diff changeset
387 (defvar fortran-font-lock-keywords fortran-font-lock-keywords-1
ceccff3df349 Specify all Font Lock keywords in font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 11801
diff changeset
388 "Default expressions to highlight in Fortran mode.")
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
389
20205
cdaddfc03fe8 (fortran-imenu-generic-expression): New variable.
Dave Love <fx@gnu.org>
parents: 17413
diff changeset
390 (defvar fortran-imenu-generic-expression
20277
b7f5af6127d5 (fortran-imenu-generic-expression): Match
Dave Love <fx@gnu.org>
parents: 20207
diff changeset
391 ;; These patterns could be confused by sequence nos. in cols 72+ and
b7f5af6127d5 (fortran-imenu-generic-expression): Match
Dave Love <fx@gnu.org>
parents: 20207
diff changeset
392 ;; don't allow continuations everywhere.
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
393 (list
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
394 (list
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
395 nil
30186
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
396 ;; [This will be fooled by `end function' allowed by G77. Also,
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
397 ;; it assumes sensible whitespace is employed.]
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
398 (concat
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
399 ;; leading whitespace:
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
400 "^\\s-+\\("
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
401 ;; function declaration with optional type, e.g. `real',
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
402 ;; `real*4', character(*), `double precision':
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
403 "\\(\\sw\\|\\s-\\|[*()+]\\)*"
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
404 "\\<function\\|subroutine\\|entry\\|block\\s-*data\\|program\\)"
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
405 ;; Possible statement continuation:
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
406 "[ \t" fortran-continuation-string "]+"
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
407 ;; Variable to index:
835820e0df08 (fortran-imenu-generic-expression): Change definition layout.
Dave Love <fx@gnu.org>
parents: 30149
diff changeset
408 "\\(\\sw+\\)")
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
409 3)
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
410 ;; Un-named block data
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
411 (list nil "^\\s-+\\(block\\s-*data\\)\\s-*$" 1))
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
412 "Imenu generic expression for `imenu-default-create-index-function'.")
13300
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
413
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
414 (defvar fortran-mode-map
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
415 (let ((map (make-sparse-keymap)))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
416 (define-key map ";" 'fortran-abbrev-start)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
417 (define-key map "\C-c;" 'fortran-comment-region)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
418 (define-key map "\M-;" 'fortran-indent-comment)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
419 (define-key map "\M-\n" 'fortran-split-line)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
420 (define-key map "\M-\C-q" 'fortran-indent-subprogram)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
421 (define-key map "\C-c\C-w" 'fortran-window-create-momentarily)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
422 (define-key map "\C-c\C-r" 'fortran-column-ruler)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
423 (define-key map "\C-c\C-p" 'fortran-previous-statement)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
424 (define-key map "\C-c\C-n" 'fortran-next-statement)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
425 (define-key map "\C-c\C-d" 'fortran-join-line) ; like f90
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
426 (define-key map "\M-^" 'fortran-join-line) ; subvert delete-indentation
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
427 (define-key map "0" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
428 (define-key map "1" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
429 (define-key map "2" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
430 (define-key map "3" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
431 (define-key map "4" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
432 (define-key map "5" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
433 (define-key map "6" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
434 (define-key map "7" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
435 (define-key map "8" 'fortran-electric-line-number)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
436 (define-key map "9" 'fortran-electric-line-number)
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
437
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
438 ;; Menu
35244
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
439 (easy-menu-define
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
440 fortran-mode-menu map ""
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
441 `("Fortran"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
442 ["Manual" (info "(emacs)Fortran")]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
443 ("Customization"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
444 ,(custom-menu-create 'fortran)
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
445 ["Set" Custom-set t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
446 ["Save" Custom-save t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
447 ["Reset to Current" Custom-reset-current t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
448 ["Reset to Saved" Custom-reset-saved t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
449 ["Reset to Standard Settings" Custom-reset-standard t])
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
450 "----"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
451 ["Toggle Auto-fill" auto-fill-mode :style toggle
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
452 :selected auto-fill-function]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
453 ["Toggle abbrev-mode" abbrev-mode :style toggle :selected abbrev-mode]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
454 "----"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
455 ["Comment-out Region" fortran-comment-region mark-active]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
456 ["Uncomment-out region"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
457 (fortran-comment-region (region-beginning) (region-end) 1)
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
458 mark-active]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
459 ["Indent Region" indent-region mark-active]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
460 ["Indent Subprogram" fortran-indent-subprogram t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
461 "----"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
462 ["Beginning of Subprogram" fortran-beginning-of-subprogram t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
463 ["End of Subprogram" fortran-end-of-subprogram t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
464 ("Mark"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
465 ["Subprogram" mark-defun t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
466 ["IF Block" fortran-mark-if t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
467 ["DO Block" fortran-mark-do t])
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
468 ["Narrow to Subprogram" narrow-to-defun t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
469 ["Widen" widen t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
470 "----"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
471 ["Temporary column ruler" fortran-column-ruler t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
472 ["72-column window" fortran-window-create t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
473 ["Full Width Window"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
474 (enlarge-window-horizontally (- (frame-width) (window-width)))
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
475 (< (window-width) (frame-width))]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
476 ["Momentary 72-column window" fortran-window-create-momentarily t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
477 "----"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
478 ["Break Line at Point" fortran-split-line t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
479 ["Join Line" fortran-join-line t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
480 ["Fill Statement/Comment" fill-paragraph t]
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
481 "----"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
482 ["Add imenu menu"
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
483 imenu-add-menubar-index (not (and (boundp 'imenu--index-alist)
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
484 imenu--index-alist))]))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
485 map)
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
486 "Keymap used in Fortran mode.")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
488 (defvar fortran-mode-abbrev-table
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
489 (let ((ac abbrevs-changed))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
490 (define-abbrev-table 'fortran-mode-abbrev-table ())
42443
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
491 (define-abbrev fortran-mode-abbrev-table ";au" "automatic" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
492 (define-abbrev fortran-mode-abbrev-table ";b" "byte" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
493 (define-abbrev fortran-mode-abbrev-table ";bd" "block data" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
494 (define-abbrev fortran-mode-abbrev-table ";ch" "character" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
495 (define-abbrev fortran-mode-abbrev-table ";cl" "close" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
496 (define-abbrev fortran-mode-abbrev-table ";c" "continue" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
497 (define-abbrev fortran-mode-abbrev-table ";cm" "common" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
498 (define-abbrev fortran-mode-abbrev-table ";cx" "complex" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
499 (define-abbrev fortran-mode-abbrev-table ";df" "define" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
500 (define-abbrev fortran-mode-abbrev-table ";di" "dimension" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
501 (define-abbrev fortran-mode-abbrev-table ";do" "double" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
502 (define-abbrev fortran-mode-abbrev-table ";dc" "double complex" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
503 (define-abbrev fortran-mode-abbrev-table ";dp" "double precision" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
504 (define-abbrev fortran-mode-abbrev-table ";dw" "do while" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
505 (define-abbrev fortran-mode-abbrev-table ";e" "else" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
506 (define-abbrev fortran-mode-abbrev-table ";ed" "enddo" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
507 (define-abbrev fortran-mode-abbrev-table ";el" "elseif" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
508 (define-abbrev fortran-mode-abbrev-table ";en" "endif" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
509 (define-abbrev fortran-mode-abbrev-table ";eq" "equivalence" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
510 (define-abbrev fortran-mode-abbrev-table ";ew" "endwhere" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
511 (define-abbrev fortran-mode-abbrev-table ";ex" "external" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
512 (define-abbrev fortran-mode-abbrev-table ";ey" "entry" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
513 (define-abbrev fortran-mode-abbrev-table ";f" "format" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
514 (define-abbrev fortran-mode-abbrev-table ";fa" ".false." nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
515 (define-abbrev fortran-mode-abbrev-table ";fu" "function" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
516 (define-abbrev fortran-mode-abbrev-table ";g" "goto" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
517 (define-abbrev fortran-mode-abbrev-table ";im" "implicit" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
518 (define-abbrev fortran-mode-abbrev-table ";ib" "implicit byte" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
519 (define-abbrev fortran-mode-abbrev-table ";ic" "implicit complex" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
520 (define-abbrev fortran-mode-abbrev-table ";ich" "implicit character" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
521 (define-abbrev fortran-mode-abbrev-table ";ii" "implicit integer" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
522 (define-abbrev fortran-mode-abbrev-table ";il" "implicit logical" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
523 (define-abbrev fortran-mode-abbrev-table ";ir" "implicit real" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
524 (define-abbrev fortran-mode-abbrev-table ";inc" "include" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
525 (define-abbrev fortran-mode-abbrev-table ";in" "integer" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
526 (define-abbrev fortran-mode-abbrev-table ";intr" "intrinsic" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
527 (define-abbrev fortran-mode-abbrev-table ";l" "logical" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
528 (define-abbrev fortran-mode-abbrev-table ";n" "namelist" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
529 (define-abbrev fortran-mode-abbrev-table ";o" "open" nil 0 t) ; was ;op
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
530 (define-abbrev fortran-mode-abbrev-table ";pa" "parameter" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
531 (define-abbrev fortran-mode-abbrev-table ";pr" "program" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
532 (define-abbrev fortran-mode-abbrev-table ";ps" "pause" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
533 (define-abbrev fortran-mode-abbrev-table ";p" "print" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
534 (define-abbrev fortran-mode-abbrev-table ";rc" "record" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
535 (define-abbrev fortran-mode-abbrev-table ";re" "real" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
536 (define-abbrev fortran-mode-abbrev-table ";r" "read" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
537 (define-abbrev fortran-mode-abbrev-table ";rt" "return" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
538 (define-abbrev fortran-mode-abbrev-table ";rw" "rewind" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
539 (define-abbrev fortran-mode-abbrev-table ";s" "stop" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
540 (define-abbrev fortran-mode-abbrev-table ";sa" "save" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
541 (define-abbrev fortran-mode-abbrev-table ";st" "structure" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
542 (define-abbrev fortran-mode-abbrev-table ";sc" "static" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
543 (define-abbrev fortran-mode-abbrev-table ";su" "subroutine" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
544 (define-abbrev fortran-mode-abbrev-table ";tr" ".true." nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
545 (define-abbrev fortran-mode-abbrev-table ";ty" "type" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
546 (define-abbrev fortran-mode-abbrev-table ";vo" "volatile" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
547 (define-abbrev fortran-mode-abbrev-table ";w" "write" nil 0 t)
6f5de421ceca (fortran-mode-abbrev-table): Mark all the predefined abbrevs as "system"
Pavel Janík <Pavel@Janik.cz>
parents: 41676
diff changeset
548 (define-abbrev fortran-mode-abbrev-table ";wh" "where" nil 0 t)
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
549 (setq abbrevs-changed ac)
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
550 fortran-mode-abbrev-table))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
551
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
552 (eval-when-compile ; silence compiler
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
553 (defvar imenu-case-fold-search)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
554 (defvar imenu-syntax-alist))
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
555
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
556 (defcustom fortran-mode-hook nil
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
557 "Hook run by Fortran mode."
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
558 :type 'hook
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
559 :group 'fortran)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
560
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561 ;;;###autoload
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 (defun fortran-mode ()
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
563 "Major mode for editing Fortran code.
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
564 \\[fortran-indent-line] indents the current Fortran line correctly.
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
565 DO statements must not share a common CONTINUE.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
566
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
567 Type ;? or ;\\[help-command] to display a list of built-in abbrevs for
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
568 Fortran keywords.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
569
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
570 Key definitions:
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
571 \\{fortran-mode-map}
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
573 Variables controlling indentation style and extra features:
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
574
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
575 `comment-start'
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
576 If you want to use comments starting with `!',
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
577 set this to the string \"!\".
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
578 `fortran-do-indent'
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579 Extra indentation within do blocks. (default 3)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
580 `fortran-if-indent'
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
581 Extra indentation within if blocks. (default 3)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
582 `fortran-structure-indent'
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
583 Extra indentation within structure, union, map and interface blocks.
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
584 (default 3)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
585 `fortran-continuation-indent'
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
586 Extra indentation applied to continuation statements. (default 5)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
587 `fortran-comment-line-extra-indent'
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
588 Amount of extra indentation for text within full-line comments. (default 0)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
589 `fortran-comment-indent-style'
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
590 nil means don't change indentation of text in full-line comments,
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
591 fixed means indent that text at `fortran-comment-line-extra-indent' beyond
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
592 the value of `fortran-minimum-statement-indent-fixed' (for fixed
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
593 format continuation style) or `fortran-minimum-statement-indent-tab'
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
594 (for TAB format continuation style).
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
595 relative means indent at `fortran-comment-line-extra-indent' beyond the
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
596 indentation for a line of code.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
597 (default 'fixed)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
598 `fortran-comment-indent-char'
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
599 Single-character string to be inserted instead of space for
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
600 full-line comment indentation. (default \" \")
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
601 `fortran-minimum-statement-indent-fixed'
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
602 Minimum indentation for Fortran statements in fixed format mode. (def.6)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
603 `fortran-minimum-statement-indent-tab'
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
604 Minimum indentation for Fortran statements in TAB format mode. (default 9)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
605 `fortran-line-number-indent'
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 Maximum indentation for line numbers. A line number will get
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
607 less than this much indentation if necessary to avoid reaching
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
608 column 5. (default 1)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
609 `fortran-check-all-num-for-matching-do'
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
610 Non-nil causes all numbered lines to be treated as possible \"continue\"
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
611 statements. (default nil)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
612 `fortran-blink-matching-if'
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
613 Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
614 matching IF. Also, from an ENDDO statement, blink on matching DO [WHILE]
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
615 statement. (default nil)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
616 `fortran-continuation-string'
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
617 Single-character string to be inserted in column 5 of a continuation
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
618 line. (default \"$\")
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
619 `fortran-comment-region'
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
620 String inserted by \\[fortran-comment-region] at start of each line in
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
621 region. (default \"c$$$\")
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
622 `fortran-electric-line-number'
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
623 Non-nil causes line number digits to be moved to the correct column
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
624 as typed. (default t)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
625 `fortran-break-before-delimiters'
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
626 Non-nil causes lines to be broken before delimiters.
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
627 (default t)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
628
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
629 Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
630 with no args, if that value is non-nil."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
631 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
632 (kill-all-local-variables)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
633 (setq local-abbrev-table fortran-mode-abbrev-table)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
634 (set-syntax-table fortran-mode-syntax-table)
12386
ceccff3df349 Specify all Font Lock keywords in font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents: 11801
diff changeset
635 ;; Font Lock mode support.
13300
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
636 (make-local-variable 'font-lock-defaults)
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
637 (setq font-lock-defaults '((fortran-font-lock-keywords
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
638 fortran-font-lock-keywords-1
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
639 fortran-font-lock-keywords-2
73b7a6396cbe Fix to fortran-font-lock-keywords-* for new font-lock-keywords structure.
Simon Marshall <simon@gnu.org>
parents: 12814
diff changeset
640 fortran-font-lock-keywords-3)
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
641 nil t ((?/ . "$/") ("_$" . "w"))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
642 fortran-beginning-of-subprogram))
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
643 (set (make-local-variable 'font-lock-syntactic-keywords)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
644 fortran-font-lock-syntactic-keywords)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
645 (make-local-variable 'fortran-break-before-delimiters)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
646 (setq fortran-break-before-delimiters t)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
647 (make-local-variable 'indent-line-function)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
648 (setq indent-line-function 'fortran-indent-line)
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2028
diff changeset
649 (make-local-variable 'comment-indent-function)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
650 (setq comment-indent-function 'fortran-comment-indent)
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
651 (set (make-local-variable 'comment-start-skip)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
652 ;; We can't reuse `fortran-comment-line-start-skip' directly because
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
653 ;; it contains backrefs whereas we need submatch-1 to end at the
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
654 ;; beginning of the comment delimiter.
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
655 ;; (concat "\\(\\)\\(![ \t]*\\|" fortran-comment-line-start-skip "\\)")
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
656 "\\(\\)\\(?:^[CcDd*]\\|!\\)\\(?:\\([^ \t\n]\\)\\2+\\)?[ \t]*")
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
657 (set (make-local-variable 'comment-padding) "$$$")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
658 (make-local-variable 'comment-start)
33947
7ade0d187b77 (fortran-mode): Don't set
Dave Love <fx@gnu.org>
parents: 31847
diff changeset
659 (setq comment-start fortran-comment-line-start)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
660 (make-local-variable 'require-final-newline)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
661 (setq require-final-newline t)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
662 (make-local-variable 'abbrev-all-caps)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
663 (setq abbrev-all-caps t)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664 (make-local-variable 'indent-tabs-mode)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 (setq indent-tabs-mode nil)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
666 ;;;(setq abbrev-mode t) ; ?? (abbrev-mode 1) instead??
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
667 (set (make-local-variable 'fill-column) 72)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
668 (use-local-map fortran-mode-map)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
669 (setq mode-name "Fortran")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
670 (setq major-mode 'fortran-mode)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
671 (make-local-variable 'fortran-comment-line-extra-indent)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
672 (make-local-variable 'fortran-minimum-statement-indent-fixed)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
673 (make-local-variable 'fortran-minimum-statement-indent-tab)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
674 (make-local-variable 'fortran-column-ruler-fixed)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
675 (make-local-variable 'fortran-column-ruler-tab)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
676 (setq fortran-tab-mode-string " TAB-format")
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
677 (setq indent-tabs-mode (fortran-analyze-file-format))
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
678 (setq imenu-case-fold-search t)
20205
cdaddfc03fe8 (fortran-imenu-generic-expression): New variable.
Dave Love <fx@gnu.org>
parents: 17413
diff changeset
679 (setq imenu-generic-expression fortran-imenu-generic-expression)
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
680 (setq imenu-syntax-alist '(("_$" . "w")))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
681 (set (make-local-variable 'fill-paragraph-function) 'fortran-fill-paragraph)
31847
c2d49e897f90 (fortran-mode): Locally set
Dave Love <fx@gnu.org>
parents: 30186
diff changeset
682 (set (make-local-variable 'normal-auto-fill-function) 'fortran-auto-fill)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
683 (set (make-local-variable 'indent-line-function) 'fortran-indent-line)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
684 (set (make-local-variable 'indent-region-function)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
685 (lambda (start end)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
686 (let (fortran-blink-matching-if ; avoid blinking delay
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
687 indent-region-function)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
688 (indent-region start end nil))))
27417
0d4776018e39 (fortran-mode): Use beginning-of-defun-function, end-of-defun-function.
Dave Love <fx@gnu.org>
parents: 27199
diff changeset
689 (set (make-local-variable 'beginning-of-defun-function)
0d4776018e39 (fortran-mode): Use beginning-of-defun-function, end-of-defun-function.
Dave Love <fx@gnu.org>
parents: 27199
diff changeset
690 #'fortran-beginning-of-subprogram)
0d4776018e39 (fortran-mode): Use beginning-of-defun-function, end-of-defun-function.
Dave Love <fx@gnu.org>
parents: 27199
diff changeset
691 (set (make-local-variable 'end-of-defun-function)
0d4776018e39 (fortran-mode): Use beginning-of-defun-function, end-of-defun-function.
Dave Love <fx@gnu.org>
parents: 27199
diff changeset
692 #'fortran-end-of-subprogram)
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
693 (set (make-local-variable 'add-log-current-defun-function)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
694 #'fortran-current-defun)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
695 (set (make-local-variable 'dabbrev-case-fold-search) 'case-fold-search)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
696 (run-hooks 'fortran-mode-hook))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
697
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
698 (defsubst fortran-comment-indent ()
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
699 (save-excursion
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
700 (if (looking-at fortran-comment-line-start-skip) 0
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
701 (skip-chars-backward " \t")
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
702 (max (+ 1 (current-column))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
703 comment-column))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
704
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
705 (defun fortran-indent-comment ()
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
706 "Align or create comment on current line.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
707 Existing comments of all types are recognized and aligned.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
708 If the line has no comment, a side-by-side comment is inserted and aligned
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
709 if the value of `comment-start' is not nil and allows such comments.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
710 Otherwise, a separate-line comment is inserted, on this line
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
711 or on a new line inserted before this line if this line is not blank."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
712 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
713 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
714 ;; Recognize existing comments of either kind.
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
715 (cond ((fortran-find-comment-start-skip 'all)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
716 (goto-char (match-beginning 0))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
717 (if (bolp)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
718 (fortran-indent-line)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
719 (if (not (= (current-column)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
720 (fortran-comment-indent)))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
721 (progn (delete-horizontal-space)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
722 (indent-to (fortran-comment-indent))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
723 ;; No existing comment.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
724 ;; If side-by-side comments are defined, insert one,
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
725 ;; unless line is now blank.
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
726 ((and comment-start (not (looking-at "[ \t]*$"))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
727 (string-match comment-start-skip (concat " " comment-start)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
728 (end-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
729 (delete-horizontal-space)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
730 (indent-to (fortran-comment-indent))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731 (insert comment-start))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
732 ;; Else insert separate-line comment, making a new line if nec.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
733 (t
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
734 (if (looking-at "^[ \t]*$")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
735 (delete-horizontal-space)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
736 (beginning-of-line)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
737 (insert ?\n)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
738 (forward-char -1))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
739 (insert fortran-comment-line-start)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
740 (insert-char (if (stringp fortran-comment-indent-char)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
741 (aref fortran-comment-indent-char 0)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
742 fortran-comment-indent-char)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
743 (- (fortran-calculate-indent) (current-column))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
744
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
745 (defun fortran-comment-region (beg-region end-region arg)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
746 "Comments every line in the region.
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
747 Puts `fortran-comment-region' at the beginning of every line in the region.
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
748 BEG-REGION and END-REGION are args which specify the region boundaries.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
749 With non-nil ARG, uncomments the region."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750 (interactive "*r\nP")
37080
00fb79924260 (fortran-comment-region): Fix typo.
Dave Love <fx@gnu.org>
parents: 36171
diff changeset
751 (let ((end-region-mark (copy-marker end-region))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
752 (save-point (point-marker)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
753 (goto-char beg-region)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
754 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
755 (if (not arg) ;comment the region
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
756 (progn (insert fortran-comment-region)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
757 (while (and (= (forward-line 1) 0)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
758 (< (point) end-region-mark))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
759 (insert fortran-comment-region)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760 (let ((com (regexp-quote fortran-comment-region))) ;uncomment the region
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 (if (looking-at com)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 (delete-region (point) (match-end 0)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 (while (and (= (forward-line 1) 0)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 (< (point) end-region-mark))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 (if (looking-at com)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766 (delete-region (point) (match-end 0))))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
767 (goto-char save-point)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768 (set-marker end-region-mark nil)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769 (set-marker save-point nil)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771 (defun fortran-abbrev-start ()
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
772 "Typing ;\\[help-command] or ;? lists all the Fortran abbrevs.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
773 Any other key combination is executed normally."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
774 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
775 (let (c)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
776 (insert last-command-char)
2028
87f2d4cbbaf4 (fortran-abbrev-start): Handle any kind of event.
Richard M. Stallman <rms@gnu.org>
parents: 1862
diff changeset
777 (if (or (eq (setq c (read-event)) ??) ;insert char if not equal to `?'
87f2d4cbbaf4 (fortran-abbrev-start): Handle any kind of event.
Richard M. Stallman <rms@gnu.org>
parents: 1862
diff changeset
778 (eq c help-char))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779 (fortran-abbrev-help)
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1633
diff changeset
780 (setq unread-command-events (list c)))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782 (defun fortran-abbrev-help ()
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
783 "List the currently defined abbrevs in Fortran mode."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
784 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
785 (message "Listing abbrev table...")
1485
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
786 (display-buffer (fortran-prepare-abbrev-list-buffer))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
787 (message "Listing abbrev table...done"))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
788
1485
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
789 (defun fortran-prepare-abbrev-list-buffer ()
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
790 (save-excursion
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
791 (set-buffer (get-buffer-create "*Abbrevs*"))
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
792 (erase-buffer)
1862
f6a38dd2250b * fortran.el (fortran-prepare-abbrev-list-buffer): Put quote in
Jim Blandy <jimb@redhat.com>
parents: 1821
diff changeset
793 (insert-abbrev-table-description 'fortran-mode-abbrev-table t)
1485
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
794 (goto-char (point-min))
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
795 (set-buffer-modified-p nil)
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
796 (edit-abbrevs-mode))
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
797 (get-buffer-create "*Abbrevs*"))
a6da00e1c5ad (fortran-tab-mode): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents: 1475
diff changeset
798
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
799 (defun fortran-column-ruler ()
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
800 "Insert a column ruler momentarily above current line, till next keystroke.
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
801 The ruler is defined by the value of `fortran-column-ruler-fixed' when in fixed
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
802 format mode, and `fortran-column-ruler-tab' when in TAB format mode.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
803 The key typed is executed unless it is SPC."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
804 (interactive)
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
805 (momentary-string-display
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
806 (if indent-tabs-mode
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
807 fortran-column-ruler-tab
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
808 fortran-column-ruler-fixed)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
809 (save-excursion
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
810 (beginning-of-line)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
811 (if (eq (window-start (selected-window))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
812 (window-point (selected-window)))
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
813 (line-beginning-position 2)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
814 (point)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
815 nil "Type SPC or any command to erase ruler."))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
816
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
817 (defun fortran-window-create ()
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
818 "Make the window 72 columns wide.
1475
2596132752ff Doc fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 845
diff changeset
819 See also `fortran-window-create-momentarily'."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
820 (interactive)
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
821 (let ((window-min-width 2))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
822 (if (< (window-width) (frame-width))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
823 (enlarge-window-horizontally (- (frame-width)
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
824 (window-width) 1)))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
825 (let* ((window-edges (window-edges))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
826 (scroll-bar-width (- (nth 2 window-edges)
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
827 (car window-edges)
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
828 (window-width))))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
829 (split-window-horizontally (+ 72 scroll-bar-width)))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
830 (other-window 1)
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
831 (switch-to-buffer " fortran-window-extra" t)
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
832 (select-window (previous-window))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
833
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
834 (defun fortran-window-create-momentarily (&optional arg)
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
835 "Momentarily make the window 72 columns wide.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
836 Optional ARG non-nil and non-unity disables the momentary feature.
1475
2596132752ff Doc fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 845
diff changeset
837 See also `fortran-window-create'."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
838 (interactive "p")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
839 (if (or (not arg)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
840 (= arg 1))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
841 (save-window-excursion
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
842 (progn
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
843 (condition-case nil
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
844 (fortran-window-create)
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
845 (error (error "No room for Fortran window")))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
846 (message "Type SPC to continue editing.")
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
847 (let ((char (read-event)))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
848 (or (equal char (string-to-char " "))
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
849 (setq unread-command-events (list char))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
850 (fortran-window-create)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
851
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
852 (defun fortran-split-line ()
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
853 "Break line at point and insert continuation marker and alignment."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
854 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 (delete-horizontal-space)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
856 (if (save-excursion
43883
b13e662ea2b3 (fortran-split-line): Make it work with any `!' comment as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43882
diff changeset
857 (let ((pos (point)))
b13e662ea2b3 (fortran-split-line): Make it work with any `!' comment as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43882
diff changeset
858 (beginning-of-line)
b13e662ea2b3 (fortran-split-line): Make it work with any `!' comment as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43882
diff changeset
859 (and (fortran-find-comment-start-skip 'all)
b13e662ea2b3 (fortran-split-line): Make it work with any `!' comment as well.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 43882
diff changeset
860 (< (match-beginning 0) pos))))
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
861 (insert ?\n (match-string 0))
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
862 (if indent-tabs-mode
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
863 (insert ?\n ?\t (fortran-numerical-continuation-char))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
864 (insert "\n " fortran-continuation-string))) ; Space after \n important
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
865 (fortran-indent-line)) ; when the cont string is C, c or *.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
866
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
867 (defun fortran-remove-continuation ()
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
868 (if (looking-at "\\( [^ 0\n]\\|\t[1-9]\\|&\\)")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
869 (progn (replace-match "")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
870 (delete-indentation)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
871 t)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
872
23463
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
873 (defun fortran-join-line (arg)
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
874 "Join current line to the previous one and re-indent.
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
875 With a prefix argument, repeat this operation that many times.
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
876 If the prefix argument ARG is negative, join the next -ARG lines.
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
877 Continuation lines are correctly handled."
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
878 (interactive "*p")
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
879 (save-excursion
23463
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
880 (when (> 0 arg)
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
881 (setq arg (- arg))
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
882 (forward-line arg))
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
883 (while (not (zerop arg))
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
884 (beginning-of-line)
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
885 (or (fortran-remove-continuation)
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
886 (delete-indentation))
ac51d834b81e 1998-10-14 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23335
diff changeset
887 (setq arg (1- arg)))
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
888 (fortran-indent-line)))
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
889
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
890 (defun fortran-numerical-continuation-char ()
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
891 "Return a digit for tab-digit style of continuation lines.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
892 If, previous line is a tab-digit continuation line, returns that digit
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
893 plus one. Otherwise return 1. Zero not allowed."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
894 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
895 (forward-line -1)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
896 (if (looking-at "\t[1-9]")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
897 (+ ?1 (% (- (char-after (+ (point) 1)) ?0) 9))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
898 ?1)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
899
22377
24999a02843d (fortran-electric-line-number): Add delete-selection property.
Richard M. Stallman <rms@gnu.org>
parents: 21804
diff changeset
900 (put 'fortran-electric-line-number 'delete-selection t)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
901 (defun fortran-electric-line-number (arg)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
902 "Self insert, but if part of a Fortran line number indent it automatically.
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
903 Auto-indent does not happen if a numeric ARG is used."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
904 (interactive "P")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
905 (if (or arg (not fortran-electric-line-number))
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
906 (if arg
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
907 (self-insert-command (prefix-numeric-value arg))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
908 (self-insert-command 1))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
909 (if (or (and (= 5 (current-column))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
910 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
911 (beginning-of-line)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
912 (looking-at " \\{5\\}"))) ;In col 5 with only spaces to left.
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
913 (and (= (if indent-tabs-mode
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
914 fortran-minimum-statement-indent-tab
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
915 fortran-minimum-statement-indent-fixed) (current-column))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
916 (eq ?\t (char-after (line-beginning-position))) ;In col 8
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
917 ; with a single tab to the left.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
918 (not (or (eq last-command 'fortran-indent-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
919 (eq last-command
3567
2ca5f216e445 (fortran-indent-new-line): Renamed from
Richard M. Stallman <rms@gnu.org>
parents: 3400
diff changeset
920 'fortran-indent-new-line))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
921 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
922 (re-search-backward "[^ \t0-9]"
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
923 (line-beginning-position)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
924 t)) ;not a line number
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
925 (looking-at "[0-9]")) ;within a line number
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
926 (self-insert-command (prefix-numeric-value arg))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
927 (skip-chars-backward " \t")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
928 (insert last-command-char)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
929 (fortran-indent-line))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
930
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
931 (defvar fortran-end-prog-re1
23607
6b2444d06348 (fortran-end-prog-re1): Fix the regexp.
Dave Love <fx@gnu.org>
parents: 23463
diff changeset
932 "end\
23711
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
933 \\([ \t]*\\(program\\|subroutine\\|function\\|block[ \t]*data\\)\\>\
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
934 \\([ \t]*\\(\\sw\\|\\s_\\)+\\)?\\)?")
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
935 (defvar fortran-end-prog-re
23732
11303d1d8120 (fortran-end-prog-re): Fix typo.
Dave Love <fx@gnu.org>
parents: 23711
diff changeset
936 (concat "^[ \t0-9]*" fortran-end-prog-re1)
11303d1d8120 (fortran-end-prog-re): Fix typo.
Dave Love <fx@gnu.org>
parents: 23711
diff changeset
937 "Regexp possibly marking subprogram end.")
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
938
23711
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
939 (defun fortran-check-end-prog-re ()
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
940 "Check a preliminary match against `fortran-end-prog-re'."
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
941 ;; Having got a possible match for the subprogram end, we need a
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
942 ;; match of whitespace, avoiding possible column 73+ stuff.
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
943 (save-match-data
23838
e494267843f7 (fortran-check-end-prog-re): Allow trailing
Dave Love <fx@gnu.org>
parents: 23754
diff changeset
944 (string-match "^\\s-*\\(\\'\\|\\s<\\)"
23711
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
945 (buffer-substring (match-end 0)
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
946 (min (line-end-position)
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
947 (+ 72 (line-beginning-position)))))))
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
948
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
949 ;; Note that you can't just check backwards for `subroutine' &c in
7beb8675e914 Fix previous change:
Dave Love <fx@gnu.org>
parents: 23616
diff changeset
950 ;; case of un-marked main programs not at the start of the file.
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
951 (defun fortran-beginning-of-subprogram ()
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
952 "Move point to the beginning of the current Fortran subprogram."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
953 (interactive)
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
954 (save-match-data
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
955 (let ((case-fold-search t))
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
956 (beginning-of-line -1)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
957 (if (catch 'ok
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
958 (while (re-search-backward fortran-end-prog-re nil 'move)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
959 (if (fortran-check-end-prog-re)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
960 (throw 'ok t))))
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
961 (forward-line)))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
962
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
963 (defun fortran-end-of-subprogram ()
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
964 "Move point to the end of the current Fortran subprogram."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
965 (interactive)
25054
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
966 (save-match-data
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
967 (let ((case-fold-search t))
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
968 (if (save-excursion ; on END
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
969 (beginning-of-line)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
970 (and (looking-at fortran-end-prog-re)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
971 (fortran-check-end-prog-re)))
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
972 (forward-line)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
973 (beginning-of-line 2)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
974 (catch 'ok
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
975 (while (re-search-forward fortran-end-prog-re nil 'move)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
976 (if (fortran-check-end-prog-re)
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
977 (throw 'ok t))))
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
978 (goto-char (match-beginning 0))
888326cb8ffb (fortran-mode-syntax-table): Change `\' to `\'
Dave Love <fx@gnu.org>
parents: 24800
diff changeset
979 (forward-line)))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
980
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
981 (defun fortran-previous-statement ()
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
982 "Move point to beginning of the previous Fortran statement.
45242
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
983 Returns 'first-statement if that statement is the first
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
984 non-comment Fortran statement in the file, and nil otherwise.
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
985 Directive lines are treated as comments."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
986 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
987 (let (not-first-statement continue-test)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
988 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
989 (setq continue-test
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
990 (and
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
991 (not (looking-at fortran-comment-line-start-skip))
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
992 (not (looking-at fortran-directive-re))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
993 (or (looking-at
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
994 (concat "[ \t]*"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
995 (regexp-quote fortran-continuation-string)))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
996 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]"))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
997 (while (and (setq not-first-statement (= (forward-line -1) 0))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
998 (or (looking-at fortran-comment-line-start-skip)
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
999 (looking-at fortran-directive-re)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1000 (looking-at "[ \t]*$\\| \\{5\\}[^ 0\n]\\|\t[1-9]")
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1001 (looking-at (concat "[ \t]*" comment-start-skip)))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1002 (cond ((and continue-test
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1003 (not not-first-statement))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1004 (message "Incomplete continuation statement."))
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
1005 (continue-test
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1006 (fortran-previous-statement))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1007 ((not not-first-statement)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1008 'first-statement))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1009
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1010 (defun fortran-next-statement ()
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
1011 "Move point to beginning of the next Fortran statement.
45242
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
1012 Returns 'last-statement if that statement is the last
52d991be0698 (fortran-preprocessor-re): New variable. Use it for font-locking.
Glenn Morris <rgm@gnu.org>
parents: 45067
diff changeset
1013 non-comment Fortran statement in the file, and nil otherwise.
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
1014 Directive lines are treated as comments."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1015 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1016 (let (not-last-statement)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1017 (beginning-of-line)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1018 (while (and (setq not-last-statement
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1019 (and (= (forward-line 1) 0)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1020 (not (eobp))))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1021 (or (looking-at fortran-comment-line-start-skip)
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
1022 (looking-at fortran-directive-re)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1023 (looking-at "[ \t]*$\\| [^ 0\n]\\|\t[1-9]")
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1024 (looking-at (concat "[ \t]*" comment-start-skip)))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1025 (if (not not-last-statement)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1026 'last-statement)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1027
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1028 (defun fortran-blink-match (regex keyword find-begin)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1029 "From a line matching REGEX, blink matching KEYWORD statement line.
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1030 Use function FIND-BEGIN to match it."
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1031 (let ((top-of-window (window-start))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1032 (end-point (point))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1033 (case-fold-search t)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1034 matching
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1035 message)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1036 (if (save-excursion
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1037 (beginning-of-line)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1038 (skip-chars-forward " \t0-9")
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1039 (looking-at regex))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1040 (progn
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1041 (if (not (setq matching (funcall find-begin)))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1042 (setq message (concat "No matching " keyword "."))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1043 (if (< matching top-of-window)
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1044 (save-excursion
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1045 (goto-char matching)
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1046 (beginning-of-line)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1047 (setq message
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1048 (concat "Matches "
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1049 (buffer-substring (point)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1050 (line-end-position)))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1051 (if message
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1052 (message "%s" message)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1053 (goto-char matching)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1054 (sit-for 1)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1055 (goto-char end-point))))))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1056
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1057 (defun fortran-blink-matching-if ()
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1058 "From an ENDIF or ELSE statement, blink the matching IF statement."
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1059 (fortran-blink-match "e\\(nd[ \t]*if\\|lse\\([ \t]*if\\)?\\)\\b"
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1060 "if" #'fortran-beginning-if))
6731
23d9c2bc097b (fortran-blink-matching-do): New function,
Richard M. Stallman <rms@gnu.org>
parents: 5720
diff changeset
1061
23d9c2bc097b (fortran-blink-matching-do): New function,
Richard M. Stallman <rms@gnu.org>
parents: 5720
diff changeset
1062 (defun fortran-blink-matching-do ()
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1063 "From an ENDDO statement, blink the matching DO or DO WHILE statement."
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1064 (fortran-blink-match "end[ \t]*do\\b" "do" #'fortran-beginning-do))
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1065
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1066 (defun fortran-mark-do ()
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
1067 "Put mark at end of Fortran DO [WHILE]-ENDDO construct, point at beginning.
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1068 The marks are pushed."
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1069 (interactive)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1070 (let (enddo-point do-point)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1071 (if (setq enddo-point (fortran-end-do))
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1072 (if (not (setq do-point (fortran-beginning-do)))
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1073 (message "No matching do.")
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1074 (goto-char enddo-point)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1075 (push-mark)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1076 (goto-char do-point)))))
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1077
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1078 (defun fortran-end-do ()
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1079 "Search forward for first unmatched ENDDO.
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1080 Return point or nil."
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1081 (let ((case-fold-search t))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1082 (if (save-excursion (beginning-of-line)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1083 (skip-chars-forward " \t0-9")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1084 (looking-at "end[ \t]*do\\b"))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1085 ;; Sitting on one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1086 (match-beginning 0)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1087 ;; Search for one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1088 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1089 (let ((count 1))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1090 (while (and (not (= count 0))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1091 (not (eq (fortran-next-statement) 'last-statement))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1092 ;; Keep local to subprogram
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1093 (not (and (looking-at fortran-end-prog-re)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1094 (fortran-check-end-prog-re))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1095 (skip-chars-forward " \t0-9")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1096 (cond ((looking-at "end[ \t]*do\\b")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1097 (setq count (1- count)))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1098 ((looking-at
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1099 "\\(\\(\\sw\\|\\s_\\)+:[ \t]*\\)?do[ \t]+[^0-9]")
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1100 (setq count (+ count 1)))))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1101 (and (= count 0)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1102 ;; All pairs accounted for.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1103 (point)))))))
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1104
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1105 (defun fortran-beginning-do ()
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1106 "Search backwards for first unmatched DO [WHILE].
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1107 Return point or nil."
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1108 (let ((case-fold-search t))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1109 (if (save-excursion
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1110 (beginning-of-line)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1111 (skip-chars-forward " \t0-9")
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1112 (looking-at "\\(\\(\\sw\\|\\s_\\)+:[ \t]*\\)?do[ \t]+"))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1113 ;; Sitting on one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1114 (match-beginning 0)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1115 ;; Search for one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1116 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1117 (let ((count 1))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1118 (while (and (not (= count 0))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1119 (not (eq (fortran-previous-statement) 'first-statement))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1120 ;; Keep local to subprogram
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1121 (not (and (looking-at fortran-end-prog-re)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1122 (fortran-check-end-prog-re))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1123 (skip-chars-forward " \t0-9")
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1124 (cond ((looking-at
44726
079ae47e9744 (fortran-beginning-do): Make regexp match a DO statement irrespective of
Glenn Morris <rgm@gnu.org>
parents: 43883
diff changeset
1125 "\\(\\(\\sw\\|\\s_\\)+:[ \t]*\\)?do[ \t]+")
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1126 (setq count (1- count)))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1127 ((looking-at "end[ \t]*do\\b")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1128 (setq count (1+ count)))))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1129 (and (= count 0)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1130 ;; All pairs accounted for.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1131 (point)))))))
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1132
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1133 (defun fortran-mark-if ()
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1134 "Put mark at end of Fortran IF-ENDIF construct, point at beginning.
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1135 The marks are pushed."
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1136 (interactive)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1137 (let (endif-point if-point)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1138 (if (setq endif-point (fortran-end-if))
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1139 (if (not (setq if-point (fortran-beginning-if)))
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1140 (message "No matching if.")
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1141 ;; Set mark, move point.
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1142 (goto-char endif-point)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1143 (push-mark)
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1144 (goto-char if-point)))))
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1145
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1146 (defvar fortran-if-start-re "\\(\\(\\sw\\|\\s_\\)+:[ \t]*\\)?if[ \t]*(")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1147
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1148 (defun fortran-end-if ()
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1149 "Search forwards for first unmatched ENDIF.
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1150 Return point or nil."
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1151 (let ((case-fold-search t))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1152 (if (save-excursion (beginning-of-line)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1153 (skip-chars-forward " \t0-9")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1154 (looking-at "end[ \t]*if\\b"))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1155 ;; Sitting on one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1156 (match-beginning 0)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1157 ;; Search for one. The point has been already been moved to first
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1158 ;; letter on line but this should not cause troubles.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1159 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1160 (let ((count 1))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1161 (while (and (not (= count 0))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1162 (not (eq (fortran-next-statement) 'last-statement))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1163 ;; Keep local to subprogram.
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1164 (not (and (looking-at fortran-end-prog-re)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1165 (fortran-check-end-prog-re))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1166 (skip-chars-forward " \t0-9")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1167 (cond ((looking-at "end[ \t]*if\\b")
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1168 (setq count (- count 1)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1169 ((looking-at fortran-if-start-re)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1170 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1171 (if (or
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1172 (looking-at ".*)[ \t]*then\\b[ \t]*[^ \t(=a-z0-9]")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1173 (let (then-test) ; Multi-line if-then.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1174 (while
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1175 (and
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1176 (= (forward-line 1) 0)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1177 ;; Search forward for then.
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1178 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]")
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1179 (not
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1180 (setq then-test
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1181 (looking-at
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1182 ".*then\\b[ \t]*[^ \t(=a-z0-9]")))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1183 then-test))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1184 (setq count (+ count 1)))))))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1185 (and (= count 0)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1186 ;; All pairs accounted for.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1187 (point)))))))
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1188
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1189 (defun fortran-beginning-if ()
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1190 "Search backwards for first unmatched IF-THEN.
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1191 Return point or nil."
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1192 (let ((case-fold-search t))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1193 (if (save-excursion
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1194 ;; May be sitting on multi-line if-then statement, first
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1195 ;; move to beginning of current statement. Note:
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1196 ;; `fortran-previous-statement' moves to previous statement
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1197 ;; *unless* current statement is first one. Only move
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1198 ;; forward if not first-statement.
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1199 (if (not (eq (fortran-previous-statement) 'first-statement))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1200 (fortran-next-statement))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1201 (skip-chars-forward " \t0-9")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1202 (and
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1203 (looking-at fortran-if-start-re)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1204 (save-match-data
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1205 (or (looking-at ".*)[ \t]*then\\b[ \t]*[^ \t(=a-z0-9]")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1206 ;; Multi-line if-then.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1207 (let (then-test)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1208 (while
10189
b2d6d69b7707 (fortran-end-if, fortran-end-do,
Richard M. Stallman <rms@gnu.org>
parents: 9476
diff changeset
1209 (and (= (forward-line 1) 0)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1210 ;; Search forward for then.
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1211 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]")
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1212 (not
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1213 (setq then-test
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1214 (looking-at
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1215 ".*then\\b[ \t]*[^ \t(=a-z0-9]")))))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1216 then-test)))))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1217 ;; Sitting on one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1218 (match-beginning 0)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1219 ;; Search for one.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1220 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1221 (let ((count 1))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1222 (while (and (not (= count 0))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1223 (not (eq (fortran-previous-statement) 'first-statement))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1224 ;; Keep local to subprogram.
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1225 (not (and (looking-at fortran-end-prog-re)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1226 (fortran-check-end-prog-re))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1227 (skip-chars-forward " \t0-9")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1228 (cond ((looking-at fortran-if-start-re)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1229 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1230 (if (or
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1231 (looking-at ".*)[ \t]*then\\b[ \t]*[^ \t(=a-z0-9]")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1232 (let (then-test) ; Multi-line if-then.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1233 (while
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1234 (and
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1235 (= (forward-line 1) 0)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1236 ;; Search forward for then.
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1237 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]")
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1238 (not
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1239 (setq then-test
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1240 (looking-at
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1241 (concat ".*then\\b[ \t]*"
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
1242 "[^ \t(=a-z0-9]"))))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1243 then-test))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1244 (setq count (- count 1)))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1245 ((looking-at "end[ \t]*if\\b")
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1246 (setq count (+ count 1)))))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1247 (and (= count 0)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1248 ;; All pairs accounted for.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1249 (point)))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1250
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1251 (defun fortran-indent-line ()
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1252 "Indent current Fortran line based on its contents and on previous lines."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1253 (interactive)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1254 (let ((cfi (fortran-calculate-indent)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1255 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1256 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1257 (if (or (not (= cfi (fortran-current-line-indentation)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1258 (and (re-search-forward "^[ \t]*[0-9]+" (+ (point) 4) t)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1259 (not (fortran-line-number-indented-correctly-p))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1260 (fortran-indent-to-column cfi)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1261 (beginning-of-line)
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1262 (if (fortran-find-comment-start-skip)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1263 (fortran-indent-comment))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1264 ;; Never leave point in left margin.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1265 (if (< (current-column) cfi)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1266 (move-to-column cfi))
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1267 (if (and auto-fill-function
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1268 (> (save-excursion (end-of-line) (current-column))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1269 fill-column))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1270 (save-excursion
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1271 (end-of-line)
12772
f4b2913b7f58 (fortran-auto-fill-mode, fortran-do-auto-fill, fortran-fill):
Richard M. Stallman <rms@gnu.org>
parents: 12715
diff changeset
1272 (fortran-fill)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1273 (if fortran-blink-matching-if
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1274 (progn
6731
23d9c2bc097b (fortran-blink-matching-do): New function,
Richard M. Stallman <rms@gnu.org>
parents: 5720
diff changeset
1275 (fortran-blink-matching-if)
23d9c2bc097b (fortran-blink-matching-do): New function,
Richard M. Stallman <rms@gnu.org>
parents: 5720
diff changeset
1276 (fortran-blink-matching-do)))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1277
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1278 (defun fortran-auto-fill ()
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1279 (if (> (current-column) (current-fill-column))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1280 (let ((cfi (fortran-calculate-indent)))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1281 (save-excursion
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1282 (beginning-of-line)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1283 (if (or (not (= cfi (fortran-current-line-indentation)))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1284 (and (re-search-forward "^[ \t]*[0-9]+"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1285 (+ (point) 4) t)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1286 (not (fortran-line-number-indented-correctly-p))))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1287 (fortran-indent-to-column cfi)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1288 (beginning-of-line)
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1289 (if (fortran-find-comment-start-skip)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1290 (fortran-indent-comment))))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1291 (fortran-fill)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1292 ;; Never leave point in left margin.
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1293 (if (< (current-column) cfi)
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1294 (move-to-column cfi)))))
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1295
25162
ec613559ec18 (fortran-indent-new-line): Make it an alias
Dave Love <fx@gnu.org>
parents: 25054
diff changeset
1296 ;; Historically this was a separate function which advertised itself
ec613559ec18 (fortran-indent-new-line): Make it an alias
Dave Love <fx@gnu.org>
parents: 25054
diff changeset
1297 ;; as reindenting but only did so where `most likely to be necessary'.
ec613559ec18 (fortran-indent-new-line): Make it an alias
Dave Love <fx@gnu.org>
parents: 25054
diff changeset
1298 (defalias 'fortran-indent-new-line 'reindent-then-newline-and-indent)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1299
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1300 (defun fortran-indent-subprogram ()
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1301 "Properly indent the Fortran subprogram which contains point."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1302 (interactive)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1303 (save-excursion
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
1304 (mark-defun)
24254
93993abff564 (mark-fortran-subprogram): Activate mark
Dave Love <fx@gnu.org>
parents: 24125
diff changeset
1305 (message "Indenting subprogram...")
93993abff564 (mark-fortran-subprogram): Activate mark
Dave Love <fx@gnu.org>
parents: 24125
diff changeset
1306 (indent-region (point) (mark) nil))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1307 (message "Indenting subprogram...done."))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1308
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1309 (defun fortran-calculate-indent ()
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1310 "Calculates the Fortran indent column based on previous lines."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1311 (let (icol first-statement (case-fold-search t)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1312 (fortran-minimum-statement-indent
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1313 (if indent-tabs-mode
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1314 fortran-minimum-statement-indent-tab
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1315 fortran-minimum-statement-indent-fixed)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1316 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1317 (setq first-statement (fortran-previous-statement))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1318 (if first-statement
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1319 (setq icol fortran-minimum-statement-indent)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1320 (progn
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1321 (if (= (point) (point-min))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1322 (setq icol fortran-minimum-statement-indent)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1323 (setq icol (fortran-current-line-indentation)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1324 (skip-chars-forward " \t0-9")
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1325 (cond ((looking-at "\\(\\(\\sw\\|\\s_\\)+:[ \t]*\\)?if[ \t]*(")
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1326 (if (or (looking-at ".*)[ \t]*then\\b[ \t]*[^ \t_$(=a-z0-9]")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1327 (let (then-test) ;multi-line if-then
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1328 (while (and (= (forward-line 1) 0)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1329 ;;search forward for then
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1330 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]")
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1331 (not (setq then-test
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1332 (looking-at
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1333 ".*then\\b[ \t]\
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1334 *[^ \t_$(=a-z0-9]")))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1335 then-test))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1336 (setq icol (+ icol fortran-if-indent))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1337 ((looking-at "else\\(if\\)?\\b")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1338 (setq icol (+ icol fortran-if-indent)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1339 ((looking-at "select[ \t]*case[ \t](.*)")
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1340 (setq icol (+ icol fortran-if-indent)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1341 ((looking-at "case[ \t]*(.*)")
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1342 (setq icol (+ icol fortran-if-indent)))
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1343 ((looking-at "case[ \t]*default\\b")
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1344 (setq icol (+ icol fortran-if-indent)))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1345 ((looking-at "\\(otherwise\\|else[ \t]*where\\)\\b")
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1346 (setq icol (+ icol fortran-if-indent)))
5065
cd3d59bc0b94 (calculate-fortran-indent): Fixup regexp for where statements.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
1347 ((looking-at "where[ \t]*(.*)[ \t]*\n")
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1348 (setq icol (+ icol fortran-if-indent)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1349 ((looking-at "do\\b")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1350 (setq icol (+ icol fortran-do-indent)))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1351 ((looking-at
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1352 "\\(structure\\|union\\|map\\|interface\\)\
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1353 \\b[ \t]*[^ \t=(a-z]")
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1354 (setq icol (+ icol fortran-structure-indent)))
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1355 ((and (looking-at fortran-end-prog-re1)
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1356 (fortran-check-end-prog-re))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1357 ;; Previous END resets indent to minimum
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1358 (setq icol fortran-minimum-statement-indent))))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1359 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1360 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1361 (cond ((looking-at "[ \t]*$"))
45301
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
1362 ;; Check for directive before comment, so as not to indent.
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
1363 ((looking-at fortran-directive-re)
793bb00af917 (fortran-directive-re): New name for fortran-preprocessor-re. All usage
Glenn Morris <rgm@gnu.org>
parents: 45255
diff changeset
1364 (setq fortran-minimum-statement-indent 0 icol 0))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1365 ((looking-at fortran-comment-line-start-skip)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1366 (cond ((eq fortran-comment-indent-style 'relative)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1367 (setq icol (+ icol fortran-comment-line-extra-indent)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1368 ((eq fortran-comment-indent-style 'fixed)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1369 (setq icol (+ fortran-minimum-statement-indent
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1370 fortran-comment-line-extra-indent))))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1371 (setq fortran-minimum-statement-indent 0))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1372 ((or (looking-at (concat "[ \t]*"
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1373 (regexp-quote
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1374 fortran-continuation-string)))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1375 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]"))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1376 (setq icol (+ icol fortran-continuation-indent)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1377 (first-statement)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1378 ((and fortran-check-all-num-for-matching-do
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1379 (looking-at "[ \t]*[0-9]+")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1380 (fortran-check-for-matching-do))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1381 (setq icol (- icol fortran-do-indent)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1382 (t
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1383 (skip-chars-forward " \t0-9")
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1384 (cond ((looking-at "end[ \t]*\\(if\\|select\\|where\\)\\b")
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1385 (setq icol (- icol fortran-if-indent)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1386 ((looking-at "else\\(if\\)?\\b")
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1387 (setq icol (- icol fortran-if-indent)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1388 ((looking-at "case[ \t]*\\((.*)\\|default\\>\\)")
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1389 (setq icol (- icol fortran-if-indent)))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1390 ((looking-at "\\(otherwise\\|else[ \t]*where\\)\\b")
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1391 (setq icol (- icol fortran-if-indent)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1392 ((and (looking-at "continue\\b")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1393 (fortran-check-for-matching-do))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1394 (setq icol (- icol fortran-do-indent)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1395 ((looking-at "end[ \t]*do\\b")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1396 (setq icol (- icol fortran-do-indent)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1397 ((looking-at "end[ \t]*\
5720
fe1a71db966f (calculate-fortran-indent): Handle
Richard M. Stallman <rms@gnu.org>
parents: 5065
diff changeset
1398 \\(structure\\|union\\|map\\|interface\\)\\b[ \t]*[^ \t=(a-z]")
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1399 (setq icol (- icol fortran-structure-indent)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1400 ((and (looking-at fortran-end-prog-re1)
23754
53a4f2e0fccc Various minor doc fixes.
Dave Love <fx@gnu.org>
parents: 23732
diff changeset
1401 (fortran-check-end-prog-re)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1402 (not (= icol fortran-minimum-statement-indent)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1403 (message "Warning: `end' not in column %d. Probably\
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1404 an unclosed block." fortran-minimum-statement-indent))))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1405 (max fortran-minimum-statement-indent icol)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1406
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1407 (defun fortran-current-line-indentation ()
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1408 "Indentation of current line, ignoring Fortran line number or continuation.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1409 This is the column position of the first non-whitespace character
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1410 aside from the line number and/or column 5/8 line-continuation character.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1411 For comment lines, returns indentation of the first
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1412 non-indentation text within the comment."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1413 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1414 (beginning-of-line)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1415 (cond ((looking-at fortran-comment-line-start-skip)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1416 (goto-char (match-end 0))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1417 (skip-chars-forward
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1418 (if (stringp fortran-comment-indent-char)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1419 fortran-comment-indent-char
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1420 (char-to-string fortran-comment-indent-char))))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1421 ((or (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]"))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1422 (goto-char (match-end 0)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1423 (t
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1424 ;; Move past line number.
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1425 (skip-chars-forward "[ \t0-9]")))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1426 ;; Move past whitespace.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1427 (skip-chars-forward " \t")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1428 (current-column)))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1429
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1430 (defun fortran-indent-to-column (col)
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1431 "Indent current line with spaces to column COL.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1432 notes: 1) A non-zero/non-blank character in column 5 indicates a continuation
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1433 line, and this continuation character is retained on indentation;
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1434 2) If `fortran-continuation-string' is the first non-whitespace
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1435 character, this is a continuation line;
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1436 3) A non-continuation line which has a number as the first
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1437 non-whitespace character is a numbered line.
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1438 4) A TAB followed by a digit indicates a continuation line."
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1439 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1440 (beginning-of-line)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1441 (if (looking-at fortran-comment-line-start-skip)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1442 (if fortran-comment-indent-style
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1443 (let* ((char (if (stringp fortran-comment-indent-char)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1444 (aref fortran-comment-indent-char 0)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1445 fortran-comment-indent-char))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1446 (chars (string ? ?\t char)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1447 (goto-char (match-end 0))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1448 (skip-chars-backward chars)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1449 (delete-region (point) (progn (skip-chars-forward chars)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1450 (point)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1451 (insert-char char (- col (current-column)))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1452 (if (looking-at "\t[1-9]")
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1453 (if indent-tabs-mode
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1454 (goto-char (match-end 0))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1455 (delete-char 2)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1456 (insert-char ? 5)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1457 (insert fortran-continuation-string))
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1458 (if (looking-at " \\{5\\}[^ 0\n]")
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1459 (if indent-tabs-mode
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1460 (progn (delete-char 6)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1461 (insert ?\t (fortran-numerical-continuation-char) 1))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1462 (forward-char 6))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1463 (delete-horizontal-space)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1464 ;; Put line number in columns 0-4
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1465 ;; or put continuation character in column 5.
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1466 (cond ((eobp))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1467 ((looking-at (regexp-quote fortran-continuation-string))
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1468 (if indent-tabs-mode
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1469 (progn
20207
38616c4cf58c (fortran-imenu-generic-expression): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 20205
diff changeset
1470 (indent-to
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1471 (if indent-tabs-mode
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1472 fortran-minimum-statement-indent-tab
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1473 fortran-minimum-statement-indent-fixed))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1474 (delete-char 1)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1475 (insert-char (fortran-numerical-continuation-char) 1))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1476 (indent-to 5)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1477 (forward-char 1)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1478 ((looking-at "[0-9]+")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1479 (let ((extra-space (- 5 (- (match-end 0) (point)))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1480 (if (< extra-space 0)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1481 (message "Warning: line number exceeds 5-digit limit.")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1482 (indent-to (min fortran-line-number-indent extra-space))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1483 (skip-chars-forward "0-9")))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1484 ;; Point is now after any continuation character or line number.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1485 ;; Put body of statement where specified.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1486 (delete-horizontal-space)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1487 (indent-to col)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1488 ;; Indent any comment following code on the same line.
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1489 (if (fortran-find-comment-start-skip)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1490 (progn (goto-char (match-beginning 0))
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1491 (if (not (= (current-column) (fortran-comment-indent)))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1492 (progn (delete-horizontal-space)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1493 (indent-to (fortran-comment-indent)))))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1494
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1495 (defun fortran-line-number-indented-correctly-p ()
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1496 "Return t if current line's line number is correctly indented.
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1497 Do not call if there is no line number."
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1498 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1499 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1500 (skip-chars-forward " \t")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1501 (and (<= (current-column) fortran-line-number-indent)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1502 (or (= (current-column) fortran-line-number-indent)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1503 (progn (skip-chars-forward "0-9")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1504 (= (current-column) 5))))))
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1505
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1506 (defun fortran-check-for-matching-do ()
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1507 "When called from a numbered statement, return t if matching DO is found.
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1508 Otherwise return nil."
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1509 (let ((case-fold-search t)
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1510 charnum)
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1511 (save-excursion
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1512 (beginning-of-line)
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1513 (if (looking-at "[ \t]*[0-9]+")
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1514 (progn
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1515 (skip-chars-forward " \t")
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1516 (skip-chars-forward "0") ;skip past leading zeros
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1517 (setq charnum
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1518 (buffer-substring (point) (progn
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1519 (skip-chars-forward "0-9")
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1520 (point))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1521 (beginning-of-line)
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
1522 (save-restriction
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
1523 (save-excursion
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
1524 (narrow-to-defun)
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
1525 (and (re-search-backward
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1526 (concat
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1527 "\\(^[ \t0-9]*do[ \t]*0*"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1528 charnum "\\b\\)\\|" "\\(^[ \t]*0*"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1529 charnum "\\b\\)")
27199
4a15e79c5fb0 (fortran-mode-map): Don't bind M-C-a,
Dave Love <fx@gnu.org>
parents: 26665
diff changeset
1530 nil t)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1531 (looking-at
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1532 (concat "^[ \t0-9]*do[ \t]*0*"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1533 charnum))))))))))
332
3cb8418b827a Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1534
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1535 (defun fortran-find-comment-start-skip (&optional all)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1536 "Move to past `comment-start-skip' found on current line.
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1537 Return non-nil if `comment-start-skip' found, nil if not.
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1538 If ALL is nil, only match comments that start in column > 0."
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1539 (interactive)
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1540 ;; Hopefully at some point we can just use the line below! -stef
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1541 ;; (comment-search-forward (line-end-position) t))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1542 (when (or all comment-start-skip)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1543 (let ((pos (point))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1544 (css (if comment-start-skip
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1545 (concat fortran-comment-line-start-skip
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1546 "\\|" comment-start-skip)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1547 fortran-comment-line-start-skip)))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1548 (when (re-search-forward css (line-end-position) t)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1549 (if (and (or all (> (match-beginning 0) (line-beginning-position)))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1550 (or (save-match-data
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1551 (not (fortran-is-in-string-p (match-beginning 0))))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1552 ;; Recurse for rest of line.
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1553 (fortran-find-comment-start-skip all)))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1554 (point)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1555 (goto-char pos)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1556 nil)))))
11516
e7c26522b881 Use new fortran-match-!-comment to do !-style fontification; do rest in regexps
Simon Marshall <simon@gnu.org>
parents: 10883
diff changeset
1557
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1558 ;;From: ralf@up3aud1.gwdg.de (Ralf Fassel)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1559 ;; Test if TAB format continuation lines work.
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1560 (defun fortran-is-in-string-p (where)
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1561 "Return non-nil iff WHERE (a buffer position) is inside a Fortran string."
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1562 (save-excursion
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1563 (goto-char where)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1564 (cond
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1565 ((bolp) nil) ; bol is never inside a string
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1566 ((save-excursion ; comment lines too
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1567 (beginning-of-line)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1568 (looking-at fortran-comment-line-start-skip)) nil)
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1569 (t (let (;; ok, serious now. Init some local vars:
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1570 (parse-state '(0 nil nil nil nil nil 0))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1571 (quoted-comment-start (if comment-start
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1572 (regexp-quote comment-start)))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1573 (not-done t)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1574 parse-limit end-of-line)
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1575 ;; move to start of current statement
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1576 (fortran-next-statement)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1577 (fortran-previous-statement)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1578 ;; now parse up to WHERE
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1579 (while not-done
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1580 (if (or ;; skip to next line if:
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1581 ;; - comment line?
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1582 (looking-at fortran-comment-line-start-skip)
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1583 ;; - at end of line?
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1584 (eolp)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1585 ;; - not in a string and after comment-start?
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1586 (and (not (nth 3 parse-state))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1587 comment-start
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1588 (equal comment-start
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1589 (char-to-string (preceding-char)))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1590 (if (> (forward-line) 0)
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1591 (setq not-done nil))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1592 ;; else:
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1593 ;; if we are at beginning of code line, skip any
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1594 ;; whitespace, labels and tab continuation markers.
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1595 (if (bolp) (skip-chars-forward " \t0-9"))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1596 ;; if we are in column <= 5 now, check for continuation char
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1597 (cond ((= 5 (current-column)) (forward-char 1))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1598 ((and (< (current-column) 5)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1599 (equal fortran-continuation-string
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1600 (char-to-string (following-char)))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1601 (forward-char 1))))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1602 ;; find out parse-limit from here
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1603 (setq end-of-line (line-end-position))
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1604 (setq parse-limit (min where end-of-line))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1605 ;; parse max up to comment-start, if non-nil and in current line
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1606 (if comment-start
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1607 (save-excursion
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1608 (if (re-search-forward quoted-comment-start end-of-line t)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1609 (setq parse-limit (min (point) parse-limit)))))
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1610 ;; now parse if still in limits
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1611 (if (< (point) where)
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1612 (setq parse-state (parse-partial-sexp
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1613 (point) parse-limit nil nil parse-state))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1614 (setq not-done nil))))
3400
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1615 ;; result is
927c3d8374ef (fortran-mode): Replace comment-indent-hook with
Richard M. Stallman <rms@gnu.org>
parents: 2307
diff changeset
1616 (nth 3 parse-state))))))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1617
31847
c2d49e897f90 (fortran-mode): Locally set
Dave Love <fx@gnu.org>
parents: 30186
diff changeset
1618 ;; From old version.
c2d49e897f90 (fortran-mode): Locally set
Dave Love <fx@gnu.org>
parents: 30186
diff changeset
1619 (defalias 'fortran-auto-fill-mode 'auto-fill-mode)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1620
12772
f4b2913b7f58 (fortran-auto-fill-mode, fortran-do-auto-fill, fortran-fill):
Richard M. Stallman <rms@gnu.org>
parents: 12715
diff changeset
1621 (defun fortran-fill ()
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1622 (let* ((auto-fill-function #'fortran-auto-fill)
24800
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1623 (opoint (point))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1624 (bol (line-beginning-position))
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1625 (eol (line-end-position))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1626 (bos (min eol (+ bol (fortran-current-line-indentation))))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1627 (quote
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1628 (save-excursion
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1629 (goto-char bol)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1630 (if (looking-at fortran-comment-line-start-skip)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1631 nil ; OK to break quotes on comment lines.
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1632 (move-to-column fill-column)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1633 (if (fortran-is-in-string-p (point))
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1634 (save-excursion (re-search-backward "\\S\"\\s\"\\S\"" bol t)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1635 (if fortran-break-before-delimiters
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1636 (point)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1637 (1+ (point))))))))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1638 ;; decide where to split the line. If a position for a quoted
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1639 ;; string was found above then use that, else break the line
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1640 ;; before the last delimiter.
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3567
diff changeset
1641 ;; Delimiters are whitespace, commas, and operators.
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1642 ;; Will break before a pair of *'s.
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1643 (fill-point
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1644 (or quote
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1645 (save-excursion
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1646 (move-to-column (1+ fill-column))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1647 (skip-chars-backward "^ \t\n,'+-/*=)"
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1648 ;;; (if fortran-break-before-delimiters
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1649 ;;; "^ \t\n,'+-/*=" "^ \t\n,'+-/*=)")
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1650 )
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1651 (if (<= (point) (1+ bos))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1652 (progn
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1653 (move-to-column (1+ fill-column))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1654 ;;what is this doing???
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1655 (if (not (re-search-forward "[\t\n,'+-/*)=]" eol t))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1656 (goto-char bol))))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1657 (if (bolp)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1658 (re-search-forward "[ \t]" opoint t)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1659 (backward-char)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1660 (if (looking-at "\\s\"")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1661 (forward-char)
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1662 (skip-chars-backward " \t\*")))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1663 (if fortran-break-before-delimiters
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1664 (point)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1665 (1+ (point)))))))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1666 ;; if we are in an in-line comment, don't break unless the
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1667 ;; line of code is longer than it should be. Otherwise
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1668 ;; break the line at the column computed above.
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1669 ;;
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1670 ;; Need to use fortran-find-comment-start-skip to make sure that quoted !'s
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1671 ;; don't prevent a break.
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1672 (when (and (save-excursion
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1673 (beginning-of-line)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1674 (when (fortran-find-comment-start-skip)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1675 (goto-char (match-beginning 0))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1676 (>= (point) fill-point)))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1677 (save-excursion
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1678 (goto-char fill-point)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1679 (not (bolp)))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1680 (> (save-excursion
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1681 (goto-char opoint)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1682 (current-column))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1683 (min (1+ fill-column)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1684 (+ (fortran-calculate-indent)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1685 fortran-continuation-indent))))
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1686 (goto-char fill-point)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1687 (fortran-break-line)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1688 (end-of-line))))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1689
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1690 (defun fortran-break-line ()
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1691 (let ((opoint (point))
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1692 (bol (line-beginning-position))
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1693 (comment-string
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1694 (save-excursion
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1695 (if (fortran-find-comment-start-skip)
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1696 (delete-and-extract-region
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1697 (match-beginning 0) (line-end-position))))))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1698 ;; Forward line 1 really needs to go to next non white line
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1699 (if (save-excursion (forward-line)
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1700 (looking-at " \\{5\\}[^ 0\n]\\|\t[1-9]"))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1701 (progn
12715
ad18c3ad23b3 (fortran-break-line): Fixed a bug that sometimes
Richard M. Stallman <rms@gnu.org>
parents: 12386
diff changeset
1702 (end-of-line)
ad18c3ad23b3 (fortran-break-line): Fixed a bug that sometimes
Richard M. Stallman <rms@gnu.org>
parents: 12386
diff changeset
1703 (delete-region (point) (match-end 0))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1704 (delete-horizontal-space)
12772
f4b2913b7f58 (fortran-auto-fill-mode, fortran-do-auto-fill, fortran-fill):
Richard M. Stallman <rms@gnu.org>
parents: 12715
diff changeset
1705 (fortran-fill))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1706 (fortran-split-line))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1707 (if comment-string
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1708 (save-excursion
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1709 (goto-char bol)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1710 (end-of-line)
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1711 (delete-horizontal-space)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1712 (indent-to (fortran-comment-indent))
1548
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1713 (insert comment-string)))))
cbed5e520f81 version 1.28.8
Richard M. Stallman <rms@gnu.org>
parents: 1488
diff changeset
1714
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1715 (defun fortran-analyze-file-format ()
20805
918448e5d294 Various docstring and commentary fixes, including
Dave Love <fx@gnu.org>
parents: 20277
diff changeset
1716 "Return nil if fixed format is used, t if TAB formatting is used.
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1717 Use `fortran-tab-mode-default' if no non-comment statements are found in the
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1718 file before the end or the first `fortran-analyze-depth' lines."
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1719 (let ((i 0))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1720 (save-excursion
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1721 (goto-char (point-min))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1722 (setq i 0)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1723 (while (not (or
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1724 (eobp)
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1725 (eq (char-after) ?\t)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1726 (looking-at " \\{6\\}")
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1727 (> i fortran-analyze-depth)))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1728 (forward-line)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1729 (setq i (1+ i)))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1730 (cond
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1731 ((eq (char-after) ?\t) t)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1732 ((looking-at " \\{6\\}") nil)
1633
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1733 (fortran-tab-mode-default t)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1734 (t nil)))))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1735
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1736 (or (assq 'fortran-tab-mode-string minor-mode-alist)
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1737 (setq minor-mode-alist (cons
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1738 '(fortran-tab-mode-string
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1739 (indent-tabs-mode fortran-tab-mode-string))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1740 minor-mode-alist)))
65af7bcd5e31 * fortran.el: New version of version 1.30 (!) from Stephen A. Wood
Jim Blandy <jimb@redhat.com>
parents: 1611
diff changeset
1741
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1742 (defun fortran-fill-paragraph (&optional justify)
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1743 "Fill surrounding comment block as paragraphs, else fill statement.
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1744 Intended as the value of `fill-paragraph-function'."
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1745 (interactive "P")
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1746 (save-excursion
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1747 (beginning-of-line)
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1748 (if (not (looking-at fortran-comment-line-start-skip))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1749 (fortran-fill-statement)
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1750 ;; We're in a comment block. Find the start and end of a
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1751 ;; paragraph, delimited either by non-comment lines or empty
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1752 ;; comments. (Get positions as markers, since the
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1753 ;; `indent-region' below can shift the block's end).
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
1754 (let* ((non-empty-comment
33947
7ade0d187b77 (fortran-mode): Don't set
Dave Love <fx@gnu.org>
parents: 31847
diff changeset
1755 (concat fortran-comment-line-start-skip "[^ \t\n]"))
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1756 (start (save-excursion
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1757 ;; Find (start of) first line.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1758 (while (and (zerop (forward-line -1))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1759 (looking-at non-empty-comment)))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1760 (or (looking-at non-empty-comment)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1761 (forward-line)) ; overshot
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1762 (point-marker)))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1763 (end (save-excursion
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1764 ;; Find start of first line past region to fill.
41676
82c2143ec3eb Fontify rewind, backspace. Doc fixes.
Dave Love <fx@gnu.org>
parents: 41234
diff changeset
1765 (while (progn
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1766 (forward-line)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1767 (looking-at non-empty-comment)))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1768 (point-marker))))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1769 ;; Indent the block, find the string comprising the effective
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1770 ;; comment start skip and use that as a fill-prefix for
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1771 ;; filling the region.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1772 (indent-region start end nil)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1773 (let ((paragraph-ignore-fill-prefix nil)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1774 (fill-prefix (progn
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1775 (beginning-of-line)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1776 (looking-at fortran-comment-line-start-skip)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1777 (match-string 0))))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1778 (let (fill-paragraph-function)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1779 (fill-region start end justify))) ; with normal `fill-paragraph'
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1780 (set-marker start nil)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1781 (set-marker end nil))))
21432
79711f0f4079 (fortran-fill-paragraph): This is the one
Dave Love <fx@gnu.org>
parents: 21410
diff changeset
1782 t)
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1783
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1784 (defun fortran-fill-statement ()
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1785 "Fill a fortran statement up to `fill-column'."
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1786 (interactive)
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1787 (let ((auto-fill-function #'fortran-auto-fill))
24800
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1788 (if (not (save-excursion
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1789 (beginning-of-line)
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1790 (or (looking-at "[ \t]*$")
26560
edf06ac56d1f (fortran-comment-line-start): Renamed from comment-line-start.
Dave Love <fx@gnu.org>
parents: 25162
diff changeset
1791 (looking-at fortran-comment-line-start-skip)
24800
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1792 (and comment-start-skip
43882
e601e469e7a4 (fortran-mode): Set comment-padding to "$$$".
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 42443
diff changeset
1793 (looking-at (concat "[ \t]*" comment-start-skip))))))
24800
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1794 (save-excursion
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1795 ;; Find beginning of statement.
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1796 (fortran-next-statement)
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1797 (fortran-previous-statement)
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1798 ;; Re-indent initially.
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1799 (fortran-indent-line)
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1800 ;; Replace newline plus continuation field plus indentation with
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1801 ;; single space.
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1802 (while (progn
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1803 (forward-line)
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1804 (fortran-remove-continuation)))
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1805 (fortran-previous-statement)))
b4bf2212c418 Add :link to defgroup.
Dave Love <fx@gnu.org>
parents: 24254
diff changeset
1806 (fortran-indent-line)))
21410
d68f866455c6 Use regexp-opt and eval-and-compile to
Dave Love <fx@gnu.org>
parents: 21167
diff changeset
1807
45067
b7f97570f3f7 (fortran-strip-sequence-nos): Rename from typo `fortran-strip-sqeuence-nos'.
Glenn Morris <rgm@gnu.org>
parents: 44726
diff changeset
1808 (defun fortran-strip-sequence-nos (&optional do-space)
36171
5d300b531da9 (fortran-strip-sqeuence-nos): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 35244
diff changeset
1809 "Delete all text in column 72 and up (assumed to be sequence numbers).
5d300b531da9 (fortran-strip-sqeuence-nos): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 35244
diff changeset
1810 Normally also deletes trailing whitespace after stripping such text.
5d300b531da9 (fortran-strip-sqeuence-nos): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 35244
diff changeset
1811 Supplying prefix arg DO-SPACE prevents stripping the whitespace."
26665
4aede027bedb (fortran-strip-sqeuence-nos): New command.
Dave Love <fx@gnu.org>
parents: 26560
diff changeset
1812 (interactive "p")
4aede027bedb (fortran-strip-sqeuence-nos): New command.
Dave Love <fx@gnu.org>
parents: 26560
diff changeset
1813 (save-excursion
4aede027bedb (fortran-strip-sqeuence-nos): New command.
Dave Love <fx@gnu.org>
parents: 26560
diff changeset
1814 (goto-char (point-min))
35244
682d1ffa0b5e (fortran-mode-map): Modify Customization
Dave Love <fx@gnu.org>
parents: 33947
diff changeset
1815 (while (re-search-forward "^.\\{72\\}\\(.*\\)" nil t)
26665
4aede027bedb (fortran-strip-sqeuence-nos): New command.
Dave Love <fx@gnu.org>
parents: 26560
diff changeset
1816 (replace-match "" nil nil nil 1)
4aede027bedb (fortran-strip-sqeuence-nos): New command.
Dave Love <fx@gnu.org>
parents: 26560
diff changeset
1817 (unless do-space (delete-horizontal-space)))))
4aede027bedb (fortran-strip-sqeuence-nos): New command.
Dave Love <fx@gnu.org>
parents: 26560
diff changeset
1818
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1819 ;; This code used to live in add-log.el, but this is a better place
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1820 ;; for it.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1821 (defun fortran-current-defun ()
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1822 "Function to use for `add-log-current-defun-function' in Fortran mode."
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1823 ;; We must be inside function body for this to work.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1824 (fortran-beginning-of-subprogram)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1825 (let ((case-fold-search t)) ; case-insensitive
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1826 ;; search for fortran subprogram start
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1827 (if (re-search-forward
30149
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1828 (concat "^[ \t]*\\(program\\|subroutine\\|function"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1829 "\\|[ \ta-z0-9*()]*[ \t]+function\\|"
1c8c6dbfcfb9 Don't require easymenu. Use repeat counts in various regexps.
Dave Love <fx@gnu.org>
parents: 28079
diff changeset
1830 "\\(block[ \t]*data\\)\\)")
28079
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1831 (save-excursion (fortran-end-of-subprogram)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1832 (point))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1833 t)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1834 (or (match-string-no-properties 2)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1835 (progn
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1836 ;; move to EOL or before first left paren
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1837 (if (re-search-forward "[(\n]" nil t)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1838 (progn (backward-char)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1839 (skip-chars-backward " \t"))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1840 (end-of-line))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1841 ;; Use the name preceding that.
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1842 (buffer-substring-no-properties (point) (progn (backward-sexp)
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1843 (point)))))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1844 "main")))
07cbc9269fbc (fortran-comment-line-start): Define as
Dave Love <fx@gnu.org>
parents: 27417
diff changeset
1845
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 332
diff changeset
1846 (provide 'fortran)
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 332
diff changeset
1847
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
1848 ;;; fortran.el ends here