On Tue, 20 Apr 2010 14:51:57 +0200, Andrea Crotti <andrea.crott...@gmail.com> wrote: > Ah great that's really nice, I always forget to try the magic C-u > first... > So by the way what is the real function called when prefixing C-u? > I mean, can I call it directly?
The same function (i.e. org-clock-in in this case) except that an argument is passed to it. You can see from the definition of org-clock-in: ,---- | (defun org-clock-in (&optional select) | "Start the clock on the current item. | If necessary, clock-out of the currently active clock. | With prefix arg SELECT, offer a list of recently clocked tasks to | clock into. When SELECT is `C-u C-u', clock into the current task and mark | is as the default task, a special task that will always be offered in | the clocking selection, associated with the letter `d'." `---- that there is an optional argument called "select" which will be defined if you use C-u or C-u C-u as the documentation says. HTH, eric _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode