emacs-orgmode
[Top][All Lists]
Advanced

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

[O] [PATCH] org.el: Use `org-any-link-re' to avoid duplication


From: Albert Krewinkel
Subject: [O] [PATCH] org.el: Use `org-any-link-re' to avoid duplication
Date: Thu, 24 Apr 2014 15:54:44 +0200

The `re' variable defined in function `org-offer-links-in-entry' is
string-equal to `org-any-link-re' and is hence replaced by the latter.
---
 lisp/org.el | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index ad76e67..741529b 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -10694,10 +10694,7 @@ there is one, return it."
       (save-restriction
        (widen)
        (goto-char marker)
-       (let ((re (concat "\\(" org-bracket-link-regexp "\\)\\|"
-                         "\\(" org-angle-link-re "\\)\\|"
-                         "\\(" org-plain-link-re "\\)"))
-             (cnt ?0)
+       (let ((cnt ?0)
              (in-emacs (if (integerp nth) nil nth))
              have-zero end links link c)
          (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
@@ -10706,7 +10703,7 @@ there is one, return it."
          (save-excursion
            (org-back-to-heading t)
            (setq end (save-excursion (outline-next-heading) (point)))
-           (while (re-search-forward re end t)
+           (while (re-search-forward org-any-link-re end t)
              (push (match-string 0) links))
            (setq links (org-uniquify (reverse links))))
          (cond
-- 
1.9.2




reply via email to

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