[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: A small bugfix in org-clock-in
From: |
Jean-Marie Gaillourdet |
Subject: |
Re: A small bugfix in org-clock-in |
Date: |
Tue, 16 Feb 2021 20:53:33 +0100 |
User-agent: |
mu4e 1.4.13; emacs 27.1 |
Hello,
I am sorry, for the mess in my previous mail.
I've experienced occasionally errors while executing org-clock-in
from
the agenda. The errors seems to be that indent-line-to is called
with a
negative argument. Moving from the agenda to the todo headline in
the
underlying org file and repeating org-clock-in and org-clock-out
usually
lead to a state in which I could successfully run org-clock-in.
The following patch fixes the issue for me and I believe it does
no
harm. I've used it daily for two month. I'd appreciate if you
could add
it to org-mode.
Kind regards,
Jean-Marie
>From 319785492d55d33cdf819aa891c3e7834dafacff Mon Sep 17 00:00:00 2001
From: Jean-Marie Gaillourdet <jm@gaillourdet.net>
Date: Sun, 13 Dec 2020 12:50:52 +0100
Subject: [PATCH] org-clock: fix runtime error in org-clock-in
* org-clock.el (org-clock-in): Under certain configurations of org,
Emacs doom, evil-org-mode and my custom settings, org-clock-in aborts
with an an error because indent-line-to is called with -2.
---
lisp/org-clock.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index 6c7a797ff..4256b1a21 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1368,7 +1368,7 @@ the default behavior."
(end-of-line 0)
(org-in-item-p)))
(beginning-of-line 1)
- (indent-line-to (- (current-indentation) 2)))
+ (indent-line-to (max 0 (- (current-indentation) 2))))
(insert org-clock-string " ")
(setq org-clock-effort (org-entry-get (point) org-effort-property))
(setq org-clock-total-time (org-clock-sum-current-item
--
2.29.2
--
Jean-Marie Gaillourdet