aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 4564d141a86..a4c04eee58f 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -2775,9 +2775,11 @@ LIMIT if non-nil speeds up the search by specifying a minimum
2775starting position, to avoid checking matches that would start 2775starting position, to avoid checking matches that would start
2776before LIMIT. 2776before LIMIT.
2777 2777
2778If GREEDY is non-nil, extend the match backwards as far as possible, 2778If GREEDY is non-nil, extend the match backwards as far as
2779stopping when a single additional previous character cannot be part 2779possible, stopping when a single additional previous character
2780of a match for REGEXP." 2780cannot be part of a match for REGEXP. When the match is
2781extended, its starting positiong is allowed to occur before
2782LIMIT."
2781 (let ((start (point)) 2783 (let ((start (point))
2782 (pos 2784 (pos
2783 (save-excursion 2785 (save-excursion