@@ -539,7 +539,7 @@ or the region is active, mark the following (if the point is before the mark)
539539or preceding (if the point is after the mark) block. If that statement has
540540lesser nesting level, mark the whole outer statement.
541541
542- MOVE-FORWARDS is a function moving the cursor to the next end of block.
542+ MOVE-FORWARD is a function moving the cursor to the next end of block.
543543MOVE-BACKWARD is a function moving the cursor to the previous beginning of
544544block.
545545Both functions return t if succeeded, return nil otherwise."
@@ -590,7 +590,7 @@ Both functions return t if succeeded, return nil otherwise."
590590(defun swift-mode:following-generic-block-region (move-forward move-backward )
591591 " Return cons representing a region of following generic block.
592592
593- MOVE-FORWARDS is a function moving the cursor to the next end of block.
593+ MOVE-FORWARD is a function moving the cursor to the next end of block.
594594MOVE-BACKWARD is a function moving the cursor to the previous beginning of
595595block.
596596Both functions return t if succeeded, return nil otherwise."
@@ -602,7 +602,7 @@ Both functions return t if succeeded, return nil otherwise."
602602(defun swift-mode:preceding-generic-block-region (move-forward move-backward )
603603 " Return cons representing a region of preceding generic block.
604604
605- MOVE-FORWARDS is a function moving the cursor to the next end of block.
605+ MOVE-FORWARD is a function moving the cursor to the next end of block.
606606MOVE-BACKWARD is a function moving the cursor to the previous beginning of
607607block.
608608Both functions return t if succeeded, return nil otherwise."
@@ -614,7 +614,7 @@ Both functions return t if succeeded, return nil otherwise."
614614(defun swift-mode:containing-generic-block-region (move-forward move-backward )
615615 " Return cons representing a region of containing generic block.
616616
617- MOVE-FORWARDS is a function moving the cursor to the next end of block.
617+ MOVE-FORWARD is a function moving the cursor to the next end of block.
618618MOVE-BACKWARD is a function moving the cursor to the previous beginning of
619619block.
620620Both functions return t if succeeded, return nil otherwise."
@@ -667,7 +667,12 @@ If the point is between blocks, narrow depend on
667667`swift-mode:mark-defun-preference' .
668668
669669Preceding comments are included if INCLUDE-COMMENTS is non-nil.
670- Interactively, the behavior depends on ‘narrow-to-defun-include-comments’."
670+ Interactively, the behavior depends on ‘narrow-to-defun-include-comments’.
671+
672+ MOVE-FORWARD is a function moving the cursor to the next end of block.
673+ MOVE-BACKWARD is a function moving the cursor to the previous beginning of
674+ block.
675+ Both functions return t if succeeded, return nil otherwise."
671676 (let ((restriction (cons (point-min ) (point-max )))
672677 region
673678 extended)
0 commit comments