Skip to content

Commit a811c86

Browse files
committed
Wrap long line
1 parent d39908a commit a811c86

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

swift-mode-font-lock.el

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,10 @@ This function does not search beyond LIMIT."
210210
(goto-char pos)
211211
(forward-comment (- (point)))
212212
(skip-syntax-backward "w_")
213-
(and (< (point) limit)
214-
(looking-at
215-
"\\<\\(func\\|enum\\|struct\\|class\\|protocol\\|extension\\|actor\\)\\>")))
213+
(and
214+
(< (point) limit)
215+
(looking-at
216+
"\\<\\(func\\|enum\\|struct\\|class\\|protocol\\|extension\\|actor\\)\\>")))
216217

217218
(defun swift-mode:property-access-pos-p (pos limit)
218219
"Return t if POS is just before the property name of a member expression.

0 commit comments

Comments
 (0)