Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f93f92f1
Commit
f93f92f1
authored
Nov 18, 1993
by
Richard M. Stallman
Browse files
(calculate-fortran-indent): Fixup regexp for where statements.
parent
38f6438b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/progmodes/fortran.el
lisp/progmodes/fortran.el
+3
-3
No files found.
lisp/progmodes/fortran.el
View file @
f93f92f1
...
...
@@ -4,7 +4,7 @@
;; Author: Michael D. Prange <prange@erl.mit.edu>
;; Maintainer: bug-fortran-mode@erl.mit.edu
;; Version 1.30.
2
(
June
1, 1993)
;; Version 1.30.
3
(
November
1
6
, 1993)
;; Keywords: languages
;; This file is part of GNU Emacs.
...
...
@@ -46,7 +46,7 @@
;;; Bugs to bug-fortran-mode@erl.mit.edu
(
defconst
fortran-mode-version
"version 1.30.
2
"
)
(
defconst
fortran-mode-version
"version 1.30.
3
"
)
;;; Code:
...
...
@@ -807,7 +807,7 @@ An abbrev before point is expanded if `abbrev-mode' is non-nil."
(setq icol (+ icol fortran-if-indent)))
((looking-at "
\\
(
otherwise\\|else[ \t]*where\\)\\b")
(setq icol (+ icol fortran-if-indent)))
((looking-at "where
.
*(.*)[ \t]*\n")
((looking-at "where
[ \t]
*(.*)[ \t]*\n")
(setq icol (+ icol fortran-if-indent)))
((looking-at "do\\b")
(setq icol (+ icol fortran-do-indent)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment