From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Scott Jaderholm" Subject: Re: done todos only date stamped, not date-time stamped Date: Wed, 11 Jul 2007 10:09:12 -0600 Message-ID: References: <4694FD70.801@cc.umanitoba.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I8ekd-00075y-Ra for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 12:09:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I8ekc-00073y-3W for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 12:09:15 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8ekb-00073s-T6 for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 12:09:13 -0400 Received: from nz-out-0506.google.com ([64.233.162.231]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I8ekb-0004AP-BC for emacs-orgmode@gnu.org; Wed, 11 Jul 2007 12:09:13 -0400 Received: by nz-out-0506.google.com with SMTP id f1so1274682nzc for ; Wed, 11 Jul 2007 09:09:12 -0700 (PDT) In-Reply-To: <4694FD70.801@cc.umanitoba.ca> Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Brian van den Broek Cc: emacs-orgmode@gnu.org Welcome Brian, On 7/11/07, Brian van den Broek wrote: > Unfortunately, I get only a datestamp, without time data (e.g., `` > CLOSED: [2007-07-11 Wed]''). I did M-x apropos-variable RET time done RET and found the variable org-log-done-with-time. If this variable is t (true) you should be getting the expected behavior. Since that's the default value, I suspect its not being set because org isn't loading correctly. > To rule out conflicts with other settings in my .emacs, I have tried > launching emacs with a .emacs that reads, in its entirety: > > (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) > (define-key global-map "\C-cl" 'org-store-link) > (define-key global-map "\C-ca" 'org-agenda) > (setq org-log-done t) > > (The tutorial's suggested ``(require 'org-install)'' produces an error > message: > ``An error has occurred while loading `/home/brian/.emacs': > > File error: Cannot open load file, org-install'') You might need to put a line like this (add-to-list 'load-path "/path/to/org") where /path/to/org points to the directory storing org.elc. After that you should be able to have (require 'org-install) and have it work fine. Cheers, Scott