From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Symbol's function definition is void: search Date: Tue, 02 Oct 2012 16:25:22 +0200 Message-ID: <87fw5x6je5.fsf@bzg.ath.cx> References: <878vbp7zix.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJ3PZ-0001QG-LC for emacs-orgmode@gnu.org; Tue, 02 Oct 2012 10:25:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TJ3PR-000555-Tv for emacs-orgmode@gnu.org; Tue, 02 Oct 2012 10:25:25 -0400 Received: from mail-wi0-f169.google.com ([209.85.212.169]:36344) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TJ3PR-00053X-7h for emacs-orgmode@gnu.org; Tue, 02 Oct 2012 10:25:17 -0400 Received: by mail-wi0-f169.google.com with SMTP id hq4so823794wib.0 for ; Tue, 02 Oct 2012 07:25:14 -0700 (PDT) In-Reply-To: (Sanjib Sikder's message of "Tue, 2 Oct 2012 19:50:35 +0530") 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: Sanjib Sikder Cc: emacs-orgmode@gnu.org Hi Sanjib, Sanjib Sikder writes: > or only > > (search "rtcite:" desc))) > > > > with this > >   (or search "rtcite:" desc)))    only this line. You get this error because Emacs tries to evaluate (search "rtcite:" desc) ... and it cannot, because search is not a function. Search here is a variable (a string), hence (or search "rtcite:" desc))) should return something sensible. HTH, -- Bastien