2015-01-29T00:04:15Z Bicyclidine quit (Ping timeout: 264 seconds) 2015-01-29T00:05:41Z Bicyclidine joined #sbcl 2015-01-29T00:06:42Z slyrus_ joined #sbcl 2015-01-29T00:09:01Z slyrus quit (Ping timeout: 264 seconds) 2015-01-29T00:09:53Z slyrus_ is now known as slyrus 2015-01-29T00:43:54Z Quadrescence joined #sbcl 2015-01-29T00:43:55Z Quadrescence quit (Changing host) 2015-01-29T00:43:55Z Quadrescence joined #sbcl 2015-01-29T00:52:53Z krzysz00 quit (Ping timeout: 256 seconds) 2015-01-29T01:31:16Z krzysz00 joined #sbcl 2015-01-29T01:32:23Z stassats quit (Ping timeout: 240 seconds) 2015-01-29T01:38:37Z krzysz00 quit (Ping timeout: 245 seconds) 2015-01-29T01:56:54Z slyrus quit (Ping timeout: 245 seconds) 2015-01-29T02:17:33Z Bicyclidine quit (Quit: diner) 2015-01-29T02:31:08Z echo-area joined #sbcl 2015-01-29T02:40:02Z stassats joined #sbcl 2015-01-29T02:41:35Z stassats: got a fix for https://bugs.launchpad.net/sbcl/+bug/1099500 2015-01-29T02:42:11Z stassats: that's not what i wanted to fix, dammit, but i understood things enough while trying to fix the other thing, so this became obvious 2015-01-29T02:42:47Z stassats quit (Read error: Connection timed out) 2015-01-29T02:44:12Z nyef: Oh, good. Because that was completely non-obvious to me, other than that it was my change which caused it. 2015-01-29T02:45:53Z ehaliewicz quit (Ping timeout: 252 seconds) 2015-01-29T03:09:17Z LiamH quit (Quit: Leaving.) 2015-01-29T03:12:03Z kanru quit (Ping timeout: 264 seconds) 2015-01-29T03:14:23Z kanru joined #sbcl 2015-01-29T03:22:21Z krzysz00 joined #sbcl 2015-01-29T03:32:47Z krzysz00 quit (Quit: Lost terminal) 2015-01-29T03:36:05Z stassats joined #sbcl 2015-01-29T03:36:47Z stassats: i see the problem with &optional and self-calls, it saves RDX on the stack before checking the argument count 2015-01-29T03:37:31Z stassats: so the backtrace may see garbage there 2015-01-29T03:38:02Z stassats: now the question is of course why on earth self call recognition causes optional-dispatch to call the function 2015-01-29T03:38:56Z stassats: and if fix the latter, can i construct a valid test case still demonstrating the former 2015-01-29T03:39:02Z christoph_debian quit (Ping timeout: 245 seconds) 2015-01-29T03:45:49Z nyef: stassats: You fixed lp#1099500, though? 2015-01-29T03:46:13Z stassats: right, it turned out to be a different thing 2015-01-29T03:46:42Z nyef: Yeah, I know what lp#1099500 WAS, and it was my fault, but I had no idea how to fix it. 2015-01-29T03:46:59Z stassats: i just had to encode where to get the frame pointer in the fun debug map 2015-01-29T03:47:12Z nyef: Sounds about right. Thank you! (-: 2015-01-29T03:52:24Z christoph_debian joined #sbcl 2015-01-29T03:53:14Z nikki93_ joined #sbcl 2015-01-29T03:53:59Z stassats: ;; If the call is in an XEP, we might decide to make it non-tail so that we can use known return inside the component. 2015-01-29T03:55:02Z nyef: That... makes a surprising amount of sense. 2015-01-29T03:57:41Z stassats: except that calls to optionals are now not converted 2015-01-29T03:58:21Z nikki93_ quit (Remote host closed the connection) 2015-01-29T03:58:45Z stassats: (defun foo (&optional x) (declare (optimize sb-c::recognize-self-calls)) (if x (foo) (err x)) 1) no TCO for optionals 2015-01-29T03:58:54Z stassats: (defun foo (&optional x) (if x (foo) (err x)) 1) yes TCO 2015-01-29T04:04:10Z nikki93_ joined #sbcl 2015-01-29T04:04:44Z nyef: ... No idea. 2015-01-29T04:05:24Z nyef: I might be able to spare some attention to dig into it on Friday at the earliest. 2015-01-29T04:06:35Z nyef: I should be wrapping up a good number of loose ends on my current project tomorrow. 2015-01-29T04:08:24Z stassats: so, basically calling anything before the argument processing is done is bad 2015-01-29T04:08:38Z stassats: because that would mean saves, which would mean garbage can be saved 2015-01-29T04:13:50Z stassats: ok, nothing immediate jumps out, will tackle it later 2015-01-29T04:15:04Z ehaliewicz joined #sbcl 2015-01-29T04:19:54Z stassats: i just don't understand the assumption that XEPs should return anything 2015-01-29T04:20:10Z stassats: another place where it's stated: SB-C::ASSIGN-RETURN-LOCATIONS 2015-01-29T04:22:09Z nyef: An XEP function is still a function. 2015-01-29T04:22:59Z stassats: but it has limited functionality 2015-01-29T04:23:25Z nyef: It's similar to the unwind-protect landing-pad thing: It's a small wrapper function that calls a local function and exists primarily so the compiler has a hook to hang some specific functionality from. 2015-01-29T04:23:38Z nyef: ... has a hook from which to hang some specific functionality. 2015-01-29T04:23:49Z nyef: ... has an infinitive to split. 2015-01-29T04:24:23Z edgar-rft joined #sbcl 2015-01-29T04:25:32Z stassats: and if it's still a function, why does it need such a special treatment? 2015-01-29T04:26:33Z nyef: Because it has special entry and/or exit semantics. 2015-01-29T04:26:52Z nyef: Consider the entry semantics for an unwind-protect cleanup function. 2015-01-29T04:27:04Z nyef: Not the local function, the wrapper. 2015-01-29T04:27:27Z nyef: It starts with an NLX-ENTRY... Or was it a UWP-ENTRY? Something like that. 2015-01-29T04:28:27Z nyef: It's a different style of entry point than that of a local function. 2015-01-29T04:28:31Z stassats: special entry semantics? well, nothing else can be entered, so it's the only thing that has entry semantics 2015-01-29T04:28:52Z nyef: Local calls can at least be recursive. 2015-01-29T04:29:35Z stassats: ok, i think i see what it's trying to do 2015-01-29T04:30:10Z stassats: since XEP are also the only things that have exit semantics 2015-01-29T04:30:54Z stassats: and the local function it jumps to needs to have the same exit semantics, otherwise it doesn't fit 2015-01-29T04:32:16Z stassats: so it needs to force the semantics on the local return instead 2015-01-29T04:33:14Z nyef: XEPs are the only things with non-local exit semantics. 2015-01-29T04:33:41Z nyef: UWPs effectively tail-call %CONTINUE-UNWIND, and local functions, well, have local exit semantics 2015-01-29T04:36:29Z scymtym quit (Ping timeout: 245 seconds) 2015-01-29T04:37:40Z stassats: so, currently, sb-c::recognize-self-calls with a non-tail self call is not an optimization, but a pessimization 2015-01-29T04:48:21Z nyef: Okay, I'm about out of time for tonight, and since you usually sign off before I do it must be getting late for you as well. 2015-01-29T04:48:40Z stassats: or it's getting early 2015-01-29T04:49:07Z nyef: That's not an improvement. 2015-01-29T04:50:26Z nyef quit (Quit: G'night all) 2015-01-29T05:05:30Z nikki93_ quit (Remote host closed the connection) 2015-01-29T05:06:29Z irsol quit (Ping timeout: 245 seconds) 2015-01-29T05:08:27Z gingerale joined #sbcl 2015-01-29T05:10:22Z Quadrescence quit (Quit: This computer has gone to sleep) 2015-01-29T05:13:41Z irsol joined #sbcl 2015-01-29T05:33:18Z nikki93_ joined #sbcl 2015-01-29T05:36:32Z nikki93_ quit (Remote host closed the connection) 2015-01-29T05:46:18Z nikki93_ joined #sbcl 2015-01-29T05:52:07Z nikki93_ quit (Remote host closed the connection) 2015-01-29T05:57:53Z gingerale quit (Ping timeout: 255 seconds) 2015-01-29T05:59:03Z gabriel_laddel quit (Remote host closed the connection) 2015-01-29T06:04:34Z echo-are` joined #sbcl 2015-01-29T06:05:41Z echo-area quit (Ping timeout: 256 seconds) 2015-01-29T06:07:30Z echo-are` is now known as echo-area 2015-01-29T06:25:17Z oleo__ quit (Quit: Verlassend) 2015-01-29T06:38:59Z pranavrc joined #sbcl 2015-01-29T06:38:59Z pranavrc quit (Changing host) 2015-01-29T06:38:59Z pranavrc joined #sbcl 2015-01-29T06:50:10Z pranavrc_ joined #sbcl 2015-01-29T06:53:35Z pranavrc quit (Ping timeout: 244 seconds) 2015-01-29T07:00:24Z Shinmera joined #sbcl 2015-01-29T07:10:12Z sdemarre quit (Ping timeout: 276 seconds) 2015-01-29T07:24:30Z stassats quit (Ping timeout: 276 seconds) 2015-01-29T07:44:58Z edgar-rft quit (Quit: lifetime lost because of unknown reasons) 2015-01-29T08:01:20Z pacon joined #sbcl 2015-01-29T08:09:07Z edgar-rft joined #sbcl 2015-01-29T08:14:27Z angavrilov joined #sbcl 2015-01-29T08:29:26Z scymtym joined #sbcl 2015-01-29T08:40:29Z angavrilov quit (Remote host closed the connection) 2015-01-29T08:41:09Z angavrilov joined #sbcl 2015-01-29T08:51:20Z fridim_ joined #sbcl 2015-01-29T08:56:29Z angavrilov quit (Ping timeout: 245 seconds) 2015-01-29T08:56:32Z ehaliewicz quit (Ping timeout: 245 seconds) 2015-01-29T08:56:40Z angavrilov joined #sbcl 2015-01-29T09:17:44Z edgar-rft quit (Quit: the consequences are unspecified) 2015-01-29T09:55:54Z edgar-rft joined #sbcl 2015-01-29T10:07:19Z edgar-rft quit (Quit: lifeform experiment closed by sudden death) 2015-01-29T10:07:22Z scymtym quit (Ping timeout: 245 seconds) 2015-01-29T10:51:08Z attila_lendvai joined #sbcl 2015-01-29T10:51:08Z attila_lendvai quit (Changing host) 2015-01-29T10:51:08Z attila_lendvai joined #sbcl 2015-01-29T11:00:18Z psy_ quit (Ping timeout: 272 seconds) 2015-01-29T11:01:39Z echo-area quit (Read error: Connection reset by peer) 2015-01-29T11:07:59Z psy_ joined #sbcl 2015-01-29T11:15:24Z scymtym joined #sbcl 2015-01-29T11:33:03Z pacon quit (Quit: Leaving) 2015-01-29T11:47:10Z irsol quit (Ping timeout: 272 seconds) 2015-01-29T11:48:05Z eudoxia joined #sbcl 2015-01-29T12:06:07Z irsol joined #sbcl 2015-01-29T12:13:26Z irsol quit (Ping timeout: 265 seconds) 2015-01-29T12:15:59Z irsol joined #sbcl 2015-01-29T12:21:03Z irsol quit (Ping timeout: 264 seconds) 2015-01-29T12:26:54Z irsol joined #sbcl 2015-01-29T12:30:03Z Hache_ joined #sbcl 2015-01-29T12:31:32Z psy_ quit (Read error: Connection reset by peer) 2015-01-29T12:32:16Z psy_ joined #sbcl 2015-01-29T12:32:52Z psy_ quit (Max SendQ exceeded) 2015-01-29T12:33:11Z psy_ joined #sbcl 2015-01-29T12:49:01Z stassats joined #sbcl 2015-01-29T12:55:57Z Hache_ quit (Ping timeout: 256 seconds) 2015-01-29T13:03:34Z ams quit (Read error: Connection reset by peer) 2015-01-29T13:08:20Z loke_ joined #sbcl 2015-01-29T13:23:31Z loke_ quit (Ping timeout: 265 seconds) 2015-01-29T13:35:44Z loke_ joined #sbcl 2015-01-29T13:37:43Z pranavrc_ quit 2015-01-29T13:57:47Z ccl-logbot joined #sbcl 2015-01-29T13:57:47Z 2015-01-29T13:57:47Z names: ccl-logbot loke_ stassats psy_ irsol eudoxia scymtym attila_lendvai angavrilov fridim_ Shinmera christoph_debian kanru @Krystof Perlboy snafuchs specbot jsnell hlavaty milosn _8hzp fikusz fitzsim karswell` mega1 PuercoPop pchrist jdz adlai carvite psilord1 drmeister foom cojy_ ivan4th salv00 akkad White_Flame p_l brucem ivan`` luis les ferada sobel mood joshe Blkt fe[nl]ix yauz nicdev antoszka |3b| loke wasabiz__ Hydan redline6561 minion Bike pkhuong 2015-01-29T13:57:47Z names: Posterdati soggybre1d flip214 DeadTrickster reb alchemis7 weissschloss Intensity 2015-01-29T14:22:07Z slyrus joined #sbcl 2015-01-29T14:30:07Z stassats: how bad would it be to to always use :unknown returns when a function has XEPs? 2015-01-29T14:30:33Z stassats: the XEPs become much better, the local calls slightly worse 2015-01-29T14:37:52Z nyef joined #sbcl 2015-01-29T14:40:15Z stassats: also better for debugging 2015-01-29T14:44:34Z stassats: i think better debugging wins here 2015-01-29T14:48:11Z stassats: and i'm done with the debugger, all three issues seem to be resolved, now i need to go back to CIF and DX-allocation 2015-01-29T14:50:22Z nyef: stassats: Congratulations. 2015-01-29T14:50:48Z stassats: i also want to figure CIFs, dead code and type mismatches thing 2015-01-29T14:51:54Z nyef: Oh! If you're going to be looking at dead code stuff, there's that DCE pass thing I put together that causes extra code-deletion notes for code introduced by arg-parsing. 2015-01-29T14:52:38Z stassats: https://bugs.launchpad.net/sbcl/+bug/509023 https://bugs.launchpad.net/sbcl/+bug/1036962 probably 2015-01-29T14:53:36Z stassats: can't reproduce the latter anymore 2015-01-29T14:54:47Z stassats: can't actually find the ticket i want 2015-01-29T14:54:48Z nyef: https://bugs.launchpad.net/sbcl/+bug/1255782 2015-01-29T14:55:31Z stassats: good one too 2015-01-29T14:55:38Z nyef: I have a fix for that, but it causes code-deletion notes. 2015-01-29T14:56:17Z nyef: http://repo.or.cz/w/sbcl/nyef.git/shortlog/refs/heads/dce-phase 2015-01-29T14:56:25Z stassats: i also want to solve the stack-allocation-initialization-should-go-the-same-direction-as-the-stack thing 2015-01-29T14:56:33Z stassats: maybe for the next release, at least for x86-64 2015-01-29T14:59:17Z oleo joined #sbcl 2015-01-29T15:02:37Z stassats: and https://bugs.launchpad.net/sbcl/+bug/309109 is no longer up to date 2015-01-29T15:02:40Z Intensity quit (Changing host) 2015-01-29T15:02:40Z Intensity joined #sbcl 2015-01-29T15:08:21Z stassats: ok, that was https://bugs.launchpad.net/sbcl/+bug/309115 what i'm looking for 2015-01-29T15:18:31Z Hache_ joined #sbcl 2015-01-29T15:19:58Z slyrus quit (Ping timeout: 272 seconds) 2015-01-29T15:34:51Z slyrus joined #sbcl 2015-01-29T15:37:15Z Hache__ joined #sbcl 2015-01-29T15:37:55Z Hache_ quit (Ping timeout: 255 seconds) 2015-01-29T15:42:10Z hlavaty quit (Read error: Connection reset by peer) 2015-01-29T15:42:54Z hlavaty joined #sbcl 2015-01-29T15:49:10Z slyrus quit (Read error: Connection reset by peer) 2015-01-29T15:50:33Z slyrus joined #sbcl 2015-01-29T15:52:30Z karswell` quit (Read error: Connection reset by peer) 2015-01-29T15:52:44Z karswell` joined #sbcl 2015-01-29T15:55:38Z oleo quit (Remote host closed the connection) 2015-01-29T15:58:47Z oleo joined #sbcl 2015-01-29T15:58:55Z oleo quit (Changing host) 2015-01-29T15:58:55Z oleo joined #sbcl 2015-01-29T16:25:12Z Hache__ quit (Remote host closed the connection) 2015-01-29T16:32:37Z eudoxia quit (Quit: Leaving) 2015-01-29T16:33:09Z slyrus quit (Ping timeout: 245 seconds) 2015-01-29T16:52:26Z dougk_ joined #sbcl 2015-01-29T16:55:22Z dougk__ joined #sbcl 2015-01-29T16:57:28Z dougk___ joined #sbcl 2015-01-29T16:57:30Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T16:58:56Z gingerale joined #sbcl 2015-01-29T16:59:53Z dougk_ joined #sbcl 2015-01-29T17:00:02Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T17:00:02Z ehaliewicz joined #sbcl 2015-01-29T17:01:59Z dougk___ quit (Ping timeout: 265 seconds) 2015-01-29T17:02:37Z dougk__ joined #sbcl 2015-01-29T17:03:36Z edgar-rft joined #sbcl 2015-01-29T17:04:24Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T17:04:57Z dougk_ joined #sbcl 2015-01-29T17:07:29Z dougk___ joined #sbcl 2015-01-29T17:07:38Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T17:09:32Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T17:09:38Z dougk__ joined #sbcl 2015-01-29T17:10:10Z selat joined #sbcl 2015-01-29T17:12:04Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T17:12:07Z dougk_ joined #sbcl 2015-01-29T17:14:04Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T17:14:53Z dougk__ joined #sbcl 2015-01-29T17:16:29Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T17:17:24Z dougk_ joined #sbcl 2015-01-29T17:19:23Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T17:21:48Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T17:33:39Z ehaliewicz quit (Ping timeout: 264 seconds) 2015-01-29T17:39:26Z ehaliewicz joined #sbcl 2015-01-29T17:45:53Z dougk_ joined #sbcl 2015-01-29T17:48:24Z dougk__ joined #sbcl 2015-01-29T17:50:42Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T17:51:09Z dougk_ joined #sbcl 2015-01-29T17:51:54Z ehaliewicz quit (Ping timeout: 245 seconds) 2015-01-29T17:53:14Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T17:54:29Z dougk__ joined #sbcl 2015-01-29T17:55:17Z selat quit (Ping timeout: 245 seconds) 2015-01-29T17:55:38Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T17:57:02Z dougk_ joined #sbcl 2015-01-29T17:57:20Z selat joined #sbcl 2015-01-29T17:59:01Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T18:00:57Z dougk__ joined #sbcl 2015-01-29T18:02:06Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T18:04:11Z dougk_ joined #sbcl 2015-01-29T18:05:54Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T18:07:57Z dougk__ joined #sbcl 2015-01-29T18:08:41Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T18:11:03Z dougk_ joined #sbcl 2015-01-29T18:12:33Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T18:15:17Z dougk__ joined #sbcl 2015-01-29T18:16:02Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T18:17:22Z sdemarre joined #sbcl 2015-01-29T18:18:43Z dougk_ joined #sbcl 2015-01-29T18:19:50Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T18:21:33Z dougk__ joined #sbcl 2015-01-29T18:21:45Z scymtym: in a multi-threaded program, i observed a hanging (PROCESS-WAIT #1=# NIL) call 2015-01-29T18:21:58Z scymtym: inspecting the process object reveals COOKIE: (1) 2015-01-29T18:22:37Z scymtym: i assume that means that one the stream-copying handlers did not properly decrement the cookie value 2015-01-29T18:23:11Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T18:23:22Z scymtym: can this be a race condition since the handlers do (decf (car COOKIE-CONS-CELL)) instead of (atomic-decf …)? 2015-01-29T18:24:18Z dougk_ joined #sbcl 2015-01-29T18:26:05Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T18:27:03Z dougk__ joined #sbcl 2015-01-29T18:28:59Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T18:30:02Z dougk_ joined #sbcl 2015-01-29T18:31:24Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T18:32:57Z dougk__ joined #sbcl 2015-01-29T18:35:02Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T18:35:12Z dougk_ joined #sbcl 2015-01-29T18:37:34Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T18:37:51Z dougk__ joined #sbcl 2015-01-29T18:40:06Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T18:40:43Z dougk_ joined #sbcl 2015-01-29T18:42:38Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T18:44:48Z dougk__ joined #sbcl 2015-01-29T18:45:48Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T18:48:03Z dougk_ joined #sbcl 2015-01-29T18:49:36Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T18:50:19Z ehaliewicz joined #sbcl 2015-01-29T18:50:59Z dougk__ joined #sbcl 2015-01-29T18:52:40Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T18:53:25Z dougk_ joined #sbcl 2015-01-29T18:55:17Z Quadrescence joined #sbcl 2015-01-29T18:55:34Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T18:55:56Z dougk__ joined #sbcl 2015-01-29T18:58:28Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T18:58:32Z dougk___ joined #sbcl 2015-01-29T19:00:24Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T19:00:37Z slyrus joined #sbcl 2015-01-29T19:01:14Z dougk_ joined #sbcl 2015-01-29T19:03:18Z dougk___ quit (Ping timeout: 265 seconds) 2015-01-29T19:03:54Z dougk__ joined #sbcl 2015-01-29T19:05:01Z slyrus_ joined #sbcl 2015-01-29T19:06:04Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T19:06:19Z dougk_ joined #sbcl 2015-01-29T19:08:08Z slyrus quit (Ping timeout: 265 seconds) 2015-01-29T19:08:08Z slyrus_ is now known as slyrus 2015-01-29T19:08:36Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T19:08:44Z dougk__ joined #sbcl 2015-01-29T19:11:04Z dougk___ joined #sbcl 2015-01-29T19:11:08Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T19:13:11Z dougk_ joined #sbcl 2015-01-29T19:13:40Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T19:15:34Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T19:15:56Z dougk__ joined #sbcl 2015-01-29T19:18:06Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T19:18:08Z dougk___ joined #sbcl 2015-01-29T19:20:10Z dougk_ joined #sbcl 2015-01-29T19:20:38Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T19:23:10Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T19:23:40Z dougk__ joined #sbcl 2015-01-29T19:24:34Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T19:26:21Z dougk_ joined #sbcl 2015-01-29T19:28:26Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T19:28:36Z dougk__ joined #sbcl 2015-01-29T19:31:08Z dougk___ joined #sbcl 2015-01-29T19:31:24Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T19:33:18Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T19:34:33Z dougk_ joined #sbcl 2015-01-29T19:35:50Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T19:37:35Z dougk__ joined #sbcl 2015-01-29T19:39:04Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T19:40:40Z dougk_ joined #sbcl 2015-01-29T19:41:58Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T19:43:05Z dougk__ joined #sbcl 2015-01-29T19:45:20Z dougk___ joined #sbcl 2015-01-29T19:45:21Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T19:47:20Z dougk_ joined #sbcl 2015-01-29T19:47:52Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T19:48:45Z eudoxia joined #sbcl 2015-01-29T19:49:46Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T19:50:16Z nyef_ joined #sbcl 2015-01-29T19:50:34Z _8hzp` joined #sbcl 2015-01-29T19:50:48Z dougk__ joined #sbcl 2015-01-29T19:51:55Z dead_ joined #sbcl 2015-01-29T19:51:57Z sdemarre left #sbcl 2015-01-29T19:52:18Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T19:53:07Z dougk_ joined #sbcl 2015-01-29T19:55:28Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T19:56:36Z nyef quit (Ping timeout: 264 seconds) 2015-01-29T19:56:37Z _8hzp quit (Ping timeout: 264 seconds) 2015-01-29T19:56:37Z dougk__ joined #sbcl 2015-01-29T19:56:37Z psy_ quit (Ping timeout: 264 seconds) 2015-01-29T19:56:37Z DeadTrickster quit (Ping timeout: 264 seconds) 2015-01-29T19:56:37Z fikusz quit (Ping timeout: 264 seconds) 2015-01-29T19:56:38Z Perlboy quit (Ping timeout: 264 seconds) 2015-01-29T19:56:46Z Bicyclidine joined #sbcl 2015-01-29T19:56:50Z psy_ joined #sbcl 2015-01-29T19:56:58Z fikusz_ joined #sbcl 2015-01-29T19:57:55Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T19:58:10Z prxq joined #sbcl 2015-01-29T19:59:36Z dougk_ joined #sbcl 2015-01-29T20:01:18Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T20:02:16Z dougk__ joined #sbcl 2015-01-29T20:03:44Z Perlboy joined #sbcl 2015-01-29T20:04:20Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T20:04:31Z dougk_ joined #sbcl 2015-01-29T20:06:52Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T20:07:22Z dougk__ joined #sbcl 2015-01-29T20:09:24Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T20:09:47Z dougk_ joined #sbcl 2015-01-29T20:11:56Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T20:12:23Z dougk__ joined #sbcl 2015-01-29T20:14:28Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T20:16:05Z dougk_ joined #sbcl 2015-01-29T20:16:48Z slyrus quit (Remote host closed the connection) 2015-01-29T20:17:00Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T20:19:11Z dougk__ joined #sbcl 2015-01-29T20:20:48Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T20:22:22Z dougk_ joined #sbcl 2015-01-29T20:23:58Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T20:24:52Z dougk__ joined #sbcl 2015-01-29T20:27:08Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T20:27:14Z dougk___ joined #sbcl 2015-01-29T20:29:40Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T20:30:55Z dougk_ joined #sbcl 2015-01-29T20:31:00Z gingerale quit (Ping timeout: 276 seconds) 2015-01-29T20:32:12Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T20:33:40Z dougk__ joined #sbcl 2015-01-29T20:35:37Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T20:38:02Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T20:44:07Z dougk_ joined #sbcl 2015-01-29T20:47:33Z dougk__ joined #sbcl 2015-01-29T20:48:40Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T20:48:43Z nyef_ is now known as nyef 2015-01-29T20:52:03Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T20:52:18Z dougk_ joined #sbcl 2015-01-29T20:55:04Z dougk__ joined #sbcl 2015-01-29T20:56:21Z oleo is now known as Guest36174 2015-01-29T20:56:53Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T20:57:11Z oleo__ joined #sbcl 2015-01-29T20:58:18Z dougk_ joined #sbcl 2015-01-29T20:59:02Z Guest36174 quit (Ping timeout: 245 seconds) 2015-01-29T20:59:47Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T21:00:58Z dougk__ joined #sbcl 2015-01-29T21:03:14Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T21:03:26Z dougk_ joined #sbcl 2015-01-29T21:05:46Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T21:08:00Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T21:17:57Z dougk_ joined #sbcl 2015-01-29T21:21:00Z dougk__ joined #sbcl 2015-01-29T21:22:30Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T21:23:22Z dougk_ joined #sbcl 2015-01-29T21:25:42Z dougk___ joined #sbcl 2015-01-29T21:26:02Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T21:27:56Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T21:28:04Z dougk_ joined #sbcl 2015-01-29T21:29:02Z Shinmera quit (Quit: しつれいしなければならないんです。) 2015-01-29T21:30:28Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T21:30:42Z Bicyclidine quit (Ping timeout: 245 seconds) 2015-01-29T21:31:13Z dougk__ joined #sbcl 2015-01-29T21:31:43Z scymtym_ joined #sbcl 2015-01-29T21:32:39Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T21:34:06Z dougk_ joined #sbcl 2015-01-29T21:36:02Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T21:37:05Z dougk__ joined #sbcl 2015-01-29T21:38:27Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T21:39:35Z dougk_ joined #sbcl 2015-01-29T21:41:50Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T21:42:05Z dougk__ joined #sbcl 2015-01-29T21:42:29Z Bicyclidine joined #sbcl 2015-01-29T21:44:15Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T21:45:04Z dougk_ joined #sbcl 2015-01-29T21:46:40Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T21:47:24Z dougk__ joined #sbcl 2015-01-29T21:49:11Z Bicyclidine quit (Ping timeout: 256 seconds) 2015-01-29T21:49:34Z dougk___ joined #sbcl 2015-01-29T21:50:06Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T21:52:00Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T21:52:42Z dougk_ joined #sbcl 2015-01-29T21:54:32Z dougk___ quit (Ping timeout: 272 seconds) 2015-01-29T21:55:10Z dougk__ joined #sbcl 2015-01-29T21:56:07Z Bicyclidine joined #sbcl 2015-01-29T21:57:39Z stassats quit (Ping timeout: 246 seconds) 2015-01-29T21:57:42Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T21:58:03Z dougk_ joined #sbcl 2015-01-29T22:00:14Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T22:02:21Z dougk__ joined #sbcl 2015-01-29T22:02:46Z dougk_ quit (Ping timeout: 272 seconds) 2015-01-29T22:04:59Z dougk_ joined #sbcl 2015-01-29T22:07:12Z dougk__ quit (Ping timeout: 272 seconds) 2015-01-29T22:07:42Z dougk__ joined #sbcl 2015-01-29T22:09:23Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T22:11:22Z dougk_ joined #sbcl 2015-01-29T22:12:17Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T22:15:45Z prxq quit (Remote host closed the connection) 2015-01-29T22:16:09Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T22:16:25Z dougk_ joined #sbcl 2015-01-29T22:19:41Z dougk__ joined #sbcl 2015-01-29T22:20:59Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T22:24:22Z dougk__ quit (Ping timeout: 265 seconds) 2015-01-29T22:24:23Z dougk_ joined #sbcl 2015-01-29T22:28:00Z Hydan quit (Ping timeout: 276 seconds) 2015-01-29T22:29:12Z dougk_ quit (Ping timeout: 265 seconds) 2015-01-29T22:31:22Z fridim_ quit (Ping timeout: 240 seconds) 2015-01-29T22:37:44Z milosn quit (Ping timeout: 245 seconds) 2015-01-29T22:45:39Z milosn joined #sbcl 2015-01-29T22:46:05Z angavrilov quit (Remote host closed the connection) 2015-01-29T22:57:26Z karswell` quit (Read error: Connection reset by peer) 2015-01-29T22:57:55Z karswell` joined #sbcl 2015-01-29T23:00:58Z ehaliewicz quit (Remote host closed the connection) 2015-01-29T23:06:07Z milosn quit (Ping timeout: 255 seconds) 2015-01-29T23:06:14Z milosn_ joined #sbcl 2015-01-29T23:13:24Z milosn_ is now known as milosn 2015-01-29T23:29:02Z eudoxia quit (Quit: Leaving) 2015-01-29T23:41:13Z scymtym_ quit (Ping timeout: 255 seconds) 2015-01-29T23:50:57Z karswell` quit (Remote host closed the connection) 2015-01-29T23:51:11Z karswell` joined #sbcl