From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tommy Kelly Subject: Re: Journal versus clock tables: Opposing requirements? Date: Tue, 8 Nov 2011 09:55:58 +0000 Message-ID: References: <87obwogo1c.fsf@rat.lan> <87bosngf3t.fsf@rat.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:58387) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RNiQ7-0004GU-W7 for emacs-orgmode@gnu.org; Tue, 08 Nov 2011 04:56:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RNiQ7-0001x1-3B for emacs-orgmode@gnu.org; Tue, 08 Nov 2011 04:56:43 -0500 Received: from cather.verilab.com ([64.20.234.125]:37496) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RNiQ6-0001we-Q6 for emacs-orgmode@gnu.org; Tue, 08 Nov 2011 04:56:43 -0500 Received: from mail-fx0-f43.google.com (mail-fx0-f43.google.com [209.85.161.43]) by cather.verilab.com (Postfix) with ESMTPS id 67A72ECD33 for ; Tue, 8 Nov 2011 09:56:40 +0000 (UTC) Received: by faat9 with SMTP id t9so411990faa.2 for ; Tue, 08 Nov 2011 01:56:39 -0800 (PST) In-Reply-To: <87bosngf3t.fsf@rat.lan> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Olaf Dietsche Cc: emacs-orgmode@gnu.org > I haven't tried this myself, just looking at the manual. But playing > around, it seems you need double quotes around your tags match. Ah OK, that works. But it turns out there was a second problem and it may be a bug. It looks like any of the clocktable options after :indent get ignored. So this works: #+BEGIN: clocktable :maxlevel 2 :scope file :block thisweek :step week :tags "test_tag" :indent #+END: But this doesn't (i.e. the :tags option is ignored) #+BEGIN: clocktable :maxlevel 2 :scope file :block thisweek :step week :indent :tags "test_tag" #+END: Tommy