mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(f90-comment-indent): Do not move point in default case.
This commit is contained in:
parent
eb2fa81f4a
commit
b464e0eeda
@ -1007,8 +1007,9 @@ All others return `comment-column', leaving at least one space after code."
|
||||
(skip-chars-backward " \t")
|
||||
(bolp)))
|
||||
(f90-calculate-indent))
|
||||
(t (skip-chars-backward " \t")
|
||||
(max (if (bolp) 0 (1+ (current-column))) comment-column))))
|
||||
(t (save-excursion
|
||||
(skip-chars-backward " \t")
|
||||
(max (if (bolp) 0 (1+ (current-column))) comment-column)))))
|
||||
|
||||
(defsubst f90-present-statement-cont ()
|
||||
"Return continuation properties of present statement.
|
||||
|
Loading…
Reference in New Issue
Block a user