From 75eebb3715850b6fea85a98c1c19dc1a6e38dfb1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 9 Oct 2016 09:53:45 +0200 Subject: [PATCH] org-element: Small refactoring * lisp/org-element.el (org-element-link-parser): Remove useless cond branch. "id" links are handled by the previous branch, i.e., "explicit types". --- lisp/org-element.el | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lisp/org-element.el b/lisp/org-element.el index 7b091bfbb..1430e3b6e 100644 --- a/lisp/org-element.el +++ b/lisp/org-element.el @@ -3114,10 +3114,6 @@ Assume point is at the beginning of the link." ((string-match org-link-types-re raw-link) (setq type (match-string 1 raw-link)) (setq path (substring raw-link (match-end 0)))) - ;; Id type: PATH is the id. - ((string-match "\\`id:\\([-a-f0-9]+\\)\\'" raw-link) - (setq type "id") - (setq path (match-string 1 raw-link))) ;; Code-ref type: PATH is the name of the reference. ((and (string-match-p "\\`(" raw-link) (string-match-p ")\\'" raw-link))