From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stormking Subject: Re: [bug] Alignment bug in clock tables Date: Fri, 7 Nov 2014 15:16:22 +0000 (UTC) Message-ID: References: <87ppeao4x8.fsf@example.com> <8738b5o3lt.fsf@snow.nl> <874mv31a5y.fsf@example.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56271) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XmlHK-0002bn-68 for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 10:16:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XmlHC-0001aG-Fn for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 10:16:46 -0500 Received: from plane.gmane.org ([80.91.229.3]:48420) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XmlHC-0001Zr-9L for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 10:16:38 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XmlHA-0000QS-4K for emacs-orgmode@gnu.org; Fri, 07 Nov 2014 16:16:36 +0100 Received: from 194.153.130.248 ([194.153.130.248]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 07 Nov 2014 16:16:36 +0100 Received: from stormking by 194.153.130.248 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 07 Nov 2014 16:16:36 +0100 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: emacs-orgmode@gnu.org Stormking web.de> writes: > > Francesco Pizzolante ...> writes: > > > > > Hi Joost, > > > > > I reported this on September 2nd too. > > I'm having this problem, too. For now, I have added the following code to my init.el: (eval-after-load "org-clock" '(defun org-clocktable-indent-string (level) (if (= level 1) "" (concat "\\" (let ((str " ")) (dotimes (k (1- level) str) (setq str (concat "_" str)))))))) It redefines the function org-clocktable-indent-string to what it was before the whole emsp thing.