From mboxrd@z Thu Jan 1 00:00:00 1970 From: Im Exil Subject: Re: Logging of work no longer working with emcas24 Date: Tue, 15 Jan 2013 14:55:36 +0100 Message-ID: References: <6753.1358245625@alphaville> <7328.1358248667@alphaville> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:41098) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv6zO-00035t-38 for emacs-orgmode@gnu.org; Tue, 15 Jan 2013 08:55:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tv6zL-0004xD-Gl for emacs-orgmode@gnu.org; Tue, 15 Jan 2013 08:55:41 -0500 Received: from mout.gmx.net ([212.227.17.20]:59955) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tv6zL-0004x6-5m for emacs-orgmode@gnu.org; Tue, 15 Jan 2013 08:55:39 -0500 Received: from mailout-de.gmx.net ([10.1.76.33]) by mrigmx.server.lan (mrigmx002) with ESMTP (Nemesis) id 0Ld330-1TDHnG1CAC-00iCQi for ; Tue, 15 Jan 2013 14:55:38 +0100 Received: by mail-vc0-f178.google.com with SMTP id l6so116843vcl.23 for ; Tue, 15 Jan 2013 05:55:37 -0800 (PST) In-Reply-To: <7328.1358248667@alphaville> 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: nicholas.dokos@hp.com Cc: emacs-orgmode@gnu.org OK so I could narrow it down to the following: in my init.el I had this: ;; org-mode (add-to-list 'load-path "~/.emacs.d/plugins/org-mode/lisp") ;; make contrib modules available (add-to-list 'load-path "~/.emacs.d/plugins/org-mode/contrib/lisp" t) (setq org-directory "~/ORGA/GTD/org") ;;(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) (global-set-key "\C-ct" 'org-toggle-timestamp-type) (setq org-default-notes-file (concat org-directory "/notes.org")) (define-key global-map "\C-cr" 'org-remember) Which works perfectly fine. In addition i have the following line right below the above: (find-file "/home/dietmarw/ORGA/GTD/org/mygtd.org") This breaks the logging funktionality. If I don't auto load the file I can open it and everything works fine. But I still like to keep it the way that my org-mode file comes up after launching emacs. Is there another way to do that that won't break org-mode time logging? /Dietmar/