Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2017-04-10 21:12:47 +02:00
commit 926b093c16
1 changed files with 2 additions and 2 deletions

View File

@ -2292,7 +2292,7 @@ Foo Bar
(insert (format "[[file:%s::line1 line2]]" file)) (insert (format "[[file:%s::line1 line2]]" file))
(beginning-of-line) (beginning-of-line)
(let ((org-link-search-must-match-exact-headline nil)) (let ((org-link-search-must-match-exact-headline nil))
(org-open-at-point)) (org-open-at-point 0))
(looking-at-p "line1")))) (looking-at-p "line1"))))
(should (should
(org-test-with-temp-text-in-file "Paragraph\n\nline1\n\nline2\n\n" (org-test-with-temp-text-in-file "Paragraph\n\nline1\n\nline2\n\n"
@ -2301,7 +2301,7 @@ Foo Bar
(insert (format "[[file:%s::line1 line2]]" file)) (insert (format "[[file:%s::line1 line2]]" file))
(beginning-of-line) (beginning-of-line)
(let ((org-link-search-must-match-exact-headline nil)) (let ((org-link-search-must-match-exact-headline nil))
(org-open-at-point)) (org-open-at-point 0))
(looking-at-p "line1"))))) (looking-at-p "line1")))))
;;;; Link Escaping ;;;; Link Escaping