emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/objed 69dcc5b 066/166: Use first regex group of regex o


From: Clemens Radermacher
Subject: [elpa] externals/objed 69dcc5b 066/166: Use first regex group of regex object to delemit inner part
Date: Sun, 29 Dec 2019 08:21:02 -0500 (EST)

branch: externals/objed
commit 69dcc5b89d8ea8b58fc730f042e28530f297848c
Author: Clemens Radermacher <address@hidden>
Commit: Clemens Radermacher <address@hidden>

    Use first regex group of regex object to delemit inner part
---
 objed-objects.el | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/objed-objects.el b/objed-objects.el
index f947c80..78fe8af 100644
--- a/objed-objects.el
+++ b/objed-objects.el
@@ -69,7 +69,13 @@
 
 (eval-and-compile
   (defun objed--get-regex-object (bregex eregex)
-  "Return regex object if point is within region limited by BREGEX, EREGEX."
+  "Return regex object if point is within region limited by BREGEX, EREGEX.
+
+BREGEX is the regular expression for the start of the object. Anything
+in it's first regex group is considered to be part of the inner object.
+
+EREGEX is the regular expression for the end of the object. Anything
+in it's first regex group is considered to be part of the inner object."
   (let* ((obounds ())
          (ibounds ())
          (opos (point)))
@@ -86,21 +92,19 @@
                          (match-beginning 0)))))
       (when (and  ;; goto possible start
                  (re-search-backward bregex nil t)
-                 (push (or (match-end 1)
+                 (push (or (match-beginning 1)
                            (match-end 0))
                        ibounds)
-                 (push (or (match-beginning 1)
-                           (match-beginning 0))
+                 (push (match-beginning 0)
                        obounds)
                  ;; goto possible end
                  (goto-char (or (match-end 1)
                                 (match-end 0)))
                  (re-search-forward eregex nil t)
-                 (push (or (match-beginning 1)
+                 (push (or (match-end 1)
                            (match-beginning 0))
                        ibounds)
-                 (push (or (match-end 1)
-                           (match-end 0))
+                 (push (match-end 0)
                        obounds)
                  ;; when point was within start and end
                  (<= (cadr obounds) opos (car obounds)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]