From mboxrd@z Thu Jan 1 00:00:00 1970 From: Louis Turk Subject: Re: org-default-notes-file Date: Mon, 18 Oct 2010 19:10:00 +0800 Message-ID: <4CBC2B08.1060606@dayspringpublisher.com> References: <4CBBEC97.5000402@dayspringpublisher.com> <878w1wotrh.fsf@noorul.maa.corp.collab.net> <4CBC090E.50503@easy-emacs.de> <87y69voour.fsf@noorul.maa.corp.collab.net> <4CBC15DE.8070902@easy-emacs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from [140.186.70.92] (port=55927 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P7nd2-0007rC-8p for emacs-orgmode@gnu.org; Mon, 18 Oct 2010 07:11:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P7nd0-0008MX-VY for emacs-orgmode@gnu.org; Mon, 18 Oct 2010 07:11:44 -0400 Received: from cpoproxy1-pub.bluehost.com ([69.89.21.11]:54729) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1P7nd0-0008MR-P5 for emacs-orgmode@gnu.org; Mon, 18 Oct 2010 07:11:42 -0400 In-Reply-To: <4CBC15DE.8070902@easy-emacs.de> 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: =?UTF-8?B?QW5kcmVhcyBSw7ZobGVy?= Cc: emacs-orgmode@gnu.org, Noorul Islam K M On 10/18/2010 05:39 PM, Andreas Röhler wrote: > Am 18.10.2010 11:02, schrieb Noorul Islam K M: >> Andreas Röhler writes: >> >>> Am 18.10.2010 09:16, schrieb Noorul Islam K M: >>> >>>> Louis Turk writes: >>>> >>>>> Hi everyone, >>>>> >>>>> I trying to set up capture to use refile.org as the default notes >>>>> file. >>>>> >>>>> lat-a-ws% locate refile.org >>>>> /home/lat/org/refile.org >>>>> lat-a-ws% >>>>> >>>>> (setq org-default-notes-file "~/org/refile.org") >>>>> >>>>> But I get: >>>>> >>>>> Debugger entered--Lisp error: (void-function org-string-nw-p) >>>>> (org-string-nw-p file) >>>>> (or (org-string-nw-p file) org-default-notes-file (error "No >>>>> notes >>>>> file specified, and no default available")) >>>>> (setq file (or (org-string-nw-p file) org-default-notes-file >>>>> (error >>>>> "No notes file specified, and no default available"))) >>>>> org-capture-target-buffer("~/org/refile.org") >>>>> (set-buffer (org-capture-target-buffer (nth 1 target))) >>>>> >>>>> How do I fix this? >>>>> >>>> >>>> This function is defined in org-macs.el. I think you should have in >>>> your >>>> .emacs. >>>> >>>> (require 'org-macs) >>>> >>>> Thanks and Regards >>>> Noorul >>>> >>> >>> Hi Noorul, >>> >>> would this not indicate a bug anyway? >>> IMHO functions needed should be available, if org-mode is activated. >>> >>> BTW at my machine org-string-nw-p is defined in the git-repo only, not >>> in the installed org-macs.el. >>> >>> HTH >>> >> >> Strange that org-string-nw-p is not there in org-macs.el. > > Seems not that strange for me. > > git blame says, > > org-mobile.el, where it's defined, started 2009-09-15 > > So vendors might not have it, it's not distributed yet maybe. > > If distributed, (require 'org-macs) > isn't needed BTW, because org.el already requires it then. > > So my recommendation is just to load the git-version: > > git clone git://repo.or.cz/org-mode.git > > Andreas Andreas, Thanks for replying. I updated using lat-a-ws% git clone git://repo.or.cz/org-mode.git but I still get the same error message. Lou