From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: mapcar problem Date: Sat, 17 Dec 2011 16:48:20 -0800 Message-ID: <0BB5E7904BB54EC0AB7BA8EB5E681FEF@us.oracle.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1324169325 3696 80.91.229.12 (18 Dec 2011 00:48:45 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 18 Dec 2011 00:48:45 +0000 (UTC) To: "'Robert B. Gozzoli'" , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Dec 18 01:48:41 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 1Rc4vh-0001F2-B1 for geh-help-gnu-emacs@m.gmane.org; Sun, 18 Dec 2011 01:48:41 +0100 Original-Received: from localhost ([::1]:57087 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rc4vg-0000N1-Hp for geh-help-gnu-emacs@m.gmane.org; Sat, 17 Dec 2011 19:48:40 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:35805) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rc4vc-0000Mv-Kg for help-gnu-emacs@gnu.org; Sat, 17 Dec 2011 19:48:37 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rc4vb-0004NX-MN for help-gnu-emacs@gnu.org; Sat, 17 Dec 2011 19:48:36 -0500 Original-Received: from acsinet15.oracle.com ([141.146.126.227]:45020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rc4vb-0004NE-GW for help-gnu-emacs@gnu.org; Sat, 17 Dec 2011 19:48:35 -0500 Original-Received: from ucsinet22.oracle.com (ucsinet22.oracle.com [156.151.31.94]) by acsinet15.oracle.com (Switch-3.4.4/Switch-3.4.4) with ESMTP id pBI0mUFm008776 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 18 Dec 2011 00:48:31 GMT Original-Received: from acsmt356.oracle.com (acsmt356.oracle.com [141.146.40.156]) by ucsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id pBI0mUm5017063 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Dec 2011 00:48:30 GMT Original-Received: from abhmt115.oracle.com (abhmt115.oracle.com [141.146.116.67]) by acsmt356.oracle.com (8.12.11.20060308/8.12.11) with ESMTP id pBI0mTMd031827; Sat, 17 Dec 2011 18:48:29 -0600 Original-Received: from dradamslap1 (/10.159.55.81) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Sat, 17 Dec 2011 16:48:29 -0800 X-Mailer: Microsoft Office Outlook 11 In-Reply-To: Thread-Index: Acy9Hc5QlRlFa8N0QE2U6RjQUSD5ogAAJ6RA X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 X-Source-IP: ucsinet22.oracle.com [156.151.31.94] X-CT-RefId: str=0001.0A090209.4EED3860.0017,ss=1,re=0.000,fgs=0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 1) X-Received-From: 141.146.126.227 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:83217 Archived-At: > 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).