From 57f3a6110d7386cb71b01b8251aa7d3b11be5b8e Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 5 May 2017 19:38:34 -0400 Subject: transport-next-link: Fix error on whitespace When point is on whitespace, there are no description bounds because there is no text to use for the description. Avoid a type error in this case by navigating to the initial location of point rather than the left description bound. --- org-link-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'org-link-edit.el') diff --git a/org-link-edit.el b/org-link-edit.el index 6fa105a..636d191 100644 --- a/org-link-edit.el +++ b/org-link-edit.el @@ -373,7 +373,7 @@ END." (progn (goto-char pt) (org-link-edit--on-link-p))) (user-error "Cannot transport next link with point on a link")) - (goto-char (car desc-bounds)) + (goto-char (or (car desc-bounds) pt)) (cl-multiple-value-bind (link-beg link-end link desc) (org-link-edit--next-link-data previous) (unless (or (not desc-bounds) (= (length desc) 0)) -- cgit v1.2.3