From mboxrd@z Thu Jan 1 00:00:00 1970 From: torys.anderson@gmail.com (Tory S. Anderson) Subject: Re: Latest clocktable mis-formats headings Date: Sat, 30 Aug 2014 16:21:56 -0400 Message-ID: <8738cdk9sr.fsf@gmail.com> References: <87bnr1khbf.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNp9s-0002US-7t for emacs-orgmode@gnu.org; Sat, 30 Aug 2014 16:22:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNp9r-0001ae-1S for emacs-orgmode@gnu.org; Sat, 30 Aug 2014 16:22:00 -0400 Received: from mail-yh0-x22b.google.com ([2607:f8b0:4002:c01::22b]:51711) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNp9q-0001aY-TO for emacs-orgmode@gnu.org; Sat, 30 Aug 2014 16:21:58 -0400 Received: by mail-yh0-f43.google.com with SMTP id f73so2462556yha.30 for ; Sat, 30 Aug 2014 13:21:58 -0700 (PDT) In-Reply-To: <87bnr1khbf.fsf@gmail.com> (Tory S. Anderson's message of "Sat, 30 Aug 2014 13:39:32 -0400") 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: orgmode list I found the problem and have changed it as per below. The \emsp is being interpreted literally. I just changed mine back to underscores. >From org-clock.el: (defun org-clocktable-indent-string (level) (if (= level 1) "" (let ((str " ")) (dotimes (k (1- level) str) ;; (setq str (concat "\\emsp" str)))))) (setq str (concat "__" str)))))) torys.anderson@gmail.com (Tory S. Anderson) writes: > My elpa orgmode is running Org-mode version 8.2.7c, btw. Do others have this (possibly elpa-specific) problem? > >> Date: Sat, 30 Aug 2014 17:36:24 +0200 >> From: Dieter Sch?n >> To: orgmode list >> Subject: Re: [O] Latest clocktable mis-formats headings >> Message-ID: >> Content-Type: text/plain; charset="utf-8" >> >> Hi, >> I had the same problem, and I could solve it by removing an org installation in .emacs.d/elpa. >> (My regular org installation is a git sandbox). >> >> Regards, >> Dieter >> >> On 30. August 2014 17:00:39 MESZ, torys.anderson@gmail.com wrote: >>>My latest clocktables have started to stumble on the formatting of >>>subheadings; some of the leading "*" of the items seem to be making it >>>into the table as "\emsp". What's the problem? >>> >>>Example: >>> >>>#+BEGIN: clocktable :maxlevel 4 :scope subtree >>>#+CAPTION: Clock summary at [2014-08-30 Sat 10:58] >>>| Headline | Time | | | | >>>|---------------------------------------+---------+---+-------+------| >>>| *Total time* | *24:45* | | | | >>>|---------------------------------------+---------+---+-------+------| >>>| \emsp\emsp >>>[[file:/home/torys/emacs/Notes/Work.org::Work%20Week%204%20<2014-08-25%20Mon>--<2014-08-30%20Sat>][Work >>>Week 4 <2014-08-25...]] | | | 24:45 | | >>>| \emsp\emsp\emsp [[file:/home/torys/emacs/Notes/Work.org::NRL][NRL]] >>> | | | | 2:55 | >>>| \emsp\emsp\emsp >>>[[file:/home/torys/emacs/Notes/Work.org::GRA%20w/Murray][GRA w/Murray]] >>> | | | | 7:34 | >>>| \emsp\emsp\emsp >>>[[file:/home/torys/emacs/Notes/Work.org::8803%20Work][8803 Work]] >>> | | | | 3:50 | >>>| \emsp\emsp\emsp >>>[[file:/home/torys/emacs/Notes/Work.org::8801%20Work][8801 Work]] >>> | | | | 1:00 | >>>| \emsp\emsp\emsp >>>[[file:/home/torys/emacs/Notes/Work.org::CS%207637%20Work][CS 7637 >>>Work]] | | | | 8:41 | >>>| \emsp\emsp\emsp >>>[[file:/home/torys/emacs/Notes/Work.org::Personal%20Writing][Personal >>>Writing]] | | | | 0:45 | >>>#+END: