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
1769936d
Commit
1769936d
authored
Aug 30, 2005
by
Juanma Barranquero
Browse files
(fortran-indent-to-column): "?\ " -> "?\s".
(font-lock-syntactic-keywords, gud-find-expr-function): Add defvars.
parent
b5b0cb34
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/progmodes/fortran.el
lisp/progmodes/fortran.el
+4
-2
No files found.
lisp/progmodes/fortran.el
View file @
1769936d
...
...
@@ -55,6 +55,8 @@
(
eval-when-compile
; silence compiler
(
defvar
dabbrev-case-fold-search
)
(
defvar
font-lock-syntactic-keywords
)
(
defvar
gud-find-expr-function
)
(
defvar
imenu-case-fold-search
)
(
defvar
imenu-syntax-alist
))
...
...
@@ -1646,7 +1648,7 @@ notes: 1) A non-zero/non-blank character in column 5 indicates a continuation
(let* ((char (if (stringp fortran-comment-indent-char)
(aref fortran-comment-indent-char 0)
fortran-comment-indent-char))
(chars (string ?
?\t char)))
(chars (string ?
\s
?\t char)))
(goto-char (match-end 0))
(skip-chars-backward chars)
(delete-region (point) (progn (skip-chars-forward chars)
...
...
@@ -1656,7 +1658,7 @@ notes: 1) A non-zero/non-blank character in column 5 indicates a continuation
(if indent-tabs-mode
(goto-char (match-end 0))
(delete-char 2)
(insert-char ?
5)
(insert-char ?
\s
5)
(insert fortran-continuation-string))
(if (looking-at "
\\{5\\}[^
0\n]
")
(if indent-tabs-mode
...
...
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