Browse Source

Merge branch 'maint'

Kyle Meyer 6 years ago
parent
commit
6972cce38b
2 changed files with 4 additions and 2 deletions
  1. 3 1
      lisp/org-clock.el
  2. 1 1
      lisp/org.el

+ 3 - 1
lisp/org-clock.el

@@ -928,7 +928,9 @@ CLOCK is a cons cell of the form (MARKER START-TIME)."
 	;; contents, and leave point on the /next/ headline.  We store
 	;; the current entry location to be able to get back here when
 	;; we need to clock in again the previously clocked task.
-	(heading (org-with-point-at (car clock) (org-back-to-heading t))))
+	(heading (org-with-point-at (car clock)
+		   (org-back-to-heading t)
+		   (point-marker))))
     (pcase resolve-to
       (`nil
        (org-clock-clock-cancel clock)

+ 1 - 1
lisp/org.el

@@ -9626,7 +9626,7 @@ If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
 be used as the default description.  Otherwise, if
 `org-make-link-description-function' is non-nil, this function
 will be called with the link target, and the result will be the
-default link description.  When called non-interactivily, don't
+default link description.  When called non-interactively, don't
 allow to edit the default description."
   (interactive "P")
   (let* ((wcf (current-window-configuration))