mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(f90-comment-indent): Do not move point in default case.
This commit is contained in:
parent
eb2fa81f4a
commit
b464e0eeda
1 changed files with 3 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue