]> git.eshelyaron.com Git - emacs.git/commitdiff
* thingatpt.el (thing-at-point-looking-at): Add optional arg
authorLeo Liu <sdl.web@gmail.com>
Wed, 6 Nov 2013 09:06:05 +0000 (17:06 +0800)
committerLeo Liu <sdl.web@gmail.com>
Wed, 6 Nov 2013 09:06:05 +0000 (17:06 +0800)
DISTANCE to bound the search. All uses changed.

Fixes: debbugs:15808
lisp/ChangeLog
lisp/thingatpt.el

index 90f71bb01a1a0ac54daa182b5cc928d308d2c2a1..d775afd9c5b9347ede98dda08d3b316c5c876b65 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-06  Leo Liu  <sdl.web@gmail.com>
+
+       * thingatpt.el (thing-at-point-looking-at): Add optional arg
+       DISTANCE to bound the search. All uses changed.  (Bug#15808)
+
 2013-11-06  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
index b67a32a24f72043f0c9268facd74f91682ec5b5c..0887c7f1fe49b625a251b2edf6e5b514ffb921f7 100644 (file)
@@ -476,19 +476,22 @@ looks like an email address, \"ftp://\" if it starts with
 ;; matches that straddle the start position so we search forwards once
 ;; and then back repeatedly and then back up a char at a time.
 
-(defun thing-at-point-looking-at (regexp)
+(defun thing-at-point-looking-at (regexp &optional distance)
   "Return non-nil if point is in or just after a match for REGEXP.
 Set the match data from the earliest such match ending at or after
 point."
   (save-excursion
-    (let ((old-point (point)) match)
+    (let ((old-point (point))
+         (forward-bound (and distance (+ (point) distance)))
+         (backward-bound (and distance (- (point) distance)))
+         match)
       (and (looking-at regexp)
           (>= (match-end 0) old-point)
           (setq match (point)))
       ;; Search back repeatedly from end of next match.
       ;; This may fail if next match ends before this match does.
-      (re-search-forward regexp nil 'limit)
-      (while (and (re-search-backward regexp nil t)
+      (re-search-forward regexp forward-bound 'limit)
+      (while (and (re-search-backward regexp backward-bound t)
                  (or (> (match-beginning 0) old-point)
                      (and (looking-at regexp)  ; Extend match-end past search start
                           (>= (match-end 0) old-point)
@@ -518,7 +521,8 @@ with angle brackets.")
 
 (put 'email 'bounds-of-thing-at-point
      (lambda ()
-       (let ((thing (thing-at-point-looking-at thing-at-point-email-regexp)))
+       (let ((thing (thing-at-point-looking-at
+                    thing-at-point-email-regexp 500)))
          (if thing
              (let ((beginning (match-beginning 0))
                    (end (match-end 0)))