* lisp/org.el (org-at-clock-log-p): Use `beginning-of-line' instead of
  `move-beginning-of-line'.
This commit is contained in:
Nicolas Goaziou 2016-11-27 23:07:49 +01:00
parent 7fc980f75e
commit 2998a139c4
1 changed files with 1 additions and 1 deletions

View File

@ -18125,7 +18125,7 @@ INACTIVE-OK."
(defun org-at-clock-log-p nil
"Is the cursor on the clock log line?"
(save-excursion
(move-beginning-of-line 1)
(beginning-of-line)
(looking-at org-clock-line-re)))
(defvar org-clock-history) ; defined in org-clock.el