Merge branch 'maint'
This commit is contained in:
commit
1aeb958e56
|
@ -138,9 +138,12 @@ the structure of the Org file."
|
||||||
(point)
|
(point)
|
||||||
(org-eww-goto-next-url-property-change)))
|
(org-eww-goto-next-url-property-change)))
|
||||||
;; concat `org-mode' style url to `return-content'.
|
;; concat `org-mode' style url to `return-content'.
|
||||||
(setq return-content (concat return-content
|
(setq return-content
|
||||||
(org-make-link-string
|
(concat return-content
|
||||||
link-location link-title))))
|
(if (stringp link-location)
|
||||||
|
;; hint: link-location is different for form-elements.
|
||||||
|
(org-make-link-string link-location link-title)
|
||||||
|
link-title))))
|
||||||
(goto-char temp-position) ; reset point before jump next anchor
|
(goto-char temp-position) ; reset point before jump next anchor
|
||||||
(setq out-bound t) ; for break out `while' loop
|
(setq out-bound t) ; for break out `while' loop
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in New Issue