From: Bastien <bzg@altern.org>
To: emacs-orgmode@gnu.org
Subject: Re: Re: no running clock
Date: Wed, 03 Oct 2007 21:44:36 +0100 [thread overview]
Message-ID: <87ir5orkqz.fsf@bzg.ath.cx> (raw)
In-Reply-To: <87ve9o0zl3.fsf@adboyd.com> (J. David Boyd's message of "Wed, 03 Oct 2007 15:26:16 -0400")
david@adboyd.com (J. David Boyd) writes:
>> Any idea why this happens ?
>>
>> Cheers,
>> Cezar
>
> Are you exiting Emacs while the clock is started, then restarting
> Emacs, and attempting to clock out of an item? I have seen your error
> message when I do that.
If you try to kill a buffer with a running clock, Org asks you whether
you want to clock out.
If you're not in the buffer where the clock runs, you are still able to
see whether a clock is running: the clocked heading is displayed in the
mode-line.
If you still want to check for a running clock before closing Emacs, you
could perhaps do this:
------------------------------------------------------------------------
(defun org-check-running-clock-any-buffer ()
"Check if any Org buffer contains a running clock.
If yes, offer to stop it and to save the buffer with the changes."
(interactive)
(let ((buf (marker-buffer org-clock-marker))
(wcf (current-window-configuration)))
(when
(and buf
(y-or-n-p
(format "Clock-out in buffer %s before killing it? " buf)))
(switch-to-buffer buf)
(org-clock-out)
(when (y-or-n-p "Save changed buffer? ")
(save-buffer))
(set-window-configuration wcf))))
(defadvice save-buffers-kill-emacs
(before org-check-running-clock activate)
"Check for a running clock before quitting."
(org-check-running-clock-any-buffer))
------------------------------------------------------------------------
--
Bastien
next prev parent reply other threads:[~2007-10-03 20:44 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-03 12:53 no running clock Cezar
2007-10-03 16:22 ` Bastien
2007-10-03 16:29 ` Bernt Hansen
2007-10-03 16:30 ` Bernt Hansen
2007-10-03 18:25 ` Cezar
2007-10-03 19:26 ` J. David Boyd
2007-10-03 20:44 ` Bastien [this message]
2007-10-04 6:20 ` Cezar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ir5orkqz.fsf@bzg.ath.cx \
--to=bzg@altern.org \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.