소스 검색

Prevent superfluous colon

* org.el (org-make-link-string): Prevent superfluous colon.
David Maus 14 년 전
부모
커밋
cc0cc6745a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -8450,7 +8450,7 @@ according to FMT (default from `org-email-link-description-format')."
 	     (not (equal link (org-link-escape link))))
     (setq description (org-extract-attributes link)))
   (setq link (if (string-match org-link-types-re link)
-		 (concat (match-string 1 link) ":"
+		 (concat (match-string 1 link)
 			 (org-link-escape (substring link (match-end 1))))
 	       (org-link-escape link)))
   (concat "[[" link "]"