00:11:59 pjb [~t@cust-seco21th2-46-193-64-247.wb.wifirst.net] has joined #ccl 01:52:22 -!- rme [rme@A0058FA1.C48DE298.699BA7A6.IP] has quit [Ping timeout] 01:53:31 rme_ [~rme@50.43.157.77] has joined #ccl 01:54:25 -!- rme [~rme@50.43.177.89] has quit [Ping timeout: 246 seconds] 01:54:26 -!- rme_ is now known as rme 03:56:02 wws [~billstcla@p-69-195-52-52.dsl1.rtr.chat.fpma.frpt.net] has joined #ccl 03:57:42 -!- wws [wws@clozure-721921C2.dsl1.rtr.chat.fpma.frpt.net] has quit [Ping timeout] 03:59:02 -!- billstclair [~billstcla@unaffiliated/billstclair] has quit [Ping timeout: 252 seconds] 04:01:37 -!- wws [~billstcla@p-69-195-52-52.dsl1.rtr.chat.fpma.frpt.net] has quit [Quit: Linkinus - http://linkinus.com] 06:27:31 segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has joined #ccl 06:35:07 -!- segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has quit [Quit: segv-] 06:58:37 mdc_mobile [~mdc_mobil@72-254-52-145.client.stsn.net] has joined #ccl 07:05:48 rme_ [~rme@50.43.150.37] has joined #ccl 07:07:09 -!- rme [~rme@50.43.157.77] has quit [Ping timeout: 244 seconds] 07:07:10 -!- rme_ is now known as rme 07:07:34 -!- rme [rme@5FDF05E2.E6A1271C.699BA7A6.IP] has quit [Ping timeout] 07:12:03 -!- mdc_mobile [~mdc_mobil@72-254-52-145.client.stsn.net] has quit [Quit: mdc_mobile] 07:46:47 pnpuff [~Eternit9a@unaffiliated/pnpuff] has joined #ccl 09:50:27 segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has joined #ccl 09:55:56 segv-_ [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has joined #ccl 09:56:00 -!- segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has quit [Ping timeout: 264 seconds] 09:56:00 -!- segv-_ is now known as segv- 10:02:26 -!- segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has quit [Ping timeout: 255 seconds] 10:07:02 -!- pnpuff [~Eternit9a@unaffiliated/pnpuff] has quit [Quit: ``enjoy the silence''] 10:09:27 segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has joined #ccl 10:09:27 -!- segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has quit [Client Quit] 10:13:27 -!- pirateking-_- [~piratekin@unaffiliated/pirateking---/x-2885143] has quit [Quit: pirateking-_-] 10:24:03 segv- [~mb@dslb-094-222-249-168.pools.arcor-ip.net] has joined #ccl 15:10:08 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #ccl 15:10:08 15:10:08 -!- names: ccl-logbot billstclair segv- rme pjb alms_ Vivitron |3b| ivan``_ dented42 asedeno_work gz @ChanServ sellout jdz pjb-v kanru mdc PuffTheMagic__ gbyers PECCU jasom fe[nl]ix df____ 15:16:49 pnpuff [~Eternit9a@unaffiliated/pnpuff] has joined #ccl 15:49:24 -!- pnpuff [~Eternit9a@unaffiliated/pnpuff] has quit [Ping timeout: 264 seconds] 16:03:12 pnpuff [~Eternit9a@unaffiliated/pnpuff] has joined #ccl 16:17:27 milanj [~milanj_@82.117.199.26] has joined #ccl 16:43:38 if someone can check this: http://paste.lisp.org/display/134185 16:44:27 backtrace for CCL debugger after stack overflow ... 16:45:08 is there something I can do to get more info on this ? 16:48:57 -!- pnpuff [~Eternit9a@unaffiliated/pnpuff] has quit [Quit: Reconnecting] 16:49:16 pnpuff [~Eternit9a@unaffiliated/pnpuff] has joined #ccl 17:35:31 -!- alms_ [~alms_@209-6-130-32.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms_] 18:44:37 alms_ [~alms_@173-162-137-153-NewEngland.hfc.comcastbusiness.net] has joined #ccl 18:58:04 milanj: well, it would be better to go down the stack, to see where it all started. 18:58:28 Fare [fare@nat/google/x-txzhcepjkwwtmsku] has joined #ccl 18:58:29 Also: (setf *print-circle* t) before trying to print circular structures. 18:59:03 It may also help to: (setf *print-length* 10 *print-level* 4) ; or something but not nil. 19:15:33 -!- pnpuff [~Eternit9a@unaffiliated/pnpuff] has quit [Quit: bye] 20:11:59 pjb, I found my function where this start 20:12:41 it's reading from string stream and collecting parts of that string 20:14:23 looks like some kind of string is triggering this behavior ... 20:14:34 but it shouldn't I guess ... 21:23:48 milanj: probably there's an error occuring when you're reading this string, and the debugger tries to print an object either along the condition, error message or the backtrace, and enters this infinite recursion. 21:24:14 Again, (setf *print-circle* t) should help, or setting *print-length* and *print-level* to non-nil values. 21:25:02 Or, you may have a custom print-object method with a bug. Then you can get recursions trying to report the bug in the print-object method, trying to print the object that would be printed by the same print-object method, but your backtrace didn't look like it. 21:30:48 pjb, thanks 21:30:52 I'll try 21:48:28 That backtrace looks like an infinitely recursive PRINT-OBJECT method (or an infinitely recursive call to PRINT-UNREADABLE-OBJECT). 21:54:25 -!- rme [rme@BE185C1D.3CA0AA47.699BA7A6.IP] has quit [Ping timeout] 21:55:12 rme_ [~rme@50.43.135.168] has joined #ccl 21:55:58 -!- rme [~rme@50.43.150.37] has quit [Ping timeout: 246 seconds] 21:55:59 -!- rme_ is now known as rme 22:03:25 -!- alms_ [~alms_@173-162-137-153-NewEngland.hfc.comcastbusiness.net] has quit [Quit: alms_] 22:23:14 alms_ [~alms_@209-6-130-32.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 23:58:07 -!- milanj [~milanj_@82.117.199.26] has quit [Quit: Leaving]