From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Peter Tury Newsgroups: gmane.emacs.help Subject: Debugging in SLIME Date: Tue, 05 Jun 2007 16:18:11 GMT Organization: Sonera corp Internet services Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1181061710 22895 80.91.229.12 (5 Jun 2007 16:41:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 5 Jun 2007 16:41:50 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jun 05 18:41:49 2007 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 1Hvc6N-00033r-T4 for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Jun 2007 18:41:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hvc6N-0007iE-GR for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Jun 2007 12:41:47 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!newsfeed.news2me.com!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!85.12.40.130.MISMATCH!xlned.com!feeder1.xlned.com!txtfeed2.tudelft.nl!tudelft.nl!txtfeed1.tudelft.nl!surfnet.nl!surfnet.nl!newsfeed1.funet.fi!newsfeed3.funet.fi!newsfeeds.funet.fi!feeder2.news.saunalahti.fi!feeder1.news.saunalahti.fi!nntp.inet.fi!central1.inet.fi!inet.fi!read3.inet.fi.POSTED!53ab2750!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.93 (windows-nt) Cancel-Lock: sha1:Nxp8bxVb1KySIAaPG/iOOMtGwUU= Cache-Post-Path: xnews001!unknown@busrv04nok012139.europe.nokia.com X-Cache: nntpcache 3.0.2 (see http://www.nntpcache.com/) Original-Lines: 30 Original-NNTP-Posting-Host: 147.243.46.180 Original-X-Complaints-To: abuse@inet.fi Original-X-Trace: read3.inet.fi 1181060291 147.243.46.180 (Tue, 05 Jun 2007 19:18:11 EEST) Original-NNTP-Posting-Date: Tue, 05 Jun 2007 19:18:11 EEST Original-Xref: shelby.stanford.edu gnu.emacs.help:149083 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:44670 Archived-At: Hi, I asked this in lisp.slime.devel, but I afraid I won't get answer there, so I ask it here again. Hopefully you can answer too. Is it possible to run my Common Lisp code step by step "inside Emacs" (SLIME)? I would like to have something similar for CL what we have for elisp: when I compile elisp code with C-u C-M-x (eval-defun, instrumenting for Edebug) and then call it. Then I can "debug" it step by step. I saw "debugging" in SLIME means something different (="real debugging" not including simple "step by step, interactive interpreted running"). I would like to see the simbols' values during/after the evaluation of each expression. This way, I hope, I could learn and understand what happen in cases what are difficult for me now to understand. I use EmacsW32 (patched, built from v22 CVS) and CLISP. When I try (step (...)) and :s etc., I don't see what expression is beeing evaluated. (Maybe it could be "asked" somehow?) When I use (break) and try v(iew source) I get "Cannot find source for frame: #
NIL #
". Maybe the program versions I use not compatible? Thanks, P