diff options
| author | Raúl Benencia <id@rbenencia.name> | 2026-01-15 09:13:23 -0300 |
|---|---|---|
| committer | Raúl Benencia <id@rbenencia.name> | 2026-01-15 09:13:23 -0300 |
| commit | bb4c933b94652a68e69fa9e3f343f91040085687 (patch) | |
| tree | 2da50bb8ccfce272b5a84281dcccc7be8decacab | |
| parent | 7e1c3e90d6fedddd46ee0c6c42968433bc838d7e (diff) | |
fix: unmatched parenthesis
| -rw-r--r-- | org-tempus.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org-tempus.el b/org-tempus.el index 0d06cec..d45c90f 100644 --- a/org-tempus.el +++ b/org-tempus.el @@ -681,7 +681,7 @@ A session does not reset when switching tasks within (when active (setq auto-clocked-in (or (org-tempus--maybe-auto-clock-in start-time) - (org-tempus--maybe-auto-clock-in-default start-time)))))) + (org-tempus--maybe-auto-clock-in-default start-time))))) (when (and org-tempus-auto-clock-enabled (org-clock-is-active) (> org-tempus-auto-clock-out-seconds 0) @@ -715,7 +715,7 @@ A session does not reset when switching tasks within (org-tempus--record-notification) (let ((msg "You seem active but no task is clocked in.")) (org-tempus--debug "Notify idle: %s" msg) - (org-tempus--notify msg))))))) + (org-tempus--notify msg)))))))) (defun org-tempus--gvariant-string (value) "Return VALUE as a quoted GVariant string literal." |
