]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/search.c (Fmatch_beginning, Fmatch_end): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Mon, 1 Jul 2024 12:59:05 +0000 (15:59 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 3 Jul 2024 18:45:45 +0000 (20:45 +0200)
(cherry picked from commit 7050128cfe91a86f87dfe495ce8c3a1c82337db6)

src/search.c

index 3c07933b5da506e7a21d3988a30992d55acca816..dd813eda91376c4a76770b7b924ccc26438421fe 100644 (file)
@@ -2812,11 +2812,12 @@ match_limit (Lisp_Object num, bool beginningp)
 
 DEFUN ("match-beginning", Fmatch_beginning, Smatch_beginning, 1, 1, 0,
        doc: /* Return position of start of text matched by last search.
-SUBEXP, a number, specifies which parenthesized expression in the last
-  regexp.
-Value is nil if SUBEXPth pair didn't match, or there were less than
-  SUBEXP pairs.
-Zero means the entire text matched by the whole regexp or whole string.
+SUBEXP, a number, specifies the parenthesized subexpression in the last
+  regexp for which to return the start position.
+Value is nil if SUBEXPth subexpression didn't match, or there were fewer
+  than SUBEXP subexpressions.
+SUBEXP zero means the entire text matched by the whole regexp or whole
+  string.
 
 Return value is undefined if the last search failed.  */)
   (Lisp_Object subexp)
@@ -2826,11 +2827,12 @@ Return value is undefined if the last search failed.  */)
 
 DEFUN ("match-end", Fmatch_end, Smatch_end, 1, 1, 0,
        doc: /* Return position of end of text matched by last search.
-SUBEXP, a number, specifies which parenthesized expression in the last
-  regexp.
-Value is nil if SUBEXPth pair didn't match, or there were less than
-  SUBEXP pairs.
-Zero means the entire text matched by the whole regexp or whole string.
+SUBEXP, a number, specifies the parenthesized subexpression in the last
+  regexp for which to return the start position.
+Value is nil if SUBEXPth subexpression didn't match, or there were fewer
+  than SUBEXP subexpressions.
+SUBEXP zero means the entire text matched by the whole regexp or whole
+  string.
 
 Return value is undefined if the last search failed.  */)
   (Lisp_Object subexp)