From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Helmut Eller Newsgroups: gmane.emacs.help Subject: Re: Emacs chess.el help again to use chess-puzzle mode Date: Sun, 26 Jul 2009 22:19:21 +0200 Message-ID: References: <24662344.post@talk.nabble.com> <24667449.post@talk.nabble.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1248640911 5829 80.91.229.12 (26 Jul 2009 20:41:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 26 Jul 2009 20:41:51 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jul 26 22:41:44 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MVAXN-0007vs-6t for geh-help-gnu-emacs@m.gmane.org; Sun, 26 Jul 2009 22:41:41 +0200 Original-Received: from localhost ([127.0.0.1]:51611 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MVAXM-0004uu-OY for geh-help-gnu-emacs@m.gmane.org; Sun, 26 Jul 2009 16:41:40 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news2.google.com!border1.nntp.dca.giganews.com!border2.nntp.dca.giganews.com!nntp.giganews.com!backlog2.nntp.dca.giganews.com!nntp.kpnqwest.it!news.kpnqwest.it.POSTED!not-for-mail Original-NNTP-Posting-Date: Sun, 26 Jul 2009 15:19:22 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) Cancel-Lock: sha1:ZCT7fB95FJJhatWC03bLPeBQr/4= Original-Lines: 27 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 212.46.180.77 Original-X-Trace: sv3-qmzZTtPxmmw1l8p/jWLCg3XCmQLYiA/J964bqRwmrBGMPclw6A7ZZWt+GrwQReJmQh2rpWtOq/zLOF3!bUtagzb4TpRdBvIrXz/1a7d60F+sWmIPzc6IFQE9TGAyz57cTwUT0hhkhSOzSQ== X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.39 X-Original-Bytes: 2230 Original-Xref: news.stanford.edu gnu.emacs.help:171220 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:66406 Archived-At: * rpd [2009-07-26 19:37+0200] writes: > Can anyone tell me what I need to do to solve this & get chess-puzzle mode > working please? The error message means that the function chess-session is not defined. Probably because you didn't load the right files first. I managed to load it by doing: (add-to-list 'load-path "/scratch/chess") (require 'chess) (require 'chess-puzzle) If you don't know what this means, paste the code into your .emacs (I assume that you know what the .emacs file is) and replace /scratch/chess with the directory where you saved chess.el and the other files. Then restart Emacs and `M-x chess-puzzle' should work. > Is there anyone reading this forum that uses this > chess-puzzle mode who can help (or just an experiened emac programmer who > knows what this means & how I can fix it?). Meanwhile I will try to fix it > myself but I do look forward to some helpful reply, thanks Mario Lang (delYsid on #emacs) seems to be the maintainer of the package. Try to contact him; he probably can answer all your questions. Helmut