Переглянути джерело

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".
Nicolas Goaziou 8 роки тому
батько
коміт
75eebb3715
1 змінених файлів з 0 додано та 4 видалено
  1. 0 4
      lisp/org-element.el

+ 0 - 4
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))