From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Robert B. Gozzoli" Newsgroups: gmane.emacs.help Subject: Re: mapcar problem Date: Sun, 18 Dec 2011 11:46:27 +0700 Message-ID: References: <0BB5E7904BB54EC0AB7BA8EB5E681FEF@us.oracle.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1324183599 4975 80.91.229.12 (18 Dec 2011 04:46:39 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 18 Dec 2011 04:46:39 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Drew Adams Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Dec 18 05:46:35 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Rc8dv-0006Tf-3Z for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Dec 2011 05:46:35 +0100 Original-Received: from localhost ([::1]:43469 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rc8du-0002oP-D6 for geh-help-gnu-emacs@m.gmane.org; Sat, 17 Dec 2011 23:46:34 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:56134) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rc8dq-0002mK-6t for help-gnu-emacs@gnu.org; Sat, 17 Dec 2011 23:46:31 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rc8dp-0000PW-1r for help-gnu-emacs@gnu.org; Sat, 17 Dec 2011 23:46:30 -0500 Original-Received: from mail-ww0-f49.google.com ([74.125.82.49]:50868) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rc8do-0000PP-RH for help-gnu-emacs@gnu.org; Sat, 17 Dec 2011 23:46:29 -0500 Original-Received: by wgbdt11 with SMTP id dt11so7233890wgb.30 for ; Sat, 17 Dec 2011 20:46:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=mpdOJVWJFSaB8wO/5Q2J3R77q9aypJnPYn9v0fdKTes=; b=cL3TBCVSFljtBBOhTmUtErpvJrXLxeZhCpPDkXSSZZCYPYet7Vm13qV+FucZxzG1AQ kspiaudFUU40k97ronYkIBltZYgRw+Q7I5/gBv9M8TyH2ki2n117u+NH8NFdWJzBr6bK MFpLduG4qTT7zs72EMCj7Nk2M+8ZWeWcNjp7A= Original-Received: by 10.181.11.234 with SMTP id el10mr2866849wid.9.1324183588043; Sat, 17 Dec 2011 20:46:28 -0800 (PST) Original-Received: by 10.223.93.134 with HTTP; Sat, 17 Dec 2011 20:46:27 -0800 (PST) In-Reply-To: <0BB5E7904BB54EC0AB7BA8EB5E681FEF@us.oracle.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.49 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:83218 Archived-At: Dear Drew, thank you. Loading cl.el in .emacs did the trick. Roberto On 18/12/2011, Drew Adams wrote: >> apply: Symbol's function definition is void: mapcar* [2 times] >> >> I am not able to find consistent information online about the problem >> itself, and I do not understand the problem in itself. I believe that >> the problem should be in my.emacs and not in Latex, as I am able to >> compile and view the file with other LaTeX editors. About emacs, this >> is the version : GNU Emacs 23.3.1 (i386-mingw-nt6.1.7601), and I >> attach to this email my .emacs file, if it can help. > > The function that Emacs says is undefined is `mapcar*', not `mapcar'. If is > defined in library `cl.el'. To use the function you will need to load that > library. Interactively, use `M-x load-library RET cl RET'. Or in your init > file use (require 'cl). > >