2016-06-22T07:05:00Z ccl-logbot joined #sbcl 2016-06-22T07:05:00Z 2016-06-22T07:05:00Z names: ccl-logbot Posterdati|2 les` White__Flame specbot irsol minion eschatologist DavidGu_Desktop gingerale karswell` ASau logrus_ leo_song fe[nl]ix Blkt edgar-rft salva0 p_l loke chris2 DGASAU nzambe dougk_ foom ym flip214 jdz joshe gema` jasom mordocai Puercopop pkhuong jsnell_ Intensity Xof ferada Cthulhux hitecnologys whiteline trinque aeth antoszka Shinmera jackdaniel dsp-_ logrus carvite JamesRichardson pillton dustinm` Quadrescence reb```` pootler_ 2016-06-22T07:05:00Z names: christoph_debian nicdev angular_mike pchrist xristos mood abbe drmeister _iwc gko |3b| brucem jackc- akkad luis sigjuice 2016-06-22T07:33:18Z DavidGu_Desktop quit (Remote host closed the connection) 2016-06-22T07:33:36Z DavidGu_Desktop joined #sbcl 2016-06-22T07:38:23Z scymtym joined #sbcl 2016-06-22T07:53:42Z ASau quit (Ping timeout: 246 seconds) 2016-06-22T08:02:31Z angavrilov joined #sbcl 2016-06-22T08:40:26Z gingerale quit (Remote host closed the connection) 2016-06-22T08:52:23Z logrus_ quit (Quit: Leaving) 2016-06-22T09:33:56Z Posterdati|2 quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2016-06-22T09:34:11Z Posterdati joined #sbcl 2016-06-22T09:38:46Z angavrilov quit (Ping timeout: 244 seconds) 2016-06-22T09:39:36Z angavrilov joined #sbcl 2016-06-22T10:05:58Z stassats joined #sbcl 2016-06-22T10:15:00Z karswell` quit (Remote host closed the connection) 2016-06-22T10:17:47Z stassats quit (Ping timeout: 260 seconds) 2016-06-22T10:18:15Z stassats joined #sbcl 2016-06-22T11:08:03Z DavidGu_Desktop quit (Ping timeout: 240 seconds) 2016-06-22T12:04:02Z stassats: huh 2016-06-22T12:04:17Z stassats: why is there a call to SB-C::ACTUALLY-COMPILE during cross compilation? 2016-06-22T12:06:07Z DavidGu_Desktop joined #sbcl 2016-06-22T12:07:44Z stassats: 18: (EVAL #) 2016-06-22T12:07:44Z stassats: 19: (SB!C::PROCESS-TOPLEVEL-FORM 2016-06-22T12:07:47Z stassats: from 2016-06-22T12:08:18Z stassats: and sb-c:: chokes on an optimize quality 2016-06-22T12:11:07Z stassats: oh, it's in eval-when, bloody indentation 2016-06-22T12:24:31Z stassats: huh, #!+sb-doc seems to defeat error source location 2016-06-22T12:25:50Z eudoxia joined #sbcl 2016-06-22T12:26:09Z DavidGu_Desktop quit (Ping timeout: 244 seconds) 2016-06-22T12:40:07Z angavrilov quit (Ping timeout: 260 seconds) 2016-06-22T12:40:11Z angavrilov_ joined #sbcl 2016-06-22T12:43:46Z stassats: that is because it doesn't look at the whole file for C-c C-ced functions and fails to set up the right readtable 2016-06-22T12:45:10Z stassats: even when it parses the whole file, two in-packages will break it 2016-06-22T12:45:11Z stassats: sigh 2016-06-22T12:49:25Z stassats: kinda solved the C-c C-c problem by prep-ending (in-package ,(package-name *package*)) to it, but that'll break if C-c C-c already includes (in-package) 2016-06-22T13:22:24Z edgar-rft quit (Quit: edgar-rft) 2016-06-22T13:34:06Z eudoxia quit (Quit: Leaving) 2016-06-22T13:35:38Z abruanese joined #sbcl 2016-06-22T13:38:26Z fe[nl]ix: what's the point of sb-doc ? 2016-06-22T13:44:56Z stassats: fe[nl]ix: optionality 2016-06-22T13:45:43Z stassats: i wanted for a long time make get rid of the #!+sb-doc "docstring" and move it to where the docstring actually attaches 2016-06-22T14:08:44Z dougk_: stassats: see also https://bugs.launchpad.net/sbcl/+bug/1382383 2016-06-22T14:09:03Z dougk_: It says all those same things you did: that the type deriver is wrong and that the name is bad 2016-06-22T14:09:28Z stassats: the deriver is now right 2016-06-22T14:10:09Z stassats: it returns (T T) 2016-06-22T14:10:19Z stassats: so, i guess it got fixed 2016-06-22T14:13:06Z stassats: too bad i had to rediscover it the hard way 2016-06-22T14:24:04Z DavidGu_Desktop joined #sbcl 2016-06-22T14:46:12Z DavidGu_Desktop quit (Read error: Connection reset by peer) 2016-06-22T14:46:25Z DavidGu_Desktop joined #sbcl 2016-06-22T14:53:15Z DavidGu_Desktop quit (Ping timeout: 250 seconds) 2016-06-22T14:53:30Z DavidGu_Desktop1 joined #sbcl 2016-06-22T14:55:53Z DavidGu_Desktop1 is now known as DavidGu_Desktop 2016-06-22T15:00:52Z reb````: On 64-bit Intel, (logand (* x y) #xffffffff) compiles to a multiply and AND. I was expecting a 32-bit multiply instead ... 2016-06-22T15:00:58Z reb```` is now known as reb 2016-06-22T15:01:22Z pkhuong: we don't have VOPs for sub-word multiplies 2016-06-22T15:01:56Z reb: pkhuong: Would adding them be straightforward? 2016-06-22T15:02:17Z pkhuong: making sure they don't affect other cases negatively less so 2016-06-22T15:03:10Z reb: Are sub-word addition VOPs what allows (logand (+ x y) 0xfff...fff) to avoid the logical AND in the assembly code? 2016-06-22T15:04:13Z DavidGu_Desktop1 joined #sbcl 2016-06-22T15:04:13Z DavidGu_Desktop quit (Read error: Connection reset by peer) 2016-06-22T15:04:14Z DavidGu_Desktop1 is now known as DavidGu_Desktop 2016-06-22T15:10:39Z DavidGu_Desktop quit (Ping timeout: 276 seconds) 2016-06-22T15:10:45Z mordocai quit (Ping timeout: 244 seconds) 2016-06-22T15:12:17Z mordocai joined #sbcl 2016-06-22T15:19:55Z DavidGu_Desktop joined #sbcl 2016-06-22T15:22:27Z DavidGu_Desktop1 joined #sbcl 2016-06-22T15:26:11Z DavidGu_Desktop quit (Ping timeout: 240 seconds) 2016-06-22T15:26:11Z DavidGu_Desktop1 is now known as DavidGu_Desktop 2016-06-22T15:28:22Z DavidGu_Desktop quit (Read error: Connection reset by peer) 2016-06-22T16:20:41Z shka joined #sbcl 2016-06-22T16:21:22Z guicho joined #sbcl 2016-06-22T16:25:46Z stassats: reb: it's more trivial than that 2016-06-22T16:25:49Z stassats: (unless (eql y -1) ; do nothing if this is true (inst and r y)) 2016-06-22T16:26:00Z stassats: silly comment, though 2016-06-22T16:28:33Z stassats: reb: although mul/did will probably show the biggest improvement, the whole thing would improve if we used 32-bit registers 2016-06-22T16:28:52Z stassats: but that's only on x86-64, due to encoding, probably not as much win on arm64 2016-06-22T16:33:09Z stassats: according to fog, 32-bit mul/imul actually have higher latency on skylake 2016-06-22T16:33:54Z stassats: so, only div/idiv would see any improvement, the rest is just encoding noise 2016-06-22T16:43:50Z guicho quit (Quit: さようなら) 2016-06-22T17:25:17Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-22T17:29:31Z karswell` joined #sbcl 2016-06-22T17:35:03Z karswell` is now known as karswell 2016-06-22T17:50:16Z reb: stassats: Thanks ... logical ops use the (eql y -1) trick to avoid the AND. 2016-06-22T17:55:04Z reb: That is, logand does nothing when ANDing with word-sized #xfff...fff 2016-06-22T17:55:28Z stassats: right, it's not about sub-word operations 2016-06-22T17:56:52Z reb: The same trick can't be used to handle 32-bit #xff..ff on 64-bit hardware. 2016-06-22T18:13:23Z edgar-rft joined #sbcl 2016-06-22T18:19:51Z leo_song quit (Ping timeout: 246 seconds) 2016-06-22T18:20:00Z leo_song joined #sbcl 2016-06-22T18:28:02Z eschatologist joined #sbcl 2016-06-22T19:05:00Z scymtym quit (Ping timeout: 260 seconds) 2016-06-22T19:32:17Z reb quit (Remote host closed the connection) 2016-06-22T19:44:19Z reb joined #sbcl 2016-06-22T19:50:50Z karswell` joined #sbcl 2016-06-22T19:51:36Z karswell quit (Remote host closed the connection) 2016-06-22T20:18:10Z attila_lendvai joined #sbcl 2016-06-22T20:20:47Z angavrilov_ quit (Remote host closed the connection) 2016-06-22T20:21:22Z DougNYC joined #sbcl 2016-06-22T20:53:20Z eudoxia joined #sbcl 2016-06-22T20:55:02Z scymtym joined #sbcl 2016-06-22T20:57:18Z karswell` quit (Remote host closed the connection) 2016-06-22T21:49:57Z guicho joined #sbcl 2016-06-22T21:56:42Z eudoxia quit (Quit: Leaving) 2016-06-22T22:34:21Z logrus_ joined #sbcl 2016-06-22T22:36:15Z attila_lendvai quit (Read error: Connection reset by peer) 2016-06-22T22:38:50Z attila_lendvai joined #sbcl 2016-06-22T22:38:53Z attila_lendvai quit (Changing host) 2016-06-22T22:38:54Z attila_lendvai joined #sbcl 2016-06-22T22:50:48Z edgar-rft quit (Quit: edgar-rft) 2016-06-22T22:57:52Z shka quit (Ping timeout: 260 seconds) 2016-06-22T23:18:53Z logrus_ quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-22T23:36:28Z eudoxia joined #sbcl 2016-06-22T23:37:27Z eudoxia quit (Client Quit) 2016-06-22T23:37:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-22T23:52:26Z logrus_ joined #sbcl 2016-06-23T00:38:27Z xq joined #sbcl 2016-06-23T00:40:22Z xq: I'd like to have an up to date sbcl but my distro (debian unstable) is several releases behind almost always. Is there a way to have an up to date sbcl in ~ ? Essentially I'm looking for something like perlbrew or virtualenv but for sbcl 2016-06-23T00:41:02Z stassats: just have it wherever you want 2016-06-23T00:41:02Z xq: up to now I've just manually compiled the source but this is getting old 2016-06-23T00:41:21Z xq: what do you mean stassats 2016-06-23T00:41:31Z stassats: compiling sources once a month is getting old? 2016-06-23T00:41:35Z xq: yes 2016-06-23T00:41:41Z stassats: well, tough luck 2016-06-23T00:57:27Z stassats quit (Ping timeout: 260 seconds) 2016-06-23T01:03:28Z guicho quit (Remote host closed the connection) 2016-06-23T01:11:49Z edgar-rft joined #sbcl 2016-06-23T01:50:51Z abruanese quit (Quit: ZNC 1.6.3+deb1 - http://znc.in) 2016-06-23T02:46:48Z logrus_ quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-23T02:56:56Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-23T03:39:04Z eschatologist joined #sbcl 2016-06-23T03:41:01Z xq left #sbcl 2016-06-23T04:33:53Z edgar-rft quit (Quit: edgar-rft) 2016-06-23T04:45:52Z gema` quit (Quit: bye) 2016-06-23T04:59:55Z shka joined #sbcl 2016-06-23T05:00:14Z logrus_ joined #sbcl 2016-06-23T05:00:21Z logrus_ quit (Client Quit) 2016-06-23T05:44:22Z shka quit (Ping timeout: 252 seconds) 2016-06-23T06:02:41Z DougNYC quit (Read error: Connection reset by peer) 2016-06-23T06:03:27Z DougNYC joined #sbcl 2016-06-23T06:13:33Z DougNYC quit (Ping timeout: 240 seconds) 2016-06-23T06:51:30Z DougNYC joined #sbcl 2016-06-23T07:01:05Z attila_lendvai joined #sbcl 2016-06-23T07:23:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-23T07:44:37Z DavidGu_Desktop joined #sbcl 2016-06-23T07:58:03Z salv0 joined #sbcl 2016-06-23T08:00:21Z fiddlerwoaroof_ joined #sbcl 2016-06-23T08:01:34Z DavidGu_Desktop quit (Ping timeout: 244 seconds) 2016-06-23T08:02:13Z DavidGu_Desktop joined #sbcl 2016-06-23T08:04:50Z DavidGu_Desktop quit (Remote host closed the connection) 2016-06-23T08:05:01Z DavidGu_Desktop joined #sbcl 2016-06-23T08:46:38Z angavrilov joined #sbcl 2016-06-23T11:18:08Z DavidGu_Desktop quit (Quit: DavidGu_Desktop) 2016-06-23T11:23:23Z stassats joined #sbcl 2016-06-23T11:26:37Z guicho joined #sbcl 2016-06-23T11:27:33Z stassats quit (Ping timeout: 240 seconds) 2016-06-23T11:33:19Z stassats joined #sbcl 2016-06-23T11:37:31Z stassats quit (Ping timeout: 240 seconds) 2016-06-23T11:39:46Z stassats joined #sbcl 2016-06-23T11:43:50Z guicho quit (Quit: さようなら) 2016-06-23T11:44:18Z DavidGu_Desktop joined #sbcl 2016-06-23T11:51:07Z DavidGu_Desktop quit (Ping timeout: 258 seconds) 2016-06-23T12:06:48Z DavidGu_Desktop joined #sbcl 2016-06-23T12:18:54Z DavidGu_Desktop quit (Ping timeout: 272 seconds) 2016-06-23T12:19:32Z eudoxia joined #sbcl 2016-06-23T12:33:21Z eudoxia quit (Quit: Leaving) 2016-06-23T12:38:38Z edgar-rft joined #sbcl 2016-06-23T12:56:46Z shka joined #sbcl 2016-06-23T14:18:53Z whiteline quit (Read error: Connection reset by peer) 2016-06-23T14:19:00Z whiteline_ joined #sbcl 2016-06-23T14:33:17Z abruanese joined #sbcl 2016-06-23T14:57:46Z foom: Maybe you could become a comaintainer of the debian package and update it every month for everyone. :) 2016-06-23T14:59:08Z DavidGu_Desktop joined #sbcl 2016-06-23T17:00:46Z jasom: xq you could try roswell; I don't know how closely it tracks releases 2016-06-23T17:03:40Z jasom: xq, ah, it seems to parse the platform-table from sbcl's website, so it should be up-to-date 2016-06-23T17:10:16Z stassats: why would you trust some third party binaries? 2016-06-23T17:12:19Z dougk_ quit (Remote host closed the connection) 2016-06-23T17:13:50Z jasom: stassats: roswell downloads the sbcl sourceforge page. 2016-06-23T17:14:41Z stassats: only x86-64 and arm64 have up to date binaries there 2016-06-23T17:17:22Z karswell` joined #sbcl 2016-06-23T17:23:57Z karswell` is now known as karswell 2016-06-23T17:42:45Z karswell quit (Remote host closed the connection) 2016-06-23T17:51:16Z dougk_ joined #sbcl 2016-06-23T18:12:40Z mordocai: So I know nothing about it, but are any of the ITA patches found here https://github.com/cracauer/sbcl-ita/ capable of being merged into upstream? If they were capable, would they even be wanted? They don't seem to be in a very grokable format. 2016-06-23T18:12:41Z minion: mordocai, memo from emaczen: I figured out my issue with ccl portability 2016-06-23T18:14:12Z stassats: i'm not all that interested in going through them 2016-06-23T18:14:33Z mordocai: Yeah, I figured that might be the general feeling. 2016-06-23T18:15:03Z stassats: though there doesn't seem to be a lot of them 2016-06-23T18:17:33Z stassats: skimmed over, nothing seems interesting 2016-06-23T18:17:45Z dougk_: the only one I have an opinion about is the char-macro-patch, and my opinion is that upstream should not merge it. special vars are are a terrible way to impart behavior to streams. you run the risk of accidental crosstalk, etc. 2016-06-23T18:19:19Z dougk_: the stream speed patch should not be needed. If it actuall helps anything, we should fix whatever bits of PCL or stream I/O in general make it a win, so that isn't a win - and then everything benefits 2016-06-23T18:19:31Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-23T18:19:38Z stassats: that one surprised me 2016-06-23T18:20:31Z logrus_ joined #sbcl 2016-06-23T18:21:46Z stassats: 4 arguments, stack allocated? 2016-06-23T18:21:57Z stassats: well, i can't believe that noise would matter for streams 2016-06-23T18:23:56Z stassats: seems like one &optional is faster than more than one &optional, then there is no change in speed 2016-06-23T18:25:00Z stassats: independent of the number of required arguments, once you pass the second &optional it slows down 2016-06-23T18:25:01Z stassats: huh-huh 2016-06-23T18:26:20Z stassats: though it's still noise compared to what streams do 2016-06-23T18:31:13Z stassats: &more appears to be involved 2016-06-23T18:34:08Z stassats: in invoke-fast-method-call/more 2016-06-23T18:34:12Z stassats: 0 and 1 are optimized 2016-06-23T18:39:31Z stassats: there should probably some sort of apply-%more 2016-06-23T18:39:36Z stassats: &more 2016-06-23T18:41:12Z stassats: though, as always, i can't modify pcl, it hides under some layer of indirection 2016-06-23T19:00:23Z stassats: ok, apply-&more shouldn't be too hard, but would be still quite involved 2016-06-23T19:01:51Z eschatologist joined #sbcl 2016-06-23T19:36:45Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-23T19:47:23Z DavidGu_Desktop quit (Quit: DavidGu_Desktop) 2016-06-23T19:50:02Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-23T20:18:21Z ASau joined #sbcl 2016-06-23T20:27:32Z abruanese quit (*.net *.split) 2016-06-23T20:27:32Z leo_song quit (*.net *.split) 2016-06-23T20:27:32Z DGASAU quit (*.net *.split) 2016-06-23T20:27:33Z hitecnologys quit (*.net *.split) 2016-06-23T20:27:33Z Quadrescence quit (*.net *.split) 2016-06-23T20:27:33Z pchrist quit (*.net *.split) 2016-06-23T20:27:33Z _iwc quit (*.net *.split) 2016-06-23T20:27:34Z |3b| quit (*.net *.split) 2016-06-23T20:27:34Z brucem quit (*.net *.split) 2016-06-23T20:27:52Z DGASAU joined #sbcl 2016-06-23T20:27:57Z Quadrescence joined #sbcl 2016-06-23T20:28:02Z abruanese joined #sbcl 2016-06-23T20:28:16Z pchrist joined #sbcl 2016-06-23T20:28:33Z brucem joined #sbcl 2016-06-23T20:28:52Z leo_song joined #sbcl 2016-06-23T20:29:12Z eudoxia joined #sbcl 2016-06-23T20:29:13Z |3b|` joined #sbcl 2016-06-23T20:29:18Z hitecnologys joined #sbcl 2016-06-23T20:38:03Z whiteline_ is now known as whiteline 2016-06-23T20:38:05Z nzambe joined #sbcl 2016-06-23T20:38:29Z _iwc joined #sbcl 2016-06-23T20:39:10Z _iwc quit (K-Lined) 2016-06-23T20:54:23Z attila_lendvai joined #sbcl 2016-06-23T20:54:23Z attila_lendvai quit (Changing host) 2016-06-23T20:54:23Z attila_lendvai joined #sbcl 2016-06-23T20:56:22Z eschatologist joined #sbcl 2016-06-23T21:24:42Z attila_lendvai quit (Read error: Connection reset by peer) 2016-06-23T21:27:05Z attila_lendvai joined #sbcl 2016-06-23T21:41:57Z |3b|` is now known as |3b| 2016-06-23T22:03:50Z eudoxia quit (Quit: Leaving) 2016-06-23T22:05:37Z shka quit (Ping timeout: 260 seconds) 2016-06-23T22:15:20Z angavrilov quit (Remote host closed the connection) 2016-06-23T22:18:12Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-23T22:19:23Z eschatologist joined #sbcl 2016-06-23T22:29:59Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-23T22:46:03Z eschatologist joined #sbcl 2016-06-23T23:23:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-23T23:41:31Z scymtym quit (Ping timeout: 240 seconds) 2016-06-23T23:42:43Z stassats: sigh, source paths are convoluted 2016-06-23T23:43:12Z stassats: why not just use DFO numbers directly instead of encoding them into something 2016-06-23T23:44:04Z stassats: i guess if i ever get to location symbols, not just conses, i'll try to sort things out 2016-06-23T23:45:59Z karswell joined #sbcl 2016-06-24T00:20:30Z karswell quit (Ping timeout: 244 seconds) 2016-06-24T00:20:53Z karswell joined #sbcl 2016-06-24T00:35:33Z guicho joined #sbcl 2016-06-24T00:53:19Z brucem quit (Changing host) 2016-06-24T00:53:19Z brucem joined #sbcl 2016-06-24T01:08:04Z stassats quit (Ping timeout: 240 seconds) 2016-06-24T01:21:56Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-24T01:29:59Z logrus_ quit (Quit: Leaving) 2016-06-24T01:33:34Z abruanese quit (Ping timeout: 240 seconds) 2016-06-24T02:18:19Z guicho quit (Remote host closed the connection) 2016-06-24T03:02:27Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-24T03:48:24Z eschatologist joined #sbcl 2016-06-24T04:27:02Z edgar-rft quit (Quit: edgar-rft) 2016-06-24T04:57:08Z guicho joined #sbcl 2016-06-24T04:59:30Z guicho quit (Client Quit) 2016-06-24T05:27:26Z DougNYC quit 2016-06-24T05:35:03Z DougNYC joined #sbcl 2016-06-24T06:02:10Z shka joined #sbcl 2016-06-24T06:26:59Z shka quit (Ping timeout: 244 seconds) 2016-06-24T06:30:50Z attila_lendvai joined #sbcl 2016-06-24T06:30:50Z attila_lendvai quit (Changing host) 2016-06-24T06:30:50Z attila_lendvai joined #sbcl 2016-06-24T06:45:20Z loke quit (Ping timeout: 272 seconds) 2016-06-24T06:57:50Z loke joined #sbcl 2016-06-24T07:13:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-24T07:51:55Z DavidGu_Desktop joined #sbcl 2016-06-24T07:59:44Z DeadTrickster joined #sbcl 2016-06-24T08:08:13Z scymtym joined #sbcl 2016-06-24T08:08:45Z DavidGu_Desktop1 joined #sbcl 2016-06-24T08:09:33Z DavidGu_Desktop quit (Ping timeout: 240 seconds) 2016-06-24T08:09:34Z DavidGu_Desktop1 is now known as DavidGu_Desktop 2016-06-24T08:12:26Z DavidGu_Desktop1 joined #sbcl 2016-06-24T08:14:48Z DavidGu_Desktop quit (Ping timeout: 276 seconds) 2016-06-24T08:14:48Z DavidGu_Desktop1 is now known as DavidGu_Desktop 2016-06-24T08:25:44Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-24T08:26:27Z salv0 quit (Remote host closed the connection) 2016-06-24T08:39:10Z salva joined #sbcl 2016-06-24T08:57:23Z angavrilov joined #sbcl 2016-06-24T09:06:54Z ASau quit (Ping timeout: 260 seconds) 2016-06-24T09:16:00Z DavidGu_Desktop1 joined #sbcl 2016-06-24T09:17:32Z DavidGu_Desktop1 quit (Client Quit) 2016-06-24T09:18:12Z DavidGu_Desktop quit (Ping timeout: 260 seconds) 2016-06-24T10:20:02Z loke quit (Ping timeout: 260 seconds) 2016-06-24T10:32:26Z loke joined #sbcl 2016-06-24T10:41:17Z DavidGu_Desktop joined #sbcl 2016-06-24T10:45:21Z DavidGu_Desktop quit (Client Quit) 2016-06-24T12:26:57Z eudoxia joined #sbcl 2016-06-24T12:30:49Z eudoxia quit (Client Quit) 2016-06-24T12:52:59Z edgar-rft joined #sbcl 2016-06-24T13:27:49Z eudoxia joined #sbcl 2016-06-24T13:52:10Z eudoxia quit (Quit: Leaving) 2016-06-24T14:31:05Z stassats joined #sbcl 2016-06-24T14:35:42Z stassats quit (Ping timeout: 276 seconds) 2016-06-24T14:37:38Z stassats joined #sbcl 2016-06-24T14:47:29Z abruanese joined #sbcl 2016-06-24T15:08:20Z stassats quit (Quit: ZNC 1.6.2+deb1 - http://znc.in) 2016-06-24T15:47:37Z stassats joined #sbcl 2016-06-24T15:52:12Z stassats quit (Ping timeout: 244 seconds) 2016-06-24T15:53:03Z stassats joined #sbcl 2016-06-24T16:03:23Z eschatologist joined #sbcl 2016-06-24T16:10:24Z Xof quit (Ping timeout: 260 seconds) 2016-06-24T16:12:27Z Xof joined #sbcl 2016-06-24T16:15:51Z whiteline quit (Ping timeout: 240 seconds) 2016-06-24T16:21:32Z salva quit (Remote host closed the connection) 2016-06-24T16:29:11Z whiteline joined #sbcl 2016-06-24T17:08:09Z shka joined #sbcl 2016-06-24T17:08:17Z sjl joined #sbcl 2016-06-24T17:14:48Z logrus quit (Quit: Leaving) 2016-06-24T17:28:02Z attila_lendvai joined #sbcl 2016-06-24T17:49:55Z brfennpocock joined #sbcl 2016-06-24T17:49:58Z SamSkulls joined #sbcl 2016-06-24T17:53:44Z brfennpocock is now known as BRFPocock 2016-06-24T17:54:12Z BRFPocock is now known as BRFennPocock 2016-06-24T17:55:23Z attila_lendvai quit (Read error: Connection reset by peer) 2016-06-24T17:55:34Z nzambe joined #sbcl 2016-06-24T17:56:20Z attila_lendvai joined #sbcl 2016-06-24T17:56:20Z attila_lendvai quit (Changing host) 2016-06-24T17:56:20Z attila_lendvai joined #sbcl 2016-06-24T18:22:48Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-24T18:40:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-24T18:48:04Z whiteline quit (Ping timeout: 240 seconds) 2016-06-24T18:51:13Z whiteline joined #sbcl 2016-06-24T19:01:19Z sjl quit (Ping timeout: 244 seconds) 2016-06-24T19:03:28Z eschatologist joined #sbcl 2016-06-24T19:09:39Z SamSkulls quit (Ping timeout: 250 seconds) 2016-06-24T20:03:09Z logrus joined #sbcl 2016-06-24T20:07:01Z attila_lendvai joined #sbcl 2016-06-24T20:07:01Z attila_lendvai quit (Changing host) 2016-06-24T20:07:01Z attila_lendvai joined #sbcl 2016-06-24T20:15:11Z DeadTrickster_ joined #sbcl 2016-06-24T20:18:17Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-06-24T20:20:50Z angavrilov quit (Remote host closed the connection) 2016-06-24T20:29:46Z eschatol_ joined #sbcl 2016-06-24T20:31:32Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-24T20:42:44Z eschatol_ quit (Remote host closed the connection) 2016-06-24T20:44:54Z eschatologist joined #sbcl 2016-06-24T20:57:33Z shka quit (Ping timeout: 244 seconds) 2016-06-24T21:02:31Z BRFennPocock quit (Read error: Connection reset by peer) 2016-06-24T21:07:10Z karswell quit (Ping timeout: 252 seconds) 2016-06-24T21:09:10Z BRFennPocock joined #sbcl 2016-06-24T21:10:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-24T21:11:37Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-24T21:13:10Z attila_lendvai joined #sbcl 2016-06-24T21:13:10Z attila_lendvai quit (Changing host) 2016-06-24T21:13:10Z attila_lendvai joined #sbcl 2016-06-24T21:13:42Z eschatologist joined #sbcl 2016-06-24T21:22:26Z DeadTrickster joined #sbcl 2016-06-24T21:25:32Z DeadTrickster_ quit (Ping timeout: 258 seconds) 2016-06-24T21:49:07Z kurohin joined #sbcl 2016-06-24T21:54:05Z eudoxia joined #sbcl 2016-06-24T22:00:37Z DeadTrickster quit (Ping timeout: 260 seconds) 2016-06-24T22:06:16Z BRFennPocock quit (Ping timeout: 244 seconds) 2016-06-24T22:35:44Z eudoxia quit (Quit: Leaving) 2016-06-24T23:12:49Z gautham joined #sbcl 2016-06-24T23:18:19Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-24T23:43:27Z karswell joined #sbcl 2016-06-24T23:57:57Z scymtym quit (Ping timeout: 276 seconds) 2016-06-25T00:14:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-25T00:33:42Z stassats quit (Ping timeout: 276 seconds) 2016-06-25T01:06:02Z gautham quit (Quit: Leaving) 2016-06-25T01:42:35Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-25T01:44:21Z nzambe joined #sbcl 2016-06-25T02:13:03Z eschatologist joined #sbcl 2016-06-25T03:04:34Z shka joined #sbcl 2016-06-25T03:06:40Z guicho joined #sbcl 2016-06-25T03:45:03Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-25T04:13:34Z eschatologist joined #sbcl 2016-06-25T05:18:49Z oleo_ joined #sbcl 2016-06-25T05:43:40Z DeadTrickster joined #sbcl 2016-06-25T05:45:21Z DeadTrickster_ joined #sbcl 2016-06-25T05:52:58Z DeadTrickster_ quit (Ping timeout: 272 seconds) 2016-06-25T05:57:03Z DeadTrickster_ joined #sbcl 2016-06-25T06:00:21Z DeadTrickster quit (Ping timeout: 246 seconds) 2016-06-25T06:14:16Z kurohin quit (Ping timeout: 264 seconds) 2016-06-25T06:28:42Z oleo_: morning 2016-06-25T06:31:25Z Intensity quit (Remote host closed the connection) 2016-06-25T06:36:34Z Intensity joined #sbcl 2016-06-25T06:45:07Z jasom quit (Ping timeout: 250 seconds) 2016-06-25T06:54:33Z logrus quit (Quit: Leaving) 2016-06-25T06:59:19Z SoraFirestorm joined #sbcl 2016-06-25T06:59:29Z SoraFirestorm: hi 2016-06-25T06:59:44Z SoraFirestorm: Is there a way to tell SBCL to use AT&T syntax in DISASSEMBLE? 2016-06-25T07:08:10Z oleo_: dunno 2016-06-25T07:08:37Z oleo_: all i know is there's an -msyntax flag to cflags in C/CPP 2016-06-25T07:09:00Z oleo_: which you can set to att 2016-06-25T07:09:03Z oleo_: or intel 2016-06-25T07:09:43Z oleo_: i think you'd have to change some makefiles too in the build..... 2016-06-25T07:10:13Z oleo_: otherwise i myself have not seen any features associated with it.... 2016-06-25T07:13:26Z edgar-rft quit (Quit: edgar-rft) 2016-06-25T07:13:55Z guicho quit (Quit: さようなら) 2016-06-25T07:19:23Z DeadTrickster joined #sbcl 2016-06-25T07:23:51Z DeadTrickster_ quit (Ping timeout: 276 seconds) 2016-06-25T07:31:48Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-25T07:33:30Z eschatologist joined #sbcl 2016-06-25T07:44:59Z oleo_: i'm compiling with the cflag changed in Config.x86-64-linux now and it compiles, not sure the assembly display will be changed to render att syntax tho..... 2016-06-25T07:45:33Z oleo_: you need to add -Xassembler -msyntax -Xassembler att 2016-06-25T07:45:56Z oleo_: and maybe -Xassembler -mmnemonic -Xassembler att too 2016-06-25T07:47:34Z SoraFirestorm: hm 2016-06-25T07:47:57Z SoraFirestorm: I'm not really into rebuilding SBCL for something I honestly don't use very much 2016-06-25T07:48:00Z SoraFirestorm: thanks anyways 2016-06-25T07:48:18Z oleo_: i'll run that in a few moments and can tell you if it works.... 2016-06-25T07:49:35Z SoraFirestorm: yeah, at least I'll know for the future 2016-06-25T08:00:14Z oleo_: http://paste.lisp.org/display/319172 2016-06-25T08:00:23Z oleo_: not sure if that is att syntax 2016-06-25T08:00:45Z SoraFirestorm: that looks like intel 2016-06-25T08:00:49Z SoraFirestorm: no sigils 2016-06-25T08:01:02Z SoraFirestorm: and the mnemonics aren't 'typed' 2016-06-25T08:02:30Z oleo_: ok i'll try with the mnemonics enabled too..... 2016-06-25T08:02:47Z SoraFirestorm: just so we're clear 2016-06-25T08:03:05Z SoraFirestorm: the mov instructions have a suffix in AT&T 2016-06-25T08:03:16Z SoraFirestorm: I'm not sure what the 64bit suffix is 2016-06-25T08:03:25Z SoraFirestorm: but I know the 32bit one is 'l' 2016-06-25T08:03:40Z SoraFirestorm: so movs with 32bit values are 'movl's 2016-06-25T08:03:55Z SoraFirestorm: single bytes are 'movb's 2016-06-25T08:03:57Z SoraFirestorm: stuff like that 2016-06-25T08:10:10Z SoraFirestorm: honestly don't do disassemblies that much 2016-06-25T08:10:24Z SoraFirestorm: what I do tends to be more for education and fun than anything serious 2016-06-25T08:14:39Z SoraFirestorm: oleo_: think you'll be ready in <10 minutes? 2016-06-25T08:14:54Z SoraFirestorm: not trying to rush you or anything, but it's *really* late localtime 2016-06-25T08:17:02Z oleo_: ➒ no change 2016-06-25T08:17:10Z SoraFirestorm: ok 2016-06-25T08:17:16Z oleo_: i knew it wouldn't work..... 2016-06-25T08:17:22Z SoraFirestorm: well, like I said, really late where I'm at, so I'm heading off 2016-06-25T08:17:27Z SoraFirestorm: I'll try to come back later 2016-06-25T08:17:30Z SoraFirestorm: thanks for your time 2016-06-25T08:17:31Z oleo_: ok 2016-06-25T08:17:43Z SoraFirestorm left #sbcl 2016-06-25T08:46:47Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-06-25T09:53:26Z shka quit (Ping timeout: 244 seconds) 2016-06-25T10:03:24Z angavrilov joined #sbcl 2016-06-25T10:25:58Z Shinmera quit (Remote host closed the connection) 2016-06-25T10:26:22Z Shinmera joined #sbcl 2016-06-25T12:30:58Z Carisius joined #sbcl 2016-06-25T13:10:07Z shka joined #sbcl 2016-06-25T13:45:52Z nicdev` joined #sbcl 2016-06-25T13:49:11Z ASau joined #sbcl 2016-06-25T13:51:11Z fiddlerwoaroof joined #sbcl 2016-06-25T13:51:12Z angular_mike quit (Ping timeout: 258 seconds) 2016-06-25T13:51:13Z jdz quit (Ping timeout: 258 seconds) 2016-06-25T13:51:13Z hitecnologys quit (Ping timeout: 258 seconds) 2016-06-25T13:51:15Z fiddlerwoaroof_ quit (Ping timeout: 258 seconds) 2016-06-25T13:51:16Z nicdev quit (Ping timeout: 258 seconds) 2016-06-25T13:51:17Z gko quit (Ping timeout: 258 seconds) 2016-06-25T13:51:17Z whiteline quit (Ping timeout: 258 seconds) 2016-06-25T13:51:24Z angular_mike joined #sbcl 2016-06-25T13:51:37Z gko joined #sbcl 2016-06-25T13:51:42Z jdz joined #sbcl 2016-06-25T13:51:46Z whiteline joined #sbcl 2016-06-25T13:52:45Z hitecnologys joined #sbcl 2016-06-25T14:01:26Z edgar-rft joined #sbcl 2016-06-25T14:13:58Z karswell` joined #sbcl 2016-06-25T14:14:08Z karswell quit (Remote host closed the connection) 2016-06-25T14:19:38Z nicdev` is now known as nicdev 2016-06-25T15:06:14Z |3b|: tests on 64-bit windows look about same as usual, aside from :all-threads-have-abort-restart locking up (which seems to be something with threading rather than the usual random GC locks in threads.impure.lisp) 2016-06-25T15:07:32Z |3b|: the body of :all-threads-have-abort-restart test doesn't lock up on its own, but it gets stuck reliably when the whole WITH-TEST form is run 2016-06-25T15:10:40Z leo_song quit (Ping timeout: 252 seconds) 2016-06-25T15:11:21Z leo_song joined #sbcl 2016-06-25T15:13:23Z |3b|: interacts oddly with slime debugger too. if i try to interrupt it nothing happens until i evaluate the with-test form again at which point the thread from previous evaluation gets interrupted 2016-06-25T16:18:47Z logrus joined #sbcl 2016-06-25T16:42:57Z stassats joined #sbcl 2016-06-25T16:49:47Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-25T16:52:09Z eschatologist joined #sbcl 2016-06-25T17:00:13Z pchrist quit (Quit: Lost terminal) 2016-06-25T18:02:06Z karswell` is now known as karswell 2016-06-25T18:20:55Z ASau quit (Remote host closed the connection) 2016-06-25T18:47:41Z scymtym joined #sbcl 2016-06-25T19:06:37Z guicho joined #sbcl 2016-06-25T19:07:21Z guicho quit (Client Quit) 2016-06-25T20:19:15Z DeadTrickster joined #sbcl 2016-06-25T20:24:48Z shka quit (Ping timeout: 244 seconds) 2016-06-25T21:09:24Z Carisius quit (Ping timeout: 272 seconds) 2016-06-25T21:25:59Z DavidGu_Desktop joined #sbcl 2016-06-25T21:31:47Z nzambe quit (Remote host closed the connection) 2016-06-25T21:32:51Z DavidGu_Desktop quit (Ping timeout: 264 seconds) 2016-06-25T21:51:52Z attila_lendvai joined #sbcl 2016-06-25T22:24:05Z DavidGu joined #sbcl 2016-06-25T23:21:31Z attila_lendvai quit (Read error: No route to host) 2016-06-25T23:21:44Z attila_lendvai joined #sbcl 2016-06-25T23:21:44Z attila_lendvai quit (Changing host) 2016-06-25T23:21:44Z attila_lendvai joined #sbcl 2016-06-25T23:22:22Z angavrilov quit (Remote host closed the connection) 2016-06-25T23:38:09Z guicho joined #sbcl 2016-06-25T23:45:22Z karswell quit (Remote host closed the connection) 2016-06-25T23:45:26Z guicho quit (Quit: さようなら) 2016-06-25T23:45:29Z karswell joined #sbcl 2016-06-25T23:56:57Z karswell quit (Ping timeout: 260 seconds) 2016-06-26T00:19:48Z DavidGu quit (Quit: DavidGu) 2016-06-26T00:26:44Z oleo__ joined #sbcl 2016-06-26T00:26:44Z oleo__ quit (Changing host) 2016-06-26T00:26:44Z oleo__ joined #sbcl 2016-06-26T00:30:11Z oleo_ quit (Ping timeout: 240 seconds) 2016-06-26T00:33:49Z DavidGu joined #sbcl 2016-06-26T00:36:32Z DavidGu quit (Remote host closed the connection) 2016-06-26T01:16:14Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-26T01:18:51Z scymtym quit (Ping timeout: 246 seconds) 2016-06-26T01:24:50Z eschatologist joined #sbcl 2016-06-26T01:44:18Z stassats quit (Ping timeout: 276 seconds) 2016-06-26T01:58:04Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-26T02:04:30Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-26T02:19:30Z eschatologist joined #sbcl 2016-06-26T02:25:55Z DavidGu joined #sbcl 2016-06-26T02:25:55Z DavidGu quit (Client Quit) 2016-06-26T02:26:05Z DavidGu_Mobile joined #sbcl 2016-06-26T02:26:12Z DavidGu_Mobile quit (Client Quit) 2016-06-26T02:27:29Z DavidGu joined #sbcl 2016-06-26T02:28:03Z DavidGu1 joined #sbcl 2016-06-26T02:28:37Z DavidGu1 quit (Client Quit) 2016-06-26T02:29:00Z DavidGu quit (Remote host closed the connection) 2016-06-26T03:39:51Z DavidGu joined #sbcl 2016-06-26T03:40:42Z DavidGu quit (Remote host closed the connection) 2016-06-26T04:58:59Z shka joined #sbcl 2016-06-26T05:29:24Z logrus quit (Quit: Leaving) 2016-06-26T06:28:37Z edgar-rft quit (Quit: edgar-rft) 2016-06-26T06:31:51Z DougNYC quit (Ping timeout: 240 seconds) 2016-06-26T06:36:04Z DavidGu_Desktop joined #sbcl 2016-06-26T06:44:31Z DavidGu_Desktop quit (Ping timeout: 240 seconds) 2016-06-26T07:30:08Z oleo__ quit (Quit: Verlassend) 2016-06-26T07:33:55Z oleo joined #sbcl 2016-06-26T08:16:31Z DavidGu joined #sbcl 2016-06-26T08:49:16Z pchrist joined #sbcl 2016-06-26T09:35:39Z angavrilov joined #sbcl 2016-06-26T09:46:27Z DavidGu quit (Quit: DavidGu) 2016-06-26T12:59:11Z oleo quit (Quit: Verlassend) 2016-06-26T12:59:40Z oleo joined #sbcl 2016-06-26T13:02:32Z oleo quit (Remote host closed the connection) 2016-06-26T13:03:15Z oleo joined #sbcl 2016-06-26T13:03:15Z oleo quit (Changing host) 2016-06-26T13:03:15Z oleo joined #sbcl 2016-06-26T13:42:39Z oleo quit (Quit: Verlassend) 2016-06-26T13:45:53Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-06-26T13:56:54Z eschatologist quit (Read error: Connection reset by peer) 2016-06-26T14:06:49Z oleo joined #sbcl 2016-06-26T14:18:21Z pierpa joined #sbcl 2016-06-26T14:22:58Z pierpa: Hello. Using sbcl on windows with Emacs' inferior-lisp mode. If I load a program either with ctrl-c ctrl-l from emacs, or with (load (compile-file "file" :external-format :utf-8)) from the repl, printing from the program, characters outside ASCII are printed as ?. While if I evaluate individually the function doing the printing, with meta-ctrl-c from emacs, it works as expected. Any hint about how to fix? 2016-06-26T14:35:57Z oleo quit (Remote host closed the connection) 2016-06-26T14:52:52Z oleo joined #sbcl 2016-06-26T14:52:52Z oleo quit (Changing host) 2016-06-26T14:52:52Z oleo joined #sbcl 2016-06-26T15:12:30Z gingerale joined #sbcl 2016-06-26T15:23:39Z oleo quit (Read error: No route to host) 2016-06-26T15:29:22Z scymtym joined #sbcl 2016-06-26T15:45:41Z guicho joined #sbcl 2016-06-26T16:09:04Z stassats joined #sbcl 2016-06-26T16:13:33Z stassats quit (Ping timeout: 240 seconds) 2016-06-26T16:13:58Z stassats joined #sbcl 2016-06-26T16:18:03Z stassats quit (Ping timeout: 240 seconds) 2016-06-26T16:19:31Z stassats joined #sbcl 2016-06-26T16:22:59Z guicho quit (Quit: さようなら) 2016-06-26T16:23:59Z stassats quit (Ping timeout: 244 seconds) 2016-06-26T16:28:01Z stassats joined #sbcl 2016-06-26T16:33:40Z edgar-rft joined #sbcl 2016-06-26T16:42:35Z stassats quit (Quit: ZNC 1.6.2+deb1 - http://znc.in) 2016-06-26T16:58:21Z DougNYC joined #sbcl 2016-06-26T17:02:45Z scymtym quit (Ping timeout: 276 seconds) 2016-06-26T17:50:48Z oleo joined #sbcl 2016-06-26T17:56:21Z eschatologist joined #sbcl 2016-06-26T18:18:06Z DeadTrickster joined #sbcl 2016-06-26T18:19:31Z attila_lendvai joined #sbcl 2016-06-26T18:19:31Z attila_lendvai quit (Changing host) 2016-06-26T18:19:31Z attila_lendvai joined #sbcl 2016-06-26T18:25:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-26T18:25:49Z oleo quit (Remote host closed the connection) 2016-06-26T18:35:08Z pkhuong: sounds like a slime problem. 2016-06-26T18:58:06Z oleo joined #sbcl 2016-06-26T18:59:04Z oleo quit (Remote host closed the connection) 2016-06-26T18:59:15Z pierpa: no, I found out it's due to *standard-output* encoding not being utf-8. And I don't know how to set it to utf-8. The docs have nothing about this. 2016-06-26T18:59:42Z oleo joined #sbcl 2016-06-26T18:59:42Z oleo quit (Changing host) 2016-06-26T18:59:42Z oleo joined #sbcl 2016-06-26T19:06:11Z Xof: you can configure your slime to have particular encodings on the streams 2016-06-26T19:06:38Z pkhuong: https://answers.launchpad.net/sbcl/+question/74497 2016-06-26T19:07:52Z pierpa: Thanks both. Let me do some experiments... 2016-06-26T19:09:16Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-26T19:18:18Z wgslayer joined #sbcl 2016-06-26T19:26:24Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-06-26T19:36:22Z eschatologist joined #sbcl 2016-06-26T19:40:01Z wgslayer quit (Read error: No route to host) 2016-06-26T19:43:37Z wgslayer joined #sbcl 2016-06-26T19:46:58Z wgslayer quit (Read error: Connection reset by peer) 2016-06-26T20:01:08Z scymtym joined #sbcl 2016-06-26T20:26:37Z DeadTrickster joined #sbcl 2016-06-26T20:52:03Z _iwc joined #sbcl 2016-06-26T20:58:20Z wgslayer joined #sbcl 2016-06-26T20:58:42Z shka quit (Ping timeout: 276 seconds) 2016-06-26T20:59:05Z Xof` joined #sbcl 2016-06-26T20:59:16Z Xof quit (Ping timeout: 252 seconds) 2016-06-26T20:59:57Z wgslayer quit (Read error: Connection reset by peer) 2016-06-26T21:12:17Z wgslayer joined #sbcl 2016-06-26T21:21:00Z wgslayer quit (Ping timeout: 272 seconds) 2016-06-26T21:25:16Z attila_lendvai joined #sbcl 2016-06-26T21:25:16Z attila_lendvai quit (Changing host) 2016-06-26T21:25:16Z attila_lendvai joined #sbcl 2016-06-26T21:27:52Z angavrilov quit (Remote host closed the connection) 2016-06-26T22:00:28Z benkard joined #sbcl 2016-06-26T22:06:36Z benkard quit (Ping timeout: 272 seconds) 2016-06-26T22:18:56Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-06-26T22:31:10Z gingerale quit (Remote host closed the connection) 2016-06-26T22:33:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-26T22:37:10Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-26T23:07:58Z abruanese quit (Ping timeout: 252 seconds) 2016-06-26T23:17:10Z abruanese joined #sbcl 2016-06-26T23:31:43Z eschatologist joined #sbcl 2016-06-26T23:46:45Z guicho joined #sbcl 2016-06-26T23:49:21Z benkard joined #sbcl 2016-06-26T23:55:32Z benkard quit (Ping timeout: 272 seconds) 2016-06-27T00:02:01Z benkard joined #sbcl 2016-06-27T00:04:55Z mulk joined #sbcl 2016-06-27T00:06:56Z benkard quit (Ping timeout: 272 seconds) 2016-06-27T00:08:32Z benkard joined #sbcl 2016-06-27T00:10:06Z mulk quit (Ping timeout: 272 seconds) 2016-06-27T00:11:35Z mulk joined #sbcl 2016-06-27T00:13:02Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T00:14:31Z benkard joined #sbcl 2016-06-27T00:16:06Z mulk quit (Ping timeout: 258 seconds) 2016-06-27T00:17:55Z mulk joined #sbcl 2016-06-27T00:19:10Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T00:20:54Z benkard joined #sbcl 2016-06-27T00:22:14Z mulk quit (Ping timeout: 258 seconds) 2016-06-27T00:24:34Z oleo_ joined #sbcl 2016-06-27T00:25:41Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T00:26:47Z benkard joined #sbcl 2016-06-27T00:28:28Z oleo quit (Ping timeout: 272 seconds) 2016-06-27T00:30:21Z mulk joined #sbcl 2016-06-27T00:32:12Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T00:35:16Z mulk quit (Ping timeout: 258 seconds) 2016-06-27T00:36:41Z benkard joined #sbcl 2016-06-27T00:40:47Z mulk joined #sbcl 2016-06-27T00:41:47Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T00:44:07Z benkard joined #sbcl 2016-06-27T00:44:52Z scymtym quit (Ping timeout: 264 seconds) 2016-06-27T00:45:34Z mulk quit (Ping timeout: 272 seconds) 2016-06-27T00:47:17Z mulk joined #sbcl 2016-06-27T00:48:41Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T00:52:32Z mulk quit (Ping timeout: 272 seconds) 2016-06-27T00:53:03Z benkard joined #sbcl 2016-06-27T00:57:04Z mulk joined #sbcl 2016-06-27T00:58:16Z benkard quit (Ping timeout: 258 seconds) 2016-06-27T01:02:06Z mulk quit (Ping timeout: 258 seconds) 2016-06-27T01:45:01Z guicho quit (Quit: さようなら) 2016-06-27T01:57:40Z karswell joined #sbcl 2016-06-27T02:44:52Z karswell quit (Remote host closed the connection) 2016-06-27T02:45:01Z karswell joined #sbcl 2016-06-27T03:24:26Z pierpa quit (Ping timeout: 244 seconds) 2016-06-27T03:41:29Z DavidGu joined #sbcl 2016-06-27T03:50:42Z DavidGu quit (Quit: DavidGu) 2016-06-27T04:01:38Z DavidGu joined #sbcl 2016-06-27T04:19:24Z DavidGu quit (Quit: DavidGu) 2016-06-27T04:55:14Z oleo_ quit (Remote host closed the connection) 2016-06-27T05:02:04Z shka joined #sbcl 2016-06-27T06:19:35Z shka quit (Ping timeout: 244 seconds) 2016-06-27T06:20:02Z edgar-rft quit (Quit: edgar-rft) 2016-06-27T06:40:44Z DeadTrickster joined #sbcl 2016-06-27T07:19:49Z salva0 quit (Quit: Leaving) 2016-06-27T07:20:04Z salva0 joined #sbcl 2016-06-27T07:21:20Z salva0 quit (Client Quit) 2016-06-27T07:21:35Z salva0 joined #sbcl 2016-06-27T07:21:57Z gingerale joined #sbcl 2016-06-27T07:25:03Z Intensity quit (Ping timeout: 240 seconds) 2016-06-27T07:25:11Z wgslayer joined #sbcl 2016-06-27T07:26:40Z DavidGu_Desktop joined #sbcl 2016-06-27T07:32:25Z wgslayer quit (Quit: wgslayer) 2016-06-27T07:32:44Z salva0 quit (Quit: Leaving) 2016-06-27T07:33:14Z salva0 joined #sbcl 2016-06-27T07:37:45Z Intensity joined #sbcl 2016-06-27T07:45:39Z wgslayer joined #sbcl 2016-06-27T08:34:18Z wgslayer quit (Read error: No route to host) 2016-06-27T08:36:38Z wgslayer joined #sbcl 2016-06-27T08:42:10Z edgar-rft joined #sbcl 2016-06-27T08:46:40Z angavrilov joined #sbcl 2016-06-27T08:50:06Z DavidGu_Desktop quit (Quit: DavidGu_Desktop) 2016-06-27T09:05:25Z salva0 quit (Remote host closed the connection) 2016-06-27T09:06:19Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-06-27T09:09:17Z salva0 joined #sbcl 2016-06-27T09:30:16Z wgslayer_ joined #sbcl 2016-06-27T09:30:32Z wgslayer quit (Read error: Connection reset by peer) 2016-06-27T09:30:32Z wgslayer_ is now known as wgslayer 2016-06-27T09:51:16Z scymtym joined #sbcl 2016-06-27T09:58:27Z edgar-rft quit (Quit: edgar-rft) 2016-06-27T10:21:36Z wgslayer quit (Read error: Connection reset by peer) 2016-06-27T10:25:23Z wgslayer joined #sbcl 2016-06-27T10:50:51Z abruanese quit (Ping timeout: 240 seconds) 2016-06-27T10:51:34Z wgslayer_ joined #sbcl 2016-06-27T10:52:18Z wgslayer quit (Ping timeout: 272 seconds) 2016-06-27T10:52:42Z wgslayer_ is now known as wgslayer 2016-06-27T10:53:27Z abruanese joined #sbcl 2016-06-27T11:31:09Z abruanese quit (Ping timeout: 260 seconds) 2016-06-27T11:32:19Z abruanese joined #sbcl 2016-06-27T11:46:18Z wgslayer quit (Ping timeout: 246 seconds) 2016-06-27T12:06:51Z angavrilov quit (Ping timeout: 240 seconds) 2016-06-27T12:13:28Z angavrilov joined #sbcl 2016-06-27T12:31:27Z wgslayer joined #sbcl 2016-06-27T12:45:28Z pierpa joined #sbcl 2016-06-27T13:19:45Z foom quit (Ping timeout: 250 seconds) 2016-06-27T13:31:46Z foom joined #sbcl 2016-06-27T13:33:40Z sjl joined #sbcl 2016-06-27T13:35:22Z eudoxia joined #sbcl 2016-06-27T13:37:15Z DavidGu joined #sbcl 2016-06-27T13:41:29Z nzambe joined #sbcl 2016-06-27T13:45:39Z salva0 quit (Remote host closed the connection) 2016-06-27T13:57:04Z salva0 joined #sbcl 2016-06-27T14:02:51Z wgslayer quit (Read error: Connection reset by peer) 2016-06-27T14:05:37Z wgslayer joined #sbcl 2016-06-27T14:13:05Z DavidGu_Desktop joined #sbcl 2016-06-27T14:15:58Z DavidGu_Desktop quit (Client Quit) 2016-06-27T14:16:45Z DavidGu quit (Quit: DavidGu) 2016-06-27T14:38:38Z DeadTrickster joined #sbcl 2016-06-27T14:41:50Z specbot quit (Remote host closed the connection) 2016-06-27T14:41:58Z specbot joined #sbcl 2016-06-27T14:43:48Z oleo joined #sbcl 2016-06-27T14:56:06Z wgslayer quit (Ping timeout: 244 seconds) 2016-06-27T14:56:54Z eudoxia quit (Quit: Leaving) 2016-06-27T14:59:40Z wgslayer joined #sbcl 2016-06-27T15:20:03Z wgslayer quit (Read error: Connection reset by peer) 2016-06-27T15:22:15Z wgslayer joined #sbcl 2016-06-27T15:24:18Z brfennpocock joined #sbcl 2016-06-27T15:58:45Z oleo quit (Quit: Verlassend) 2016-06-27T16:17:25Z oleo joined #sbcl 2016-06-27T16:23:37Z guicho joined #sbcl 2016-06-27T16:24:06Z DavidGu joined #sbcl 2016-06-27T16:33:21Z guicho quit (Quit: さようなら) 2016-06-27T16:33:21Z DavidGu quit (Quit: DavidGu) 2016-06-27T16:37:47Z shka joined #sbcl 2016-06-27T16:42:28Z wgslayer quit (Ping timeout: 264 seconds) 2016-06-27T16:44:56Z wgslayer joined #sbcl 2016-06-27T17:19:13Z logrus joined #sbcl 2016-06-27T17:26:48Z shka quit (Remote host closed the connection) 2016-06-27T17:35:00Z wgslayer quit (Ping timeout: 276 seconds) 2016-06-27T17:37:14Z sjl quit (Ping timeout: 258 seconds) 2016-06-27T17:37:39Z wgslayer joined #sbcl 2016-06-27T17:42:48Z shka joined #sbcl 2016-06-27T17:47:46Z edgar-rft joined #sbcl 2016-06-27T18:24:00Z wgslayer quit (Quit: wgslayer) 2016-06-27T18:24:39Z wgslayer joined #sbcl 2016-06-27T18:56:48Z scymtym quit (Ping timeout: 272 seconds) 2016-06-27T18:57:08Z wgslayer quit (Quit: wgslayer) 2016-06-27T18:57:35Z wgslayer joined #sbcl 2016-06-27T18:58:46Z wgslayer quit (Client Quit) 2016-06-27T19:11:43Z wgslayer joined #sbcl 2016-06-27T19:29:17Z karswell quit (Remote host closed the connection) 2016-06-27T19:29:33Z karswell joined #sbcl 2016-06-27T19:37:51Z abruanese quit (Ping timeout: 276 seconds) 2016-06-27T19:57:33Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-27T20:05:23Z aeth quit (Read error: Connection reset by peer) 2016-06-27T20:06:01Z aeth joined #sbcl 2016-06-27T20:23:35Z eschatologist joined #sbcl 2016-06-27T20:42:54Z scymtym joined #sbcl 2016-06-27T20:53:40Z wgslayer quit (Quit: wgslayer) 2016-06-27T20:58:14Z gingerale quit (Remote host closed the connection) 2016-06-27T21:13:29Z flavioc joined #sbcl 2016-06-27T21:22:33Z logrus quit (Quit: Leaving) 2016-06-27T21:29:58Z shka quit (Ping timeout: 244 seconds) 2016-06-27T21:35:32Z Puercopop quit (Quit: ZNC - http://znc.in) 2016-06-27T21:55:51Z foom quit (Ping timeout: 250 seconds) 2016-06-27T22:08:29Z foom joined #sbcl 2016-06-27T22:10:33Z angavrilov quit (Remote host closed the connection) 2016-06-27T22:31:23Z trinque quit (Read error: Connection reset by peer) 2016-06-27T22:32:03Z trinque joined #sbcl 2016-06-27T22:47:55Z trinque quit (Read error: Connection reset by peer) 2016-06-27T23:06:33Z foom quit (Ping timeout: 240 seconds) 2016-06-27T23:31:55Z brfennpocock quit (Read error: Connection reset by peer) 2016-06-27T23:34:15Z brfennpocock joined #sbcl 2016-06-27T23:45:41Z flavioc quit (Ping timeout: 244 seconds) 2016-06-27T23:55:44Z trinque joined #sbcl 2016-06-28T00:22:31Z oleo quit (Read error: Connection reset by peer) 2016-06-28T00:22:41Z oleo joined #sbcl 2016-06-28T00:31:55Z brfennpocock quit (Read error: Connection reset by peer) 2016-06-28T00:52:31Z scymtym quit (Ping timeout: 240 seconds) 2016-06-28T01:10:35Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-06-28T01:40:25Z DavidGu joined #sbcl 2016-06-28T01:43:06Z foom joined #sbcl 2016-06-28T02:31:27Z pierpa quit (Ping timeout: 246 seconds) 2016-06-28T02:38:30Z guicho joined #sbcl 2016-06-28T03:00:55Z DavidGu quit (Quit: DavidGu) 2016-06-28T03:13:02Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-28T03:22:00Z DavidGu joined #sbcl 2016-06-28T03:34:36Z eschatologist joined #sbcl 2016-06-28T03:34:51Z foom quit (Ping timeout: 240 seconds) 2016-06-28T03:40:03Z DavidGu quit (Quit: DavidGu) 2016-06-28T03:59:07Z shka joined #sbcl 2016-06-28T04:30:32Z loke quit (Ping timeout: 244 seconds) 2016-06-28T04:32:35Z DougNYC quit (Remote host closed the connection) 2016-06-28T04:33:34Z DougNYC joined #sbcl 2016-06-28T04:34:27Z DougNYC quit (Remote host closed the connection) 2016-06-28T04:43:01Z loke joined #sbcl 2016-06-28T04:56:33Z oleo quit (Quit: Verlassend) 2016-06-28T06:03:33Z gingerale joined #sbcl 2016-06-28T06:05:37Z wgslayer joined #sbcl 2016-06-28T06:21:43Z DougNYC joined #sbcl 2016-06-28T06:26:15Z foom joined #sbcl 2016-06-28T06:27:10Z shka quit (Ping timeout: 250 seconds) 2016-06-28T06:27:12Z DougNYC quit (Ping timeout: 276 seconds) 2016-06-28T06:51:48Z gingerale quit (Remote host closed the connection) 2016-06-28T07:22:11Z wgslayer quit (Ping timeout: 240 seconds) 2016-06-28T07:23:04Z wgslayer joined #sbcl 2016-06-28T07:24:50Z wgslayer quit (Client Quit) 2016-06-28T07:31:46Z scymtym joined #sbcl 2016-06-28T07:33:27Z DavidGu_Desktop joined #sbcl 2016-06-28T07:43:14Z DeadTrickster joined #sbcl 2016-06-28T08:09:47Z DavidGu_Desktop quit (Quit: DavidGu_Desktop) 2016-06-28T08:10:06Z wgslayer joined #sbcl 2016-06-28T08:10:23Z DougNYC joined #sbcl 2016-06-28T08:14:46Z DougNYC quit (Ping timeout: 244 seconds) 2016-06-28T08:23:48Z angavrilov joined #sbcl 2016-06-28T08:53:17Z guicho quit (Quit: さようなら) 2016-06-28T09:11:00Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-06-28T09:14:26Z tshirts4crime joined #sbcl 2016-06-28T09:18:37Z foom quit (Ping timeout: 260 seconds) 2016-06-28T10:34:36Z wgslayer quit (Read error: Connection reset by peer) 2016-06-28T10:46:21Z tshirts4crime quit (Remote host closed the connection) 2016-06-28T10:48:59Z DeadTrickster joined #sbcl 2016-06-28T11:26:04Z foom joined #sbcl 2016-06-28T11:46:25Z DougNYC joined #sbcl 2016-06-28T11:51:36Z DougNYC quit (Ping timeout: 244 seconds) 2016-06-28T11:55:07Z foom quit (Ping timeout: 252 seconds) 2016-06-28T12:19:25Z guicho joined #sbcl 2016-06-28T12:27:54Z dmiles joined #sbcl 2016-06-28T13:11:33Z wgslayer joined #sbcl 2016-06-28T13:29:38Z DavidGu joined #sbcl 2016-06-28T13:35:20Z DougNYC joined #sbcl 2016-06-28T13:39:36Z DougNYC quit (Ping timeout: 246 seconds) 2016-06-28T13:41:42Z oleo joined #sbcl 2016-06-28T13:42:23Z DavidGu quit (Quit: DavidGu) 2016-06-28T13:46:04Z eudoxia joined #sbcl 2016-06-28T13:48:34Z DavidGu joined #sbcl 2016-06-28T13:49:35Z brfennpocock joined #sbcl 2016-06-28T13:51:09Z foom joined #sbcl 2016-06-28T13:51:36Z DavidGu quit (Client Quit) 2016-06-28T14:11:03Z DavidGu joined #sbcl 2016-06-28T14:15:22Z pierpa joined #sbcl 2016-06-28T14:32:11Z stassats joined #sbcl 2016-06-28T14:48:03Z DavidGu quit (Quit: DavidGu) 2016-06-28T14:49:45Z DavidGu joined #sbcl 2016-06-28T14:51:24Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-28T14:58:03Z stassats quit (Ping timeout: 240 seconds) 2016-06-28T15:07:00Z stassats joined #sbcl 2016-06-28T15:08:03Z wgslayer quit (Ping timeout: 240 seconds) 2016-06-28T15:08:08Z DavidGu quit (Read error: Connection reset by peer) 2016-06-28T15:18:56Z stassats quit (Ping timeout: 244 seconds) 2016-06-28T15:23:11Z DougNYC joined #sbcl 2016-06-28T15:29:32Z DavidGu joined #sbcl 2016-06-28T15:36:18Z stassats joined #sbcl 2016-06-28T15:44:42Z nzambe joined #sbcl 2016-06-28T15:47:47Z DavidGu quit (Quit: DavidGu) 2016-06-28T15:49:40Z stassats quit (Ping timeout: 264 seconds) 2016-06-28T16:00:25Z DougNYC quit (Ping timeout: 252 seconds) 2016-06-28T16:22:08Z SamSkulls joined #sbcl 2016-06-28T16:26:11Z eudoxia quit (Quit: Leaving) 2016-06-28T16:30:01Z attila_lendvai joined #sbcl 2016-06-28T16:35:46Z scymtym quit (Ping timeout: 272 seconds) 2016-06-28T16:36:01Z momo-reina joined #sbcl 2016-06-28T16:36:14Z momo-reina quit (Remote host closed the connection) 2016-06-28T16:38:46Z momo-reina joined #sbcl 2016-06-28T16:39:15Z momo-reina quit (Read error: Connection reset by peer) 2016-06-28T16:41:58Z gingerale joined #sbcl 2016-06-28T16:47:52Z karswell quit (Ping timeout: 264 seconds) 2016-06-28T16:51:50Z karswell joined #sbcl 2016-06-28T16:57:11Z karswell quit (Ping timeout: 240 seconds) 2016-06-28T16:57:25Z fiddlerwoaroof quit (Quit: Gone.) 2016-06-28T17:00:59Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-28T17:06:47Z scymtym joined #sbcl 2016-06-28T17:26:53Z DavidGu joined #sbcl 2016-06-28T17:28:22Z guicho quit (Quit: さようなら) 2016-06-28T17:33:27Z shka joined #sbcl 2016-06-28T18:09:58Z brfennpocock quit (Read error: Connection reset by peer) 2016-06-28T18:11:54Z karswell joined #sbcl 2016-06-28T18:14:06Z DavidGu quit (Quit: DavidGu) 2016-06-28T18:17:30Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-28T18:24:51Z DavidGu joined #sbcl 2016-06-28T18:42:07Z dmiles quit (Ping timeout: 260 seconds) 2016-06-28T18:44:52Z DavidGu quit (Quit: DavidGu) 2016-06-28T18:51:34Z eschatologist joined #sbcl 2016-06-28T19:02:44Z DougNYC joined #sbcl 2016-06-28T19:08:16Z DougNYC quit (Ping timeout: 264 seconds) 2016-06-28T19:39:47Z flavioc joined #sbcl 2016-06-28T19:49:38Z logrus joined #sbcl 2016-06-28T19:52:22Z attila_lendvai joined #sbcl 2016-06-28T19:58:19Z gingerale quit (Remote host closed the connection) 2016-06-28T20:05:02Z brfennpocock joined #sbcl 2016-06-28T20:51:24Z DougNYC joined #sbcl 2016-06-28T20:55:48Z DougNYC quit (Ping timeout: 244 seconds) 2016-06-28T20:56:04Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-28T21:02:55Z logrus quit (Quit: Leaving) 2016-06-28T21:03:00Z brfennpocock quit (Read error: Connection reset by peer) 2016-06-28T21:10:04Z shka quit (Ping timeout: 252 seconds) 2016-06-28T21:10:47Z angavrilov quit (Remote host closed the connection) 2016-06-28T21:38:56Z brfennpocock joined #sbcl 2016-06-28T21:54:43Z brfennpocock quit (Read error: Connection reset by peer) 2016-06-28T21:56:19Z brfennpocock joined #sbcl 2016-06-28T22:39:21Z DougNYC joined #sbcl 2016-06-28T22:44:22Z DougNYC quit (Ping timeout: 272 seconds) 2016-06-28T22:57:48Z scymtym quit (Ping timeout: 276 seconds) 2016-06-28T23:27:15Z flavioc quit (Ping timeout: 246 seconds) 2016-06-28T23:35:54Z brfennpocock quit (Ping timeout: 260 seconds) 2016-06-29T00:11:54Z pierpa quit (Ping timeout: 276 seconds) 2016-06-29T00:13:27Z aeth quit (Ping timeout: 246 seconds) 2016-06-29T00:20:38Z oleo_ joined #sbcl 2016-06-29T00:21:56Z abruanese joined #sbcl 2016-06-29T00:24:19Z oleo quit (Ping timeout: 260 seconds) 2016-06-29T00:27:21Z DougNYC joined #sbcl 2016-06-29T00:57:58Z guicho joined #sbcl 2016-06-29T01:37:37Z guicho quit (Quit: さようなら) 2016-06-29T02:48:13Z karswell quit (Remote host closed the connection) 2016-06-29T02:48:23Z karswell joined #sbcl 2016-06-29T03:14:03Z irsol quit (Ping timeout: 240 seconds) 2016-06-29T03:15:22Z irsol joined #sbcl 2016-06-29T03:23:52Z DavidGu joined #sbcl 2016-06-29T03:25:13Z irsol quit (Ping timeout: 244 seconds) 2016-06-29T03:38:22Z irsol joined #sbcl 2016-06-29T03:44:50Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-29T03:59:19Z shka joined #sbcl 2016-06-29T04:02:26Z DavidGu quit (Quit: DavidGu) 2016-06-29T04:09:43Z eschatologist joined #sbcl 2016-06-29T04:29:28Z edgar-rft quit (Quit: edgar-rft) 2016-06-29T04:38:58Z aeth joined #sbcl 2016-06-29T05:07:44Z DavidGu joined #sbcl 2016-06-29T05:07:48Z DavidGu quit (Client Quit) 2016-06-29T05:11:13Z oleo_ quit (Quit: Verlassend) 2016-06-29T05:16:42Z DavidGu joined #sbcl 2016-06-29T05:17:02Z karswell quit (Ping timeout: 272 seconds) 2016-06-29T05:17:07Z DavidGu quit (Client Quit) 2016-06-29T05:51:21Z DavidGu joined #sbcl 2016-06-29T06:04:17Z DavidGu quit (Quit: DavidGu) 2016-06-29T06:05:41Z shka quit (Ping timeout: 258 seconds) 2016-06-29T06:32:25Z SamSkulls quit (Remote host closed the connection) 2016-06-29T06:36:48Z DavidGu_Desktop joined #sbcl 2016-06-29T06:51:03Z leo_song quit (Ping timeout: 240 seconds) 2016-06-29T06:52:54Z leo_song joined #sbcl 2016-06-29T06:55:15Z DavidGu_Desktop quit (Quit: DavidGu_Desktop) 2016-06-29T06:56:11Z DavidGu joined #sbcl 2016-06-29T06:56:38Z DavidGu quit (Client Quit) 2016-06-29T06:58:16Z DavidGu joined #sbcl 2016-06-29T06:59:11Z attila_lendvai joined #sbcl 2016-06-29T06:59:11Z attila_lendvai quit (Changing host) 2016-06-29T06:59:11Z attila_lendvai joined #sbcl 2016-06-29T07:06:49Z angavrilov joined #sbcl 2016-06-29T07:32:29Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-29T07:34:02Z scymtym joined #sbcl 2016-06-29T07:39:00Z attila_lendvai joined #sbcl 2016-06-29T07:42:08Z attila_lendvai quit (Disconnected by services) 2016-06-29T07:42:08Z attila_lendvai1 joined #sbcl 2016-06-29T07:42:32Z attila_lendvai1 is now known as Guest58393 2016-06-29T07:46:00Z Guest58393 is now known as attila_lendvai 2016-06-29T07:46:00Z attila_lendvai quit (Changing host) 2016-06-29T07:46:00Z attila_lendvai joined #sbcl 2016-06-29T07:48:21Z irsol quit (Ping timeout: 244 seconds) 2016-06-29T07:54:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-29T07:56:26Z irsol joined #sbcl 2016-06-29T08:28:39Z salva0 quit (Ping timeout: 244 seconds) 2016-06-29T08:32:55Z edgar-rft joined #sbcl 2016-06-29T08:36:05Z attila_lendvai joined #sbcl 2016-06-29T08:36:05Z attila_lendvai quit (Changing host) 2016-06-29T08:36:05Z attila_lendvai joined #sbcl 2016-06-29T08:37:18Z salva0 joined #sbcl 2016-06-29T08:59:50Z edgar-rft quit (Quit: edgar-rft) 2016-06-29T10:46:42Z abruanese quit (Quit: ZNC 1.6.3+deb1 - http://znc.in) 2016-06-29T12:04:28Z DavidGu quit (Quit: DavidGu) 2016-06-29T12:06:22Z edgar-rft joined #sbcl 2016-06-29T12:41:23Z DavidGu joined #sbcl 2016-06-29T12:43:59Z DavidGu quit (Remote host closed the connection) 2016-06-29T13:40:02Z pierpa joined #sbcl 2016-06-29T13:46:18Z eudoxia joined #sbcl 2016-06-29T13:47:12Z DavidGu joined #sbcl 2016-06-29T13:51:49Z DavidGu quit (Client Quit) 2016-06-29T13:54:15Z oleo joined #sbcl 2016-06-29T13:57:53Z eudoxia quit (Quit: Leaving) 2016-06-29T14:09:27Z scymtym quit (Ping timeout: 258 seconds) 2016-06-29T14:29:48Z DavidGu joined #sbcl 2016-06-29T14:41:28Z DeadTrickster_ joined #sbcl 2016-06-29T14:45:30Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-06-29T14:47:52Z DavidGu quit (Quit: DavidGu) 2016-06-29T14:52:59Z ferada: since this is specific to sbcl: i'm trying to get ltrace to debug calls to gtk (via cl-cffi-gtk from sbcl), however that fails spectacularly - is there a different tool that would work instead, or what's a good way to deal with this? 2016-06-29T15:01:37Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-29T15:03:13Z nzambe joined #sbcl 2016-06-29T15:08:00Z reb: ferada: How does ltrace fail? 2016-06-29T15:12:59Z JamesRichardson is now known as jmr 2016-06-29T15:13:39Z ferada: i can post a detailed trace later, but basically sbcl spits out a couple of memory corruption warnings; ltrace didn't produce any useful output in the meantime; on my vps sbcl actually justs dies with sigsegv 2016-06-29T15:13:53Z jmr is now known as j-r 2016-06-29T15:14:11Z j-r is now known as jmr 2016-06-29T15:14:41Z jmr is now known as james-richardson 2016-06-29T15:17:23Z james-richardson is now known as jmr 2016-06-29T15:18:55Z jmr is now known as JamesRichardson 2016-06-29T15:39:32Z gingerale joined #sbcl 2016-06-29T15:39:44Z edgar-rft quit (Quit: edgar-rft) 2016-06-29T15:43:21Z reb: ferada: Signal handling is a likely source of problems. SBCL uses signals to coordinate garbage collection and the manual page for ltrace indicates that it uses signals as well. 2016-06-29T15:44:49Z reb: The gdb init file I use when running SBCL from that debugger contains the following for signals: 2016-06-29T15:44:54Z reb: handle SIGSEGV noprint nostop 2016-06-29T15:44:57Z reb: handle SIGTRAP nostop pass 2016-06-29T15:45:00Z reb: handle SIG35 nostop 2016-06-29T15:45:03Z reb: handle SIGUSR1 nostop 2016-06-29T15:47:55Z reb: Also, take a look at the base-target-features.lisp-expr in the top level of SBCL's source code. There's some ability to change what signals are used on x86 hardware. 2016-06-29T15:50:20Z reb: In the end, however, you may find that ltrace and SBCL are fundamentally incompatible ... in which case use a different Lisp implementation to get the trace. 2016-06-29T15:50:38Z ferada: reb: cool i'll look at that. yeah the thing is that at the moment i need a high-level overview, so doing this via gdb was incredibly slow to the point that i had to detach to get the program running again 2016-06-29T15:50:39Z flip214: systemtap works fine ;) 2016-06-29T15:51:00Z flip214: in case that's any help 2016-06-29T15:51:01Z SamSkulls joined #sbcl 2016-06-29T15:51:21Z reb: Alternatively, use Lisp's trace function on the cffi wrappers .... 2016-06-29T15:51:25Z flip214: and there's an ptrace wrapper, cl-linux-debug 2016-06-29T15:51:33Z flip214: perhaps that's easier to script 2016-06-29T15:52:45Z ferada: flip214: can systemtap trace library function calls? 2016-06-29T15:53:15Z ferada: so far the best thing i tried was LD_PRELOADing some logging wrappers, but that's obviously very cumbersome 2016-06-29T15:53:18Z flip214: ferada: you can set arbitrary breakpoints, userspace, kernel, wherever you like. 2016-06-29T15:53:29Z flip214: it will even get the locals vars via debug info 2016-06-29T15:53:35Z ferada: right, i'll try that then 2016-06-29T15:53:42Z flip214: I think it's quite nice 2016-06-29T15:53:55Z ferada: and the features thing that reb mentioned 2016-06-29T15:53:57Z ferada: cheers 2016-06-29T16:03:22Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-29T16:19:34Z fiddlerwoaroof joined #sbcl 2016-06-29T16:28:55Z DavidGu joined #sbcl 2016-06-29T16:29:10Z DavidGu quit (Client Quit) 2016-06-29T16:45:47Z scymtym joined #sbcl 2016-06-29T17:22:47Z nzambe joined #sbcl 2016-06-29T17:48:20Z edgar-rft joined #sbcl 2016-06-29T18:26:43Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-29T18:26:55Z eschatologist joined #sbcl 2016-06-29T18:28:54Z fiveop joined #sbcl 2016-06-29T18:31:43Z eschatologist quit (Client Quit) 2016-06-29T18:43:25Z DougNYC quit 2016-06-29T18:56:23Z shka joined #sbcl 2016-06-29T19:06:13Z eschatologist joined #sbcl 2016-06-29T19:17:44Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-29T19:32:06Z fiveop quit 2016-06-29T19:37:00Z DeadTrickster joined #sbcl 2016-06-29T19:39:53Z DeadTrickster_ quit (Ping timeout: 258 seconds) 2016-06-29T19:49:10Z pierpa` joined #sbcl 2016-06-29T19:51:48Z DeadTrickster_ joined #sbcl 2016-06-29T19:52:12Z pierpa quit (Ping timeout: 244 seconds) 2016-06-29T19:54:15Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-29T19:55:17Z gingerale quit (Remote host closed the connection) 2016-06-29T20:03:45Z flavioc joined #sbcl 2016-06-29T20:10:14Z shka quit (Read error: Connection reset by peer) 2016-06-29T20:10:28Z shka joined #sbcl 2016-06-29T21:00:14Z angavrilov quit (Remote host closed the connection) 2016-06-29T21:04:33Z shka quit (Ping timeout: 244 seconds) 2016-06-29T21:07:47Z eschatologist joined #sbcl 2016-06-29T22:04:28Z SamSkulls quit (Ping timeout: 244 seconds) 2016-06-29T22:14:49Z pierpa` is now known as pierpa 2016-06-29T22:18:56Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-06-29T22:19:19Z eudoxia joined #sbcl 2016-06-29T22:29:12Z eschatologist joined #sbcl 2016-06-29T22:40:08Z eudoxia quit (Ping timeout: 272 seconds) 2016-06-29T22:45:19Z eudoxia joined #sbcl 2016-06-29T23:08:54Z scymtym quit (Ping timeout: 244 seconds) 2016-06-29T23:20:23Z karswell joined #sbcl 2016-06-29T23:28:42Z DeadTrickster_ quit (Ping timeout: 244 seconds) 2016-06-30T00:04:15Z DeadTrickster quit (Ping timeout: 246 seconds) 2016-06-30T00:15:34Z flavioc quit (Ping timeout: 240 seconds) 2016-06-30T00:18:44Z oleo_ joined #sbcl 2016-06-30T00:18:44Z oleo_ quit (Changing host) 2016-06-30T00:18:44Z oleo_ joined #sbcl 2016-06-30T00:22:42Z oleo quit (Ping timeout: 276 seconds) 2016-06-30T00:42:32Z guicho joined #sbcl 2016-06-30T01:01:04Z guicho quit (Quit: さようなら) 2016-06-30T01:31:31Z eudoxia quit (Ping timeout: 250 seconds) 2016-06-30T01:50:26Z karswell quit (Read error: Connection reset by peer) 2016-06-30T02:00:03Z karswell joined #sbcl 2016-06-30T02:27:14Z DavidGu joined #sbcl 2016-06-30T02:34:31Z karswell quit (Read error: Connection reset by peer) 2016-06-30T02:34:48Z karswell joined #sbcl 2016-06-30T03:13:57Z PuercoPop joined #sbcl 2016-06-30T03:14:30Z DavidGu1 joined #sbcl 2016-06-30T03:16:31Z DavidGu quit (Ping timeout: 240 seconds) 2016-06-30T03:16:31Z DavidGu1 is now known as DavidGu 2016-06-30T03:21:48Z pierpa quit (Ping timeout: 258 seconds) 2016-06-30T03:35:01Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-30T03:41:39Z DavidGu quit (Quit: DavidGu) 2016-06-30T04:00:05Z eschatologist joined #sbcl 2016-06-30T04:06:51Z DavidGu joined #sbcl 2016-06-30T04:18:08Z DavidGu quit (Quit: DavidGu) 2016-06-30T04:25:27Z karswell` joined #sbcl 2016-06-30T04:26:15Z karswell quit (Remote host closed the connection) 2016-06-30T04:40:31Z oleo_ quit (Quit: Verlassend) 2016-06-30T04:41:28Z karswell` quit (Remote host closed the connection) 2016-06-30T04:41:42Z karswell` joined #sbcl 2016-06-30T05:00:33Z shka joined #sbcl 2016-06-30T05:25:52Z DavidGu joined #sbcl 2016-06-30T06:04:20Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-30T06:04:56Z nzambe joined #sbcl 2016-06-30T06:17:53Z shka quit (Ping timeout: 244 seconds) 2016-06-30T07:04:16Z DavidGu quit (Ping timeout: 272 seconds) 2016-06-30T07:09:40Z DavidGu joined #sbcl 2016-06-30T07:18:10Z attila_lendvai joined #sbcl 2016-06-30T07:18:10Z attila_lendvai quit (Changing host) 2016-06-30T07:18:10Z attila_lendvai joined #sbcl 2016-06-30T07:36:02Z scymtym joined #sbcl 2016-06-30T07:37:21Z gingerale joined #sbcl 2016-06-30T07:43:49Z angavrilov joined #sbcl 2016-06-30T08:25:47Z gingerale quit (Remote host closed the connection) 2016-06-30T08:57:26Z DGASAU quit (Ping timeout: 244 seconds) 2016-06-30T08:59:04Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-30T08:59:30Z DGASAU joined #sbcl 2016-06-30T09:00:25Z leo_song_ joined #sbcl 2016-06-30T09:08:16Z edgar-rft quit (*.net *.split) 2016-06-30T09:08:17Z leo_song quit (*.net *.split) 2016-06-30T09:08:35Z edgar-rft joined #sbcl 2016-06-30T10:15:29Z DeadTrickster joined #sbcl 2016-06-30T10:24:07Z abruanese joined #sbcl 2016-06-30T10:28:45Z leo_song_ quit (Quit: ZNC quit) 2016-06-30T10:29:11Z leo_song joined #sbcl 2016-06-30T10:41:23Z specbot quit (Disconnected by services) 2016-06-30T10:41:26Z specbot joined #sbcl 2016-06-30T10:43:00Z jsnell_ quit (Ping timeout: 246 seconds) 2016-06-30T10:43:21Z _iwc quit (Ping timeout: 246 seconds) 2016-06-30T10:45:29Z minion quit (Read error: Connection reset by peer) 2016-06-30T10:45:40Z minion joined #sbcl 2016-06-30T10:50:22Z jsnell joined #sbcl 2016-06-30T10:57:09Z _iwc joined #sbcl 2016-06-30T11:18:33Z edgar-rft quit (Quit: edgar-rft) 2016-06-30T12:03:49Z guicho joined #sbcl 2016-06-30T12:04:00Z attila_lendvai joined #sbcl 2016-06-30T12:04:00Z attila_lendvai quit (Changing host) 2016-06-30T12:04:00Z attila_lendvai joined #sbcl 2016-06-30T12:06:44Z guicho quit (Client Quit) 2016-06-30T12:37:35Z edgar-rft joined #sbcl 2016-06-30T12:51:44Z edgar-rft quit (Quit: edgar-rft) 2016-06-30T13:02:16Z scymtym_ joined #sbcl 2016-06-30T13:04:05Z scymtym quit (Ping timeout: 258 seconds) 2016-06-30T13:09:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-30T13:12:43Z attila_lendvai joined #sbcl 2016-06-30T13:12:43Z attila_lendvai quit (Changing host) 2016-06-30T13:12:43Z attila_lendvai joined #sbcl 2016-06-30T13:26:14Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-30T13:36:06Z pierpa joined #sbcl 2016-06-30T13:40:57Z oleo joined #sbcl 2016-06-30T14:19:22Z DavidGu quit (Ping timeout: 272 seconds) 2016-06-30T14:28:04Z karswell` quit (Ping timeout: 240 seconds) 2016-06-30T14:30:19Z eudoxia joined #sbcl 2016-06-30T14:34:11Z eudoxia quit (Client Quit) 2016-06-30T14:36:51Z DavidGu joined #sbcl 2016-06-30T14:42:24Z scymtym_ quit (Ping timeout: 246 seconds) 2016-06-30T15:22:11Z DavidGu quit (Quit: DavidGu) 2016-06-30T15:36:00Z irsol quit (Ping timeout: 272 seconds) 2016-06-30T15:39:36Z irsol joined #sbcl 2016-06-30T15:44:50Z Xof`: it's a bit of a shame it's not early April 2016-06-30T15:45:04Z Xof`: I would announce sbcl-1.3.7, now with 100% less Europe 2016-06-30T16:03:15Z pchrist quit (Quit: leaving) 2016-06-30T16:05:05Z karswell` joined #sbcl 2016-06-30T16:08:52Z flip214: Xof`: which part of UK? 2016-06-30T16:09:44Z brfennpocock joined #sbcl 2016-06-30T16:09:50Z Xof`: at the moment, England. By tomorrow morning, who knows, London might have declared independence 2016-06-30T16:11:22Z flip214: yeah, like Scotland plans to... 2016-06-30T16:11:54Z flip214: "North Ireland" was the conflict 30 years ago... now upcoming: "North England" ;) 2016-06-30T16:14:33Z Xof`: depressingly, it is fairly likely that Northern Ireland will be another conflict if we invoke Article 50 2016-06-30T16:15:57Z flip214: What's Article 50? Only explain if it's easy for you, else I'll google 2016-06-30T16:16:22Z flip214: ah, got it. "Any Member State may decide to withdraw from the Union in accordance with its own constitutional requirements" 2016-06-30T16:18:20Z foom: Don't forget Gibraltar. 2016-06-30T16:18:49Z trinque: and the falkland islands, very important 2016-06-30T16:19:20Z Xof`: please stop laughing at us 2016-06-30T16:22:49Z flip214: well, these islands have already been the reason for another armed conflict, IIRC 2016-06-30T16:24:30Z flip214: Xof`: I'm sorry. But if you play that correctly that could be the best comedy since Monty Python! ;P 2016-06-30T16:25:11Z flip214: And I always thought *our* politician will be the first to make comedians redundant... 2016-06-30T16:26:11Z brfennpocock: Here in the USA: Where the most reliable journalism comes from a network called Comedy Central, and the must ironic humor from one called Fox “News”? 2016-06-30T16:37:18Z DavidGu joined #sbcl 2016-06-30T16:37:35Z shka joined #sbcl 2016-06-30T16:49:35Z pchrist joined #sbcl 2016-06-30T16:54:05Z logrus joined #sbcl 2016-06-30T17:00:04Z logrus quit (Quit: Leaving) 2016-06-30T17:21:22Z dougk_ quit (Ping timeout: 250 seconds) 2016-06-30T17:30:00Z DGASAU quit (Read error: Connection reset by peer) 2016-06-30T17:32:03Z DGASAU joined #sbcl 2016-06-30T17:33:17Z dougk_ joined #sbcl 2016-06-30T17:50:30Z DavidGu quit (Quit: DavidGu) 2016-06-30T18:01:10Z gingerale joined #sbcl 2016-06-30T18:13:50Z shka_ joined #sbcl 2016-06-30T18:13:56Z shka quit (Read error: Connection reset by peer) 2016-06-30T18:27:41Z eschatologist quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-30T18:27:53Z karswell` quit (Remote host closed the connection) 2016-06-30T18:28:07Z karswell` joined #sbcl 2016-06-30T19:13:13Z scymtym joined #sbcl 2016-06-30T19:16:17Z eschatologist joined #sbcl 2016-06-30T20:21:54Z edgar-rft joined #sbcl 2016-06-30T20:39:02Z scymtym: i would like to turn the test code at the end of src/code/pred.lisp into a proper test and remove the sb-test feature (which has no uses besides that one instance). any objections? 2016-06-30T20:59:02Z pkhuong: doesn't the test code live where it does because if we get pred.lisp wrong, we'll have interesting failures before we're able to run the test suite? 2016-06-30T21:09:28Z scymtym: that sounds plausible. maybe i should add a comment explaining that intention instead of moving the code 2016-06-30T21:12:06Z brfennpocock quit (Read error: Connection reset by peer) 2016-06-30T21:16:20Z gingerale quit (Read error: Connection reset by peer) 2016-06-30T21:25:57Z shka_ quit (Ping timeout: 260 seconds) 2016-06-30T21:27:51Z flavioc joined #sbcl 2016-06-30T21:30:41Z brfennpocock joined #sbcl 2016-06-30T21:38:52Z DeadTrickster quit (Ping timeout: 264 seconds) 2016-06-30T21:39:39Z logrus joined #sbcl 2016-06-30T21:45:37Z brfennpocock quit (*.net *.split) 2016-06-30T21:45:38Z oleo quit (*.net *.split) 2016-06-30T21:45:38Z trinque quit (*.net *.split) 2016-06-30T21:45:40Z Posterdati quit (*.net *.split) 2016-06-30T21:45:40Z Cthulhux quit (*.net *.split) 2016-06-30T21:45:40Z mood quit (*.net *.split) 2016-06-30T21:52:42Z karswell` quit (Read error: Connection reset by peer) 2016-06-30T21:53:29Z karswell` joined #sbcl 2016-06-30T21:55:11Z karswell` quit (Read error: Connection reset by peer) 2016-06-30T21:55:39Z karswell` joined #sbcl 2016-06-30T21:58:57Z karswell` quit (Remote host closed the connection) 2016-06-30T21:59:10Z karswell` joined #sbcl 2016-06-30T22:25:47Z trinque joined #sbcl 2016-06-30T22:41:31Z karswell` quit (Ping timeout: 240 seconds) 2016-06-30T23:01:15Z eschatol_ joined #sbcl 2016-06-30T23:01:35Z eschatol_ quit (Client Quit) 2016-06-30T23:01:50Z eschatol_ joined #sbcl 2016-06-30T23:03:42Z eschatologist quit (Ping timeout: 250 seconds) 2016-06-30T23:04:33Z angavrilov quit (Remote host closed the connection) 2016-06-30T23:21:26Z karswell` joined #sbcl 2016-06-30T23:29:18Z eschatol_ quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-06-30T23:29:53Z eschatologist joined #sbcl