From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mirko Vukovic Subject: Re: org copied a few files to ~/.org-timestamps Date: Wed, 15 Jun 2016 15:58:49 +0000 (UTC) Message-ID: References: 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]:57450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDDDa-0005T7-Mg for emacs-orgmode@gnu.org; Wed, 15 Jun 2016 11:59:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bDDDU-0007zJ-Oz for emacs-orgmode@gnu.org; Wed, 15 Jun 2016 11:59:01 -0400 Received: from plane.gmane.org ([80.91.229.3]:48381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDDDU-0007zD-HL for emacs-orgmode@gnu.org; Wed, 15 Jun 2016 11:58:56 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1bDDDT-0003TT-6O for emacs-orgmode@gnu.org; Wed, 15 Jun 2016 17:58:55 +0200 Received: from 50-203-10-21-static.hfc.comcastbusiness.net ([50.203.10.21]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Jun 2016 17:58:55 +0200 Received: from Mirko.vukovic by 50-203-10-21-static.hfc.comcastbusiness.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 15 Jun 2016 17:58:55 +0200 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" To: emacs-orgmode@gnu.org Mirko Vukovic gmail.com> writes: > > Hello, > > (org 8.3.4 on Emacs 24.4.1 on Windows 7) > > Some of my org-files are ending up in ~/.org-timestamps. > > For example, the file ~/org/general.org also has a copy on ~/.org- > timestamps. This copy was generated a few days ago. > > Any thoughts on why that would happen? > > Thanks, > > Mirko > > I did a bit of digging: Only files that reside in ~/org and that are loaded via the agenda are then reassigned to the ~/.org-timestamps directory. If I manually load the file, then it is not reassigned to that directory. I used this code snippet to identify them: (save-excursion (let (matches) (dolist (buffer (buffer-list)) (let ((file-name (buffer-file-name buffer))) (when (and file-name (string-match "org-timestamps" file-name)) (push file-name matches)))) (reverse matches))) Mirko