From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: Possible cache problems Date: Wed, 10 Jun 2015 10:40:49 +0200 Message-ID: <20150610084049.GB5260@chitra.no-ip.org> References: <20150602170921.GF2027@chitra.no-ip.org> <87d21dsvox.fsf@nicolasgoaziou.fr> <20150602212111.GA3455@chitra.no-ip.org> <874mmpssv8.fsf@nicolasgoaziou.fr> <20150606193853.GG3455@chitra.no-ip.org> <87h9qkv2kf.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50178) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z2bZA-000571-8R for emacs-orgmode@gnu.org; Wed, 10 Jun 2015 04:40:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z2bZ6-0003CM-RJ for emacs-orgmode@gnu.org; Wed, 10 Jun 2015 04:40:56 -0400 Received: from mail-wg0-x232.google.com ([2a00:1450:400c:c00::232]:36656) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z2bZ6-0003BI-FB for emacs-orgmode@gnu.org; Wed, 10 Jun 2015 04:40:52 -0400 Received: by wgbgq6 with SMTP id gq6so30106477wgb.3 for ; Wed, 10 Jun 2015 01:40:51 -0700 (PDT) Received: from chitra.no-ip.org ([149.217.170.188]) by mx.google.com with ESMTPSA id q9sm6771860wix.1.2015.06.10.01.40.50 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 10 Jun 2015 01:40:50 -0700 (PDT) Content-Disposition: inline In-Reply-To: <87h9qkv2kf.fsf@nicolasgoaziou.fr> 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 Org mode Hi Nicolas, On Sun, Jun 07, 2015 at 01:29:04AM +0200, Nicolas Goaziou wrote: > Suvayu Ali writes: > > > I do not see anything happening. In the modeline I see OrgCacheD, so > > the mode is definitely enabled. However to enable it, I had to do one > > of these two: > > > > (setq ngz-debug-mode nil) > > (setq ngz-debug-mode t) > > My bad, it should be > > (define-minor-mode element-debug-mode > "Minor mode to debug Org Element cache." > nil " OrgCacheD" nil > (if element-debug-mode > (progn (setq org-element-cache-sync-idle-time 3600) > (add-hook 'after-change-functions 'element-check-cache t t)) > (setq org-element-cache-sync-idle-time 0.6) > (remove-hook 'after-change-functions 'element-check-cache t))) I got a message like the following one quite a few times. Partially completed ====== WARNING. Corrupted element (table-row) at 34386 Real: (table-row (:type standard :begin 34386 :end 34430 :contents-begin 34387 :contents-end 34429 :post-blank 0 :post-affiliated 34386 :parent (table (:begin 34327 :end 34431 :type org :tblfm nil :contents-begin 34342 :contents-end 34430 :value nil :post-blank 1 :post-affiliated 34342 :attr_latex () :parent nil)))) Cached: (table-row (:type standard :begin 34386 :end 34430 :contents-begin 34387 :contents-end 34429 :post-blank 0 :post-affiliated 34386 :parent (table (:begin 34328 :end 34417 :type org :tblfm nil :contents-begin 34328 :contents-end 34416 :value nil :post-blank 1 :post-affiliated 34328 :parent nil)))) Last request: [34926 34372 34328 14 (property-drawer (:begin 34276 :end 34328 :contents-begin 34294 :contents-end 34316 :post-blank 1 :post-affiliated 34276 :parent nil)) (table (:begin 34327 :end 34431 :type org :tblfm nil :contents-begin 34342 :contents-end 34430 :value nil :post-blank 1 :post-affiliated 34342 :attr_latex () :parent nil)) 2] I was trying to edit the attr_latex line for the following table: #+attr_latex: | year | 2012 | 2018 | 2022 | 2028 | 2035 | | γ(°) | 7 | 4 | 1.3 | 0.9 | 0.6 | Right now I'm not working with Org for a few days, but next week I'll start again. So maybe I'll get a few other data points soon. Cheers, -- Suvayu Open source is the future. It sets us free.