2016-04-01T00:15:18Z stassats quit (Ping timeout: 276 seconds) 2016-04-01T00:23:41Z hydan quit (Remote host closed the connection) 2016-04-01T00:25:39Z hydan joined #sbcl 2016-04-01T01:31:08Z andreh joined #sbcl 2016-04-01T01:36:41Z flavioc_ quit (Ping timeout: 244 seconds) 2016-04-01T03:05:01Z andreh quit (Remote host closed the connection) 2016-04-01T03:09:07Z andreh joined #sbcl 2016-04-01T03:18:37Z andreh quit (Remote host closed the connection) 2016-04-01T03:22:47Z andreh joined #sbcl 2016-04-01T03:25:01Z andreh quit (Remote host closed the connection) 2016-04-01T03:25:25Z andreh joined #sbcl 2016-04-01T03:27:23Z andreh quit (Remote host closed the connection) 2016-04-01T03:30:22Z andreh joined #sbcl 2016-04-01T03:53:14Z myrkraverk quit (Remote host closed the connection) 2016-04-01T03:53:44Z myrkraverk joined #sbcl 2016-04-01T04:50:33Z zodiak quit (Quit: This computer has gone to sleep) 2016-04-01T05:00:19Z zodiak joined #sbcl 2016-04-01T05:15:15Z hydan quit (Remote host closed the connection) 2016-04-01T05:17:58Z hydan joined #sbcl 2016-04-01T05:32:14Z stef__ joined #sbcl 2016-04-01T05:35:33Z zodiak quit (Ping timeout: 240 seconds) 2016-04-01T06:25:40Z gingerale joined #sbcl 2016-04-01T06:27:39Z andreh quit (Ping timeout: 250 seconds) 2016-04-01T06:30:21Z andreh joined #sbcl 2016-04-01T06:52:44Z salva quit (Ping timeout: 260 seconds) 2016-04-01T07:10:37Z angavrilov joined #sbcl 2016-04-01T07:17:23Z gingerale quit (Remote host closed the connection) 2016-04-01T07:39:57Z hydan quit (Remote host closed the connection) 2016-04-01T07:41:00Z hydan joined #sbcl 2016-04-01T07:49:41Z andreh quit (Ping timeout: 244 seconds) 2016-04-01T07:50:41Z andreh joined #sbcl 2016-04-01T09:02:01Z scymtym_: i discussed this in #lisp but didn't come to a satisfactory conclusion: 2016-04-01T09:02:16Z scymtym_: clhs LOAD-TIME-VALUE seems to say that, in a COMPILE-FILE context, the form is macroexpanded and compiled according to "normal semantics". doesn't that mean http://paste.lisp.org/display/312052 should work? 2016-04-01T09:03:07Z stassats joined #sbcl 2016-04-01T09:03:32Z scymtym_: we /compile/ in a null lexenv instead of just arranging for "execution" to happen in a null lexenv 2016-04-01T09:06:48Z stassats: "If a load-time-value expression appears within a function compiled with compile, the form is evaluated at compile time in a null lexical environment." 2016-04-01T09:07:06Z stassats: here it directly contradicts the COMPILE-FILE requirement of expanding macros 2016-04-01T09:07:20Z stassats: so, it'd be weird for compile to work differently from compile-file 2016-04-01T09:07:55Z stassats: or eval 2016-04-01T09:09:16Z ASau quit (Ping timeout: 244 seconds) 2016-04-01T09:10:28Z scymtym_: true, i thought the difference was intentional, though, since the cases are described separately like that 2016-04-01T09:10:56Z stassats: there are differences, like evaluation time 2016-04-01T09:12:30Z scymtym_: yeah that was probably the actual reason for the separate descriptions 2016-04-01T09:12:59Z stassats: and macrolet can work in all the cases 2016-04-01T09:13:04Z stassats: technically 2016-04-01T09:13:25Z scymtym_: it could, but i agree that it is forbidden for COMPILE and EVAL situations 2016-04-01T09:13:51Z scymtym_: which is a shame since this makes cl-ppcre-style optimizations like (scan expr input) => (scan/compiled (l-t-v (comp-expr expr)) input) basically impossible 2016-04-01T09:14:07Z stassats: so, i wouldn't like a situation where load and compile-file produce different results 2016-04-01T09:14:34Z scymtym_: because the compiler-macro would have to code-walk expr to find out whether it contains uses of lexical macros 2016-04-01T09:15:13Z stassats: what about lexical variables? 2016-04-01T09:16:00Z scymtym_: aren't uses of lexical variables from within l-t-v clearly forbidden in call situations? 2016-04-01T09:16:29Z scymtym_: even for the COMPILE-FILE situation the compile "arranges for the execution of form to occur at load time in a null lexical environment" 2016-04-01T09:16:33Z stassats: they are, but why is your concern for your compiler-macro only for macrolet? 2016-04-01T09:16:55Z scymtym_: oh, now i see what you are saying 2016-04-01T09:18:00Z stassats: i guess "execution of form to occur at load time in a null lexical environment" can be interpreted that it doesn't expand local macros either 2016-04-01T09:18:39Z scymtym_: i interpreted "execution" to mean execution of the compiled code (thus after macro expansion) 2016-04-01T09:19:15Z scymtym_: since it doesn't say evaluation like the other cases and explicitly talks about macroexpansion 2016-04-01T09:20:05Z scymtym_: but your point means that such a compiler-macro has to pretty much restrict itself to self-evaluating things anyway 2016-04-01T09:20:19Z scymtym_: making the point about lexical macros moot 2016-04-01T09:22:50Z scymtym_: but wait, there may be another nuance there. if the form is CONSTANTP, it can use lexical macros, but can it also use lexical variables under that constraint? 2016-04-01T09:22:50Z stassats: there's constantp 2016-04-01T09:22:54Z scymtym_: :) 2016-04-01T09:23:30Z scymtym_: CONSTANTP is actually how i found the issue as it can be true for forms using lexical macros 2016-04-01T09:24:06Z stassats: you shouldn't use constantp with the environment variable if you wish to pass it to load-time-value 2016-04-01T09:25:55Z stassats: ppcre:scan does use the environment, let's see if i can break it then 2016-04-01T09:26:19Z scymtym_: i bet you can. i do the same in esrap and it breaks 2016-04-01T09:26:54Z stassats: i can, i can also fix it 2016-04-01T09:27:29Z scymtym_: i will also change (constantp expr env) => (constantp expr) in esrap 2016-04-01T09:28:01Z scymtym_: thanks for discussing this with me 2016-04-01T09:28:09Z stassats: only sbcl is smart enough about the constantp environment, but other compilers break on load-time-value macrolets 2016-04-01T09:29:32Z stassats: constantp can also inline local functions, that's probably even further from what load-time-value can do 2016-04-01T09:31:49Z scymtym_: i tried ccl and clisp, but only the l-t-v part, not their CONSTANTP behavior 2016-04-01T09:32:28Z scymtym_: but calling CONSTANTP without an environment should fix all cases, right? 2016-04-01T09:33:13Z stassats: yes 2016-04-01T09:33:45Z stassats: the default NIL means "the null environment" 2016-04-01T09:37:36Z stassats: writing a test for cl-ppcre 2016-04-01T09:37:51Z stassats: i wonder if the tests are compiled-filed enough fro compiler-macro to work 2016-04-01T09:40:16Z stassats: ok, it does fail when needed 2016-04-01T09:40:31Z scymtym_: you can break it with just COMPILE: (funcall (compile nil '(lambda () (macrolet ((y () ".*")) (cl-ppcre:scan (y) "foo"))))) 2016-04-01T09:49:16Z stassats: https://github.com/edicl/cl-ppcre/commit/26aa9b68fb59cc18d216efe0f15d535eb11a2d5a 2016-04-01T09:54:07Z scymtym_: you are always one step ahead :) i was just going to link the esrap commit: https://github.com/scymtym/esrap/commit/f2f837823ada447f5ebb2cba1155b3190e6cbba6 2016-04-01T09:54:52Z stassats: there should have been eval-in-lexenv 2016-04-01T09:55:08Z scymtym_: yeah, i don't understand that design 2016-04-01T09:55:26Z scymtym_: or just an optional environment argument like everywhere else 2016-04-01T09:56:12Z stassats: sbcl has SB-INT:CONSTANT-FORM-VALUE 2016-04-01T09:57:45Z scymtym_: maybe alexandria could add something like that 2016-04-01T09:58:00Z stassats: hard to do while remaining portable 2016-04-01T09:58:38Z stassats: a code walker, gasp 2016-04-01T10:05:34Z scymtym_: stassats: btw. do you have commit-access for alexandria? 2016-04-01T10:23:30Z salva joined #sbcl 2016-04-01T10:23:33Z stassats quit (Ping timeout: 240 seconds) 2016-04-01T10:24:07Z stassats joined #sbcl 2016-04-01T10:28:35Z stassats quit (Ping timeout: 250 seconds) 2016-04-01T10:31:36Z stassats joined #sbcl 2016-04-01T10:35:09Z stassats: scymtym_: i don't 2016-04-01T10:41:04Z stassats: i guess i haven't found enough bugs in alexandria 2016-04-01T10:41:08Z stassats: which means it's pretty good 2016-04-01T10:59:37Z scymtym_: stassats: ok, thanks 2016-04-01T11:02:40Z andreh quit (Remote host closed the connection) 2016-04-01T11:03:55Z andreh joined #sbcl 2016-04-01T11:07:54Z andreh quit (Remote host closed the connection) 2016-04-01T11:13:17Z andreh joined #sbcl 2016-04-01T11:37:53Z stassats: oh bother, Error: The variable SWANK/SBCL::*SWANK-DEBUGGER-CONDITION* is unbound. 2016-04-01T11:41:10Z attila_lendvai has the commit bit for alexandria 2016-04-01T11:41:54Z attila_lendvai also keeps an eye for patches and commits things that he understands and finds safe 2016-04-01T11:57:35Z andreh quit (Remote host closed the connection) 2016-04-01T12:00:11Z andreh joined #sbcl 2016-04-01T12:07:09Z sjl quit (Ping timeout: 260 seconds) 2016-04-01T12:10:25Z DeadTrickster quit (Quit: Leaving) 2016-04-01T12:49:47Z scymtym_: attila_lendvai: can i send some patches your way? 2016-04-01T12:50:38Z attila_lendvai: scymtym_: just send them to the alexandria-devel list. (if it bounces or too much trouble, then send them to me and I'll answer there) 2016-04-01T12:51:24Z scymtym_: attila_lendvai: will do, thank you 2016-04-01T12:57:29Z karswell quit (Remote host closed the connection) 2016-04-01T12:57:46Z karswell joined #sbcl 2016-04-01T13:02:40Z clique joined #sbcl 2016-04-01T13:03:31Z sjl joined #sbcl 2016-04-01T13:12:05Z clique quit (Quit: Page closed) 2016-04-01T13:26:19Z andreh quit (Remote host closed the connection) 2016-04-01T13:46:33Z stassats quit (Ping timeout: 246 seconds) 2016-04-01T13:49:12Z stassats joined #sbcl 2016-04-01T14:32:32Z karswell quit (Remote host closed the connection) 2016-04-01T14:33:27Z karswell joined #sbcl 2016-04-01T14:37:20Z DGASAU quit (Ping timeout: 244 seconds) 2016-04-01T14:50:07Z DGASAU joined #sbcl 2016-04-01T15:05:44Z slyrus joined #sbcl 2016-04-01T15:13:58Z DeadTrickster joined #sbcl 2016-04-01T15:58:41Z DeadTrickster_ joined #sbcl 2016-04-01T15:59:04Z DeadTrickster quit (Read error: No route to host) 2016-04-01T16:01:02Z DeadTrickster_ quit (Read error: No route to host) 2016-04-01T16:02:59Z DeadTrickster joined #sbcl 2016-04-01T16:34:44Z stef__ is now known as zodiak 2016-04-01T16:36:40Z rszeno joined #sbcl 2016-04-01T16:46:52Z andreh joined #sbcl 2016-04-01T16:48:46Z andreh quit (Remote host closed the connection) 2016-04-01T16:51:13Z whiteline quit (Ping timeout: 250 seconds) 2016-04-01T17:08:18Z gingerale joined #sbcl 2016-04-01T17:08:26Z andreh joined #sbcl 2016-04-01T17:08:39Z andreh quit (Remote host closed the connection) 2016-04-01T17:10:18Z hydan quit (Remote host closed the connection) 2016-04-01T17:11:07Z hydan joined #sbcl 2016-04-01T17:13:02Z slyrus quit (Ping timeout: 248 seconds) 2016-04-01T17:27:14Z edgar-rft quit (Quit: edgar-rft) 2016-04-01T17:43:36Z fe[nl]ix: any ideas about https://bugs.launchpad.net/sbcl/+bug/1565023 ? 2016-04-01T17:46:32Z pkhuong: it's the initial thread. 2016-04-01T17:48:29Z andreh joined #sbcl 2016-04-01T17:49:30Z andreh quit (Remote host closed the connection) 2016-04-01T18:04:26Z flavioc_ joined #sbcl 2016-04-01T18:07:34Z andreh joined #sbcl 2016-04-01T18:29:01Z slyrus joined #sbcl 2016-04-01T18:35:44Z rszeno quit (Quit: Leaving.) 2016-04-01T18:59:59Z andreh quit (Remote host closed the connection) 2016-04-01T19:02:21Z andreh joined #sbcl 2016-04-01T19:15:39Z Carisius joined #sbcl 2016-04-01T19:44:49Z drewc quit (Ping timeout: 252 seconds) 2016-04-01T19:45:31Z andreh quit (Remote host closed the connection) 2016-04-01T19:45:49Z andreh joined #sbcl 2016-04-01T19:51:29Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-01T19:54:24Z sjl quit (Ping timeout: 276 seconds) 2016-04-01T20:01:01Z slyrus quit (Ping timeout: 250 seconds) 2016-04-01T20:03:16Z stassats: first, create_thread_struct doesn't look like it did in 1.3.0.91-f9db2f1 2016-04-01T20:03:35Z stassats: second, i don't trust all those memory sanitizers 2016-04-01T20:14:02Z drewc joined #sbcl 2016-04-01T20:28:08Z slyrus joined #sbcl 2016-04-01T20:44:53Z evilburp joined #sbcl 2016-04-01T20:50:23Z sjl joined #sbcl 2016-04-01T20:53:33Z slyrus quit (Ping timeout: 276 seconds) 2016-04-01T21:27:30Z slyrus joined #sbcl 2016-04-01T21:27:43Z ASau joined #sbcl 2016-04-01T21:29:17Z evilburp quit (Remote host closed the connection) 2016-04-01T22:14:24Z andreh quit (Remote host closed the connection) 2016-04-01T22:25:18Z hydan quit (Remote host closed the connection) 2016-04-01T22:26:35Z hydan joined #sbcl 2016-04-01T22:32:52Z gingerale quit (Remote host closed the connection) 2016-04-01T22:34:44Z fe[nl]ix: stassats: it's possible that this is a false positive 2016-04-01T22:35:12Z fe[nl]ix: in any case I need to fix it because ASAN is becoming mandatory 2016-04-01T22:36:06Z stassats: becoming mandatory? huh 2016-04-01T22:36:45Z slyrus quit (Ping timeout: 248 seconds) 2016-04-01T22:38:00Z fe[nl]ix: mandatory in the continuous integration environment 2016-04-01T22:38:28Z fe[nl]ix: not in production 2016-04-01T22:38:35Z stassats: but it's useless for SBCL 2016-04-01T22:38:44Z stassats: even if it provides no false positives 2016-04-01T22:38:57Z fe[nl]ix: yes, but they're not going to make an exception for QPX 2016-04-01T22:39:14Z fe[nl]ix: and it's actually useful for the many C++ libraries we statically link into QPX 2016-04-01T22:48:21Z fe[nl]ix: that binary is now over 2G in production 2016-04-01T23:18:06Z angavrilov quit (Remote host closed the connection) 2016-04-01T23:31:22Z Carisius quit (Remote host closed the connection) 2016-04-01T23:57:55Z stassats quit (Ping timeout: 248 seconds) 2016-04-01T23:59:09Z stassats joined #sbcl 2016-04-02T00:03:37Z stassats quit (Ping timeout: 244 seconds) 2016-04-02T00:04:08Z stassats joined #sbcl 2016-04-02T00:23:16Z andreh joined #sbcl 2016-04-02T00:31:36Z dyre17 joined #sbcl 2016-04-02T00:32:17Z dyre17: hello all. I am wondering if someone has insight into the following error (netbsd/ using pkgsrc /amd64) http://paste.lisp.org/display/312145 2016-04-02T00:40:58Z stassats: your clisp ran out of memory 2016-04-02T00:41:12Z stassats: maybe don't use clisp for building at all 2016-04-02T00:43:16Z dyre17: I didn't :( I uninstalled it before running 'make install clean' 2016-04-02T00:47:33Z stassats quit (Ping timeout: 276 seconds) 2016-04-02T00:59:56Z drewc quit (Ping timeout: 244 seconds) 2016-04-02T01:06:39Z drewc joined #sbcl 2016-04-02T01:07:31Z andreh quit (Remote host closed the connection) 2016-04-02T01:08:30Z dyre17 quit (Quit: Page closed) 2016-04-02T01:19:15Z andreh joined #sbcl 2016-04-02T01:28:22Z ehaliewicz joined #sbcl 2016-04-02T01:30:20Z andreh quit (Remote host closed the connection) 2016-04-02T01:32:20Z andreh joined #sbcl 2016-04-02T01:43:58Z whiteline joined #sbcl 2016-04-02T02:02:38Z edgar-rft joined #sbcl 2016-04-02T02:59:17Z flavioc_ quit (Ping timeout: 260 seconds) 2016-04-02T03:28:41Z fisxoj joined #sbcl 2016-04-02T04:34:21Z Bike quit (Read error: Connection reset by peer) 2016-04-02T04:34:33Z Bike joined #sbcl 2016-04-02T05:47:52Z andreh quit (Ping timeout: 260 seconds) 2016-04-02T05:48:41Z andreh joined #sbcl 2016-04-02T06:09:09Z gingerale joined #sbcl 2016-04-02T06:37:39Z fisxoj quit (Quit: fisxoj) 2016-04-02T06:42:30Z ehaliewicz quit (Ping timeout: 244 seconds) 2016-04-02T07:43:54Z clique joined #sbcl 2016-04-02T07:57:17Z angavrilov joined #sbcl 2016-04-02T08:08:46Z clique quit (Quit: Page closed) 2016-04-02T08:18:17Z igajsin joined #sbcl 2016-04-02T08:19:25Z igajsin left #sbcl 2016-04-02T08:26:33Z leo_song quit (Ping timeout: 240 seconds) 2016-04-02T08:29:38Z leo_song joined #sbcl 2016-04-02T09:18:52Z andreh quit (Remote host closed the connection) 2016-04-02T09:41:12Z salva quit (Ping timeout: 276 seconds) 2016-04-02T09:45:57Z stassats joined #sbcl 2016-04-02T09:50:02Z stassats quit (Ping timeout: 244 seconds) 2016-04-02T09:50:53Z stassats joined #sbcl 2016-04-02T09:55:11Z stassats quit (Ping timeout: 244 seconds) 2016-04-02T09:55:56Z stassats joined #sbcl 2016-04-02T10:00:29Z stassats quit (Ping timeout: 248 seconds) 2016-04-02T10:00:54Z stassats joined #sbcl 2016-04-02T10:09:10Z sjl quit (Ping timeout: 244 seconds) 2016-04-02T10:54:03Z scymtym_ quit (Ping timeout: 240 seconds) 2016-04-02T11:08:12Z sjl joined #sbcl 2016-04-02T11:25:07Z scymtym joined #sbcl 2016-04-02T11:45:28Z flavioc_ joined #sbcl 2016-04-02T11:51:03Z flavioc_ quit (Remote host closed the connection) 2016-04-02T12:04:50Z salva joined #sbcl 2016-04-02T12:06:27Z sjl quit (Ping timeout: 264 seconds) 2016-04-02T12:14:45Z salva quit (Ping timeout: 246 seconds) 2016-04-02T12:29:39Z salva joined #sbcl 2016-04-02T12:42:31Z stassats: would a warning for (/ (the fixnum x) 0) be a good idea? 2016-04-02T12:42:37Z stassats: the integer, rather 2016-04-02T12:42:50Z stassats: rational, even 2016-04-02T13:02:49Z pkhuong: stassats: don't think it can be a warning, but something weaker like a style warning definitely makes sense to me. 2016-04-02T13:15:25Z stassats: pkhuong: but it would signal a warning on (/ x 'a) 2016-04-02T13:22:49Z stassats: my idea of signalling full warnings is when the code will always cause an error at run-time 2016-04-02T13:27:52Z pkhuong: going purely by the spec passing a non-number and a zero are equally bad 2016-04-02T13:34:51Z DeadTrickster quit (Read error: Connection reset by peer) 2016-04-02T13:49:30Z DeadTrickster joined #sbcl 2016-04-02T14:12:54Z leo_song quit (Ping timeout: 276 seconds) 2016-04-02T14:13:43Z leo_song joined #sbcl 2016-04-02T14:34:02Z andreh joined #sbcl 2016-04-02T14:37:48Z andreh quit (Remote host closed the connection) 2016-04-02T15:14:04Z aeth quit (Ping timeout: 260 seconds) 2016-04-02T16:06:00Z pobivan joined #sbcl 2016-04-02T16:08:50Z salva quit (Remote host closed the connection) 2016-04-02T16:43:11Z aeth joined #sbcl 2016-04-02T17:12:55Z andreh joined #sbcl 2016-04-02T17:34:34Z hydan quit (Quit: hydan) 2016-04-02T17:34:47Z sjl joined #sbcl 2016-04-02T18:07:47Z scymtym_ joined #sbcl 2016-04-02T18:27:21Z andreh quit (Remote host closed the connection) 2016-04-02T18:51:05Z karswell quit (Remote host closed the connection) 2016-04-02T18:51:15Z karswell joined #sbcl 2016-04-02T19:42:39Z prxq joined #sbcl 2016-04-02T20:24:05Z fisxoj joined #sbcl 2016-04-02T20:43:45Z attila_lendvai joined #sbcl 2016-04-02T20:43:45Z attila_lendvai quit (Changing host) 2016-04-02T20:43:45Z attila_lendvai joined #sbcl 2016-04-02T21:06:17Z andreh joined #sbcl 2016-04-02T21:18:25Z prxq quit (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2016-04-02T21:51:53Z gingerale quit (Remote host closed the connection) 2016-04-02T21:54:43Z andreh quit (Remote host closed the connection) 2016-04-02T21:55:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-02T22:09:24Z dustinm` quit (Ping timeout: 260 seconds) 2016-04-02T22:10:47Z igajsin joined #sbcl 2016-04-02T22:12:47Z dustinm` joined #sbcl 2016-04-02T23:10:27Z stassats quit (Ping timeout: 276 seconds) 2016-04-03T00:05:09Z paule32 joined #sbcl 2016-04-03T00:05:20Z paule32: hello 2016-04-03T00:05:41Z paule32: how can i compile a cl script to exec? 2016-04-03T00:16:48Z myrkraverk quit (Remote host closed the connection) 2016-04-03T00:28:04Z hydan joined #sbcl 2016-04-03T00:56:52Z fiddlerwoaroof quit (Ping timeout: 264 seconds) 2016-04-03T01:11:03Z drewc quit (Ping timeout: 246 seconds) 2016-04-03T01:21:45Z zodiak quit (Ping timeout: 268 seconds) 2016-04-03T01:21:58Z zodiak joined #sbcl 2016-04-03T01:35:01Z myrkraverk joined #sbcl 2016-04-03T02:01:38Z zRecursive joined #sbcl 2016-04-03T03:19:43Z zRecursive left #sbcl 2016-04-03T04:05:56Z fisxoj quit (Quit: fisxoj) 2016-04-03T04:39:43Z fiddlerwoaroof joined #sbcl 2016-04-03T04:43:45Z fiddlerwoaroof quit (Changing host) 2016-04-03T04:43:45Z fiddlerwoaroof joined #sbcl 2016-04-03T04:45:29Z fiddlerwoaroof quit (Quit: Gone.) 2016-04-03T04:45:38Z fiddlerwoaroof joined #sbcl 2016-04-03T04:50:40Z fiddlerwoaroof quit (Quit: Gone.) 2016-04-03T04:50:53Z fiddlerwoaroof joined #sbcl 2016-04-03T05:51:40Z jackdaniel: paule32: if you are interested solely in sbcl you may use http://www.xach.com/lisp/buildapp/ or save-lisp-and-die (for the latter consult the documentation) 2016-04-03T05:55:04Z myrkraverk quit (Ping timeout: 240 seconds) 2016-04-03T05:55:17Z myrkraverk_ joined #sbcl 2016-04-03T05:55:54Z myrkraverk_ is now known as myrkraverk 2016-04-03T06:02:16Z gingerale joined #sbcl 2016-04-03T06:26:09Z Bike quit (Quit: underestimate) 2016-04-03T07:19:38Z igajsin quit (Quit: Leaving.) 2016-04-03T07:39:17Z zodiak quit (Ping timeout: 244 seconds) 2016-04-03T07:48:43Z paule32: jackdaniel: thx 2016-04-03T07:50:15Z paule32: is it your app? 2016-04-03T08:09:03Z paule32 quit (Quit: Verlassend) 2016-04-03T08:09:11Z drewc joined #sbcl 2016-04-03T08:31:24Z attila_lendvai joined #sbcl 2016-04-03T08:31:24Z attila_lendvai quit (Changing host) 2016-04-03T08:31:24Z attila_lendvai joined #sbcl 2016-04-03T09:23:09Z stassats joined #sbcl 2016-04-03T09:39:23Z jackdaniel: no, it's Xach's 2016-04-03T09:39:29Z jackdaniel: it works only with sbcl and ccl 2016-04-03T09:39:44Z jackdaniel: cl-launch works with broader range of implementations but isn't as straightforward 2016-04-03T09:58:39Z stassats quit (Ping timeout: 264 seconds) 2016-04-03T09:59:34Z stassats joined #sbcl 2016-04-03T10:03:47Z stassats quit (Ping timeout: 248 seconds) 2016-04-03T10:04:33Z stassats joined #sbcl 2016-04-03T10:05:39Z carvite quit (Ping timeout: 276 seconds) 2016-04-03T10:06:14Z carvite joined #sbcl 2016-04-03T10:43:33Z scymtym_ quit (Ping timeout: 240 seconds) 2016-04-03T10:51:07Z sjl quit (Ping timeout: 252 seconds) 2016-04-03T13:18:20Z scymtym: the :CLOS-HASH used in the new :PROBE-CACHE-SMOKE-TEST does not work on 32-bit systems: https://ci.cor-lab.org/job/sbcl-master/featureset=1,label=ubuntu_trusty_32bit/1550/consoleFull 2016-04-03T13:41:56Z flavioc_ joined #sbcl 2016-04-03T14:24:47Z fisxoj joined #sbcl 2016-04-03T14:53:02Z sjl joined #sbcl 2016-04-03T14:54:41Z scymtym: does this look ok: http://paste.lisp.org/display/312331 ? 2016-04-03T14:56:05Z _iwc quit (Excess Flood) 2016-04-03T15:06:56Z _iwc joined #sbcl 2016-04-03T15:14:11Z flavioc_ quit (Ping timeout: 248 seconds) 2016-04-03T15:18:56Z stassats: scymtym: i don't think (*package* *cl-package*) is a good idea 2016-04-03T15:30:36Z scymtym: (*package* (find-package :keyword)), then? 2016-04-03T15:31:19Z stassats: *keyword-package* 2016-04-03T15:32:59Z scymtym: ok, thanks 2016-04-03T15:33:25Z Bike joined #sbcl 2016-04-03T15:38:38Z scymtym: hm, that makes it very verbose: http://paste.lisp.org/display/312331#1 2016-04-03T15:41:02Z stassats: well, it's either that or using the current package 2016-04-03T15:45:13Z stassats: and since warnings are involved, using the current package is a no go 2016-04-03T15:46:26Z stassats: when you load stuff and things are printed in the repl you might want to M-. to them, but the package is different 2016-04-03T15:46:38Z stassats: using *cl-package* works in 99% of the time 2016-04-03T15:48:07Z stassats: a better slime would help here, like remember the package at print-time 2016-04-03T15:49:32Z stassats: scymtym: i guess cl:function is worse than sometimes not properly working M-., so, go back to *cl-package* 2016-04-03T15:49:59Z flavioc_ joined #sbcl 2016-04-03T15:53:21Z rszeno joined #sbcl 2016-04-03T15:53:45Z scymtym: stassats: ok, but i'm a bit confused. shouldn't using *cl-package* make M-.-navigating to named types work in /more/ cases since all symbols with home package /= cl will be package-qualified? 2016-04-03T16:08:22Z scymtym: i just noticed that the PRINT-OBJECT methods for ALIEN-{TYPE,VALUE} did something similar as a kludge which can now go away 2016-04-03T16:14:30Z hydan quit (Remote host closed the connection) 2016-04-03T16:15:09Z hydan joined #sbcl 2016-04-03T16:17:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-03T16:19:01Z rszeno quit (Quit: Leaving.) 2016-04-03T17:08:18Z scymtym_ joined #sbcl 2016-04-03T17:17:13Z flavioc_ quit (Ping timeout: 252 seconds) 2016-04-03T17:20:30Z rszeno joined #sbcl 2016-04-03T17:23:47Z rszeno quit (Remote host closed the connection) 2016-04-03T17:34:57Z rszeno joined #sbcl 2016-04-03T17:47:24Z flavioc_ joined #sbcl 2016-04-03T17:50:13Z edgar-rft quit (Quit: edgar-rft) 2016-04-03T17:53:17Z rszeno quit (Quit: Leaving.) 2016-04-03T17:58:21Z rszeno joined #sbcl 2016-04-03T18:21:23Z stassats: looks like copy propagation works across blocks, but not within 2016-04-03T18:21:49Z stassats: and my optimize-constant-loads only works within blocks 2016-04-03T18:21:54Z stassats: i ought to unify that 2016-04-03T18:22:34Z stassats is working on making fricas to compile 2016-04-03T18:22:46Z stassats: because, apparently, nobody actually wants the bugs to be fixed 2016-04-03T18:28:59Z stassats: looks like i got past copyprop, which was expected to be easy, now to constraints, where i have no idea 2016-04-03T18:37:20Z rszeno quit (Quit: Leaving.) 2016-04-03T19:25:59Z rszeno joined #sbcl 2016-04-03T19:51:33Z stassats: a solitary ";FIXME", so helpful 2016-04-03T19:54:27Z barbone quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2016-04-03T20:23:13Z hydan quit (Remote host closed the connection) 2016-04-03T20:25:07Z hydan joined #sbcl 2016-04-03T20:32:30Z prxq joined #sbcl 2016-04-03T20:41:31Z stassats: hard to visualize what's happening in constraint propagation 2016-04-03T20:41:44Z stassats: but somehow a CAST is adding a constraint and a CSET is removing it 2016-04-03T20:49:02Z ASau` joined #sbcl 2016-04-03T20:49:35Z ASau quit (Read error: Connection reset by peer) 2016-04-03T20:50:53Z stassats: the set-value is casted beforehand, maybe that's what confusing it 2016-04-03T20:51:43Z ASau` is now known as ASau 2016-04-03T20:53:03Z flavioc_ quit (Ping timeout: 240 seconds) 2016-04-03T21:06:55Z angavrilov quit (Remote host closed the connection) 2016-04-03T21:07:03Z pobivan quit (Quit: pobivan) 2016-04-03T21:12:07Z les` quit (Ping timeout: 260 seconds) 2016-04-03T21:16:29Z les joined #sbcl 2016-04-03T21:21:24Z stassats: the type of the cast set variable is (OR NULL (INTEGER -9223372036854775800 9223372036854775807)), and the type of the casted value is (INTEGER -4611686018427387902 9223372036854775808) 2016-04-03T21:21:34Z stassats: i guess that's why they're bumping each other off 2016-04-03T21:22:38Z stassats: although it doesn't seem to have any problems with different numerical types 2016-04-03T21:26:09Z barbone joined #sbcl 2016-04-03T21:35:20Z stassats: hmm, there seem to be self-eql constraints 2016-04-03T21:40:56Z rszeno quit (Quit: Leaving.) 2016-04-03T21:42:10Z gingerale quit (Remote host closed the connection) 2016-04-03T22:01:03Z sjl quit (Ping timeout: 244 seconds) 2016-04-03T22:03:09Z prxq quit (Remote host closed the connection) 2016-04-03T22:04:46Z stassats: i wonder if constraint propagation was just broken at some point 2016-04-03T22:05:35Z stassats: SBCL 1.0 (oh, the memories) was broken already 2016-04-03T22:26:39Z stassats: broken between 0.9.8 and .9.9, bisecting is going to be a pain 2016-04-03T22:28:26Z stassats: perhaps it's b34a3535ed7950a17e5dfe940285dcc10a814cb6 2016-04-03T22:30:30Z jackdaniel quit (Ping timeout: 244 seconds) 2016-04-03T22:30:47Z stassats: 350 insertions(+), 275 deletions(-) :/ 2016-04-03T22:31:24Z attila_lendvai joined #sbcl 2016-04-03T22:31:24Z attila_lendvai quit (Changing host) 2016-04-03T22:31:24Z attila_lendvai joined #sbcl 2016-04-03T22:32:18Z jackdaniel joined #sbcl 2016-04-03T22:34:16Z Bike quit (Read error: Connection reset by peer) 2016-04-03T22:35:31Z Bike joined #sbcl 2016-04-03T23:03:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-03T23:26:09Z fisxoj quit (Quit: fisxoj) 2016-04-03T23:44:35Z stassats: i guess constraint propagation needs to use a kill set 2016-04-03T23:44:54Z stassats: otherwise CAST will be adding stuff killed by CSET over and over 2016-04-03T23:46:34Z stassats: there used to be a kill set 2016-04-03T23:52:40Z fisxoj joined #sbcl 2016-04-04T00:06:07Z sjl joined #sbcl 2016-04-04T00:07:55Z andreh joined #sbcl 2016-04-04T00:18:39Z hydan quit (Quit: hydan) 2016-04-04T00:34:03Z karswell quit (Ping timeout: 276 seconds) 2016-04-04T00:41:12Z stassats quit (Ping timeout: 276 seconds) 2016-04-04T00:42:32Z zRecursive joined #sbcl 2016-04-04T00:54:49Z scymtym_ quit (Ping timeout: 252 seconds) 2016-04-04T00:56:37Z andreh quit (Remote host closed the connection) 2016-04-04T01:01:34Z andreh joined #sbcl 2016-04-04T01:02:08Z andreh quit (Remote host closed the connection) 2016-04-04T01:07:57Z andreh joined #sbcl 2016-04-04T01:32:15Z sjl quit (Ping timeout: 264 seconds) 2016-04-04T02:15:25Z andreh quit (Read error: No route to host) 2016-04-04T02:16:11Z andreh joined #sbcl 2016-04-04T02:35:45Z fisxoj quit (Quit: fisxoj) 2016-04-04T03:08:59Z edgar-rft joined #sbcl 2016-04-04T03:15:49Z fisxoj joined #sbcl 2016-04-04T03:52:21Z zRecursive quit (Remote host closed the connection) 2016-04-04T04:08:55Z fisxoj quit (Quit: fisxoj) 2016-04-04T06:33:29Z salva joined #sbcl 2016-04-04T06:46:19Z Bike quit (Quit: ideon destroyed the entire universe) 2016-04-04T07:04:03Z ASau quit (Ping timeout: 264 seconds) 2016-04-04T07:06:03Z angavrilov joined #sbcl 2016-04-04T07:30:42Z gingerale joined #sbcl 2016-04-04T07:42:05Z jackdaniel quit (Ping timeout: 250 seconds) 2016-04-04T07:42:11Z jackdaniel joined #sbcl 2016-04-04T08:12:39Z myrkraverk_ joined #sbcl 2016-04-04T08:12:57Z myrkraverk quit (Ping timeout: 276 seconds) 2016-04-04T08:13:11Z myrkraverk_ is now known as myrkraverk 2016-04-04T08:14:48Z igajsin joined #sbcl 2016-04-04T09:25:34Z attila_lendvai joined #sbcl 2016-04-04T09:25:34Z attila_lendvai quit (Changing host) 2016-04-04T09:25:34Z attila_lendvai joined #sbcl 2016-04-04T10:56:39Z andreh quit (Remote host closed the connection) 2016-04-04T11:32:48Z sjl joined #sbcl 2016-04-04T11:52:15Z stassats joined #sbcl 2016-04-04T12:12:46Z karswell joined #sbcl 2016-04-04T12:52:37Z prxq joined #sbcl 2016-04-04T13:07:02Z scymtym_ joined #sbcl 2016-04-04T13:15:53Z scymtym quit (Remote host closed the connection) 2016-04-04T13:29:29Z stassats: i can build fricas 2016-04-04T13:39:15Z scymtym_: stassats: great. what did you have to change? 2016-04-04T13:40:07Z stassats: copyprop, since it doesn't actually work within blocks, don't push the TNs that live only one block 2016-04-04T13:40:14Z stassats: this reduces consing 2016-04-04T13:40:52Z stassats: constraint, clear the sets created from the previous calls to constraint-propagate 2016-04-04T13:41:46Z stassats: that way it won't think that it changed something and won't run in a loop 2016-04-04T13:42:18Z stassats: i'm not satisfied with either solution, but they shouldn't introduce any new problems and do allow fricas to build 2016-04-04T13:42:31Z stassats: which means i have no pressure to come up with a proper solution 2016-04-04T13:44:10Z scymtym_: proper solution #1 = make copyprop work within blocks? 2016-04-04T13:44:44Z stassats: that would be an improvement, not a solution 2016-04-04T13:44:51Z stassats: the problem is that it uses too much space 2016-04-04T13:45:11Z scymtym_: so you disabled the part that doesn't work anyway to save space? 2016-04-04T13:45:11Z stassats: but that would be one the goals, yes 2016-04-04T13:45:49Z stassats: i now have a sorta peephole stage, i can pick off stuff within the blocks there 2016-04-04T13:46:09Z stassats: though i planned to extend it to work across blocks 2016-04-04T13:46:15Z stassats: so, somehow combine the two 2016-04-04T13:47:57Z stassats: scymtym_: the current strategy (the old strategy) is to first write a visualizer for the IR1 that can examine things at different points in time 2016-04-04T13:48:09Z stassats: then study what's really going on, then solve it 2016-04-04T13:49:22Z stassats: but there were talks of reverting the cast-unifying changes (why not b34a3535ed7950a17e5dfe940285dcc10a814cb6?), and i couldn't agree to that 2016-04-04T13:50:15Z scymtym__ joined #sbcl 2016-04-04T13:51:32Z scymtym_ quit (Ping timeout: 268 seconds) 2016-04-04T13:51:45Z prxq quit (Remote host closed the connection) 2016-04-04T13:52:07Z scymtym__ reads logs 2016-04-04T13:53:33Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-04T13:54:24Z scymtym__: reverting would have been sad, yes 2016-04-04T13:55:35Z stassats: and reverting would only make it work on fixnums. my test case, involving (signed-byte 64), failed on 0.9.9 2016-04-04T13:59:30Z scymtym__: in my lost messages, i asked whether the changes are available anywhere. i would like to try and see whether some failing builds involving cxml and fiveam tests would be fixed 2016-04-04T13:59:49Z stassats: i'm about to push anyway 2016-04-04T14:00:03Z sjl quit (Ping timeout: 248 seconds) 2016-04-04T14:00:18Z stassats: it seems like fricas needs non standard --dynamic-space-size to build, just determining the lowest amount 2016-04-04T14:02:18Z stassats: 3GB seems enough, ok, that should be good for both 64-bit and 32-bit targets 2016-04-04T14:02:22Z scymtym__: in the cxml case the same build fails on archlinux but works on ubuntu so it is probably just at the dynamic-space size threshold for the compiler's current memory use 2016-04-04T14:04:29Z stassats: scymtym__: pushed 2016-04-04T14:05:31Z scymtym__: stassats: cool. i will experiment and report back 2016-04-04T14:06:21Z stassats: i don't really working with time constraints... i have a day job for that 2016-04-04T14:08:44Z stassats: hm, maybe if i clear constraints after the run, not before, it'll leave less garbage 2016-04-04T14:14:23Z andreh joined #sbcl 2016-04-04T14:16:03Z andreh quit (Remote host closed the connection) 2016-04-04T14:16:06Z nzambe joined #sbcl 2016-04-04T14:17:30Z rtmpdavid joined #sbcl 2016-04-04T14:26:58Z stassats: that doesn't help 2016-04-04T14:27:26Z stassats: because it looks like it conses a lot during the constraint run, maybe i can part with some garbage during that time 2016-04-04T14:29:32Z stassats: ok then, i'll take a break from constraints until i have a better picture 2016-04-04T15:02:56Z DGASAU quit (Read error: Connection reset by peer) 2016-04-04T15:03:20Z DGASAU joined #sbcl 2016-04-04T15:04:36Z andreh joined #sbcl 2016-04-04T15:04:37Z slyrus joined #sbcl 2016-04-04T15:09:19Z andreh quit (Ping timeout: 260 seconds) 2016-04-04T15:13:31Z Bike joined #sbcl 2016-04-04T15:15:20Z Xof: thank you, stassats 2016-04-04T15:26:32Z christoph_debian quit (Quit: WeeChat 1.0.1) 2016-04-04T15:31:24Z christoph_debian joined #sbcl 2016-04-04T16:00:06Z andreh joined #sbcl 2016-04-04T16:08:47Z slyrus: here here 2016-04-04T16:31:17Z DGASAU quit (Read error: Connection reset by peer) 2016-04-04T16:31:40Z DGASAU joined #sbcl 2016-04-04T16:43:16Z sjl joined #sbcl 2016-04-04T17:05:24Z sjl quit (Ping timeout: 260 seconds) 2016-04-04T17:22:04Z akkad joined #sbcl 2016-04-04T17:35:05Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-04T17:44:51Z stassats: huh, is in-package detection in slime broken? 2016-04-04T17:45:13Z stassats: it seems to be activating the package before in-package too 2016-04-04T17:45:30Z stassats: but not within the in-package form 2016-04-04T17:47:36Z stassats: annoying, not going to bother fixing though 2016-04-04T17:50:46Z Carisius joined #sbcl 2016-04-04T18:18:59Z stassats: is there an easy way to know that a vop before another vop? 2016-04-04T18:21:29Z pkhuong: stick something in the ir2opt pass? 2016-04-04T18:22:10Z stassats: so, nothing existing? 2016-04-04T18:22:44Z stassats: i'm trying to optimize two consecutive writes to the same tn 2016-04-04T18:25:08Z stassats: just assigning numbers is probably not going to do, there is insert-vop 2016-04-04T18:31:34Z andreh quit (Read error: No route to host) 2016-04-04T18:32:37Z andreh joined #sbcl 2016-04-04T19:10:31Z clique joined #sbcl 2016-04-04T19:17:13Z Bicyclidine joined #sbcl 2016-04-04T19:23:33Z scymtym__ quit (Ping timeout: 240 seconds) 2016-04-04T19:24:08Z clique quit (Quit: Page closed) 2016-04-04T19:35:32Z Carisius quit (Ping timeout: 260 seconds) 2016-04-04T20:15:06Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-04T20:15:21Z Bicyclidine joined #sbcl 2016-04-04T20:24:11Z angavrilov quit (Remote host closed the connection) 2016-04-04T20:25:21Z andreh_ joined #sbcl 2016-04-04T20:25:34Z andreh quit (Read error: Connection reset by peer) 2016-04-04T20:41:03Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-04-04T20:47:44Z sjl joined #sbcl 2016-04-04T20:54:59Z scymtym joined #sbcl 2016-04-04T21:07:25Z ASau joined #sbcl 2016-04-04T21:20:18Z edgar-rft quit (Quit: edgar-rft) 2016-04-04T21:31:33Z sjl quit (Ping timeout: 244 seconds) 2016-04-04T21:38:27Z sjl joined #sbcl 2016-04-04T21:45:46Z karswell quit (Read error: Connection reset by peer) 2016-04-04T21:46:02Z karswell joined #sbcl 2016-04-04T21:58:40Z rszeno joined #sbcl 2016-04-04T22:00:38Z andreh_ quit (Remote host closed the connection) 2016-04-04T22:07:32Z rszeno quit (Quit: Leaving.) 2016-04-04T22:12:03Z slyrus quit (Ping timeout: 240 seconds) 2016-04-04T22:23:12Z sjl quit (Ping timeout: 246 seconds) 2016-04-04T22:31:24Z gingerale quit (Remote host closed the connection) 2016-04-04T22:32:06Z slyrus joined #sbcl 2016-04-04T22:57:49Z Bicyclidine joined #sbcl 2016-04-04T22:58:21Z Bicyclidine quit (Client Quit) 2016-04-04T23:04:45Z slyrus quit (Ping timeout: 276 seconds) 2016-04-04T23:15:20Z rszeno joined #sbcl 2016-04-04T23:20:53Z rszeno quit (Quit: Leaving.) 2016-04-04T23:23:15Z rszeno joined #sbcl 2016-04-04T23:37:28Z andreh joined #sbcl 2016-04-04T23:49:29Z dougk_: another reason to delete sb-eval: it reliably crashes for me if parallel make-host-1 is enabled, and I've no desire to find out why. 2016-04-05T00:12:23Z drewc quit (Read error: Connection reset by peer) 2016-04-05T00:12:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-05T00:15:12Z drewc joined #sbcl 2016-04-05T00:20:46Z drewc_ joined #sbcl 2016-04-05T00:22:05Z fisxoj joined #sbcl 2016-04-05T00:22:23Z drewc quit (Ping timeout: 268 seconds) 2016-04-05T00:30:34Z drewc_ is now known as drewc 2016-04-05T00:50:13Z zRecursive joined #sbcl 2016-04-05T00:51:57Z zRecursive: ... //entering make-target-1.sh\n //building runtime system and symbol table file\n make: Entering directory '/cygdrive/c/Z/RnD/sbcl/src/runtime'\n GNUmakefile:32: genesis/Makefile.features: No such file or directory\n make: *** No rule to make target 'genesis/Makefile.features'. Stop. FYI, I use `sh make.sh --prefix=c:/sbcl/ --xc-host="c:/z/ccl/wx86cl.exe -n -Q -K utf-8"` to build SBCL using cygwin. 2016-04-05T00:53:06Z zRecursive: the SBCL is the newest source from git repo. 2016-04-05T00:55:29Z joshe: I don't know anything about sbcl on windows, but the actual error should be above that 2016-04-05T00:56:44Z zRecursive: joshe: There is already the windows binary on sbcl.org, so it should be built successfully on Windows. 2016-04-05T00:58:36Z zRecursive: I ever built SBCL on freebsd successfully using the same command "make.sh ...". 2016-04-05T01:01:45Z aeth: zRecursive: http://paste.lisp.org/ 2016-04-05T01:02:43Z zRecursive: aeth: sorry! 2016-04-05T01:06:08Z andreh quit (Remote host closed the connection) 2016-04-05T01:07:37Z andreh joined #sbcl 2016-04-05T01:14:43Z stassats: zRecursive: freebsd has a disk C? 2016-04-05T01:20:41Z aeth: stassats: it looks like cygwin 2016-04-05T01:22:33Z stassats quit (Ping timeout: 276 seconds) 2016-04-05T01:25:16Z zRecursive: `sh make.sh --prefix=/home/***/sbcl/ --xc-host="ccl -n -Q -K utf-8"` on FreeBSD. 2016-04-05T01:36:07Z Quadrescence joined #sbcl 2016-04-05T01:43:10Z fisxoj quit (Quit: fisxoj) 2016-04-05T02:12:56Z |3b|: builds on 64bit windows with sbcl host here, using msys2 2016-04-05T02:14:05Z |3b|: with ./make.sh --fancy --dynamic-space-size=16Gb --prefix=/usr/local 2016-04-05T02:18:14Z zRecursive: |3b|: Just msys2 only ? 2016-04-05T02:56:29Z andreh quit (Remote host closed the connection) 2016-04-05T02:58:33Z andreh joined #sbcl 2016-04-05T03:26:33Z edgar-rft joined #sbcl 2016-04-05T03:56:55Z |3b|: zRecursive: msys2 + mingw 2016-04-05T04:28:13Z andreh quit (Read error: No route to host) 2016-04-05T04:28:56Z andreh joined #sbcl 2016-04-05T05:05:23Z zRecursive: |3b|: thanks! Is msys2 + mingw == cygwin ? 2016-04-05T05:05:55Z |3b|: no, different projects 2016-04-05T05:07:11Z |3b|: similar effect, but different implementation details 2016-04-05T05:07:50Z |3b| wouldn't expect it to matter too much in this case, but we probably have different compiler versions, maybe different make or shell or whatever as well 2016-04-05T05:07:58Z zRecursive: then, Can cygwin build SBCL now ? 2016-04-05T05:08:32Z |3b| would expect it to, but i haven't tried it, and not sure if anyone else has recently or not 2016-04-05T05:08:48Z |3b|: first thing i would try is building from an sbcl binary if you can 2016-04-05T05:09:18Z |3b|: well, actually first thing would be to check for errors in the build output... you might just be missing some tool it expects to exist 2016-04-05T05:10:08Z zRecursive: ok, i will try to use SBCL to build the newest SBCL instead of ccl later ? 2016-04-05T05:14:07Z zRecursive building now ... 2016-04-05T05:16:41Z rszeno quit (Quit: Leaving.) 2016-04-05T05:24:52Z zRecursive: still error! but sbcl seems give more informaton: "pthreads_win32.h:9:13: error: conflicting types for 'sigset_t'", etc. Maybe i indeed is missing some stuffs. 2016-04-05T05:25:51Z |3b|: ah, seems to be a known bug https://bugs.launchpad.net/sbcl/+bug/1500350 2016-04-05T05:26:48Z zRecursive: yeah, i will use msys2 + mingw instead. 2016-04-05T05:29:33Z scymtym quit (Ping timeout: 276 seconds) 2016-04-05T06:28:19Z salva quit (Ping timeout: 248 seconds) 2016-04-05T06:42:02Z angavrilov joined #sbcl 2016-04-05T06:50:05Z chu is now known as mdunn 2016-04-05T06:51:10Z loke quit (Ping timeout: 248 seconds) 2016-04-05T06:54:44Z mdunn is now known as chu 2016-04-05T07:00:28Z ASau quit (Ping timeout: 252 seconds) 2016-04-05T07:03:22Z loke joined #sbcl 2016-04-05T07:31:04Z scymtym joined #sbcl 2016-04-05T08:45:37Z evilburp joined #sbcl 2016-04-05T08:50:51Z gingerale joined #sbcl 2016-04-05T09:08:19Z zRecursive quit (Remote host closed the connection) 2016-04-05T09:08:42Z zRecursive joined #sbcl 2016-04-05T09:34:23Z zRecursive left #sbcl 2016-04-05T09:48:07Z andreh quit (Remote host closed the connection) 2016-04-05T10:17:19Z attila_lendvai joined #sbcl 2016-04-05T10:17:19Z attila_lendvai quit (Changing host) 2016-04-05T10:17:19Z attila_lendvai joined #sbcl 2016-04-05T11:01:16Z stassats joined #sbcl 2016-04-05T11:05:49Z stassats quit (Ping timeout: 244 seconds) 2016-04-05T11:07:02Z stassats joined #sbcl 2016-04-05T11:14:00Z prxq joined #sbcl 2016-04-05T11:21:36Z scymtym quit (Ping timeout: 268 seconds) 2016-04-05T11:21:49Z scymtym joined #sbcl 2016-04-05T11:26:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-05T11:26:32Z karswell quit (Read error: Connection reset by peer) 2016-04-05T11:26:45Z karswell joined #sbcl 2016-04-05T11:40:54Z sjl joined #sbcl 2016-04-05T11:41:13Z prxq quit (Remote host closed the connection) 2016-04-05T11:45:55Z sjl quit (Ping timeout: 252 seconds) 2016-04-05T11:46:55Z sjl joined #sbcl 2016-04-05T12:14:00Z DGASAU` joined #sbcl 2016-04-05T12:15:58Z DGASAU quit (Ping timeout: 248 seconds) 2016-04-05T12:16:15Z DGASAU` is now known as DGASAU 2016-04-05T12:47:39Z stassats quit (Ping timeout: 276 seconds) 2016-04-05T12:49:36Z stassats joined #sbcl 2016-04-05T12:54:02Z stassats quit (Ping timeout: 250 seconds) 2016-04-05T12:55:05Z stassats joined #sbcl 2016-04-05T13:00:20Z andreh joined #sbcl 2016-04-05T13:05:12Z andreh quit (Ping timeout: 268 seconds) 2016-04-05T13:17:28Z abbe_ joined #sbcl 2016-04-05T13:21:19Z kanru` joined #sbcl 2016-04-05T13:21:42Z brucem_ joined #sbcl 2016-04-05T13:22:06Z edgar-rft quit (*.net *.split) 2016-04-05T13:22:08Z whiteline quit (*.net *.split) 2016-04-05T13:22:08Z reb quit (*.net *.split) 2016-04-05T13:22:09Z abbe quit (*.net *.split) 2016-04-05T13:22:09Z brucem quit (*.net *.split) 2016-04-05T13:22:09Z dougk_ quit (*.net *.split) 2016-04-05T13:22:10Z drmeister quit (*.net *.split) 2016-04-05T13:22:10Z kanru quit (*.net *.split) 2016-04-05T13:22:11Z nicdev` quit (*.net *.split) 2016-04-05T13:22:13Z gingerale quit (*.net *.split) 2016-04-05T13:22:14Z rtmpdavid quit (*.net *.split) 2016-04-05T13:22:17Z |3b| quit (*.net *.split) 2016-04-05T13:22:17Z foom quit (*.net *.split) 2016-04-05T13:22:18Z gko quit (*.net *.split) 2016-04-05T13:22:21Z pootler_ quit (*.net *.split) 2016-04-05T13:24:09Z drmeister_ joined #sbcl 2016-04-05T13:24:09Z reb`` joined #sbcl 2016-04-05T13:24:09Z nicdev`` joined #sbcl 2016-04-05T13:24:09Z gingerale joined #sbcl 2016-04-05T13:24:09Z rtmpdavid joined #sbcl 2016-04-05T13:24:09Z |3b| joined #sbcl 2016-04-05T13:24:09Z foom joined #sbcl 2016-04-05T13:24:09Z gko joined #sbcl 2016-04-05T13:24:09Z pootler_ joined #sbcl 2016-04-05T13:24:17Z drmeister_ quit (Changing host) 2016-04-05T13:24:17Z drmeister_ joined #sbcl 2016-04-05T13:24:20Z brucem_ is now known as brucem 2016-04-05T13:24:28Z brucem quit (Changing host) 2016-04-05T13:24:28Z brucem joined #sbcl 2016-04-05T13:27:31Z whiteline joined #sbcl 2016-04-05T13:28:05Z edgar-rft joined #sbcl 2016-04-05T13:29:23Z dougk joined #sbcl 2016-04-05T13:34:01Z nzambe joined #sbcl 2016-04-05T14:55:39Z edgar-rft quit (Quit: edgar-rft) 2016-04-05T15:18:06Z mejja joined #sbcl 2016-04-05T15:22:34Z hydan joined #sbcl 2016-04-05T15:22:35Z hydan quit (Remote host closed the connection) 2016-04-05T15:26:28Z attila_lendvai joined #sbcl 2016-04-05T15:26:28Z attila_lendvai quit (Changing host) 2016-04-05T15:26:28Z attila_lendvai joined #sbcl 2016-04-05T15:58:55Z evilburp quit (Remote host closed the connection) 2016-04-05T16:20:45Z Bicyclidine joined #sbcl 2016-04-05T16:36:50Z andreh joined #sbcl 2016-04-05T17:45:19Z drmeister_ is now known as drmeister 2016-04-05T17:48:18Z andreh quit (Remote host closed the connection) 2016-04-05T17:58:21Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-05T17:59:32Z Bicyclidine joined #sbcl 2016-04-05T18:01:52Z andreh joined #sbcl 2016-04-05T18:12:51Z Bicyclidine quit (Ping timeout: 246 seconds) 2016-04-05T18:14:55Z Bicyclidine joined #sbcl 2016-04-05T18:21:27Z mejja left #sbcl 2016-04-05T18:22:47Z Bicyclidine quit (Ping timeout: 268 seconds) 2016-04-05T18:39:14Z Bicyclidine joined #sbcl 2016-04-05T18:42:35Z scymtym quit (Ping timeout: 244 seconds) 2016-04-05T18:50:39Z Bicyclidine quit (Ping timeout: 246 seconds) 2016-04-05T18:53:11Z edgar-rft joined #sbcl 2016-04-05T18:56:05Z andreh quit (Remote host closed the connection) 2016-04-05T18:56:18Z Bicyclidine joined #sbcl 2016-04-05T18:58:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-05T19:06:05Z andreh joined #sbcl 2016-04-05T19:06:36Z andreh quit (Remote host closed the connection) 2016-04-05T19:15:09Z stassats quit (Ping timeout: 260 seconds) 2016-04-05T19:16:43Z stassats joined #sbcl 2016-04-05T19:20:05Z attila_lendvai joined #sbcl 2016-04-05T19:20:05Z attila_lendvai quit (Changing host) 2016-04-05T19:20:05Z attila_lendvai joined #sbcl 2016-04-05T19:20:50Z stassats quit (Ping timeout: 244 seconds) 2016-04-05T19:21:44Z stassats joined #sbcl 2016-04-05T19:34:21Z scymtym joined #sbcl 2016-04-05T19:47:29Z edgar-rft quit (Quit: edgar-rft) 2016-04-05T20:07:14Z andreh joined #sbcl 2016-04-05T20:12:27Z andreh quit (Ping timeout: 264 seconds) 2016-04-05T20:20:23Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-05T20:28:25Z andreh joined #sbcl 2016-04-05T20:31:53Z Bicyclidine joined #sbcl 2016-04-05T20:37:16Z andreh quit (Remote host closed the connection) 2016-04-05T20:57:37Z Bicyclidine quit (Quit: leaving) 2016-04-05T21:01:51Z ASau joined #sbcl 2016-04-05T21:24:37Z attila_lendvai quit (Quit: Leaving.) 2016-04-05T21:24:43Z attila_lendvai joined #sbcl 2016-04-05T21:24:43Z attila_lendvai quit (Changing host) 2016-04-05T21:24:43Z attila_lendvai joined #sbcl 2016-04-05T21:33:53Z attila_lendvai quit (Quit: Leaving.) 2016-04-05T21:37:33Z gingerale quit (Remote host closed the connection) 2016-04-05T21:46:45Z minion quit (Disconnected by services) 2016-04-05T21:46:49Z minion joined #sbcl 2016-04-05T21:47:00Z Cthulhux` joined #sbcl 2016-04-05T21:47:41Z Cthulhux quit (Read error: Connection reset by peer) 2016-04-05T21:47:50Z slyrus joined #sbcl 2016-04-05T21:54:02Z angavrilov quit (Remote host closed the connection) 2016-04-05T22:44:22Z drewc quit (Ping timeout: 244 seconds) 2016-04-05T23:02:18Z slyrus quit (Ping timeout: 246 seconds) 2016-04-05T23:02:27Z slyrus_ joined #sbcl 2016-04-05T23:03:18Z slyrus_ is now known as slyrus 2016-04-05T23:06:40Z kenanb joined #sbcl 2016-04-05T23:08:43Z drewc joined #sbcl 2016-04-05T23:08:52Z kenanb: SBCL on Windows: I was trying to request and parse some unicode JSON data from Google Maps API using Drakma and YASON, now if I drakma:http-request the 2016-04-05T23:08:52Z kenanb: data as a stream, set returned streams external-format to utf-8, and yason:parse the stream, I get errors like "colon expected after 'foo'" but if I first flexi-streams:octets-to-string the data with utf-8 external format and then yason:parse the string, there is no error. 2016-04-05T23:09:08Z kenanb: when I tried the same with CCL, I didn't get any error 2016-04-05T23:09:37Z kenanb: any idea why this happens in SBCL? 2016-04-05T23:10:17Z kenanb: I also tried to set sb-impl::*default-external-format* to :utf-8 before loading anything hoping it is related, but nothing changed 2016-04-05T23:20:33Z slyrus quit (Ping timeout: 244 seconds) 2016-04-05T23:35:42Z stassats: kenanb: hunchentoot does its own external format processing 2016-04-05T23:37:47Z nmeum joined #sbcl 2016-04-05T23:42:50Z nmeum: Is it possible to compile sbcl on a non-NPTL system? If so: How? 2016-04-05T23:42:51Z kenanb: stassats: but there is no hunchentoot involved, its yason and drakma 2016-04-05T23:46:52Z stassats quit (Ping timeout: 244 seconds) 2016-04-05T23:47:55Z zRecursive joined #sbcl 2016-04-06T00:27:43Z drewc quit (Ping timeout: 244 seconds) 2016-04-06T00:32:32Z andreh joined #sbcl 2016-04-06T00:51:42Z drewc joined #sbcl 2016-04-06T01:06:48Z slyrus joined #sbcl 2016-04-06T01:07:01Z fitzsim quit (Read error: Connection reset by peer) 2016-04-06T01:07:15Z fitzsim joined #sbcl 2016-04-06T01:09:57Z carvite quit (Ping timeout: 276 seconds) 2016-04-06T01:11:45Z carvite joined #sbcl 2016-04-06T01:27:10Z slyrus quit (Ping timeout: 250 seconds) 2016-04-06T01:30:39Z slyrus joined #sbcl 2016-04-06T02:19:00Z zRecursive quit (Remote host closed the connection) 2016-04-06T02:19:21Z zRecursive joined #sbcl 2016-04-06T02:50:14Z fisxoj joined #sbcl 2016-04-06T03:11:09Z zRecursive: weird ! sbcl.exe can build the newest sbcl from git repo, but ccl built failure using the newest msys2+mingw ? 2016-04-06T03:19:02Z andreh quit (Remote host closed the connection) 2016-04-06T03:21:44Z andreh_ joined #sbcl 2016-04-06T03:23:42Z psilord1 joined #sbcl 2016-04-06T03:24:46Z slyrus quit (Ping timeout: 252 seconds) 2016-04-06T03:30:42Z npatrick04 joined #sbcl 2016-04-06T03:31:25Z slyrus joined #sbcl 2016-04-06T03:36:09Z rszeno joined #sbcl 2016-04-06T03:45:20Z fisxoj quit (Quit: fisxoj) 2016-04-06T04:32:45Z p_l quit (Ping timeout: 276 seconds) 2016-04-06T04:39:49Z npatrick04 quit (Ping timeout: 260 seconds) 2016-04-06T04:45:39Z p_l joined #sbcl 2016-04-06T05:02:39Z p_l quit (Ping timeout: 276 seconds) 2016-04-06T05:02:53Z p_l joined #sbcl 2016-04-06T05:17:06Z psilord1 quit (Quit: Leaving.) 2016-04-06T05:21:10Z sjl quit (Ping timeout: 244 seconds) 2016-04-06T05:25:40Z sjl joined #sbcl 2016-04-06T05:31:49Z scymtym quit (Ping timeout: 252 seconds) 2016-04-06T05:41:39Z sjl quit (Ping timeout: 246 seconds) 2016-04-06T05:44:16Z edgar-rft joined #sbcl 2016-04-06T06:11:22Z rszeno quit (Quit: Leaving.) 2016-04-06T06:28:54Z salva joined #sbcl 2016-04-06T06:29:49Z andreh_ quit 2016-04-06T06:31:04Z andreh joined #sbcl 2016-04-06T07:24:27Z gingerale joined #sbcl 2016-04-06T07:24:40Z slyrus quit (Ping timeout: 244 seconds) 2016-04-06T07:31:24Z scymtym joined #sbcl 2016-04-06T07:34:27Z andreh quit (Remote host closed the connection) 2016-04-06T07:36:45Z slyrus joined #sbcl 2016-04-06T07:43:10Z ASau quit (Remote host closed the connection) 2016-04-06T07:43:45Z ASau joined #sbcl 2016-04-06T07:44:57Z Bike quit (Quit: SEEK) 2016-04-06T07:47:11Z scymtym_ joined #sbcl 2016-04-06T07:55:33Z ASau quit (Ping timeout: 276 seconds) 2016-04-06T08:03:23Z zRecursive left #sbcl 2016-04-06T08:11:19Z angavrilov joined #sbcl 2016-04-06T08:13:35Z gingerale quit (Remote host closed the connection) 2016-04-06T08:16:37Z kenanb left #sbcl 2016-04-06T08:51:23Z scymtym_ quit (Remote host closed the connection) 2016-04-06T08:51:58Z scymtym_ joined #sbcl 2016-04-06T09:39:46Z whiteline_ joined #sbcl 2016-04-06T09:40:47Z whiteline quit (Disconnected by services) 2016-04-06T09:40:53Z whiteline_ is now known as whiteline 2016-04-06T10:23:13Z foom quit (Ping timeout: 250 seconds) 2016-04-06T10:36:10Z foom joined #sbcl 2016-04-06T11:26:12Z whiteline quit (Read error: Connection reset by peer) 2016-04-06T11:26:26Z whiteline joined #sbcl 2016-04-06T11:35:03Z sjl joined #sbcl 2016-04-06T11:46:57Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-06T12:48:42Z DGASAU quit (Ping timeout: 276 seconds) 2016-04-06T12:52:26Z DGASAU joined #sbcl 2016-04-06T13:14:19Z DGASAU quit (Read error: Connection reset by peer) 2016-04-06T13:16:17Z DGASAU joined #sbcl 2016-04-06T13:29:07Z hydan joined #sbcl 2016-04-06T13:29:55Z DeadTrickster joined #sbcl 2016-04-06T14:13:34Z scymtym quit (Ping timeout: 268 seconds) 2016-04-06T14:23:22Z slyrus quit (Ping timeout: 260 seconds) 2016-04-06T15:02:17Z sjl quit (Ping timeout: 250 seconds) 2016-04-06T15:04:43Z sjl joined #sbcl 2016-04-06T15:15:28Z psilord joined #sbcl 2016-04-06T15:20:14Z Bike joined #sbcl 2016-04-06T15:21:34Z sjl quit (Ping timeout: 248 seconds) 2016-04-06T15:24:15Z psilord quit (Quit: Leaving.) 2016-04-06T15:28:10Z sjl joined #sbcl 2016-04-06T15:40:44Z mateuszb quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-04-06T15:56:25Z slyrus joined #sbcl 2016-04-06T16:03:57Z slyrus quit (Ping timeout: 268 seconds) 2016-04-06T16:09:59Z scymtym joined #sbcl 2016-04-06T16:29:26Z slyrus joined #sbcl 2016-04-06T17:08:16Z stassats joined #sbcl 2016-04-06T17:12:33Z stassats quit (Ping timeout: 246 seconds) 2016-04-06T17:13:34Z slyrus quit (Ping timeout: 250 seconds) 2016-04-06T17:14:34Z slyrus joined #sbcl 2016-04-06T17:16:39Z stassats joined #sbcl 2016-04-06T17:20:05Z sjl quit (Ping timeout: 250 seconds) 2016-04-06T17:20:53Z stassats quit (Ping timeout: 244 seconds) 2016-04-06T17:22:05Z stassats joined #sbcl 2016-04-06T17:23:30Z slyrus quit (Ping timeout: 268 seconds) 2016-04-06T17:28:39Z stassats quit (Ping timeout: 244 seconds) 2016-04-06T17:31:07Z stassats joined #sbcl 2016-04-06T17:35:31Z stassats quit (Ping timeout: 248 seconds) 2016-04-06T17:38:36Z stassats joined #sbcl 2016-04-06T17:41:05Z Cthulhux` quit (Changing host) 2016-04-06T17:41:05Z Cthulhux` joined #sbcl 2016-04-06T17:43:05Z stassats quit (Ping timeout: 244 seconds) 2016-04-06T17:44:36Z stassats joined #sbcl 2016-04-06T17:55:31Z andreh joined #sbcl 2016-04-06T18:03:14Z gingerale joined #sbcl 2016-04-06T18:03:34Z sjl joined #sbcl 2016-04-06T18:10:08Z abbe_ is now known as abbe 2016-04-06T18:31:18Z slyrus joined #sbcl 2016-04-06T18:50:51Z andreh quit (Remote host closed the connection) 2016-04-06T18:56:30Z jdz quit (Ping timeout: 246 seconds) 2016-04-06T19:01:31Z jdz joined #sbcl 2016-04-06T19:28:06Z andreh joined #sbcl 2016-04-06T20:15:08Z Bicyclidine joined #sbcl 2016-04-06T20:28:28Z gingerale quit (Remote host closed the connection) 2016-04-06T20:38:15Z myrkraverk quit (Remote host closed the connection) 2016-04-06T21:00:13Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-06T21:02:11Z ASau joined #sbcl 2016-04-06T21:04:18Z Bicyclidine joined #sbcl 2016-04-06T21:05:25Z sjl quit (Ping timeout: 250 seconds) 2016-04-06T21:05:38Z sjl__ joined #sbcl 2016-04-06T21:12:12Z sjl__ is now known as sjl 2016-04-06T21:32:50Z sjl__ joined #sbcl 2016-04-06T21:33:39Z sjl quit (Ping timeout: 246 seconds) 2016-04-06T21:37:04Z reb``: Recent test runs on 32-bit ARM seem to have more failures than I remember. Some of these may be new ... 2016-04-06T21:37:14Z reb``: compiler.pure.lisp / (ODDP BIGNUM NO-CONSING) (LOGTEST BIGNUM NO-CONSING) 2016-04-06T21:37:22Z reb``: float.pure.lisp / (SCALE-FLOAT-OVERFLOW BUG-372) (ADDITION-OVERFLOW BUG-372) (ADDITION-OVERFLOW BUG-372 TAKE-2) 2016-04-06T21:37:32Z reb``: debug.impure.lisp / (TRACE ENCAPSULATE NIL) (TRACE-RECURSIVE ENCAPSULATE NIL) 2016-04-06T21:39:12Z hydan quit (Remote host closed the connection) 2016-04-06T22:16:46Z karswell quit (Read error: Connection reset by peer) 2016-04-06T22:16:59Z karswell joined #sbcl 2016-04-06T22:18:27Z sjl__ quit (Read error: Connection reset by peer) 2016-04-06T22:19:07Z sjl__ joined #sbcl 2016-04-06T22:22:51Z sjl__ is now known as sjl 2016-04-06T22:32:43Z andreh quit (Remote host closed the connection) 2016-04-06T22:47:09Z angavrilov quit (Remote host closed the connection) 2016-04-06T22:49:33Z stassats: reb``: more new tests 2016-04-06T22:49:41Z stassats: reb``: nothing's changed otherwise 2016-04-06T22:52:48Z Bicyclidine quit (Quit: alemagne) 2016-04-06T23:12:05Z fisxoj joined #sbcl 2016-04-06T23:48:51Z karswell quit (Ping timeout: 248 seconds) 2016-04-06T23:59:24Z stassats quit (Ping timeout: 268 seconds) 2016-04-07T00:06:39Z slyrus quit (Ping timeout: 276 seconds) 2016-04-07T00:53:33Z barbone quit (Ping timeout: 240 seconds) 2016-04-07T01:27:57Z fisxoj quit (Quit: fisxoj) 2016-04-07T01:58:37Z mateuszb joined #sbcl 2016-04-07T01:59:04Z nicdev`` is now known as nicdev 2016-04-07T01:59:48Z mateuszb_ joined #sbcl 2016-04-07T02:03:16Z mateuszb quit (Ping timeout: 252 seconds) 2016-04-07T02:17:59Z mateuszb_ quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-04-07T02:19:31Z mateuszb joined #sbcl 2016-04-07T02:22:39Z npatrick04 joined #sbcl 2016-04-07T03:23:05Z edgar-rft quit (Quit: edgar-rft) 2016-04-07T03:34:22Z npatrick04 quit (Ping timeout: 260 seconds) 2016-04-07T03:49:46Z drewc quit (Read error: Connection reset by peer) 2016-04-07T03:50:17Z drewc joined #sbcl 2016-04-07T05:01:03Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-07T05:32:16Z scymtym quit (Ping timeout: 252 seconds) 2016-04-07T05:36:50Z andreh joined #sbcl 2016-04-07T05:47:15Z leo_song quit (Ping timeout: 264 seconds) 2016-04-07T05:48:13Z leo_song joined #sbcl 2016-04-07T05:49:30Z mateuszb quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-04-07T06:24:39Z salva quit (Ping timeout: 244 seconds) 2016-04-07T06:27:47Z salva joined #sbcl 2016-04-07T06:37:32Z Bike quit (Quit: slep) 2016-04-07T06:53:00Z gingerale joined #sbcl 2016-04-07T07:25:54Z angavrilov joined #sbcl 2016-04-07T07:37:50Z edgar-rft joined #sbcl 2016-04-07T07:49:45Z barbone joined #sbcl 2016-04-07T07:58:52Z reb`` quit (Ping timeout: 250 seconds) 2016-04-07T08:37:47Z gingerale quit (Remote host closed the connection) 2016-04-07T08:39:13Z gingerale joined #sbcl 2016-04-07T09:05:40Z ASau quit (Ping timeout: 252 seconds) 2016-04-07T09:20:03Z barbone quit (Ping timeout: 248 seconds) 2016-04-07T09:44:15Z karswell joined #sbcl 2016-04-07T10:52:13Z sjl quit (Ping timeout: 250 seconds) 2016-04-07T11:06:45Z andreh quit (Remote host closed the connection) 2016-04-07T11:39:49Z DGASAU quit (Read error: Connection reset by peer) 2016-04-07T11:41:37Z DGASAU joined #sbcl 2016-04-07T11:42:01Z stassats joined #sbcl 2016-04-07T11:46:15Z DGASAU quit (Ping timeout: 246 seconds) 2016-04-07T11:47:35Z p_l quit (Ping timeout: 244 seconds) 2016-04-07T11:53:22Z DGASAU joined #sbcl 2016-04-07T12:10:47Z sjl joined #sbcl 2016-04-07T12:47:47Z mateuszb joined #sbcl 2016-04-07T13:14:56Z aeth quit (Ping timeout: 244 seconds) 2016-04-07T13:15:49Z aeth joined #sbcl 2016-04-07T13:57:30Z reb`` joined #sbcl 2016-04-07T13:59:36Z andreh joined #sbcl 2016-04-07T14:01:54Z Bike joined #sbcl 2016-04-07T14:03:25Z nzambe joined #sbcl 2016-04-07T14:09:22Z andreh quit (Remote host closed the connection) 2016-04-07T14:14:28Z andreh joined #sbcl 2016-04-07T14:22:32Z psilord joined #sbcl 2016-04-07T14:32:02Z fisxoj joined #sbcl 2016-04-07T14:36:27Z stassats quit (Ping timeout: 260 seconds) 2016-04-07T14:37:46Z reb``: stassats: thanks! 2016-04-07T14:38:01Z stassats joined #sbcl 2016-04-07T14:39:02Z barbone joined #sbcl 2016-04-07T14:44:24Z stassats quit (Ping timeout: 246 seconds) 2016-04-07T14:46:29Z stassats joined #sbcl 2016-04-07T14:50:43Z stassats quit (Ping timeout: 248 seconds) 2016-04-07T14:52:58Z stassats joined #sbcl 2016-04-07T14:55:51Z barbone quit (Ping timeout: 276 seconds) 2016-04-07T14:57:10Z adjivas joined #sbcl 2016-04-07T14:57:33Z andreh quit (Remote host closed the connection) 2016-04-07T15:11:43Z reb``` joined #sbcl 2016-04-07T15:12:20Z reb``` quit (Remote host closed the connection) 2016-04-07T15:14:03Z reb`` quit (Ping timeout: 276 seconds) 2016-04-07T15:19:41Z reb joined #sbcl 2016-04-07T15:28:03Z andreh joined #sbcl 2016-04-07T15:38:33Z andreh quit (Remote host closed the connection) 2016-04-07T15:40:53Z reb``` joined #sbcl 2016-04-07T15:41:21Z reb quit (Ping timeout: 276 seconds) 2016-04-07T15:57:18Z andreh joined #sbcl 2016-04-07T16:05:05Z scymtym joined #sbcl 2016-04-07T16:13:22Z mateuszb quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-04-07T16:19:35Z reb```` joined #sbcl 2016-04-07T16:22:03Z reb``` quit (Ping timeout: 264 seconds) 2016-04-07T16:45:01Z Bicyclidine joined #sbcl 2016-04-07T16:47:21Z reb````` joined #sbcl 2016-04-07T16:49:36Z reb```` quit (Ping timeout: 276 seconds) 2016-04-07T16:52:57Z clique joined #sbcl 2016-04-07T16:55:52Z carvite quit (Ping timeout: 260 seconds) 2016-04-07T16:57:12Z carvite joined #sbcl 2016-04-07T17:28:18Z andreh quit (Remote host closed the connection) 2016-04-07T17:38:22Z andreh joined #sbcl 2016-04-07T18:07:04Z Bicyclidine quit (Ping timeout: 264 seconds) 2016-04-07T18:08:53Z Bicyclidine joined #sbcl 2016-04-07T18:31:43Z clique quit (Quit: Page closed) 2016-04-07T18:43:08Z reb````` quit (Remote host closed the connection) 2016-04-07T18:46:33Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-04-07T18:59:32Z psilord quit (Quit: Leaving.) 2016-04-07T19:00:15Z psilord joined #sbcl 2016-04-07T19:02:51Z stassats quit (Ping timeout: 276 seconds) 2016-04-07T19:08:42Z Bicyclidine joined #sbcl 2016-04-07T19:18:37Z ehaliewicz joined #sbcl 2016-04-07T19:30:49Z DGASAU quit (Ping timeout: 260 seconds) 2016-04-07T19:36:58Z DGASAU joined #sbcl 2016-04-07T19:43:06Z rlatimore joined #sbcl 2016-04-07T19:43:06Z stassats joined #sbcl 2016-04-07T19:47:44Z stassats quit (Ping timeout: 260 seconds) 2016-04-07T19:48:12Z stassats joined #sbcl 2016-04-07T19:49:02Z reb joined #sbcl 2016-04-07T19:54:49Z stassats quit (Ping timeout: 244 seconds) 2016-04-07T19:55:39Z stassats joined #sbcl 2016-04-07T20:02:01Z stassats quit (Ping timeout: 244 seconds) 2016-04-07T20:04:43Z stassats joined #sbcl 2016-04-07T20:05:07Z DGASAU quit (Ping timeout: 252 seconds) 2016-04-07T20:06:52Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-07T20:09:03Z stassats quit (Ping timeout: 240 seconds) 2016-04-07T20:11:05Z DGASAU joined #sbcl 2016-04-07T20:11:40Z stassats joined #sbcl 2016-04-07T20:13:52Z Bicyclidine joined #sbcl 2016-04-07T20:16:03Z stassats quit (Ping timeout: 248 seconds) 2016-04-07T20:17:11Z stassats joined #sbcl 2016-04-07T20:21:41Z stassats quit (Ping timeout: 244 seconds) 2016-04-07T20:24:09Z stassats joined #sbcl 2016-04-07T20:27:24Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-07T20:40:45Z andreh quit (Remote host closed the connection) 2016-04-07T20:47:30Z sjl quit (Ping timeout: 276 seconds) 2016-04-07T20:49:08Z Bicyclidine joined #sbcl 2016-04-07T20:50:50Z Bicyclidine quit (Client Quit) 2016-04-07T20:59:39Z sjl joined #sbcl 2016-04-07T20:59:57Z angavrilov quit (Remote host closed the connection) 2016-04-07T21:05:17Z ASau joined #sbcl 2016-04-07T21:26:47Z ASau quit (Ping timeout: 244 seconds) 2016-04-07T21:30:04Z prxq joined #sbcl 2016-04-07T21:30:29Z p_l joined #sbcl 2016-04-07T21:34:05Z ASau joined #sbcl 2016-04-07T21:41:18Z andreh joined #sbcl 2016-04-07T21:45:11Z barbone joined #sbcl 2016-04-07T21:47:37Z gingerale quit (Remote host closed the connection) 2016-04-07T21:47:54Z andreh quit (Ping timeout: 260 seconds) 2016-04-07T21:49:36Z barbone quit (Client Quit) 2016-04-07T21:54:58Z ASau quit (Remote host closed the connection) 2016-04-07T21:55:13Z prxq quit (Remote host closed the connection) 2016-04-07T21:55:28Z ASau joined #sbcl 2016-04-07T21:57:45Z sjl quit (Ping timeout: 244 seconds) 2016-04-07T22:01:08Z psilord quit (Quit: Leaving.) 2016-04-07T22:36:39Z sjl joined #sbcl 2016-04-07T23:13:53Z andreh joined #sbcl 2016-04-07T23:18:27Z andreh quit (Ping timeout: 264 seconds) 2016-04-07T23:23:45Z andreh joined #sbcl 2016-04-07T23:34:31Z andreh quit (Remote host closed the connection) 2016-04-08T00:00:29Z andreh joined #sbcl 2016-04-08T00:10:04Z eudoxia joined #sbcl 2016-04-08T00:17:07Z slyrus joined #sbcl 2016-04-08T00:25:15Z stassats quit (Ping timeout: 276 seconds) 2016-04-08T00:33:21Z flavioc_ joined #sbcl 2016-04-08T00:34:06Z flavioc_ quit (Client Quit) 2016-04-08T00:38:15Z eudoxia quit (Quit: Leaving) 2016-04-08T00:44:38Z andreh quit (Remote host closed the connection) 2016-04-08T00:50:33Z slyrus quit (Ping timeout: 240 seconds) 2016-04-08T00:58:04Z ehaliewicz quit (Ping timeout: 250 seconds) 2016-04-08T01:14:24Z drewc quit (Ping timeout: 246 seconds) 2016-04-08T01:14:32Z sjl quit (Ping timeout: 250 seconds) 2016-04-08T01:18:46Z drewc joined #sbcl 2016-04-08T01:29:37Z rszeno joined #sbcl 2016-04-08T02:11:28Z sjl joined #sbcl 2016-04-08T02:16:00Z sjl quit (Ping timeout: 246 seconds) 2016-04-08T02:20:42Z rszeno quit (Quit: Leaving.) 2016-04-08T02:21:39Z karswell quit (Remote host closed the connection) 2016-04-08T02:21:52Z karswell joined #sbcl 2016-04-08T02:22:32Z aeth_ joined #sbcl 2016-04-08T02:23:01Z aeth quit (Ping timeout: 250 seconds) 2016-04-08T02:24:31Z aeth_ is now known as aeth 2016-04-08T02:36:30Z karswell quit (Read error: Connection reset by peer) 2016-04-08T03:12:17Z sjl joined #sbcl 2016-04-08T03:16:33Z sjl quit (Ping timeout: 246 seconds) 2016-04-08T03:35:41Z rlatimore quit (Ping timeout: 244 seconds) 2016-04-08T04:13:02Z sjl joined #sbcl 2016-04-08T04:17:34Z sjl quit (Ping timeout: 248 seconds) 2016-04-08T04:29:38Z fisxoj quit (Quit: fisxoj) 2016-04-08T05:13:51Z sjl joined #sbcl 2016-04-08T05:19:03Z sjl quit (Ping timeout: 276 seconds) 2016-04-08T05:52:00Z ehaliewicz joined #sbcl 2016-04-08T05:57:56Z scymtym quit (Ping timeout: 250 seconds) 2016-04-08T06:14:36Z sjl joined #sbcl 2016-04-08T06:15:59Z ehaliewicz quit (Ping timeout: 260 seconds) 2016-04-08T06:20:25Z sjl quit (Ping timeout: 268 seconds) 2016-04-08T07:16:35Z sjl joined #sbcl 2016-04-08T07:21:04Z sjl quit (Ping timeout: 252 seconds) 2016-04-08T07:30:29Z angavrilov joined #sbcl 2016-04-08T08:17:22Z sjl joined #sbcl 2016-04-08T08:21:45Z sjl quit (Ping timeout: 246 seconds) 2016-04-08T08:55:59Z ASau quit (Ping timeout: 244 seconds) 2016-04-08T09:15:53Z sjl joined #sbcl 2016-04-08T09:20:29Z sjl quit (Ping timeout: 268 seconds) 2016-04-08T09:31:26Z attila_lendvai joined #sbcl 2016-04-08T10:33:24Z stassats joined #sbcl 2016-04-08T10:37:48Z stassats quit (Ping timeout: 244 seconds) 2016-04-08T10:38:20Z stassats joined #sbcl 2016-04-08T10:42:27Z stassats quit (Ping timeout: 246 seconds) 2016-04-08T10:43:18Z stassats joined #sbcl 2016-04-08T10:47:49Z stassats quit (Ping timeout: 260 seconds) 2016-04-08T10:48:17Z stassats joined #sbcl 2016-04-08T10:52:36Z stassats quit (Ping timeout: 246 seconds) 2016-04-08T10:53:16Z stassats joined #sbcl 2016-04-08T10:57:57Z stassats quit (Ping timeout: 260 seconds) 2016-04-08T10:58:20Z stassats joined #sbcl 2016-04-08T11:02:34Z stassats quit (Ping timeout: 244 seconds) 2016-04-08T11:04:49Z stassats joined #sbcl 2016-04-08T11:09:19Z stassats quit (Ping timeout: 252 seconds) 2016-04-08T11:09:48Z stassats joined #sbcl 2016-04-08T11:51:14Z sjl joined #sbcl 2016-04-08T12:17:56Z whiteline quit (Read error: Connection reset by peer) 2016-04-08T12:18:18Z whiteline joined #sbcl 2016-04-08T12:20:52Z whiteline quit (Read error: Connection reset by peer) 2016-04-08T12:21:12Z whiteline joined #sbcl 2016-04-08T12:32:06Z andreh joined #sbcl 2016-04-08T12:53:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-08T13:25:51Z adjivas: Hello, please, there is a function from `SB-EXT` to exit sbcl's process with -1 ? 2016-04-08T13:28:47Z flip214: adjivas: POSIX only allows return codes from 0 to 126. 2016-04-08T13:33:02Z adjivas: flip214: Your right, best to returns between 1 to 126 when the program fail 2016-04-08T13:35:25Z stassats: flip214: does it? 2016-04-08T13:38:30Z flip214: stassats: exit() says that 8 bit can be returned; but IFSIGNALLED uses bit 7, so killed-by-signal-9 has the same return code as exit(137)... 2016-04-08T13:44:44Z stassats: flip214: that's just interpretation of values 2016-04-08T13:45:13Z adjivas: flip214: It's solved! The command was `(sb-ext:exit :code 1))` 2016-04-08T13:45:43Z stassats: and even then, how many signals are there? 2016-04-08T13:46:46Z adjivas: stassats: Well it's typed like unsigned char 2016-04-08T13:46:59Z adjivas: stassats: -1 will returns 255 2016-04-08T13:47:26Z stassats: exit? it's "int" 2016-04-08T13:48:55Z flip214: stassats: well, on my debian amd64 SIGRTMAX is 64. 2016-04-08T13:51:41Z stassats: that's _RT_ 2016-04-08T13:52:46Z adjivas: stassats: Well yes but isn't the conduct adopted by my command, I return only between 0 and 255 2016-04-08T13:53:35Z stassats: adjivas: it's masked off with 255, but its signature is not unsigned char 2016-04-08T13:54:13Z flip214: and 127 overlaps with "cannot exec", and 129 .. 191 overlaps with killed-by-signal. 2016-04-08T13:54:34Z stassats: that's just interpretation, you can return anything 2016-04-08T13:54:59Z adjivas: stassats: Right 2016-04-08T13:55:21Z flip214: stassats: yes, of course you can return *anything*... but successful communication means that the receiver can get the original meaning back. 2016-04-08T13:56:20Z stassats: flip214: yes, 0-255 do reach waitpid 2016-04-08T13:56:24Z stassats: just don't get killed 2016-04-08T14:00:41Z stassats: posix also doesn't say what are the values of EXIT_SUCCESS, EXIT_FAILURE 2016-04-08T14:01:42Z stassats: well, EXIT_SUCCESS is 0, but EXIT_SUCCESS is just non zero 2016-04-08T14:05:35Z stassats: flip214: so, you can't return anything but EXIT_SUCCESS or EXIT_FAILURE if you care for proper interpretation 2016-04-08T14:07:07Z andreh quit (Remote host closed the connection) 2016-04-08T14:12:05Z stassats: and there's always waitid 2016-04-08T14:15:27Z stassats: so, if you control the caller, you can just use waitid and you have all the 8 bites 2016-04-08T14:15:28Z stassats: bits 2016-04-08T14:18:47Z andreh joined #sbcl 2016-04-08T14:19:33Z stassats: flip214: and i think at least on linux it's not true that 137 and kill-9 gets the same status 2016-04-08T14:19:39Z flip214: man 2 exit says: The use of EXIT_SUCCESS and EXIT_FAILURE is slightly more portable (to non-UNIX environments) than the use of 0 and some nonzero value like 1 or -1. In particular, VMS uses a different convention. 2016-04-08T14:20:37Z flip214: $ perl -e 'exit 137' ; echo $? 2016-04-08T14:20:37Z flip214: 137 2016-04-08T14:20:41Z stassats: 137 is 35072, kill-9 is 9 2016-04-08T14:20:42Z flip214: $ perl -e 'kill -9, $$' ; echo $? 2016-04-08T14:20:43Z flip214: Killed 2016-04-08T14:20:43Z flip214: 137 2016-04-08T14:20:53Z stassats: see, "killed" 2016-04-08T14:22:30Z stassats: so, with waitpid you get all the bits, with waitid you get the whole int? 2016-04-08T14:25:59Z stassats: waitid still gives 8 bits 2016-04-08T14:26:28Z flip214: that's sad ... else openssl's 32bit error location information could've been returned directly ;/ 2016-04-08T14:27:08Z stassats: i guess it's to save space for all the process information 2016-04-08T14:27:10Z stassats: 70s style 2016-04-08T14:28:16Z stassats: and supporting VMS... dunno 2016-04-08T14:31:33Z stassats: what if i call the exit sycall directly? 2016-04-08T14:32:55Z stassats: still cut off 2016-04-08T14:33:14Z dougk quit (Remote host closed the connection) 2016-04-08T14:35:00Z stassats: flip214: and for posix, exit()/waipid() is different from the shell conventions 2016-04-08T15:05:01Z dougk joined #sbcl 2016-04-08T15:11:13Z andreh quit (Remote host closed the connection) 2016-04-08T15:11:28Z andreh joined #sbcl 2016-04-08T15:11:58Z andreh quit (Remote host closed the connection) 2016-04-08T15:19:41Z slyrus joined #sbcl 2016-04-08T15:43:08Z scymtym joined #sbcl 2016-04-08T16:06:36Z gingerale joined #sbcl 2016-04-08T16:12:57Z andreh joined #sbcl 2016-04-08T16:17:15Z andreh quit (Ping timeout: 244 seconds) 2016-04-08T16:19:32Z attila_lendvai joined #sbcl 2016-04-08T16:38:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-08T17:01:00Z andreh joined #sbcl 2016-04-08T17:12:30Z slyrus quit (Ping timeout: 248 seconds) 2016-04-08T17:13:17Z gingerale- joined #sbcl 2016-04-08T17:15:30Z gingerale quit (Ping timeout: 246 seconds) 2016-04-08T17:21:48Z andreh quit (Remote host closed the connection) 2016-04-08T17:22:22Z sjl quit (Ping timeout: 260 seconds) 2016-04-08T17:33:39Z andreh joined #sbcl 2016-04-08T17:35:37Z clique joined #sbcl 2016-04-08T17:43:54Z clique quit (Quit: Page closed) 2016-04-08T17:52:35Z andreh quit (Remote host closed the connection) 2016-04-08T17:53:40Z andreh joined #sbcl 2016-04-08T17:59:33Z stassats: i think i know what might be causing all this bad widetag warnings 2016-04-08T18:02:13Z stassats: or maybe not, this being x86-64 2016-04-08T18:03:33Z sjl joined #sbcl 2016-04-08T18:11:28Z stassats: call_into_c doesn't seem to be used on x86-64, that explains why it's a bit strange 2016-04-08T18:17:12Z andreh quit (Remote host closed the connection) 2016-04-08T18:21:59Z andreh joined #sbcl 2016-04-08T18:38:28Z stassats: huh, sb-show build fails 2016-04-08T18:38:41Z stassats: ; defining setf macro for TRULY-THE when (SETF TRULY-THE) was previously treated as a function 2016-04-08T18:51:00Z stassats: dougk: that's something you might be able to figure out 2016-04-08T18:51:40Z dougk: sure 2016-04-08T18:52:08Z stassats: sb-show seems to be broken even further 2016-04-08T18:54:06Z stassats: cannot-/show for some reason complains about #:INDEX being unbound 2016-04-08T18:55:03Z stassats: ok, that's the setf truly-the 2016-04-08T18:55:13Z dougk: change 'defun cannot-show' to a defmacro 2016-04-08T18:55:24Z stassats: the concatenate transform invoked from cannot-show is doing (incf (truly-the index .pos.) ,(length value)) 2016-04-08T18:55:25Z dougk: make it expand to `(progn (%primitive-print ,(concatenate ... stuff)))) 2016-04-08T18:55:55Z dougk: there's no reason to expect that concatenate would work if it's so early in cold-init that you actually "cannot show" anyway! 2016-04-08T18:56:27Z stassats: non transformed concatenate is unlikely to work 2016-04-08T18:57:29Z eudoxia joined #sbcl 2016-04-08T18:58:38Z stassats: replaced concatenate with sb-kernel:%concatenate-to-base-string 2016-04-08T19:00:27Z andreh quit (Remote host closed the connection) 2016-04-08T19:04:57Z stassats: can't /SHOW:Test of CANNOT-/SHOW [don't worry - this is expected] 2016-04-08T19:04:58Z stassats: ok 2016-04-08T19:05:09Z stassats: but then 45857 Segmentation fault: 11 2016-04-08T19:05:11Z stassats: sigh 2016-04-08T19:07:35Z stassats: now i can't find where it dumped the core 2016-04-08T19:08:11Z stassats: /cores, what a great idea 2016-04-08T19:08:18Z andreh joined #sbcl 2016-04-08T19:12:31Z andreh quit (Remote host closed the connection) 2016-04-08T19:12:37Z carvite quit (Ping timeout: 260 seconds) 2016-04-08T19:15:10Z carvite joined #sbcl 2016-04-08T19:22:42Z eudoxia_ joined #sbcl 2016-04-08T19:22:54Z eudoxia_ quit (Remote host closed the connection) 2016-04-08T19:23:14Z eudoxia_ joined #sbcl 2016-04-08T19:23:14Z eudoxia_ quit (Client Quit) 2016-04-08T19:24:17Z Shinmera joined #sbcl 2016-04-08T19:25:14Z Shinmera: Can someone confirm that this is a bug: (let ((/ 0))) => Constant 0 conflicts with its asserted type LIST. 2016-04-08T19:25:14Z minion: Shinmera, memo from drmeister: Could you install tmux on linud? That would make working on there a lot easier because I could keep terminal sessions open. 2016-04-08T19:25:19Z Shinmera: This is on 1.3.3.66-b7bdbc4 2016-04-08T19:25:35Z stassats: clhs //v 2016-04-08T19:25:35Z specbot: http://www.lispworks.com/reference/HyperSpec/Body/v_sl_sls.htm 2016-04-08T19:26:13Z eudoxia quit (Read error: Connection reset by peer) 2016-04-08T19:26:32Z Shinmera: So the type assertion is kept even for local bindings? 2016-04-08T19:26:48Z stassats: what's a local binding? 2016-04-08T19:27:47Z Shinmera: A let binding is what I'm referring to 2016-04-08T19:28:08Z stassats: well, yeah 2016-04-08T19:28:29Z stassats: you can't have "local" bindings for special variables 2016-04-08T19:29:05Z Shinmera: Alright, thanks. 2016-04-08T19:35:25Z sjl__ joined #sbcl 2016-04-08T19:37:40Z sjl quit (Ping timeout: 264 seconds) 2016-04-08T19:45:49Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-04-08T19:51:54Z sjl__ is now known as sjl 2016-04-08T19:57:19Z sjl quit (Ping timeout: 244 seconds) 2016-04-08T20:06:15Z sjl joined #sbcl 2016-04-08T20:07:12Z gingerale- quit (Remote host closed the connection) 2016-04-08T20:12:10Z fiveop joined #sbcl 2016-04-08T20:22:43Z Bicyclidine joined #sbcl 2016-04-08T20:32:50Z slyrus joined #sbcl 2016-04-08T20:34:01Z fiveop quit 2016-04-08T20:56:51Z stassats: dougk: i tested my changes to the print vop with sb-kernel:%concatenate-to-base-string, but now waiting for (setf truly-the) to work 2016-04-08T20:57:28Z stassats: not "waiting" waiting, but i'm not eager to commit %concatenate-to-base-string 2016-04-08T20:58:30Z stassats: dougk: i can open a ticket if that's something non-trivial 2016-04-08T20:58:59Z dougk: oh i thought you had it working. i'll fix it 2016-04-08T20:59:14Z dougk: btw you broke check-bound in the interpreter, i just pushed that fix 2016-04-08T20:59:21Z stassats: i thought you though that 2016-04-08T20:59:37Z stassats: that's not surprising, i don't really use the interpreter 2016-04-08T21:00:36Z dougk: it's used in our build cloud which you can hear about at the European Lisp Symposium ! 2016-04-08T21:01:01Z dougk: (to which i'm not going) 2016-04-08T21:01:21Z stassats: neither am i, at least not really thinking about going 2016-04-08T21:02:27Z stassats: i guess (setf truly-the) can be added to cross-misc 2016-04-08T21:05:26Z hydan joined #sbcl 2016-04-08T21:06:20Z phoe_krk joined #sbcl 2016-04-08T21:06:55Z phoe_krk: I want to save-lisp-without-dying for backup purposes. Is it possible to do that, or do I need to save-lisp-and-die, copy the image elsewhere and then immediately re-run the saved image? 2016-04-08T21:08:07Z dougk: stassats: i have the truly-the issue fixed, give me a few minutes 2016-04-08T21:08:26Z stassats: dougk: well, i'm not really going to use sb-show, so, no rush 2016-04-08T21:08:39Z stassats: phoe_krk: you can fork 2016-04-08T21:09:02Z hydan quit (Client Quit) 2016-04-08T21:09:03Z stassats: but in general, that's not a really great idea 2016-04-08T21:10:51Z phoe_krk: stassats: fork? 2016-04-08T21:11:04Z stassats: save-lisp-and-die 2016-04-08T21:11:45Z stassats: if that's your "backup" strategy, then something's wrong 2016-04-08T21:11:49Z ASau joined #sbcl 2016-04-08T21:12:18Z phoe_krk: stassats: it's not my backup strategy, I want to be able to save snapshots 2016-04-08T21:12:46Z stassats: snapshots of what? 2016-04-08T21:12:57Z phoe_krk: And I can't see an option for forking anywhere inside save-lisp-and-die. Let me find things. 2016-04-08T21:12:57Z White_Flame: phoe_krk: as well as with Lisp, we've built a lot of snapshottable development environment. It's always a better idea to save the code to get you to that snapshot point, as opposed to tryign to transparently save your state 2016-04-08T21:13:50Z stassats: phoe_krk: there's no such option in save-lisp-and-die 2016-04-08T21:14:18Z phoe_krk: White_Flame: we'll be using git with Lisp scripts to autoload the newest version, so that's the version control. I just want to experiment with Lisp a tiny bit, and that's one way I want to check out. 2016-04-08T21:14:37Z phoe_krk: stassats: how do I fork then? I don't think I can do it from outside the SBCL image 2016-04-08T21:14:42Z stassats: save-lisp-and-die is used for creating executables, not for snapshots 2016-04-08T21:15:27Z stassats: it's going to fall flat for anything complicated 2016-04-08T21:15:30Z White_Flame: reloading from a save-lisp-and-die also wouldn't resume the program counter in your main program, nor have any threads running 2016-04-08T21:15:47Z White_Flame: as well as all the ephemeral state like open sockets or files 2016-04-08T21:15:49Z stassats: well, save-lisp-and-die won't even work if you have multiple threads 2016-04-08T21:16:01Z White_Flame: true, I've never tried 2016-04-08T21:16:07Z White_Flame: since it conceptually doesnt' make sense 2016-04-08T21:19:03Z stassats: dougk: ok, so that's how you fixed it 2016-04-08T21:19:32Z stassats: i thought a (defmacro truly-the (type expr) `(the ,type ,expr)) counterpart would do 2016-04-08T21:20:40Z phoe_krk: https://deplinenoise.wordpress.com/2010/11/13/sbcl-core-saving/ 2016-04-08T21:20:44Z phoe_krk: That's what I needed. 2016-04-08T21:21:01Z stassats: dougk: does that mean any usage of concatenate won't work anymore? 2016-04-08T21:21:40Z dougk: no the only use that wouldn't work was one cross-compiled before defsetfs is 2016-04-08T21:21:52Z stassats: ok then 2016-04-08T21:23:17Z stassats: what's even the point of cannot-/show? 2016-04-08T21:23:34Z dougk: there is none 2016-04-08T21:24:51Z dougk: streams didn't used to work early enough. 2016-04-08T21:41:28Z adjivas: Hello, someone can recommend to me a documentation generator from my lisp comment? 2016-04-08T21:51:32Z Bicyclidine quit (Ping timeout: 244 seconds) 2016-04-08T21:57:40Z Bicyclidine joined #sbcl 2016-04-08T22:12:20Z andreh joined #sbcl 2016-04-08T22:19:41Z Bicyclidine quit (Quit: false) 2016-04-08T22:29:23Z slyrus quit (Remote host closed the connection) 2016-04-08T23:02:47Z angavrilov quit (Remote host closed the connection) 2016-04-08T23:03:03Z edgar-rft quit (Quit: edgar-rft) 2016-04-08T23:15:41Z andreh quit (Ping timeout: 248 seconds) 2016-04-08T23:55:06Z andreh joined #sbcl 2016-04-09T00:25:20Z andreh quit (Remote host closed the connection) 2016-04-09T00:37:54Z stassats quit (Ping timeout: 260 seconds) 2016-04-09T01:03:26Z sjl quit (Ping timeout: 248 seconds) 2016-04-09T01:24:34Z drewc quit (Ping timeout: 252 seconds) 2016-04-09T02:00:41Z sjl joined #sbcl 2016-04-09T02:06:04Z sjl quit (Ping timeout: 250 seconds) 2016-04-09T02:09:13Z fitzsim quit (Read error: Connection reset by peer) 2016-04-09T02:39:02Z drewc joined #sbcl 2016-04-09T03:02:41Z sjl joined #sbcl 2016-04-09T03:07:44Z sjl quit (Ping timeout: 244 seconds) 2016-04-09T03:53:50Z andreh joined #sbcl 2016-04-09T03:54:18Z andreh quit (Remote host closed the connection) 2016-04-09T04:04:42Z sjl joined #sbcl 2016-04-09T04:10:03Z sjl quit (Ping timeout: 240 seconds) 2016-04-09T05:06:23Z sjl joined #sbcl 2016-04-09T05:11:53Z sjl quit (Ping timeout: 268 seconds) 2016-04-09T05:27:03Z andreh joined #sbcl 2016-04-09T05:31:29Z andreh quit (Remote host closed the connection) 2016-04-09T06:08:19Z sjl joined #sbcl 2016-04-09T06:14:13Z sjl quit (Ping timeout: 244 seconds) 2016-04-09T06:21:36Z salva quit (Ping timeout: 246 seconds) 2016-04-09T06:23:56Z gingerale joined #sbcl 2016-04-09T06:48:05Z salva joined #sbcl 2016-04-09T06:53:25Z mejja joined #sbcl 2016-04-09T07:08:50Z Bike quit (Read error: Connection reset by peer) 2016-04-09T07:10:51Z sjl joined #sbcl 2016-04-09T07:15:12Z sjl quit (Ping timeout: 244 seconds) 2016-04-09T07:18:54Z clique joined #sbcl 2016-04-09T08:11:37Z sjl joined #sbcl 2016-04-09T08:16:08Z sjl quit (Ping timeout: 250 seconds) 2016-04-09T08:37:59Z angavrilov joined #sbcl 2016-04-09T08:39:22Z edgar-rft joined #sbcl 2016-04-09T08:41:59Z clique quit (Quit: Page closed) 2016-04-09T08:59:34Z Bike joined #sbcl 2016-04-09T09:12:30Z sjl joined #sbcl 2016-04-09T09:18:40Z sjl quit (Ping timeout: 252 seconds) 2016-04-09T10:14:58Z sjl joined #sbcl 2016-04-09T10:19:42Z sjl quit (Ping timeout: 260 seconds) 2016-04-09T11:10:58Z stassats joined #sbcl 2016-04-09T11:15:29Z stassats quit (Ping timeout: 260 seconds) 2016-04-09T11:15:49Z stassats joined #sbcl 2016-04-09T11:15:58Z sjl joined #sbcl 2016-04-09T11:20:03Z stassats quit (Ping timeout: 240 seconds) 2016-04-09T11:20:51Z stassats joined #sbcl 2016-04-09T11:21:07Z sjl quit (Ping timeout: 248 seconds) 2016-04-09T11:26:03Z stassats quit (Ping timeout: 276 seconds) 2016-04-09T11:26:19Z stassats joined #sbcl 2016-04-09T11:30:37Z stassats quit (Ping timeout: 248 seconds) 2016-04-09T11:31:51Z stassats joined #sbcl 2016-04-09T11:36:29Z stassats quit (Ping timeout: 260 seconds) 2016-04-09T11:36:49Z stassats joined #sbcl 2016-04-09T11:41:17Z stassats quit (Ping timeout: 244 seconds) 2016-04-09T11:41:52Z stassats joined #sbcl 2016-04-09T11:46:26Z sjl joined #sbcl 2016-04-09T11:49:44Z sjl__ joined #sbcl 2016-04-09T11:52:35Z sjl quit (Ping timeout: 248 seconds) 2016-04-09T13:58:37Z sjl__ is now known as sjl 2016-04-09T14:02:51Z stassats quit (Ping timeout: 264 seconds) 2016-04-09T14:03:56Z stassats joined #sbcl 2016-04-09T14:08:09Z stassats quit (Ping timeout: 246 seconds) 2016-04-09T14:10:25Z stassats joined #sbcl 2016-04-09T14:14:33Z stassats quit (Ping timeout: 240 seconds) 2016-04-09T14:15:27Z stassats joined #sbcl 2016-04-09T14:20:04Z stassats quit (Ping timeout: 252 seconds) 2016-04-09T14:20:27Z stassats joined #sbcl 2016-04-09T14:24:54Z stassats quit (Ping timeout: 250 seconds) 2016-04-09T14:25:57Z stassats joined #sbcl 2016-04-09T14:30:15Z stassats quit (Ping timeout: 244 seconds) 2016-04-09T14:31:28Z stassats joined #sbcl 2016-04-09T14:57:25Z f0ff joined #sbcl 2016-04-09T15:03:56Z f0ff: is it possible to get threading on armhf? 2016-04-09T15:04:51Z f0ff: playing around with a raspberry pi 2016-04-09T15:22:32Z Xof: it's not implemented yet 2016-04-09T15:22:35Z Xof: I have the easy half done 2016-04-09T15:33:02Z f0ff: Oki :-) 2016-04-09T15:33:38Z andreh joined #sbcl 2016-04-09T15:38:51Z andreh quit (Remote host closed the connection) 2016-04-09T15:47:30Z eudoxia joined #sbcl 2016-04-09T15:48:14Z eudoxia quit (Client Quit) 2016-04-09T16:34:02Z ASau quit (Ping timeout: 250 seconds) 2016-04-09T17:32:00Z andreh joined #sbcl 2016-04-09T17:36:44Z vydd joined #sbcl 2016-04-09T17:47:42Z clique joined #sbcl 2016-04-09T17:54:18Z drewc quit (Ping timeout: 244 seconds) 2016-04-09T17:55:17Z drewc joined #sbcl 2016-04-09T18:00:21Z fisxoj joined #sbcl 2016-04-09T20:11:34Z prxq joined #sbcl 2016-04-09T20:17:25Z vydd quit 2016-04-09T20:41:08Z ASau joined #sbcl 2016-04-09T20:50:31Z akkad quit (Ping timeout: 244 seconds) 2016-04-09T20:51:33Z Intensity quit (Ping timeout: 240 seconds) 2016-04-09T20:57:13Z Intensity joined #sbcl 2016-04-09T21:02:48Z akkad joined #sbcl 2016-04-09T21:28:29Z clique quit (Quit: Page closed) 2016-04-09T21:41:55Z angavrilov quit (Remote host closed the connection) 2016-04-09T21:48:39Z prxq quit (Remote host closed the connection) 2016-04-09T22:02:18Z karswell joined #sbcl 2016-04-09T22:36:35Z hydan joined #sbcl 2016-04-09T22:37:23Z hydan quit (Remote host closed the connection) 2016-04-09T23:17:09Z gingerale quit (Remote host closed the connection) 2016-04-09T23:28:44Z stassats quit (Ping timeout: 260 seconds) 2016-04-09T23:46:58Z andreh quit (Remote host closed the connection) 2016-04-10T00:29:46Z andreh joined #sbcl 2016-04-10T00:34:13Z andreh quit (Remote host closed the connection) 2016-04-10T00:36:51Z andreh joined #sbcl 2016-04-10T00:40:43Z andreh quit (Remote host closed the connection) 2016-04-10T00:43:33Z andreh joined #sbcl 2016-04-10T00:46:20Z andreh quit (Remote host closed the connection) 2016-04-10T00:49:56Z andreh joined #sbcl 2016-04-10T00:51:38Z andreh quit (Remote host closed the connection) 2016-04-10T01:00:43Z andreh joined #sbcl 2016-04-10T01:02:30Z andreh quit (Remote host closed the connection) 2016-04-10T01:06:44Z andreh joined #sbcl 2016-04-10T01:07:47Z sjl quit (Ping timeout: 248 seconds) 2016-04-10T01:07:52Z sjl__ joined #sbcl 2016-04-10T01:08:27Z andreh quit (Remote host closed the connection) 2016-04-10T01:12:17Z andreh joined #sbcl 2016-04-10T01:16:14Z andreh quit (Remote host closed the connection) 2016-04-10T01:20:42Z andreh joined #sbcl 2016-04-10T01:22:58Z andreh quit (Remote host closed the connection) 2016-04-10T01:24:43Z andreh joined #sbcl 2016-04-10T01:26:21Z andreh quit (Remote host closed the connection) 2016-04-10T01:35:46Z andreh joined #sbcl 2016-04-10T01:38:50Z andreh quit (Remote host closed the connection) 2016-04-10T01:42:14Z andreh joined #sbcl 2016-04-10T01:43:54Z andreh quit (Remote host closed the connection) 2016-04-10T01:59:07Z andreh joined #sbcl 2016-04-10T02:03:13Z andreh quit (Remote host closed the connection) 2016-04-10T02:04:32Z andreh joined #sbcl 2016-04-10T02:06:00Z andreh quit (Remote host closed the connection) 2016-04-10T02:06:33Z andreh joined #sbcl 2016-04-10T02:10:33Z andreh quit (Ping timeout: 240 seconds) 2016-04-10T02:11:24Z andreh joined #sbcl 2016-04-10T02:13:02Z andreh quit (Remote host closed the connection) 2016-04-10T02:53:35Z dougk_ joined #sbcl 2016-04-10T03:03:18Z dougk_: I may have found a nice GC bug just now. I have not managed to provoke it, only to convince myself of its existence. Anyone around to double-check this theory? 2016-04-10T04:48:39Z fisxoj quit (Quit: fisxoj) 2016-04-10T05:54:18Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-10T07:35:32Z angavrilov joined #sbcl 2016-04-10T07:51:25Z gingerale joined #sbcl 2016-04-10T12:31:12Z vydd joined #sbcl 2016-04-10T12:38:19Z sjl__ is now known as sjl 2016-04-10T12:46:57Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-10T12:51:36Z sjl quit (Ping timeout: 276 seconds) 2016-04-10T13:30:06Z sjl joined #sbcl 2016-04-10T13:44:23Z dougk_ joined #sbcl 2016-04-10T13:45:15Z hydan joined #sbcl 2016-04-10T13:45:18Z hydan quit (Remote host closed the connection) 2016-04-10T13:53:42Z dougk_ quit (Ping timeout: 246 seconds) 2016-04-10T14:04:25Z dougk_ joined #sbcl 2016-04-10T14:53:23Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-10T14:59:08Z dougk_ joined #sbcl 2016-04-10T15:17:33Z stassats joined #sbcl 2016-04-10T15:20:05Z attila_lendvai joined #sbcl 2016-04-10T15:20:05Z attila_lendvai quit (Changing host) 2016-04-10T15:20:05Z attila_lendvai joined #sbcl 2016-04-10T15:57:22Z fiveop joined #sbcl 2016-04-10T16:01:44Z fiveop quit (Client Quit) 2016-04-10T16:08:26Z pkhuong: that hex parsing/unparsing code from jan 30 is quite something :| 2016-04-10T16:22:04Z attila_lendvai quit (Quit: Leaving.) 2016-04-10T16:22:10Z attila_lendvai1 joined #sbcl 2016-04-10T16:22:10Z attila_lendvai1 is now known as attila_lendvai 2016-04-10T16:22:10Z attila_lendvai quit (Changing host) 2016-04-10T16:22:10Z attila_lendvai joined #sbcl 2016-04-10T16:38:36Z andreh joined #sbcl 2016-04-10T16:39:55Z andreh quit (Remote host closed the connection) 2016-04-10T16:42:31Z andreh joined #sbcl 2016-04-10T16:42:58Z dougk_ quit (Ping timeout: 252 seconds) 2016-04-10T16:47:11Z dougk_ joined #sbcl 2016-04-10T16:56:36Z andreh quit (Remote host closed the connection) 2016-04-10T16:57:10Z andreh joined #sbcl 2016-04-10T16:57:19Z andreh quit (Remote host closed the connection) 2016-04-10T16:57:36Z andreh joined #sbcl 2016-04-10T16:57:57Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-10T17:05:07Z Carisius joined #sbcl 2016-04-10T17:06:56Z dougk_ joined #sbcl 2016-04-10T17:11:10Z fiveop joined #sbcl 2016-04-10T17:21:14Z dougk__ joined #sbcl 2016-04-10T17:21:33Z dougk_ quit (Ping timeout: 240 seconds) 2016-04-10T17:28:30Z dougk__ quit (Ping timeout: 276 seconds) 2016-04-10T17:46:44Z andreh quit (Remote host closed the connection) 2016-04-10T17:48:24Z hydan joined #sbcl 2016-04-10T17:50:33Z andreh joined #sbcl 2016-04-10T17:50:58Z andreh quit (Remote host closed the connection) 2016-04-10T17:58:36Z drewc_ joined #sbcl 2016-04-10T18:00:47Z drewc quit (Ping timeout: 268 seconds) 2016-04-10T18:06:24Z dougk_ joined #sbcl 2016-04-10T18:16:25Z fiveop quit 2016-04-10T18:35:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-10T18:45:08Z karswell quit (Read error: Connection reset by peer) 2016-04-10T18:45:22Z karswell joined #sbcl 2016-04-10T18:50:45Z attila_lendvai joined #sbcl 2016-04-10T19:36:33Z sjl quit (Ping timeout: 276 seconds) 2016-04-10T19:36:34Z dougk_ quit (Ping timeout: 240 seconds) 2016-04-10T19:36:58Z Carisius quit (Remote host closed the connection) 2016-04-10T19:37:00Z dokma joined #sbcl 2016-04-10T19:41:26Z dokma left #sbcl 2016-04-10T19:56:49Z hydan quit (Quit: hydan) 2016-04-10T20:02:11Z sjl joined #sbcl 2016-04-10T20:03:17Z f0ff quit (Ping timeout: 260 seconds) 2016-04-10T20:31:25Z gingerale quit (Remote host closed the connection) 2016-04-10T20:57:18Z karswell` joined #sbcl 2016-04-10T20:57:26Z karswell quit (Read error: Connection reset by peer) 2016-04-10T21:32:07Z angavrilov quit (Remote host closed the connection) 2016-04-10T21:41:04Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-10T22:25:25Z drewc_ is now known as drewc 2016-04-10T22:35:46Z edgar-rft quit (Quit: edgar-rft) 2016-04-10T22:54:55Z drewc quit (Read error: Connection reset by peer) 2016-04-10T22:55:26Z drewc joined #sbcl 2016-04-10T23:07:56Z mejja quit (Quit: ChatZilla 0.9.92 [Firefox 45.0.1/20160315153207]) 2016-04-10T23:23:55Z stassats quit (Ping timeout: 268 seconds) 2016-04-10T23:29:13Z dougk_ joined #sbcl 2016-04-10T23:46:49Z andreh joined #sbcl 2016-04-10T23:52:27Z andreh quit (Remote host closed the connection) 2016-04-10T23:53:47Z andreh joined #sbcl 2016-04-10T23:53:51Z dougk_ quit (Ping timeout: 264 seconds) 2016-04-11T00:00:47Z andreh quit (Remote host closed the connection) 2016-04-11T00:20:31Z andreh joined #sbcl 2016-04-11T00:24:04Z dougk_ joined #sbcl 2016-04-11T00:26:01Z andreh quit (Remote host closed the connection) 2016-04-11T00:31:54Z andreh joined #sbcl 2016-04-11T00:41:42Z andreh_ joined #sbcl 2016-04-11T00:42:34Z andreh quit (Ping timeout: 252 seconds) 2016-04-11T00:45:57Z sjl quit (Ping timeout: 276 seconds) 2016-04-11T01:35:14Z mejja joined #sbcl 2016-04-11T02:55:31Z drewc quit (Ping timeout: 248 seconds) 2016-04-11T02:55:42Z mejja quit (Quit: ChatZilla 0.9.92 [Firefox 45.0.1/20160315153207]) 2016-04-11T03:07:53Z drewc joined #sbcl 2016-04-11T03:20:47Z Hertz joined #sbcl 2016-04-11T03:23:08Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-11T03:24:57Z dougk_ joined #sbcl 2016-04-11T03:38:03Z dougk_ quit (Ping timeout: 240 seconds) 2016-04-11T03:38:25Z dougk_ joined #sbcl 2016-04-11T04:50:33Z dougk_ quit (Ping timeout: 240 seconds) 2016-04-11T05:10:51Z slyrus joined #sbcl 2016-04-11T05:31:10Z andreh_ quit (Remote host closed the connection) 2016-04-11T05:31:42Z andreh joined #sbcl 2016-04-11T06:56:52Z angavrilov joined #sbcl 2016-04-11T07:22:47Z dougk_ joined #sbcl 2016-04-11T07:29:44Z kanru` quit (Read error: Connection reset by peer) 2016-04-11T07:41:44Z kanru joined #sbcl 2016-04-11T07:44:01Z ASau quit (Ping timeout: 250 seconds) 2016-04-11T08:05:16Z attila_lendvai joined #sbcl 2016-04-11T08:05:16Z attila_lendvai quit (Changing host) 2016-04-11T08:05:16Z attila_lendvai joined #sbcl 2016-04-11T08:46:12Z andreh quit (Remote host closed the connection) 2016-04-11T09:14:11Z edgar-rft joined #sbcl 2016-04-11T09:27:58Z gingerale joined #sbcl 2016-04-11T09:45:07Z akkad quit (Ping timeout: 248 seconds) 2016-04-11T09:46:48Z akkad joined #sbcl 2016-04-11T09:53:12Z stassats joined #sbcl 2016-04-11T10:03:36Z gargaml joined #sbcl 2016-04-11T11:12:28Z Hertz quit (Ping timeout: 268 seconds) 2016-04-11T11:18:01Z sjl joined #sbcl 2016-04-11T11:19:53Z adhoc joined #sbcl 2016-04-11T11:34:52Z Hertz joined #sbcl 2016-04-11T11:43:39Z Hertz quit (Ping timeout: 264 seconds) 2016-04-11T11:45:34Z andreh joined #sbcl 2016-04-11T11:51:09Z andreh quit (Remote host closed the connection) 2016-04-11T11:51:39Z Hertz joined #sbcl 2016-04-11T11:59:09Z Hertz quit (Ping timeout: 246 seconds) 2016-04-11T12:13:22Z stassats quit (Ping timeout: 260 seconds) 2016-04-11T12:14:43Z stassats joined #sbcl 2016-04-11T12:24:56Z adhoc left #sbcl 2016-04-11T12:32:03Z andreh joined #sbcl 2016-04-11T12:41:45Z gargaml quit (Quit: WeeChat 1.4) 2016-04-11T12:43:34Z andreh quit (Remote host closed the connection) 2016-04-11T12:51:27Z DGASAU quit (Ping timeout: 244 seconds) 2016-04-11T12:55:37Z DGASAU joined #sbcl 2016-04-11T13:07:03Z dougk_ quit (Ping timeout: 246 seconds) 2016-04-11T13:25:33Z flip214 quit (Ping timeout: 244 seconds) 2016-04-11T13:26:21Z flip214 joined #sbcl 2016-04-11T13:42:04Z nzambe joined #sbcl 2016-04-11T13:43:31Z andreh joined #sbcl 2016-04-11T13:44:57Z andreh quit (Remote host closed the connection) 2016-04-11T14:10:00Z carvite quit (Ping timeout: 244 seconds) 2016-04-11T14:13:43Z carvite joined #sbcl 2016-04-11T14:30:44Z andreh joined #sbcl 2016-04-11T14:39:40Z karswell` quit (Ping timeout: 252 seconds) 2016-04-11T14:40:17Z eudoxia joined #sbcl 2016-04-11T14:54:24Z dougk_ joined #sbcl 2016-04-11T15:02:58Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-11T15:18:10Z stassats quit (Ping timeout: 252 seconds) 2016-04-11T15:19:18Z stassats joined #sbcl 2016-04-11T15:23:51Z stassats quit (Ping timeout: 244 seconds) 2016-04-11T15:25:19Z stassats joined #sbcl 2016-04-11T15:27:25Z fitzsim joined #sbcl 2016-04-11T15:29:57Z stassats quit (Ping timeout: 260 seconds) 2016-04-11T15:30:47Z stassats joined #sbcl 2016-04-11T15:34:23Z eudoxia quit (Quit: Leaving) 2016-04-11T16:01:58Z dougk_ joined #sbcl 2016-04-11T16:07:25Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-11T16:42:16Z andreh quit (Remote host closed the connection) 2016-04-11T16:52:03Z dougk_ joined #sbcl 2016-04-11T16:52:45Z andreh joined #sbcl 2016-04-11T17:00:45Z andreh quit (Remote host closed the connection) 2016-04-11T17:04:27Z andreh joined #sbcl 2016-04-11T17:14:57Z carvite quit (Ping timeout: 260 seconds) 2016-04-11T17:15:04Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-11T17:15:45Z carvite joined #sbcl 2016-04-11T17:25:05Z carvite quit (Read error: Connection reset by peer) 2016-04-11T17:25:18Z nmeum quit (Ping timeout: 248 seconds) 2016-04-11T17:28:03Z carvite joined #sbcl 2016-04-11T17:28:03Z carvite quit (Changing host) 2016-04-11T17:28:03Z carvite joined #sbcl 2016-04-11T18:06:06Z drewc quit (Ping timeout: 244 seconds) 2016-04-11T18:10:54Z drewc joined #sbcl 2016-04-11T18:14:24Z sjl quit (Ping timeout: 276 seconds) 2016-04-11T18:15:42Z rtmpdavid quit (Remote host closed the connection) 2016-04-11T18:18:41Z dougk_ joined #sbcl 2016-04-11T18:39:12Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-11T19:07:13Z sjl joined #sbcl 2016-04-11T19:26:42Z DGASAU quit (Ping timeout: 244 seconds) 2016-04-11T19:28:17Z DGASAU joined #sbcl 2016-04-11T19:37:10Z dougk_ joined #sbcl 2016-04-11T19:46:08Z Bicyclidine joined #sbcl 2016-04-11T20:32:24Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-11T20:36:07Z dougk_ joined #sbcl 2016-04-11T20:44:26Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-11T20:50:13Z Bicyclidine quit (Quit: leaving) 2016-04-11T21:07:03Z ASau joined #sbcl 2016-04-11T21:14:26Z andreh quit (Remote host closed the connection) 2016-04-11T22:01:58Z dto joined #sbcl 2016-04-11T22:19:42Z slyrus quit (Ping timeout: 248 seconds) 2016-04-11T22:59:59Z slyrus joined #sbcl 2016-04-11T23:02:16Z angavrilov quit (Remote host closed the connection) 2016-04-11T23:16:34Z dougk_ joined #sbcl 2016-04-11T23:19:42Z slyrus quit (Ping timeout: 244 seconds) 2016-04-11T23:22:03Z slyrus joined #sbcl 2016-04-11T23:42:52Z dougk_ quit (Ping timeout: 260 seconds) 2016-04-12T00:02:15Z stassats quit (Ping timeout: 264 seconds) 2016-04-12T00:29:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-12T00:51:19Z edgar-rft quit (Quit: edgar-rft) 2016-04-12T00:54:25Z gingerale quit (Remote host closed the connection) 2016-04-12T01:58:53Z dto quit (Remote host closed the connection) 2016-04-12T02:10:51Z ASau quit (Remote host closed the connection) 2016-04-12T02:11:18Z ASau joined #sbcl 2016-04-12T02:12:46Z adjivas quit (Ping timeout: 248 seconds) 2016-04-12T02:20:36Z sjl quit (Ping timeout: 276 seconds) 2016-04-12T02:27:47Z adjivas joined #sbcl 2016-04-12T02:33:46Z Hertz joined #sbcl 2016-04-12T02:37:23Z Hertz quit (Client Quit) 2016-04-12T02:37:36Z Hertz joined #sbcl 2016-04-12T06:16:29Z salva quit (Read error: Connection reset by peer) 2016-04-12T06:31:12Z salva joined #sbcl 2016-04-12T06:52:48Z angavrilov joined #sbcl 2016-04-12T07:02:22Z hydan joined #sbcl 2016-04-12T07:49:03Z ASau quit (Ping timeout: 264 seconds) 2016-04-12T08:16:47Z vydd quit 2016-04-12T08:52:09Z Hertz quit (Ping timeout: 260 seconds) 2016-04-12T09:15:45Z Hertz joined #sbcl 2016-04-12T09:21:25Z gingerale joined #sbcl 2016-04-12T09:39:40Z edgar-rft joined #sbcl 2016-04-12T09:57:04Z yvm quit (Quit: Leaving) 2016-04-12T10:02:18Z DeadTrickster quit (Read error: No route to host) 2016-04-12T10:18:06Z DeadTrickster joined #sbcl 2016-04-12T10:24:22Z stassats joined #sbcl 2016-04-12T10:28:33Z stassats quit (Ping timeout: 240 seconds) 2016-04-12T10:30:50Z stassats joined #sbcl 2016-04-12T10:31:31Z DGASAU` joined #sbcl 2016-04-12T10:32:04Z DGASAU quit (Read error: Connection reset by peer) 2016-04-12T10:33:11Z DGASAU` is now known as DGASAU 2016-04-12T11:03:55Z Hertz quit (Quit: Leaving) 2016-04-12T11:27:37Z attila_lendvai joined #sbcl 2016-04-12T11:27:37Z attila_lendvai quit (Changing host) 2016-04-12T11:27:37Z attila_lendvai joined #sbcl 2016-04-12T11:37:25Z scymtym quit (Remote host closed the connection) 2016-04-12T12:04:35Z yvm joined #sbcl 2016-04-12T12:09:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-12T12:11:46Z karswell` joined #sbcl 2016-04-12T12:24:32Z attila_lendvai joined #sbcl 2016-04-12T12:24:32Z attila_lendvai quit (Changing host) 2016-04-12T12:24:32Z attila_lendvai joined #sbcl 2016-04-12T12:34:46Z sjl joined #sbcl 2016-04-12T12:39:10Z dougk_ joined #sbcl 2016-04-12T12:44:37Z dougk_ quit (Ping timeout: 252 seconds) 2016-04-12T13:40:48Z Xof: on arm, we build with -march=armv5 2016-04-12T13:41:00Z Xof: do we actually *run* on an armv5? 2016-04-12T13:42:20Z Xof: (according to The Internet, RPi is armv6 2016-04-12T13:43:55Z scymtym joined #sbcl 2016-04-12T13:45:55Z chris2: it is 2016-04-12T13:46:18Z chris2: only armv5 kinda popular is dockstar i think 2016-04-12T13:48:21Z Xof: does dockstar have hardware floating point? 2016-04-12T13:53:30Z sjl quit (Ping timeout: 276 seconds) 2016-04-12T13:53:41Z chris2: i dont think so 2016-04-12T13:58:29Z stassats: Xof: just bump it and see if anyone complains? 2016-04-12T14:06:09Z DeadTrickster_ joined #sbcl 2016-04-12T14:06:45Z DeadTrickster quit (Read error: No route to host) 2016-04-12T14:10:27Z dougk_ joined #sbcl 2016-04-12T14:12:44Z sjl joined #sbcl 2016-04-12T14:24:42Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-12T15:03:00Z wgslayer joined #sbcl 2016-04-12T15:20:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-12T15:32:34Z wgslayer quit (Quit: Leaving) 2016-04-12T15:36:30Z dougk_ joined #sbcl 2016-04-12T15:37:13Z karswell` quit (Read error: Connection reset by peer) 2016-04-12T15:39:45Z whiteline quit (Read error: Connection reset by peer) 2016-04-12T15:39:50Z whiteline_ joined #sbcl 2016-04-12T15:40:01Z whiteline_ is now known as whiteline 2016-04-12T15:40:46Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-12T16:19:03Z drewc quit (Remote host closed the connection) 2016-04-12T16:28:55Z DeadTrickster_ quit (Ping timeout: 244 seconds) 2016-04-12T16:44:55Z dougk_ joined #sbcl 2016-04-12T16:54:28Z dougk__ joined #sbcl 2016-04-12T16:56:30Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-12T16:56:30Z jasom quit (Ping timeout: 248 seconds) 2016-04-12T17:05:15Z jasom joined #sbcl 2016-04-12T17:22:43Z sjl quit (Ping timeout: 248 seconds) 2016-04-12T17:25:56Z dougk__ quit (Ping timeout: 250 seconds) 2016-04-12T17:28:16Z dougk_ joined #sbcl 2016-04-12T17:29:16Z scymtym__ joined #sbcl 2016-04-12T17:30:24Z scymtym quit (Ping timeout: 268 seconds) 2016-04-12T17:33:16Z Bicyclidine joined #sbcl 2016-04-12T17:40:37Z clique joined #sbcl 2016-04-12T17:40:40Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-12T17:42:46Z andreh joined #sbcl 2016-04-12T17:45:38Z dougk_ joined #sbcl 2016-04-12T17:51:22Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-12T17:56:17Z slyrus quit (Ping timeout: 250 seconds) 2016-04-12T17:57:47Z slyrus_ joined #sbcl 2016-04-12T17:58:07Z slyrus_ is now known as slyrus 2016-04-12T18:39:57Z eudoxia joined #sbcl 2016-04-12T18:43:44Z eudoxia quit (Client Quit) 2016-04-12T18:47:28Z clique quit (Quit: Page closed) 2016-04-12T18:50:39Z Bicyclidine quit (Ping timeout: 246 seconds) 2016-04-12T18:56:58Z scymtym__ quit (Ping timeout: 252 seconds) 2016-04-12T18:57:43Z Bicyclidine joined #sbcl 2016-04-12T19:00:38Z hydan quit (Quit: hydan) 2016-04-12T19:07:27Z stassats quit (Ping timeout: 276 seconds) 2016-04-12T19:09:04Z stassats joined #sbcl 2016-04-12T19:11:06Z hydan joined #sbcl 2016-04-12T19:11:11Z hydan quit (Remote host closed the connection) 2016-04-12T19:13:37Z stassats quit (Ping timeout: 260 seconds) 2016-04-12T19:16:06Z stassats joined #sbcl 2016-04-12T19:20:44Z sjl joined #sbcl 2016-04-12T19:25:58Z DGASAU quit (Ping timeout: 250 seconds) 2016-04-12T19:36:46Z DGASAU joined #sbcl 2016-04-12T19:53:25Z dougk_ joined #sbcl 2016-04-12T20:12:16Z prxq joined #sbcl 2016-04-12T20:12:35Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-12T20:15:31Z Bicyclidine quit (Ping timeout: 248 seconds) 2016-04-12T20:16:42Z scymtym joined #sbcl 2016-04-12T20:22:01Z Xof: does anyone build on or use ppc? 2016-04-12T20:24:42Z joshe: I used to have a buildbot cluster with ppc builders but it's no longer running 2016-04-12T20:25:29Z foom: Xof: Google might want to in the future, per recent announcements. 2016-04-12T20:26:01Z andreh quit (Remote host closed the connection) 2016-04-12T20:27:12Z Bicyclidine joined #sbcl 2016-04-12T20:51:27Z DeadTrickster joined #sbcl 2016-04-12T21:03:04Z ASau joined #sbcl 2016-04-12T21:03:36Z gingerale quit (Remote host closed the connection) 2016-04-12T21:09:22Z dougk_ joined #sbcl 2016-04-12T21:14:15Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-12T21:26:13Z prxq quit (Remote host closed the connection) 2016-04-12T21:42:45Z Bicyclidine quit (Quit: leaving) 2016-04-12T21:46:39Z fiddlerwoaroof quit (Ping timeout: 264 seconds) 2016-04-12T21:55:54Z fiddlerwoaroof joined #sbcl 2016-04-12T22:10:19Z igajsin quit (Remote host closed the connection) 2016-04-12T22:33:55Z angavrilov quit (Remote host closed the connection) 2016-04-12T23:13:33Z DeadTrickster quit (Ping timeout: 248 seconds) 2016-04-12T23:15:06Z dougk_ joined #sbcl 2016-04-13T00:14:09Z andreh joined #sbcl 2016-04-13T00:23:14Z karswell joined #sbcl 2016-04-13T00:26:40Z edgar-rft quit (Quit: edgar-rft) 2016-04-13T00:35:23Z andreh quit (Remote host closed the connection) 2016-04-13T00:42:41Z andreh joined #sbcl 2016-04-13T00:47:52Z stassats quit (Ping timeout: 264 seconds) 2016-04-13T00:55:02Z andreh_ joined #sbcl 2016-04-13T00:56:03Z andreh quit (Ping timeout: 240 seconds) 2016-04-13T01:11:46Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-13T01:58:15Z sjl quit (Ping timeout: 276 seconds) 2016-04-13T02:03:25Z sjl joined #sbcl 2016-04-13T02:08:44Z sjl quit (Ping timeout: 260 seconds) 2016-04-13T02:30:47Z dougk_ joined #sbcl 2016-04-13T03:05:06Z sjl joined #sbcl 2016-04-13T03:10:24Z sjl quit (Ping timeout: 276 seconds) 2016-04-13T03:12:41Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-13T03:26:02Z dougk_ joined #sbcl 2016-04-13T03:35:02Z mateuszb joined #sbcl 2016-04-13T04:05:48Z sjl joined #sbcl 2016-04-13T04:10:16Z sjl quit (Ping timeout: 252 seconds) 2016-04-13T05:03:22Z flip214: Xof: I'd like to use ppc64 ... but as that isn't supported yet, I'm compiling (infrequently) on a ppc32 VM. 2016-04-13T05:06:35Z sjl joined #sbcl 2016-04-13T05:10:54Z sjl quit (Ping timeout: 248 seconds) 2016-04-13T05:23:15Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-13T05:58:16Z Hertz joined #sbcl 2016-04-13T06:07:22Z sjl joined #sbcl 2016-04-13T06:12:33Z sjl quit (Ping timeout: 240 seconds) 2016-04-13T06:23:18Z salva quit (Ping timeout: 246 seconds) 2016-04-13T06:31:53Z salva joined #sbcl 2016-04-13T06:40:40Z scymtym quit (Ping timeout: 250 seconds) 2016-04-13T06:59:52Z angavrilov joined #sbcl 2016-04-13T07:01:19Z DmHertz joined #sbcl 2016-04-13T07:04:39Z Hertz quit (Ping timeout: 244 seconds) 2016-04-13T07:09:30Z sjl joined #sbcl 2016-04-13T07:11:09Z Shinmera joined #sbcl 2016-04-13T07:12:24Z DmHertz quit (Quit: Leaving) 2016-04-13T07:12:31Z DmHertz joined #sbcl 2016-04-13T07:13:57Z sjl quit (Ping timeout: 244 seconds) 2016-04-13T07:36:00Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-13T07:39:33Z ASau quit (Ping timeout: 240 seconds) 2016-04-13T07:40:52Z ASau joined #sbcl 2016-04-13T08:01:26Z wgslayer joined #sbcl 2016-04-13T08:10:12Z sjl joined #sbcl 2016-04-13T08:13:55Z ASau quit (Ping timeout: 252 seconds) 2016-04-13T08:14:42Z sjl quit (Ping timeout: 260 seconds) 2016-04-13T08:15:55Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-04-13T09:02:57Z DeadTrickster joined #sbcl 2016-04-13T09:04:30Z attila_lendvai joined #sbcl 2016-04-13T09:07:22Z Shinmera joined #sbcl 2016-04-13T09:10:53Z sjl joined #sbcl 2016-04-13T09:13:12Z foom quit (Ping timeout: 250 seconds) 2016-04-13T09:15:03Z sjl quit (Ping timeout: 240 seconds) 2016-04-13T09:25:53Z foom joined #sbcl 2016-04-13T09:42:16Z reb`` joined #sbcl 2016-04-13T09:42:50Z Bike_ joined #sbcl 2016-04-13T09:44:43Z andreh joined #sbcl 2016-04-13T09:47:53Z andreh_ quit (*.net *.split) 2016-04-13T09:47:55Z Bike quit (*.net *.split) 2016-04-13T09:47:55Z reb quit (*.net *.split) 2016-04-13T09:47:56Z jdz quit (*.net *.split) 2016-04-13T10:11:39Z sjl joined #sbcl 2016-04-13T10:12:11Z Carisius joined #sbcl 2016-04-13T10:16:22Z sjl quit (Ping timeout: 244 seconds) 2016-04-13T10:31:16Z karswell` joined #sbcl 2016-04-13T10:33:02Z karswell quit (Read error: Connection reset by peer) 2016-04-13T10:59:44Z Hertz joined #sbcl 2016-04-13T11:01:33Z DmHertz quit (Ping timeout: 240 seconds) 2016-04-13T11:06:12Z Hertz quit (Ping timeout: 276 seconds) 2016-04-13T11:10:12Z Carisius quit (Remote host closed the connection) 2016-04-13T11:32:47Z edgar-rft joined #sbcl 2016-04-13T11:36:30Z Posterdati quit (Ping timeout: 264 seconds) 2016-04-13T11:50:51Z Posterdati joined #sbcl 2016-04-13T12:04:26Z sjl joined #sbcl 2016-04-13T12:19:55Z dougk_ joined #sbcl 2016-04-13T12:30:23Z andreh quit (Remote host closed the connection) 2016-04-13T13:06:43Z Bike_ quit (Read error: Connection reset by peer) 2016-04-13T13:20:16Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-13T13:35:16Z minion quit (Disconnected by services) 2016-04-13T13:35:28Z reb``` joined #sbcl 2016-04-13T13:35:42Z Shinmera- joined #sbcl 2016-04-13T13:36:01Z minion joined #sbcl 2016-04-13T13:36:40Z andreh joined #sbcl 2016-04-13T13:38:35Z carvite_ joined #sbcl 2016-04-13T13:38:45Z andreh quit (Remote host closed the connection) 2016-04-13T13:43:10Z stassats joined #sbcl 2016-04-13T13:43:42Z reb`` quit (*.net *.split) 2016-04-13T13:43:42Z Shinmera quit (*.net *.split) 2016-04-13T13:43:42Z wgslayer quit (*.net *.split) 2016-04-13T13:43:43Z carvite quit (*.net *.split) 2016-04-13T13:43:45Z hitecnologys quit (*.net *.split) 2016-04-13T13:43:47Z hitecnologys_ joined #sbcl 2016-04-13T13:43:48Z carvite_ is now known as carvite 2016-04-13T13:44:06Z hitecnologys_ is now known as hitecnologys 2016-04-13T13:44:36Z andreh joined #sbcl 2016-04-13T13:44:39Z DeadTrickster quit (Ping timeout: 260 seconds) 2016-04-13T13:47:11Z nzambe joined #sbcl 2016-04-13T13:49:56Z wgslayer joined #sbcl 2016-04-13T14:12:29Z andreh quit (Remote host closed the connection) 2016-04-13T14:17:30Z andreh joined #sbcl 2016-04-13T14:18:38Z andreh_ joined #sbcl 2016-04-13T14:21:10Z eudoxia joined #sbcl 2016-04-13T14:21:59Z andreh quit (Ping timeout: 260 seconds) 2016-04-13T14:23:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-13T14:29:06Z dougk_ joined #sbcl 2016-04-13T14:33:34Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-13T15:15:48Z slyrus quit (Ping timeout: 276 seconds) 2016-04-13T15:35:06Z sjl__ joined #sbcl 2016-04-13T15:36:09Z fitzsim` joined #sbcl 2016-04-13T15:36:13Z reb```` joined #sbcl 2016-04-13T15:37:33Z angavrilov_ joined #sbcl 2016-04-13T15:40:37Z andreh_ quit (Ping timeout: 250 seconds) 2016-04-13T15:41:32Z andreh joined #sbcl 2016-04-13T15:44:13Z wgslayer quit (Quit: Leaving) 2016-04-13T15:44:17Z eudoxia quit (*.net *.split) 2016-04-13T15:44:18Z reb``` quit (*.net *.split) 2016-04-13T15:44:18Z sjl quit (*.net *.split) 2016-04-13T15:44:20Z foom quit (*.net *.split) 2016-04-13T15:44:20Z angavrilov quit (*.net *.split) 2016-04-13T15:44:20Z fiddlerwoaroof quit (*.net *.split) 2016-04-13T15:44:21Z jasom quit (*.net *.split) 2016-04-13T15:44:21Z whiteline quit (*.net *.split) 2016-04-13T15:44:21Z fitzsim quit (*.net *.split) 2016-04-13T15:44:22Z akkad quit (*.net *.split) 2016-04-13T15:44:23Z dougk quit (*.net *.split) 2016-04-13T15:44:23Z scymtym_ quit (*.net *.split) 2016-04-13T15:46:13Z fiddlerwoaroof joined #sbcl 2016-04-13T15:50:16Z whiteline joined #sbcl 2016-04-13T15:50:48Z eudoxia joined #sbcl 2016-04-13T15:51:22Z jasom joined #sbcl 2016-04-13T15:51:28Z foom joined #sbcl 2016-04-13T15:51:28Z eudoxia quit (Read error: Connection reset by peer) 2016-04-13T15:51:37Z dougk joined #sbcl 2016-04-13T15:53:38Z akkad joined #sbcl 2016-04-13T15:53:41Z Bike joined #sbcl 2016-04-13T15:54:07Z DeadTrickster joined #sbcl 2016-04-13T16:20:45Z sjl joined #sbcl 2016-04-13T16:20:50Z dougk_ joined #sbcl 2016-04-13T16:23:24Z sjl__ quit (Ping timeout: 276 seconds) 2016-04-13T16:40:56Z andreh quit (Remote host closed the connection) 2016-04-13T16:41:58Z andreh joined #sbcl 2016-04-13T16:46:39Z andreh quit (Ping timeout: 260 seconds) 2016-04-13T16:46:59Z andreh joined #sbcl 2016-04-13T16:51:54Z DGASAU quit (Ping timeout: 260 seconds) 2016-04-13T16:57:43Z gingerale joined #sbcl 2016-04-13T17:01:12Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-13T17:08:18Z andreh quit (Remote host closed the connection) 2016-04-13T17:15:20Z DGASAU joined #sbcl 2016-04-13T17:21:09Z andreh joined #sbcl 2016-04-13T17:22:33Z yvm quit (Ping timeout: 276 seconds) 2016-04-13T18:36:23Z Quadresce` joined #sbcl 2016-04-13T18:38:10Z kanru quit (Ping timeout: 252 seconds) 2016-04-13T18:38:10Z Quadrescence quit (Ping timeout: 252 seconds) 2016-04-13T18:39:49Z DGASAU quit (Ping timeout: 252 seconds) 2016-04-13T18:39:49Z whiteline quit (Ping timeout: 252 seconds) 2016-04-13T18:39:52Z White_Flame quit (Ping timeout: 252 seconds) 2016-04-13T18:41:30Z White_Flame joined #sbcl 2016-04-13T18:46:03Z kanru joined #sbcl 2016-04-13T18:51:52Z whiteline joined #sbcl 2016-04-13T18:55:52Z karswell` is now known as karswell 2016-04-13T18:59:53Z DGASAU joined #sbcl 2016-04-13T19:08:31Z sjl quit (Ping timeout: 244 seconds) 2016-04-13T19:10:51Z dougk_ joined #sbcl 2016-04-13T19:29:11Z DGASAU quit (Ping timeout: 244 seconds) 2016-04-13T19:33:02Z DGASAU joined #sbcl 2016-04-13T19:40:52Z fitzsim` is now known as fitzsim 2016-04-13T19:43:26Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-13T19:47:11Z prxq joined #sbcl 2016-04-13T19:48:30Z Intensity quit (*.net *.split) 2016-04-13T19:48:32Z christoph_debian quit (*.net *.split) 2016-04-13T20:03:15Z christoph_debian joined #sbcl 2016-04-13T20:03:19Z dougk_ joined #sbcl 2016-04-13T20:04:39Z christoph_debian quit (*.net *.split) 2016-04-13T20:11:55Z christoph_debian joined #sbcl 2016-04-13T20:11:59Z Intensity joined #sbcl 2016-04-13T20:12:00Z Intensity quit (Changing host) 2016-04-13T20:12:00Z Intensity joined #sbcl 2016-04-13T20:12:38Z Intensity quit (Max SendQ exceeded) 2016-04-13T20:15:35Z christoph_debian quit (Ping timeout: 240 seconds) 2016-04-13T20:25:46Z Carisius joined #sbcl 2016-04-13T20:26:06Z dougk_ quit (Ping timeout: 248 seconds) 2016-04-13T20:29:40Z christoph_debian joined #sbcl 2016-04-13T20:31:00Z Bicyclidine joined #sbcl 2016-04-13T20:34:35Z gingerale quit (Remote host closed the connection) 2016-04-13T20:42:05Z ferada_ joined #sbcl 2016-04-13T20:42:54Z reb````` joined #sbcl 2016-04-13T20:43:40Z ferada quit (Disconnected by services) 2016-04-13T20:43:44Z ferada_ is now known as ferada 2016-04-13T20:44:47Z Carisius_ joined #sbcl 2016-04-13T20:45:45Z Carisius_ quit (Remote host closed the connection) 2016-04-13T20:46:32Z dustinm`_ joined #sbcl 2016-04-13T20:47:07Z Carisius quit (*.net *.split) 2016-04-13T20:47:11Z fiddlerwoaroof quit (*.net *.split) 2016-04-13T20:47:12Z reb```` quit (*.net *.split) 2016-04-13T20:47:20Z dustinm` quit (*.net *.split) 2016-04-13T20:48:46Z fiddlerwoaroof joined #sbcl 2016-04-13T20:49:03Z Carisius joined #sbcl 2016-04-13T21:00:46Z kanru quit (Ping timeout: 248 seconds) 2016-04-13T21:06:38Z Bicyclidine quit (Ping timeout: 248 seconds) 2016-04-13T21:08:29Z ASau joined #sbcl 2016-04-13T21:13:43Z Bicyclidine joined #sbcl 2016-04-13T21:21:18Z Bicyclidine quit (Ping timeout: 244 seconds) 2016-04-13T21:31:30Z Carisius quit (Remote host closed the connection) 2016-04-13T21:40:06Z Bicyclidine joined #sbcl 2016-04-13T21:41:53Z whiteline quit (Ping timeout: 264 seconds) 2016-04-13T21:46:12Z stassats: why does make.sh need /bin/time 2016-04-13T21:46:33Z stassats: does anybody depend on that? 2016-04-13T21:46:43Z stassats: launched from bash 2016-04-13T21:46:46Z Cthulhux`: why doesnt it depend on left-pad? 2016-04-13T21:46:49Z Cthulhux`: (scnr) 2016-04-13T21:47:22Z stassats: building on cpu model : Cavium Octeon II V0.1 2016-04-13T21:47:27Z stassats: isa : mips2 mips3 mips4 mips5 mips64r2 2016-04-13T21:50:46Z joshe: how long does sbcl take to build on that? 2016-04-13T21:53:36Z whiteline joined #sbcl 2016-04-13T21:59:03Z prxq quit (Remote host closed the connection) 2016-04-13T22:00:42Z slyrus joined #sbcl 2016-04-13T22:06:46Z karswell quit (Read error: Connection reset by peer) 2016-04-13T22:07:01Z karswell joined #sbcl 2016-04-13T22:09:47Z andreh quit (Remote host closed the connection) 2016-04-13T22:11:14Z andreh joined #sbcl 2016-04-13T22:16:14Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-13T22:18:38Z dougk_ joined #sbcl 2016-04-13T22:19:23Z angavrilov_ quit (Remote host closed the connection) 2016-04-13T22:27:24Z andreh quit (Remote host closed the connection) 2016-04-13T22:28:54Z andreh_ joined #sbcl 2016-04-13T22:32:42Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-13T22:34:06Z DeadTrickster_ joined #sbcl 2016-04-13T22:34:12Z Bicyclidine joined #sbcl 2016-04-13T22:36:58Z Bicyclidine quit (Client Quit) 2016-04-13T22:51:43Z DeadTrickster_ quit (Ping timeout: 252 seconds) 2016-04-13T23:19:42Z dougk_ joined #sbcl 2016-04-13T23:24:05Z reb````` is now known as reb 2016-04-13T23:24:42Z slyrus quit (Ping timeout: 260 seconds) 2016-04-13T23:33:07Z sjl joined #sbcl 2016-04-13T23:35:23Z jasom: stassats: what hardware are you using that has an Octeon? 2016-04-13T23:35:47Z stassats: some router 2016-04-13T23:37:16Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-13T23:39:50Z jasom: in general /bin/time is used in favor of shell builtins as the /bin/time is more likely to be gnu time, which IIRC has some features that bash time doesn't have 2016-04-13T23:40:06Z jasom: and definitely has features that /bin/sh might not have on some platforms 2016-04-13T23:40:23Z stassats: it doesn't want /bin/time 2016-04-13T23:40:32Z stassats: /bin/sh doesn't have time and there is no /bin/time 2016-04-13T23:40:45Z jasom: oh 2016-04-13T23:46:42Z stassats quit (Ping timeout: 276 seconds) 2016-04-14T00:28:16Z karswell quit (Read error: Connection reset by peer) 2016-04-14T00:28:28Z karswell joined #sbcl 2016-04-14T00:32:54Z dougk_ joined #sbcl 2016-04-14T00:55:48Z eschatologist joined #sbcl 2016-04-14T00:57:52Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-14T00:58:09Z andreh_ quit (Remote host closed the connection) 2016-04-14T01:02:01Z andreh joined #sbcl 2016-04-14T01:56:22Z sjl quit (Ping timeout: 260 seconds) 2016-04-14T02:09:14Z momo-reina joined #sbcl 2016-04-14T02:27:24Z dougk_ joined #sbcl 2016-04-14T02:35:39Z Hertz joined #sbcl 2016-04-14T03:20:33Z momo-reina quit (Ping timeout: 276 seconds) 2016-04-14T03:21:15Z DavidGuru joined #sbcl 2016-04-14T03:21:50Z eschatologist quit (Quit: Textual IRC Client: www.textualapp.com) 2016-04-14T03:30:40Z DavidGuru quit (Remote host closed the connection) 2016-04-14T03:31:02Z DavidGuru joined #sbcl 2016-04-14T03:50:30Z DavidGuru left #sbcl 2016-04-14T03:50:56Z DavidGuru joined #sbcl 2016-04-14T03:53:59Z karswell quit (Read error: Connection reset by peer) 2016-04-14T03:56:20Z karswell joined #sbcl 2016-04-14T03:59:06Z karswell quit (Remote host closed the connection) 2016-04-14T03:59:21Z karswell joined #sbcl 2016-04-14T04:23:36Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-14T04:23:44Z sjl joined #sbcl 2016-04-14T04:28:05Z sjl quit (Ping timeout: 244 seconds) 2016-04-14T04:29:01Z dsp-_ joined #sbcl 2016-04-14T04:31:17Z DGASAU quit (Read error: Connection reset by peer) 2016-04-14T04:31:22Z DGASAU` joined #sbcl 2016-04-14T04:31:26Z chu quit (Ping timeout: 276 seconds) 2016-04-14T04:31:26Z dsp- quit (Ping timeout: 276 seconds) 2016-04-14T04:32:00Z chu joined #sbcl 2016-04-14T04:33:22Z karswell quit (Remote host closed the connection) 2016-04-14T04:34:59Z karswell joined #sbcl 2016-04-14T04:54:27Z yvm joined #sbcl 2016-04-14T05:39:08Z DavidGuru quit (Quit: DavidGuru) 2016-04-14T05:42:29Z DavidGuru joined #sbcl 2016-04-14T06:02:07Z kanru joined #sbcl 2016-04-14T06:03:03Z fitzsim` joined #sbcl 2016-04-14T06:05:29Z aeth_ joined #sbcl 2016-04-14T06:05:50Z pchrist_ joined #sbcl 2016-04-14T06:08:52Z dougk quit (*.net *.split) 2016-04-14T06:08:53Z foom quit (*.net *.split) 2016-04-14T06:08:54Z fitzsim quit (*.net *.split) 2016-04-14T06:08:54Z nzambe quit (*.net *.split) 2016-04-14T06:08:54Z hitecnologys quit (*.net *.split) 2016-04-14T06:08:57Z adjivas quit (*.net *.split) 2016-04-14T06:08:59Z aeth quit (*.net *.split) 2016-04-14T06:09:00Z brucem quit (*.net *.split) 2016-04-14T06:09:01Z loke quit (*.net *.split) 2016-04-14T06:09:05Z PuercoPop quit (*.net *.split) 2016-04-14T06:09:05Z chris2 quit (*.net *.split) 2016-04-14T06:09:05Z pchrist quit (*.net *.split) 2016-04-14T06:09:14Z loke joined #sbcl 2016-04-14T06:09:47Z hitecnologys joined #sbcl 2016-04-14T06:14:12Z salva quit (Ping timeout: 260 seconds) 2016-04-14T06:14:13Z chris2 joined #sbcl 2016-04-14T06:23:11Z pobivan joined #sbcl 2016-04-14T06:28:48Z brucem joined #sbcl 2016-04-14T06:30:05Z angavrilov joined #sbcl 2016-04-14T06:32:08Z DavidGuru quit (Remote host closed the connection) 2016-04-14T06:33:41Z DavidGuru joined #sbcl 2016-04-14T06:37:29Z PuercoPop joined #sbcl 2016-04-14T06:40:32Z DavidGuru1 joined #sbcl 2016-04-14T06:40:41Z DavidGuru1 left #sbcl 2016-04-14T06:41:24Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-14T06:42:27Z DavidGuru joined #sbcl 2016-04-14T06:42:59Z salva joined #sbcl 2016-04-14T07:07:04Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-14T07:09:38Z DavidGuru joined #sbcl 2016-04-14T07:13:17Z dougk joined #sbcl 2016-04-14T07:15:02Z foom joined #sbcl 2016-04-14T07:23:58Z attila_lendvai joined #sbcl 2016-04-14T07:27:25Z pchrist_ is now known as pchrist 2016-04-14T07:57:51Z pobivan quit (Ping timeout: 244 seconds) 2016-04-14T08:01:28Z ASau quit (Ping timeout: 244 seconds) 2016-04-14T08:05:39Z pobivan joined #sbcl 2016-04-14T08:21:39Z andreh quit (Remote host closed the connection) 2016-04-14T08:22:04Z DeadTrickster_ joined #sbcl 2016-04-14T08:27:03Z sjl joined #sbcl 2016-04-14T08:31:54Z sjl quit (Ping timeout: 276 seconds) 2016-04-14T08:32:57Z DavidGuru1 joined #sbcl 2016-04-14T08:34:47Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-14T08:34:48Z DavidGuru1 is now known as DavidGuru 2016-04-14T09:10:39Z DavidGuru quit (Ping timeout: 264 seconds) 2016-04-14T09:10:41Z DavidGuru1 joined #sbcl 2016-04-14T09:13:05Z DavidGuru1 is now known as DavidGuru 2016-04-14T09:26:33Z momo-reina joined #sbcl 2016-04-14T09:27:52Z sjl joined #sbcl 2016-04-14T09:28:52Z scymtym joined #sbcl 2016-04-14T09:32:24Z sjl quit (Ping timeout: 244 seconds) 2016-04-14T09:33:03Z ferada quit (Ping timeout: 252 seconds) 2016-04-14T09:33:56Z angavrilov_ joined #sbcl 2016-04-14T09:34:07Z angavrilov quit (Ping timeout: 252 seconds) 2016-04-14T09:34:48Z ferada joined #sbcl 2016-04-14T09:46:39Z DGASAU` is now known as DGASAU 2016-04-14T10:23:44Z stassats joined #sbcl 2016-04-14T10:24:25Z stassats: CALL-INT-DOUBLE-CALLBACK / CALL-FLOAT-FLOAT-DOUBLE-CALLBACK / CALL-INT-FLOAT-DOUBLE-CALLBACK broken on mips 2016-04-14T10:24:25Z minion: stassats, memo from drmeister: I set up the "dev-fastgf" branch - it contains the latest code and I overwrote the CLOS with the most advanced changes we made back in Feb. 2016-04-14T10:24:25Z minion: stassats, memo from drmeister: I'm building dev-fastgf but won't know until morning how it went. There is a test case in clasp/src/lisp/tests/clos-problems.lisp that illustrate two problems with the CLOS code - I'm building dev-fastgf overnight. 2016-04-14T10:24:44Z stassats: i though that was fixed, but maybe my configuration is different 2016-04-14T10:36:07Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-14T11:01:46Z pacon joined #sbcl 2016-04-14T11:05:29Z pacon quit (Read error: Connection reset by peer) 2016-04-14T11:05:52Z Hertz quit (Ping timeout: 264 seconds) 2016-04-14T11:06:38Z pacon joined #sbcl 2016-04-14T11:09:23Z jdz joined #sbcl 2016-04-14T11:22:06Z dougk_ joined #sbcl 2016-04-14T11:28:08Z pkhuong quit (Ping timeout: 244 seconds) 2016-04-14T11:28:17Z pkhuong joined #sbcl 2016-04-14T11:28:41Z pkhuong is now known as Guest78078 2016-04-14T11:29:24Z sjl joined #sbcl 2016-04-14T11:30:45Z stassats: can't build mips-be 2016-04-14T11:33:48Z sjl quit (Ping timeout: 244 seconds) 2016-04-14T11:41:03Z luis quit (Ping timeout: 244 seconds) 2016-04-14T11:44:09Z luis joined #sbcl 2016-04-14T11:50:56Z pacon quit (Read error: Connection reset by peer) 2016-04-14T11:51:28Z pacon joined #sbcl 2016-04-14T12:14:34Z sjl joined #sbcl 2016-04-14T12:20:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-14T12:28:48Z pacon quit (Quit: Leaving) 2016-04-14T12:38:54Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-14T12:39:11Z dougk_ joined #sbcl 2016-04-14T12:40:20Z Carisius joined #sbcl 2016-04-14T12:43:19Z dougk_ quit (Ping timeout: 252 seconds) 2016-04-14T13:03:06Z 14WAAQ0C8 joined #sbcl 2016-04-14T13:15:27Z DGASAU` joined #sbcl 2016-04-14T13:17:06Z DGASAU quit (Ping timeout: 276 seconds) 2016-04-14T13:17:16Z Guest78078 quit (Ping timeout: 276 seconds) 2016-04-14T13:17:25Z pkhuong joined #sbcl 2016-04-14T13:17:28Z DGASAU` is now known as DGASAU 2016-04-14T13:17:49Z pkhuong is now known as Guest24473 2016-04-14T13:17:56Z stassats quit (Ping timeout: 276 seconds) 2016-04-14T13:17:59Z Posterdati quit (Ping timeout: 276 seconds) 2016-04-14T13:19:22Z Posterdati joined #sbcl 2016-04-14T13:21:22Z slyrus joined #sbcl 2016-04-14T13:22:12Z stassats joined #sbcl 2016-04-14T13:28:58Z slyrus quit (Ping timeout: 252 seconds) 2016-04-14T13:43:55Z 14WAAQ0C8 quit (Ping timeout: 268 seconds) 2016-04-14T13:46:03Z dsp- joined #sbcl 2016-04-14T13:46:51Z dougk_ joined #sbcl 2016-04-14T13:48:31Z DeadTrickster_ quit (Ping timeout: 264 seconds) 2016-04-14T13:48:33Z dsp-_ quit (Ping timeout: 264 seconds) 2016-04-14T13:49:05Z DGASAU quit (Ping timeout: 264 seconds) 2016-04-14T13:49:33Z stassats: during warm load 2016-04-14T13:50:12Z stassats: #S(TYPE-ERROR :ACTUAL-INITARGS (DATUM NIL EXPECTED-TYPE (MEMBER T NIL)) :ASSIGNED-SLOTS NIL) 2016-04-14T13:53:40Z DGASAU joined #sbcl 2016-04-14T13:57:29Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T13:59:16Z dougk_ joined #sbcl 2016-04-14T14:06:28Z DeadTrickster_ joined #sbcl 2016-04-14T14:13:31Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T14:28:00Z stassats: pretty strange only for the big-endian variant to fail 2016-04-14T14:32:52Z dougk: stassats: i can look at that later. I only cross-built and noticed that it started ok. i'd have to use qemu for warm load which will take ... 8 hours? 2016-04-14T14:39:00Z stassats: 1.0.28 may not be suitable for building 2016-04-14T14:39:37Z stassats: make that 1.0.23 2016-04-14T14:39:47Z nzambe joined #sbcl 2016-04-14T14:40:21Z flip214: stassats: would it help if I tried to build in a ppc32be VM? 2016-04-14T14:40:27Z stassats: no 2016-04-14T14:40:31Z flip214: okay 2016-04-14T14:40:52Z andreh joined #sbcl 2016-04-14T14:42:23Z dougk_ joined #sbcl 2016-04-14T14:44:00Z stassats: building using 1.2.7.31 2016-04-14T14:45:21Z fitzsim` is now known as fitzsim 2016-04-14T14:48:03Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T15:01:04Z andreh quit (Ping timeout: 264 seconds) 2016-04-14T15:01:38Z andreh joined #sbcl 2016-04-14T15:07:57Z sjl quit (Ping timeout: 260 seconds) 2016-04-14T15:34:55Z andreh quit (Ping timeout: 268 seconds) 2016-04-14T15:39:55Z stassats: fails anyway 2016-04-14T15:40:37Z stassats: (DATUM NIL EXPECTED-TYPE (MEMBER T NIL)) suggests there is some miscompilation 2016-04-14T15:47:16Z gingerale joined #sbcl 2016-04-14T15:49:18Z andreh joined #sbcl 2016-04-14T16:02:53Z andreh quit (Remote host closed the connection) 2016-04-14T16:03:59Z sjl joined #sbcl 2016-04-14T16:15:36Z andreh joined #sbcl 2016-04-14T16:16:07Z andreh quit (Remote host closed the connection) 2016-04-14T16:19:30Z karswell quit (Remote host closed the connection) 2016-04-14T16:19:43Z karswell joined #sbcl 2016-04-14T16:25:12Z stassats: which happens just before returning from compile-file 2016-04-14T16:28:45Z stassats: and there is no (member t nil) in the constants on x86-64, but there is on mips 2016-04-14T16:51:00Z andreh joined #sbcl 2016-04-14T16:55:25Z andreh quit (Read error: Connection reset by peer) 2016-04-14T16:55:42Z andreh joined #sbcl 2016-04-14T17:04:01Z scymtym_ joined #sbcl 2016-04-14T17:05:47Z eudoxia joined #sbcl 2016-04-14T17:13:52Z dougk_ joined #sbcl 2016-04-14T17:23:27Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T17:24:27Z Carisius quit (Ping timeout: 260 seconds) 2016-04-14T17:27:45Z andreh quit (Remote host closed the connection) 2016-04-14T17:29:09Z Bicyclidine joined #sbcl 2016-04-14T17:32:46Z karswell quit (Read error: Connection reset by peer) 2016-04-14T17:34:24Z karswell joined #sbcl 2016-04-14T17:37:00Z aeth_ is now known as aeth 2016-04-14T17:46:29Z stassats: ok, looks like i can build 1.2.7.31 with 1.2.7.31 2016-04-14T17:47:24Z dougk_ joined #sbcl 2016-04-14T17:49:01Z sjl__ joined #sbcl 2016-04-14T17:49:23Z sjl quit (Disconnected by services) 2016-04-14T17:49:29Z sjl__ is now known as sjl 2016-04-14T17:49:33Z stassats: bisecting is not really a great idea 2016-04-14T17:50:35Z stassats: though cross-building will help 2016-04-14T17:50:55Z Guest24473 quit (Ping timeout: 276 seconds) 2016-04-14T17:51:01Z pkhuong joined #sbcl 2016-04-14T17:51:25Z pkhuong is now known as Guest97820 2016-04-14T17:51:34Z DeadTrickster_ quit (Ping timeout: 276 seconds) 2016-04-14T17:51:56Z DeadTrickster_ joined #sbcl 2016-04-14T17:54:50Z eudoxia quit (Quit: Leaving) 2016-04-14T17:59:18Z andreh joined #sbcl 2016-04-14T18:12:52Z carvite quit (Ping timeout: 260 seconds) 2016-04-14T18:16:27Z andreh quit (Read error: Connection reset by peer) 2016-04-14T18:18:27Z andreh joined #sbcl 2016-04-14T18:20:04Z stassats: ; note: doing signed word to integer coercion (cost 18), for: 2016-04-14T18:20:04Z stassats: ; the first argument of FIXNUMP 2016-04-14T18:20:06Z stassats: that's a bit strange 2016-04-14T18:25:52Z carvite joined #sbcl 2016-04-14T18:37:54Z karswell` joined #sbcl 2016-04-14T18:38:16Z karswell quit (Read error: Connection reset by peer) 2016-04-14T18:40:46Z stassats: 6d1029c715a839c5016850d84e7ca062dd2c59b6 fails even sooner 2016-04-14T18:51:16Z carvite quit (Ping timeout: 252 seconds) 2016-04-14T18:53:26Z carvite joined #sbcl 2016-04-14T18:54:36Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-14T19:00:59Z Bicyclidine joined #sbcl 2016-04-14T19:22:05Z andreh quit (Remote host closed the connection) 2016-04-14T19:25:17Z stassats: the fact that it can't even build a cold core on some revisions doesn't help bisection 2016-04-14T19:29:15Z andreh joined #sbcl 2016-04-14T19:39:27Z sjl quit (Ping timeout: 276 seconds) 2016-04-14T19:50:13Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T19:52:30Z dougk_ joined #sbcl 2016-04-14T20:03:10Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T20:13:24Z sjl joined #sbcl 2016-04-14T20:13:35Z Bicyclidine quit (Ping timeout: 244 seconds) 2016-04-14T20:14:39Z gingerale quit (Remote host closed the connection) 2016-04-14T20:18:28Z dougk_ joined #sbcl 2016-04-14T20:20:22Z Bicyclidine joined #sbcl 2016-04-14T20:22:19Z andreh quit (Remote host closed the connection) 2016-04-14T20:42:24Z momo-reina quit (Remote host closed the connection) 2016-04-14T21:08:41Z angavrilov_ quit (Remote host closed the connection) 2016-04-14T21:16:37Z karswell` is now known as karswell 2016-04-14T21:26:09Z ASau joined #sbcl 2016-04-14T21:44:15Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-14T21:45:55Z Bicyclidine joined #sbcl 2016-04-14T21:53:33Z karswell quit (Ping timeout: 268 seconds) 2016-04-14T21:54:07Z yvm quit (Ping timeout: 250 seconds) 2016-04-14T21:54:31Z yvm joined #sbcl 2016-04-14T22:19:36Z dougk__ joined #sbcl 2016-04-14T22:22:32Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-14T22:36:31Z Bicyclidine quit (Quit: leaving) 2016-04-14T22:43:04Z dougk__ quit (Ping timeout: 250 seconds) 2016-04-14T22:44:29Z DeadTrickster quit (Ping timeout: 260 seconds) 2016-04-14T22:57:19Z dougk_ joined #sbcl 2016-04-14T23:01:03Z DeadTrickster_ quit (Ping timeout: 264 seconds) 2016-04-14T23:04:45Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-14T23:25:25Z dougk_ joined #sbcl 2016-04-14T23:30:44Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-14T23:44:37Z dougk_ joined #sbcl 2016-04-14T23:56:18Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-15T00:00:37Z myrkraverk joined #sbcl 2016-04-15T00:02:27Z dougk_ joined #sbcl 2016-04-15T00:09:13Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-15T00:09:24Z dougk_ joined #sbcl 2016-04-15T00:15:23Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-15T00:41:50Z slyrus joined #sbcl 2016-04-15T00:42:00Z slyrus quit (Remote host closed the connection) 2016-04-15T00:55:25Z myrkraverk quit (Read error: Connection reset by peer) 2016-04-15T01:04:28Z stassats quit (Ping timeout: 244 seconds) 2016-04-15T01:32:43Z DavidGuru joined #sbcl 2016-04-15T02:33:20Z dougk_ joined #sbcl 2016-04-15T02:34:04Z Hertz joined #sbcl 2016-04-15T03:23:40Z dougk__ joined #sbcl 2016-04-15T03:24:06Z sjl__ joined #sbcl 2016-04-15T03:24:52Z DGASAU` joined #sbcl 2016-04-15T03:32:35Z dougk_ quit (*.net *.split) 2016-04-15T03:32:38Z sjl quit (*.net *.split) 2016-04-15T03:32:41Z DGASAU quit (*.net *.split) 2016-04-15T03:52:54Z pobivan quit (Ping timeout: 244 seconds) 2016-04-15T05:24:49Z DavidGuru1 joined #sbcl 2016-04-15T05:26:16Z DavidGuru quit (Ping timeout: 264 seconds) 2016-04-15T05:26:18Z DavidGuru1 is now known as DavidGuru 2016-04-15T05:27:29Z Guest97820 quit (Ping timeout: 264 seconds) 2016-04-15T05:27:42Z pkhuong joined #sbcl 2016-04-15T05:28:05Z DGASAU` quit (Ping timeout: 264 seconds) 2016-04-15T05:28:09Z pkhuong is now known as Guest74119 2016-04-15T05:28:35Z DGASAU` joined #sbcl 2016-04-15T05:46:09Z DavidGuru quit (Quit: DavidGuru) 2016-04-15T05:48:19Z Quadresce` quit (Quit: Leaving) 2016-04-15T05:48:37Z Quadrescence joined #sbcl 2016-04-15T05:48:38Z Quadrescence quit (Changing host) 2016-04-15T05:48:38Z Quadrescence joined #sbcl 2016-04-15T06:06:18Z andreh joined #sbcl 2016-04-15T07:04:05Z andreh quit (*.net *.split) 2016-04-15T07:05:06Z scymtym_ quit (Ping timeout: 244 seconds) 2016-04-15T07:07:25Z andreh joined #sbcl 2016-04-15T07:18:19Z Guest74119 quit (Ping timeout: 250 seconds) 2016-04-15T07:18:27Z pkhuong joined #sbcl 2016-04-15T07:18:50Z pkhuong is now known as Guest60654 2016-04-15T07:37:51Z DeadTrickster_ joined #sbcl 2016-04-15T08:32:59Z DavidGuru joined #sbcl 2016-04-15T08:47:17Z aeth quit (Ping timeout: 260 seconds) 2016-04-15T08:53:01Z aeth joined #sbcl 2016-04-15T08:53:08Z andreh quit (Remote host closed the connection) 2016-04-15T09:07:24Z ASau quit (Ping timeout: 276 seconds) 2016-04-15T10:04:36Z Quadrescence quit (Ping timeout: 276 seconds) 2016-04-15T10:05:54Z Hertz quit (Ping timeout: 276 seconds) 2016-04-15T10:05:58Z aeth quit (Ping timeout: 244 seconds) 2016-04-15T10:06:58Z aeth joined #sbcl 2016-04-15T10:08:18Z Quadrescence joined #sbcl 2016-04-15T10:08:30Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-15T10:24:54Z attila_lendvai joined #sbcl 2016-04-15T10:30:13Z DeadTrickster_ quit (Ping timeout: 244 seconds) 2016-04-15T10:54:33Z DGASAU` is now known as DGASAU 2016-04-15T11:02:26Z Hertz joined #sbcl 2016-04-15T11:07:45Z DeadTrickster_ joined #sbcl 2016-04-15T11:10:12Z akkad quit (Ping timeout: 260 seconds) 2016-04-15T11:18:48Z akkad joined #sbcl 2016-04-15T11:25:19Z DGASAU quit (Ping timeout: 250 seconds) 2016-04-15T11:27:08Z DGASAU joined #sbcl 2016-04-15T11:30:09Z sjl__ quit (Ping timeout: 244 seconds) 2016-04-15T11:46:39Z DeadTrickster_ quit (Ping timeout: 276 seconds) 2016-04-15T11:58:16Z stassats joined #sbcl 2016-04-15T12:01:28Z andreh joined #sbcl 2016-04-15T12:03:14Z andreh quit (Remote host closed the connection) 2016-04-15T12:22:42Z DeadTrickster joined #sbcl 2016-04-15T12:27:31Z DmHertz joined #sbcl 2016-04-15T12:29:50Z DGASAU` joined #sbcl 2016-04-15T12:29:52Z akkad quit (Ping timeout: 264 seconds) 2016-04-15T12:30:28Z stassats quit (Ping timeout: 264 seconds) 2016-04-15T12:30:28Z DGASAU quit (Ping timeout: 264 seconds) 2016-04-15T12:30:47Z stassats joined #sbcl 2016-04-15T12:31:04Z Hertz quit (Ping timeout: 264 seconds) 2016-04-15T12:33:13Z angavrilov joined #sbcl 2016-04-15T12:38:49Z akkad joined #sbcl 2016-04-15T12:43:41Z sjl__ joined #sbcl 2016-04-15T13:01:39Z DGASAU` is now known as DGASAU 2016-04-15T13:06:46Z DmHertz quit (Ping timeout: 244 seconds) 2016-04-15T13:24:22Z dougk__ quit (Ping timeout: 260 seconds) 2016-04-15T13:32:00Z sjl__ is now known as sjl 2016-04-15T13:41:07Z DmHertz joined #sbcl 2016-04-15T13:49:10Z DmHertz quit (Ping timeout: 250 seconds) 2016-04-15T14:08:41Z Quadrescence quit (Ping timeout: 250 seconds) 2016-04-15T14:09:53Z psilord joined #sbcl 2016-04-15T14:13:16Z DavidGuru joined #sbcl 2016-04-15T14:14:41Z DmHertz joined #sbcl 2016-04-15T14:18:05Z dr-hertz joined #sbcl 2016-04-15T14:20:42Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-15T14:20:49Z DmHertz quit (Ping timeout: 250 seconds) 2016-04-15T14:24:19Z Quadrescence joined #sbcl 2016-04-15T14:26:50Z psilord quit (Read error: Connection timed out) 2016-04-15T14:28:21Z psilord joined #sbcl 2016-04-15T14:30:38Z DmHertz joined #sbcl 2016-04-15T14:31:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-15T14:33:22Z dr-hertz quit (Ping timeout: 250 seconds) 2016-04-15T14:33:27Z Hertz joined #sbcl 2016-04-15T14:35:07Z DmHertz quit (Ping timeout: 250 seconds) 2016-04-15T14:36:17Z dougk_ joined #sbcl 2016-04-15T14:45:58Z Hertz quit (Ping timeout: 244 seconds) 2016-04-15T15:05:12Z DeadTrickster_ joined #sbcl 2016-04-15T15:10:19Z chris2 quit (Ping timeout: 260 seconds) 2016-04-15T15:12:04Z dustinm`_ quit (Ping timeout: 260 seconds) 2016-04-15T15:13:01Z lacedaemon joined #sbcl 2016-04-15T15:13:17Z abbe quit (Ping timeout: 260 seconds) 2016-04-15T15:13:18Z fe[nl]ix quit (Ping timeout: 260 seconds) 2016-04-15T15:13:18Z Blkt quit (Ping timeout: 260 seconds) 2016-04-15T15:13:18Z sigjuice quit (Ping timeout: 260 seconds) 2016-04-15T15:13:19Z joshe quit (Ping timeout: 260 seconds) 2016-04-15T15:13:23Z Blkt joined #sbcl 2016-04-15T15:15:58Z abbe joined #sbcl 2016-04-15T15:17:56Z sigjuice joined #sbcl 2016-04-15T15:18:47Z dustinm` joined #sbcl 2016-04-15T15:19:04Z psilord quit (Ping timeout: 264 seconds) 2016-04-15T15:19:44Z psilord joined #sbcl 2016-04-15T15:20:16Z Blkt quit (Ping timeout: 264 seconds) 2016-04-15T15:20:16Z lacedaemon quit (Ping timeout: 264 seconds) 2016-04-15T15:20:17Z pchrist quit (Ping timeout: 264 seconds) 2016-04-15T15:20:55Z carvite_ joined #sbcl 2016-04-15T15:21:05Z Blkt joined #sbcl 2016-04-15T15:21:13Z fe[nl]ix joined #sbcl 2016-04-15T15:22:32Z andreh joined #sbcl 2016-04-15T15:22:35Z chris2_ joined #sbcl 2016-04-15T15:25:49Z DeadTrickster_ quit (*.net *.split) 2016-04-15T15:25:53Z stassats quit (*.net *.split) 2016-04-15T15:26:04Z carvite quit (*.net *.split) 2016-04-15T15:26:07Z Posterdati quit (*.net *.split) 2016-04-15T15:26:09Z salva quit (*.net *.split) 2016-04-15T15:26:09Z whiteline quit (*.net *.split) 2016-04-15T15:26:25Z carvite_ is now known as carvite 2016-04-15T15:28:04Z foom quit (Ping timeout: 264 seconds) 2016-04-15T15:30:03Z stassats joined #sbcl 2016-04-15T15:30:28Z whiteline joined #sbcl 2016-04-15T15:30:48Z Posterdati joined #sbcl 2016-04-15T15:30:54Z DeadTrickster_ joined #sbcl 2016-04-15T15:32:24Z salva joined #sbcl 2016-04-15T15:35:26Z Hertz joined #sbcl 2016-04-15T15:45:03Z foom joined #sbcl 2016-04-15T15:49:43Z pchrist joined #sbcl 2016-04-15T15:51:45Z andreh quit (Remote host closed the connection) 2016-04-15T15:53:02Z andreh joined #sbcl 2016-04-15T15:56:16Z DeadTrickster_ quit (Ping timeout: 252 seconds) 2016-04-15T15:56:54Z Hertz quit (Ping timeout: 276 seconds) 2016-04-15T15:57:52Z andreh quit (Remote host closed the connection) 2016-04-15T15:58:16Z andreh joined #sbcl 2016-04-15T15:59:28Z Hertz joined #sbcl 2016-04-15T16:13:47Z andreh quit (*.net *.split) 2016-04-15T16:13:48Z jdz quit (*.net *.split) 2016-04-15T16:13:53Z jdz joined #sbcl 2016-04-15T16:14:18Z andreh joined #sbcl 2016-04-15T16:16:09Z Hertz quit (Ping timeout: 268 seconds) 2016-04-15T16:16:19Z dwrngr joined #sbcl 2016-04-15T16:16:26Z dwrngr left #sbcl 2016-04-15T16:23:42Z andreh quit (Remote host closed the connection) 2016-04-15T16:36:38Z Hertz joined #sbcl 2016-04-15T16:47:36Z mateuszb quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-04-15T16:51:48Z andreh joined #sbcl 2016-04-15T17:03:01Z Hertz quit (Ping timeout: 268 seconds) 2016-04-15T17:03:32Z Hertz joined #sbcl 2016-04-15T17:06:53Z DmHertz joined #sbcl 2016-04-15T17:10:21Z Hertz quit (Ping timeout: 276 seconds) 2016-04-15T17:18:51Z Quadresce` joined #sbcl 2016-04-15T17:21:06Z angavrilov_ joined #sbcl 2016-04-15T17:21:12Z andreh_ joined #sbcl 2016-04-15T17:26:53Z andreh quit (*.net *.split) 2016-04-15T17:27:00Z jdz quit (*.net *.split) 2016-04-15T17:27:02Z pchrist quit (*.net *.split) 2016-04-15T17:27:03Z abbe quit (*.net *.split) 2016-04-15T17:27:52Z salva quit (*.net *.split) 2016-04-15T17:27:58Z psilord quit (*.net *.split) 2016-04-15T17:27:59Z sigjuice quit (*.net *.split) 2016-04-15T17:28:01Z Quadrescence quit (*.net *.split) 2016-04-15T17:28:03Z sjl quit (*.net *.split) 2016-04-15T17:28:03Z akkad quit (*.net *.split) 2016-04-15T17:28:03Z angavrilov quit (*.net *.split) 2016-04-15T17:28:03Z DGASAU quit (*.net *.split) 2016-04-15T17:28:05Z aeth quit (*.net *.split) 2016-04-15T17:28:17Z DGASAU` joined #sbcl 2016-04-15T17:29:58Z aeth joined #sbcl 2016-04-15T17:30:26Z akkad joined #sbcl 2016-04-15T17:33:06Z leo_song quit (Ping timeout: 276 seconds) 2016-04-15T17:34:09Z leo_song joined #sbcl 2016-04-15T17:34:17Z sjl joined #sbcl 2016-04-15T17:35:39Z psilord joined #sbcl 2016-04-15T17:38:18Z luis quit (Ping timeout: 276 seconds) 2016-04-15T17:41:49Z DGASAU` is now known as DGASAU 2016-04-15T17:42:29Z luis joined #sbcl 2016-04-15T17:44:15Z sjl quit (*.net *.split) 2016-04-15T17:45:06Z sjl joined #sbcl 2016-04-15T17:50:06Z sigjuice joined #sbcl 2016-04-15T17:50:40Z salva joined #sbcl 2016-04-15T17:54:13Z jdz joined #sbcl 2016-04-15T17:55:44Z abbe joined #sbcl 2016-04-15T18:05:37Z pchrist joined #sbcl 2016-04-15T18:09:37Z Quadresce` quit (Ping timeout: 260 seconds) 2016-04-15T18:21:08Z Quadresce` joined #sbcl 2016-04-15T18:43:28Z andreh_ quit (Remote host closed the connection) 2016-04-15T18:58:44Z clique joined #sbcl 2016-04-15T18:59:09Z joshe joined #sbcl 2016-04-15T19:07:29Z DeadTrickster_ joined #sbcl 2016-04-15T19:08:58Z clique left #sbcl 2016-04-15T19:11:51Z joshe quit (Ping timeout: 264 seconds) 2016-04-15T19:11:55Z edgar-rft quit (Quit: edgar-rft) 2016-04-15T19:13:39Z DeadTrickster_ quit (Ping timeout: 264 seconds) 2016-04-15T19:19:39Z attila_lendvai joined #sbcl 2016-04-15T19:19:39Z attila_lendvai quit (Changing host) 2016-04-15T19:19:39Z attila_lendvai joined #sbcl 2016-04-15T19:19:52Z sjl__ joined #sbcl 2016-04-15T19:20:53Z DeadTrickster_ joined #sbcl 2016-04-15T19:20:59Z aeth quit (Quit: Reconnecting) 2016-04-15T19:22:51Z aeth joined #sbcl 2016-04-15T19:23:04Z aeth quit (Changing host) 2016-04-15T19:23:04Z aeth joined #sbcl 2016-04-15T19:23:07Z sjl quit (Ping timeout: 276 seconds) 2016-04-15T19:23:09Z DmHertz quit (Ping timeout: 276 seconds) 2016-04-15T19:23:44Z DGASAU quit (Read error: Connection reset by peer) 2016-04-15T19:24:16Z DGASAU joined #sbcl 2016-04-15T19:43:33Z DeadTrickster_ quit (Ping timeout: 244 seconds) 2016-04-15T19:44:32Z prxq joined #sbcl 2016-04-15T19:49:44Z mateuszb joined #sbcl 2016-04-15T19:50:01Z mateuszb quit (Client Quit) 2016-04-15T19:54:40Z stassats: huh, a bignum allocated for the cast error, but it's not actually used 2016-04-15T19:54:51Z stassats: and it happens only sometimes 2016-04-15T19:54:54Z andreh joined #sbcl 2016-04-15T19:55:26Z DeadTrickster_ joined #sbcl 2016-04-15T19:56:07Z Guest60654: you'd have to allocate the bignum in the error code :\ 2016-04-15T19:56:10Z Guest60654 is now known as pkhuong 2016-04-15T19:56:24Z stassats: it's not even used by the error code 2016-04-15T19:56:59Z stassats: probably some failure in the optimizer 2016-04-15T19:57:12Z stassats: not deleting something or reaching the optimization limit 2016-04-15T19:58:38Z stassats: it prints ; (LET ((#:G42 'SB-C::DUMMY)) ; (UNLESS (TYPEP #:G42 '(MOD 4611686018427387901)) ; (SB-C::%TYPE-CHECK-ERROR/C #:G42 'SB-KERNEL::OBJECT-NOT-INDEX-ERROR)) ; (VALUES #:G42)) 2016-04-15T19:58:53Z stassats: so it's from substitute-lvar, but SB-C::%TYPE-CHECK-ERROR/C is a vop 2016-04-15T19:59:53Z stassats: why is there still a dummy, though? 2016-04-15T20:00:15Z stassats: or it just saved that source location 2016-04-15T20:02:11Z stassats: ok, i guess it thinks it will return the bignum, without realizing that it won't be returned 2016-04-15T20:02:24Z stassats: a constraint propagation failure? 2016-04-15T20:03:08Z pkhuong: stassats: is the VOP declared correctly? 2016-04-15T20:03:37Z stassats: it should be, it happens only in this particular case 2016-04-15T20:03:41Z pkhuong: oh yeah.... what is the return type of %type-check-error/c ? 2016-04-15T20:04:03Z pkhuong: constraint *might* do the right thing if the return type is NIL, but I wouldn't be surprised if it didn't. 2016-04-15T20:04:39Z stassats: it's not my constraint changes, phew 2016-04-15T20:06:02Z DeadTrickster__ joined #sbcl 2016-04-15T20:06:11Z pkhuong: if it's constraint, I'd tend to blame either the very design of the thing or the bitvector change for almost anything 2016-04-15T20:06:36Z pkhuong: the bitvector change is definitely the right thing 99% of the time, but when it fails, it fails hard... and we can't build without constraint. 2016-04-15T20:06:45Z stassats: i can't reproduce it with simple casts, it's very specific 2016-04-15T20:09:24Z DeadTrickster_ quit (Ping timeout: 244 seconds) 2016-04-15T20:10:00Z stassats: will try to reduce the test case then 2016-04-15T20:20:13Z gingerale joined #sbcl 2016-04-15T20:23:16Z DeadTrickster__ quit (Ping timeout: 264 seconds) 2016-04-15T20:25:13Z stassats: it actually uses the bignum... 2016-04-15T20:25:19Z stassats: although to use it would be a bad idea 2016-04-15T20:26:49Z stassats: http://paste.lisp.org/display/313591 2016-04-15T20:28:32Z stassats: happened even before any of my changes to casts or constraint propagation 2016-04-15T20:29:35Z stassats: http://paste.lisp.org/display/313591#1 without using INDEX 2016-04-15T20:29:42Z stassats: this doesn't happen with just FIXNUM 2016-04-15T20:32:00Z psilord quit (Quit: Leaving.) 2016-04-15T20:34:38Z stassats: a loop is necessary too, so i guess it's constraint propagation misbehaving 2016-04-15T20:35:11Z pkhuong: loops are also generally harder (: 2016-04-15T20:35:45Z DeadTrickster__ joined #sbcl 2016-04-15T20:37:00Z stassats: simpler http://paste.lisp.org/display/313591#2 2016-04-15T20:38:21Z leo_song quit (Ping timeout: 276 seconds) 2016-04-15T20:38:22Z sjl__ quit (Ping timeout: 260 seconds) 2016-04-15T20:38:44Z leo_song joined #sbcl 2016-04-15T20:39:28Z gingerale- joined #sbcl 2016-04-15T20:39:53Z stassats: lp 1261646 2016-04-15T20:39:54Z specbot: https://bugs.launchpad.net/bugs/1261646 2016-04-15T20:40:09Z stassats: that started failing 2016-04-15T20:42:46Z gale_ joined #sbcl 2016-04-15T20:42:49Z gingerale quit (Ping timeout: 260 seconds) 2016-04-15T20:44:56Z stassats: not that, its test 2016-04-15T20:46:19Z gingerale- quit (Ping timeout: 260 seconds) 2016-04-15T20:47:33Z stassats: sb-debug:print-backtrace got broken, apparently 2016-04-15T20:50:18Z edgar-rft joined #sbcl 2016-04-15T20:53:11Z stassats: an easy fix 2016-04-15T21:11:59Z gale_ quit (Remote host closed the connection) 2016-04-15T21:15:17Z stassats: back to the bignum thing, after the cast it does now that it's a fixnum 2016-04-15T21:15:33Z stassats: because it's a cast 2016-04-15T21:16:17Z ASau joined #sbcl 2016-04-15T21:22:31Z stassats: ok, out of ideas 2016-04-15T21:28:28Z prxq quit (Remote host closed the connection) 2016-04-15T21:31:39Z DeadTrickster__ quit (Ping timeout: 276 seconds) 2016-04-15T22:06:41Z sjl__ joined #sbcl 2016-04-15T22:13:45Z andreh quit (Remote host closed the connection) 2016-04-15T22:33:27Z rlatimore joined #sbcl 2016-04-15T22:35:53Z sjl__ is now known as sjl 2016-04-15T23:09:09Z edgar-rft quit (Quit: edgar-rft) 2016-04-15T23:42:09Z rlatimore quit (Quit: WeeChat 1.4) 2016-04-16T00:12:12Z stassats quit (Ping timeout: 276 seconds) 2016-04-16T00:57:44Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-16T01:05:05Z mateuszb joined #sbcl 2016-04-16T01:39:02Z andreh joined #sbcl 2016-04-16T01:45:14Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-16T01:47:04Z adhoc joined #sbcl 2016-04-16T02:54:31Z DavidGuru joined #sbcl 2016-04-16T03:14:14Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-16T03:14:27Z DavidGuru joined #sbcl 2016-04-16T03:24:03Z dougk_ joined #sbcl 2016-04-16T03:25:11Z DmHertz joined #sbcl 2016-04-16T03:58:24Z phoe_krk quit (Ping timeout: 276 seconds) 2016-04-16T03:59:42Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-16T04:08:02Z dougk_ joined #sbcl 2016-04-16T04:53:59Z edgar-rft joined #sbcl 2016-04-16T05:00:27Z dougk_ quit (Ping timeout: 264 seconds) 2016-04-16T05:24:58Z edgar-rft quit (Quit: edgar-rft) 2016-04-16T05:29:47Z DmHertz quit (Quit: Leaving) 2016-04-16T05:35:19Z rszeno joined #sbcl 2016-04-16T05:51:46Z phoe_krk joined #sbcl 2016-04-16T06:13:25Z andreh quit 2016-04-16T06:15:35Z rszeno quit (Quit: Leaving.) 2016-04-16T06:26:25Z clique joined #sbcl 2016-04-16T06:29:52Z phoe_krk quit (Ping timeout: 264 seconds) 2016-04-16T06:30:08Z phoe_krk joined #sbcl 2016-04-16T06:56:42Z Quadresce` quit (Quit: Leaving) 2016-04-16T07:06:16Z gingerale joined #sbcl 2016-04-16T07:22:15Z gingerale quit (Remote host closed the connection) 2016-04-16T07:32:03Z gingerale joined #sbcl 2016-04-16T07:33:24Z Bike quit (Quit: leaving) 2016-04-16T07:49:26Z Hertz joined #sbcl 2016-04-16T08:01:21Z DavidGuru quit (Ping timeout: 244 seconds) 2016-04-16T08:07:43Z DavidGuru joined #sbcl 2016-04-16T08:10:59Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-16T08:13:33Z DavidGuru joined #sbcl 2016-04-16T08:27:30Z clique quit (Quit: Page closed) 2016-04-16T09:05:12Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-16T10:01:15Z DeadTrickster__ joined #sbcl 2016-04-16T10:15:37Z ASau quit (Ping timeout: 260 seconds) 2016-04-16T10:16:31Z DeadTrickster quit (Read error: Connection reset by peer) 2016-04-16T10:29:48Z DeadTrickster joined #sbcl 2016-04-16T10:51:20Z chris2_ is now known as chris2 2016-04-16T10:56:36Z ASau joined #sbcl 2016-04-16T11:04:55Z DmHertz joined #sbcl 2016-04-16T11:05:16Z stassats joined #sbcl 2016-04-16T11:08:42Z DeadTrickster__ quit (Ping timeout: 276 seconds) 2016-04-16T11:09:21Z Hertz quit (Ping timeout: 276 seconds) 2016-04-16T11:31:04Z stassats quit (Ping timeout: 264 seconds) 2016-04-16T11:33:22Z stassats joined #sbcl 2016-04-16T11:37:52Z stassats quit (Ping timeout: 260 seconds) 2016-04-16T11:38:29Z attila_lendvai joined #sbcl 2016-04-16T11:38:29Z attila_lendvai quit (Changing host) 2016-04-16T11:38:29Z attila_lendvai joined #sbcl 2016-04-16T11:40:42Z stassats joined #sbcl 2016-04-16T11:45:14Z stassats quit (Ping timeout: 260 seconds) 2016-04-16T11:46:09Z stassats joined #sbcl 2016-04-16T12:32:52Z dougk quit (Ping timeout: 250 seconds) 2016-04-16T12:33:29Z dougk joined #sbcl 2016-04-16T13:12:28Z dougk quit (Ping timeout: 264 seconds) 2016-04-16T13:16:33Z dougk joined #sbcl 2016-04-16T13:23:14Z DeadTrickster__ joined #sbcl 2016-04-16T13:54:49Z dougk_ joined #sbcl 2016-04-16T14:02:51Z dougk_ quit (Ping timeout: 264 seconds) 2016-04-16T14:21:14Z karswell joined #sbcl 2016-04-16T14:24:21Z sjl quit (Ping timeout: 276 seconds) 2016-04-16T14:28:42Z clique joined #sbcl 2016-04-16T14:30:13Z edgar-rft joined #sbcl 2016-04-16T15:01:28Z dougk_ joined #sbcl 2016-04-16T15:05:39Z sjl joined #sbcl 2016-04-16T15:06:35Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-16T15:17:00Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-16T15:22:05Z Xof: stassats: does arm64 pseudo-atomic work on #!-sb-thread? 2016-04-16T15:22:10Z Xof: if so, how? 2016-04-16T15:52:13Z Xof quit (Remote host closed the connection) 2016-04-16T15:58:31Z Xof joined #sbcl 2016-04-16T16:05:00Z Bike joined #sbcl 2016-04-16T16:27:49Z dougk_ joined #sbcl 2016-04-16T16:44:06Z DmHertz quit (Ping timeout: 276 seconds) 2016-04-16T16:44:26Z clique quit (Ping timeout: 250 seconds) 2016-04-16T16:50:42Z DmHertz joined #sbcl 2016-04-16T16:54:26Z DavidGuru joined #sbcl 2016-04-16T17:06:12Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-16T17:09:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-16T17:58:29Z gargaml joined #sbcl 2016-04-16T18:06:22Z karswell quit (Ping timeout: 244 seconds) 2016-04-16T18:08:16Z karswell joined #sbcl 2016-04-16T18:13:44Z DeadTrickster__ quit (Ping timeout: 260 seconds) 2016-04-16T18:35:22Z dougk_ joined #sbcl 2016-04-16T18:36:46Z DavidGuru quit (Ping timeout: 252 seconds) 2016-04-16T18:36:56Z DavidGuru joined #sbcl 2016-04-16T18:37:45Z DavidGuru quit (Client Quit) 2016-04-16T18:47:36Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-16T18:58:16Z stassats: Xof: don't remember exactly, why do you ask? 2016-04-16T19:01:16Z stassats: probably the same as on arm32 2016-04-16T19:09:09Z sjl quit (Ping timeout: 260 seconds) 2016-04-16T19:10:02Z Xof: stassats: when you implemented thread support, you changed the pa mechanism from two specials to storing NILs in some thread slot 2016-04-16T19:10:32Z Xof: and a test and branch around a brk 2016-04-16T19:10:56Z Xof: but in the #!-sb-thread case, as far as I can see, nothing sets the flags 2016-04-16T19:11:14Z Xof: wait, I am speaking nonsense 2016-04-16T19:11:21Z Xof: sorry 2016-04-16T19:11:37Z Xof: on a reread it looks fine :-) 2016-04-16T19:15:23Z stassats: they could share the same mechanism 2016-04-16T19:15:40Z stassats: but i'm not planning on using threadless sbcl on arm64, so, i didn't bother 2016-04-16T19:16:28Z Xof: sure. I misread the test, and thought that things were set up right for one case but not the other 2016-04-16T19:16:30Z Xof: my mistake 2016-04-16T19:17:21Z stassats: but ;; When *pseudo-atomic-interrupted* is not 0 it contains the address of do_pending_interrupt could probably go 2016-04-16T19:17:33Z stassats: it's not uses in the pseudo-atomic macro 2016-04-16T19:17:44Z stassats: but it's used in arm64-assem.S 2016-04-16T19:26:51Z prxq joined #sbcl 2016-04-16T19:27:59Z stassats: looks like the bignum consing thing is actually a representation issue 2016-04-16T19:30:12Z stassats: the tn in question is only read or written by MOVE 2016-04-16T19:35:17Z stassats: which has 0 costs for descriptor regs 2016-04-16T19:38:52Z DmHertz quit (Ping timeout: 244 seconds) 2016-04-16T19:45:00Z DmHertz joined #sbcl 2016-04-16T19:45:48Z stassats: ok, representation selection is always giving me problems, can't solve it easily now either 2016-04-16T19:48:32Z DmHertz quit (Client Quit) 2016-04-16T19:53:37Z Hertz joined #sbcl 2016-04-16T19:54:12Z sjl joined #sbcl 2016-04-16T19:55:36Z hargettp joined #sbcl 2016-04-16T20:15:38Z dougk_ joined #sbcl 2016-04-16T20:16:42Z DavidGuru joined #sbcl 2016-04-16T20:20:38Z attila_lendvai joined #sbcl 2016-04-16T20:20:38Z attila_lendvai quit (Changing host) 2016-04-16T20:20:38Z attila_lendvai joined #sbcl 2016-04-16T20:24:19Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-16T20:24:32Z DeadTrickster__ joined #sbcl 2016-04-16T20:24:42Z scymtym_ joined #sbcl 2016-04-16T20:26:41Z gargaml quit (Quit: WeeChat 1.4) 2016-04-16T20:26:54Z Intensity joined #sbcl 2016-04-16T20:33:36Z dougk_ joined #sbcl 2016-04-16T20:41:54Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-16T21:10:40Z gingerale quit (Remote host closed the connection) 2016-04-16T21:12:32Z hargettp quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-04-16T21:12:54Z DeadTrickster__ quit (Ping timeout: 244 seconds) 2016-04-16T21:22:23Z dougk_ joined #sbcl 2016-04-16T21:27:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-16T21:40:16Z karswell quit (Read error: Connection reset by peer) 2016-04-16T21:40:31Z karswell joined #sbcl 2016-04-16T21:42:52Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-16T21:43:27Z dougk_ joined #sbcl 2016-04-16T21:57:24Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-16T22:01:09Z prxq quit (Remote host closed the connection) 2016-04-16T22:06:36Z dougk_ joined #sbcl 2016-04-16T22:07:36Z DeadTrickster__ joined #sbcl 2016-04-16T22:26:15Z dougk_ quit (Ping timeout: 264 seconds) 2016-04-16T22:26:46Z dougk_ joined #sbcl 2016-04-16T22:45:53Z Hertz quit (Ping timeout: 244 seconds) 2016-04-16T23:03:42Z DeadTrickster__ quit (Quit: Leaving) 2016-04-17T00:02:51Z stassats quit (Ping timeout: 276 seconds) 2016-04-17T00:03:50Z hargettp joined #sbcl 2016-04-17T00:13:40Z joshe joined #sbcl 2016-04-17T00:34:24Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-17T00:36:55Z dougk_ joined #sbcl 2016-04-17T00:48:12Z Hertz joined #sbcl 2016-04-17T00:53:54Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-17T01:26:38Z mateuszb quit (Quit: Textual IRC Client: www.textualapp.com) 2016-04-17T01:41:55Z hargettp quit (Quit: Textual IRC Client: www.textualapp.com) 2016-04-17T02:17:32Z Hertz quit (Ping timeout: 260 seconds) 2016-04-17T02:27:26Z adhoc left #sbcl 2016-04-17T03:09:23Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-17T03:29:28Z Hertz joined #sbcl 2016-04-17T05:18:47Z karswell` joined #sbcl 2016-04-17T05:18:58Z karswell quit (Remote host closed the connection) 2016-04-17T05:46:42Z clique joined #sbcl 2016-04-17T06:09:07Z salva quit (Ping timeout: 260 seconds) 2016-04-17T06:12:22Z clique left #sbcl 2016-04-17T06:19:35Z zRecursive joined #sbcl 2016-04-17T06:22:45Z salva joined #sbcl 2016-04-17T06:50:17Z joshe quit (Ping timeout: 264 seconds) 2016-04-17T06:53:10Z joshe joined #sbcl 2016-04-17T07:51:02Z DGASAU` joined #sbcl 2016-04-17T07:52:15Z ASau` joined #sbcl 2016-04-17T07:52:23Z gingerale joined #sbcl 2016-04-17T07:52:26Z aeth_ joined #sbcl 2016-04-17T07:56:45Z zRecursive quit (*.net *.split) 2016-04-17T07:56:47Z scymtym_ quit (*.net *.split) 2016-04-17T07:56:48Z edgar-rft quit (*.net *.split) 2016-04-17T07:56:49Z ASau quit (*.net *.split) 2016-04-17T07:56:52Z DGASAU quit (*.net *.split) 2016-04-17T07:56:52Z aeth quit (*.net *.split) 2016-04-17T07:56:53Z sigjuice quit (*.net *.split) 2016-04-17T07:57:00Z Posterdati quit (*.net *.split) 2016-04-17T07:58:09Z zRecursive joined #sbcl 2016-04-17T07:58:15Z sigjuice joined #sbcl 2016-04-17T08:03:43Z gingerale- joined #sbcl 2016-04-17T08:03:54Z Hertz quit (Ping timeout: 244 seconds) 2016-04-17T08:04:01Z ASau`` joined #sbcl 2016-04-17T08:05:32Z edgar-rft joined #sbcl 2016-04-17T08:06:57Z Bike_ joined #sbcl 2016-04-17T08:07:06Z jackdani1l joined #sbcl 2016-04-17T08:08:23Z jsnell joined #sbcl 2016-04-17T08:08:39Z Hertz joined #sbcl 2016-04-17T08:12:02Z zRecursive quit (*.net *.split) 2016-04-17T08:12:04Z gingerale quit (*.net *.split) 2016-04-17T08:12:04Z ASau` quit (*.net *.split) 2016-04-17T08:12:12Z Bike quit (*.net *.split) 2016-04-17T08:12:29Z loke quit (*.net *.split) 2016-04-17T08:12:31Z chu quit (*.net *.split) 2016-04-17T08:12:44Z flip214 quit (*.net *.split) 2016-04-17T08:12:47Z jackdaniel quit (*.net *.split) 2016-04-17T08:12:48Z _iwc quit (*.net *.split) 2016-04-17T08:12:57Z jsnell_ quit (*.net *.split) 2016-04-17T08:12:57Z mood quit (*.net *.split) 2016-04-17T08:12:58Z sigjuice quit (*.net *.split) 2016-04-17T08:13:00Z Intensity quit (*.net *.split) 2016-04-17T08:13:04Z flip214 joined #sbcl 2016-04-17T08:13:04Z flip214 quit (Changing host) 2016-04-17T08:13:04Z flip214 joined #sbcl 2016-04-17T08:14:12Z DavidGuru joined #sbcl 2016-04-17T08:21:51Z _iwc_ joined #sbcl 2016-04-17T08:25:50Z loke joined #sbcl 2016-04-17T08:30:11Z _iwc_ is now known as _iwc 2016-04-17T08:38:34Z Posterdati joined #sbcl 2016-04-17T08:54:40Z mood joined #sbcl 2016-04-17T09:05:31Z Intensity joined #sbcl 2016-04-17T09:05:31Z sigjuice joined #sbcl 2016-04-17T09:27:10Z stassats joined #sbcl 2016-04-17T10:14:30Z chu joined #sbcl 2016-04-17T10:15:25Z sjl_ joined #sbcl 2016-04-17T10:18:24Z sjl quit (Ping timeout: 276 seconds) 2016-04-17T10:21:49Z DavidGuru1 joined #sbcl 2016-04-17T10:25:33Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-17T10:25:34Z DavidGuru1 is now known as DavidGuru 2016-04-17T11:05:20Z jackdani1l is now known as jackdaniel 2016-04-17T11:11:20Z sjl joined #sbcl 2016-04-17T11:13:32Z sjl_ quit (Ping timeout: 244 seconds) 2016-04-17T11:20:15Z joshe quit (Ping timeout: 244 seconds) 2016-04-17T11:20:15Z mordocai quit (Ping timeout: 244 seconds) 2016-04-17T11:22:10Z mordocai joined #sbcl 2016-04-17T11:22:45Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-17T11:23:07Z DavidGuru joined #sbcl 2016-04-17T11:26:59Z ASau`` is now known as ASau 2016-04-17T11:37:49Z ASau` joined #sbcl 2016-04-17T11:41:37Z ASau quit (Ping timeout: 260 seconds) 2016-04-17T12:02:37Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-17T12:57:24Z karswell` is now known as karswell 2016-04-17T13:46:30Z dougk_ joined #sbcl 2016-04-17T14:18:51Z DavidGuru joined #sbcl 2016-04-17T14:52:04Z Hertz quit (Ping timeout: 264 seconds) 2016-04-17T14:55:49Z stassats quit (Ping timeout: 268 seconds) 2016-04-17T14:57:49Z stassats joined #sbcl 2016-04-17T15:13:57Z luis quit (Ping timeout: 260 seconds) 2016-04-17T15:15:37Z luis joined #sbcl 2016-04-17T15:25:25Z DavidGuru quit (Remote host closed the connection) 2016-04-17T15:26:11Z whiteline quit (Ping timeout: 250 seconds) 2016-04-17T15:26:33Z whiteline joined #sbcl 2016-04-17T15:30:46Z stassats quit (*.net *.split) 2016-04-17T15:30:53Z loke quit (*.net *.split) 2016-04-17T15:36:39Z stassats joined #sbcl 2016-04-17T15:39:11Z christoph_debian quit (Ping timeout: 250 seconds) 2016-04-17T15:39:30Z loke joined #sbcl 2016-04-17T15:40:03Z christoph_debian joined #sbcl 2016-04-17T15:40:51Z stassats quit (Ping timeout: 250 seconds) 2016-04-17T15:41:52Z stassats joined #sbcl 2016-04-17T15:44:22Z christoph_debian quit (Ping timeout: 250 seconds) 2016-04-17T15:46:09Z stassats quit (Ping timeout: 246 seconds) 2016-04-17T15:46:52Z stassats joined #sbcl 2016-04-17T15:49:35Z Bike_ is now known as Bike 2016-04-17T15:50:08Z christoph_debian joined #sbcl 2016-04-17T15:51:03Z stassats quit (Ping timeout: 246 seconds) 2016-04-17T15:51:52Z stassats joined #sbcl 2016-04-17T15:56:18Z stassats quit (Ping timeout: 246 seconds) 2016-04-17T15:56:53Z aeth_ is now known as aeth 2016-04-17T15:57:20Z stassats joined #sbcl 2016-04-17T16:01:39Z stassats quit (Ping timeout: 250 seconds) 2016-04-17T16:02:22Z stassats joined #sbcl 2016-04-17T16:06:48Z stassats quit (Ping timeout: 246 seconds) 2016-04-17T16:07:18Z stassats joined #sbcl 2016-04-17T16:11:42Z stassats quit (Ping timeout: 260 seconds) 2016-04-17T16:13:18Z stassats joined #sbcl 2016-04-17T16:16:14Z Hertz joined #sbcl 2016-04-17T16:17:50Z stassats quit (Ping timeout: 244 seconds) 2016-04-17T16:18:49Z stassats joined #sbcl 2016-04-17T16:28:07Z ASau`` joined #sbcl 2016-04-17T16:28:37Z stassats` joined #sbcl 2016-04-17T16:28:55Z chu_ joined #sbcl 2016-04-17T16:30:29Z sjl_ joined #sbcl 2016-04-17T16:31:58Z stassats quit (*.net *.split) 2016-04-17T16:32:03Z ASau` quit (*.net *.split) 2016-04-17T16:32:05Z sjl quit (*.net *.split) 2016-04-17T16:32:06Z chu quit (*.net *.split) 2016-04-17T16:33:17Z stassats` quit (Ping timeout: 260 seconds) 2016-04-17T16:33:47Z phoe_krk left #sbcl 2016-04-17T16:33:51Z stassats joined #sbcl 2016-04-17T16:37:58Z stassats quit (Ping timeout: 244 seconds) 2016-04-17T16:41:23Z stassats joined #sbcl 2016-04-17T16:45:51Z stassats quit (Ping timeout: 250 seconds) 2016-04-17T16:47:53Z stassats joined #sbcl 2016-04-17T16:51:25Z DmHertz joined #sbcl 2016-04-17T17:00:48Z Hertz quit (*.net *.split) 2016-04-17T17:00:49Z christoph_debian quit (*.net *.split) 2016-04-17T17:00:51Z whiteline quit (*.net *.split) 2016-04-17T17:06:58Z whiteline joined #sbcl 2016-04-17T17:07:21Z christoph_debian joined #sbcl 2016-04-17T17:16:40Z clique joined #sbcl 2016-04-17T17:21:14Z clique quit (Ping timeout: 250 seconds) 2016-04-17T17:32:13Z DmHertz quit (Ping timeout: 250 seconds) 2016-04-17T17:33:33Z ASau`` is now known as ASau 2016-04-17T17:42:35Z attila_lendvai joined #sbcl 2016-04-17T17:44:07Z dougk_ quit (Ping timeout: 244 seconds) 2016-04-17T17:52:07Z stassats: try to figure out run-program io redirection on windows 2016-04-17T17:52:39Z stassats: looks like i have fixed redirecting to a file and to a stream 2016-04-17T17:53:02Z stassats: but actually using serve-event to perform copying needs a rework 2016-04-17T17:55:44Z stassats: probably the whole serve event needs a rework 2016-04-17T18:09:51Z mhitza joined #sbcl 2016-04-17T18:12:18Z mhitza quit (Client Quit) 2016-04-17T18:20:33Z sjl_ is now known as sjl 2016-04-17T18:50:16Z stassats: yeah, looks like win32 asynchronous stuff is operation oriented, can't just select on an fd 2016-04-17T18:51:04Z stassats: i guess i can manage that for run-program 2016-04-17T18:51:22Z stassats: but not sure how to make serve-event behave like that 2016-04-17T18:58:19Z hitecnologys quit (Ping timeout: 260 seconds) 2016-04-17T19:25:57Z akkad quit (Ping timeout: 260 seconds) 2016-04-17T19:31:48Z dougk_ joined #sbcl 2016-04-17T19:33:23Z christoph_debian quit (*.net *.split) 2016-04-17T19:34:41Z shka joined #sbcl 2016-04-17T19:34:49Z shka: hi folks 2016-04-17T19:35:00Z shka: i was running some tests with memory pool 2016-04-17T19:35:11Z akkad joined #sbcl 2016-04-17T19:35:27Z shka: basicly i was reusing fixed size vectors 2016-04-17T19:35:55Z shka: but results i noticed were kinda shocking 2016-04-17T19:36:01Z shka: http://paste.lisp.org/display/313769 2016-04-17T19:36:22Z shka: i was able to reduce number of new vectors created 2016-04-17T19:36:33Z shka: and in fact, by quite a large factor 2016-04-17T19:36:40Z shka: 2587 vs 2000000 2016-04-17T19:37:05Z shka: but amazingly, evaluation didn't take less time 2016-04-17T19:37:33Z shka: does sbcl has some clever optimasation to handle object reusing? 2016-04-17T19:40:08Z christoph_debian joined #sbcl 2016-04-17T19:55:36Z p_l quit (Ping timeout: 276 seconds) 2016-04-17T20:00:56Z stassats: it has... a garbage collector 2016-04-17T20:01:09Z stassats: but i don't see a reduction in consing in your timings 2016-04-17T20:03:11Z gingerale- quit (Remote host closed the connection) 2016-04-17T20:09:35Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-17T20:13:44Z dougk_ joined #sbcl 2016-04-17T20:18:34Z p_l joined #sbcl 2016-04-17T20:25:10Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-17T20:41:34Z Shinmera- quit (Quit: しつれいしなければならないんです。) 2016-04-17T20:45:07Z dougk_ joined #sbcl 2016-04-17T20:56:51Z shka: stassats: well, i'm scratching my head as well 2016-04-17T20:57:07Z shka: i had to do something stupid 2016-04-17T21:06:46Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-17T21:14:25Z dougk_ joined #sbcl 2016-04-17T21:34:56Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-17T21:41:11Z p_l quit (*.net *.split) 2016-04-17T21:41:17Z akkad quit (*.net *.split) 2016-04-17T21:41:21Z whiteline quit (*.net *.split) 2016-04-17T21:41:33Z mordocai quit (*.net *.split) 2016-04-17T21:44:12Z akkad_ joined #sbcl 2016-04-17T21:44:34Z p_l joined #sbcl 2016-04-17T21:45:16Z mordocai joined #sbcl 2016-04-17T21:47:07Z shka quit (Ping timeout: 260 seconds) 2016-04-17T22:01:31Z joshe joined #sbcl 2016-04-17T22:08:01Z dougk_ joined #sbcl 2016-04-17T22:14:37Z DeadTrickster joined #sbcl 2016-04-17T22:14:49Z joshe quit (Ping timeout: 250 seconds) 2016-04-17T22:39:31Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-17T22:41:09Z stassats: finally 2016-04-17T22:41:25Z stassats: (with-output-to-string (str) (sb-ext:run-program "uname" '() :search t :output str)) => "MINGW32_NT-6.2 2016-04-17T22:41:26Z stassats: " 2016-04-17T22:41:56Z stassats: cutting a lot of corners just to see it work, not in a ready state 2016-04-17T22:46:18Z stassats: using overlapped i/o adhoc just for run-program 2016-04-17T22:46:39Z stassats: probably doesn't fit serve-event well enough to make it generic 2016-04-17T22:48:02Z stassats: cr/lf anyone? 2016-04-17T22:55:03Z dougk_ joined #sbcl 2016-04-17T23:06:00Z DeadTrickster quit (Ping timeout: 244 seconds) 2016-04-17T23:10:35Z karswell quit (Remote host closed the connection) 2016-04-17T23:11:01Z karswell joined #sbcl 2016-04-17T23:36:47Z karswell quit (Read error: Connection reset by peer) 2016-04-17T23:36:59Z karswell joined #sbcl 2016-04-17T23:37:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-18T00:03:54Z stassats quit (Ping timeout: 276 seconds) 2016-04-18T00:08:26Z sjl quit (Read error: Connection reset by peer) 2016-04-18T00:54:58Z sjl joined #sbcl 2016-04-18T00:57:06Z chu_ is now known as chu 2016-04-18T01:05:47Z karswell quit (Read error: Connection reset by peer) 2016-04-18T01:06:01Z karswell joined #sbcl 2016-04-18T01:23:16Z zRecursive joined #sbcl 2016-04-18T03:11:55Z DmHertz joined #sbcl 2016-04-18T03:22:21Z DmHertz quit (Quit: Leaving) 2016-04-18T03:27:05Z Hertz joined #sbcl 2016-04-18T03:40:31Z karswell` joined #sbcl 2016-04-18T03:40:41Z kanru quit (Ping timeout: 250 seconds) 2016-04-18T03:43:17Z karswell quit (Ping timeout: 250 seconds) 2016-04-18T04:14:55Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-18T04:47:14Z shka joined #sbcl 2016-04-18T05:37:52Z shka quit (Ping timeout: 260 seconds) 2016-04-18T06:12:47Z dougk_ joined #sbcl 2016-04-18T06:13:27Z salva quit (Ping timeout: 260 seconds) 2016-04-18T06:17:06Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-18T06:31:41Z salva joined #sbcl 2016-04-18T06:55:53Z zRecursi` joined #sbcl 2016-04-18T06:58:57Z zRecursive quit (Ping timeout: 246 seconds) 2016-04-18T07:39:59Z scymtym_ joined #sbcl 2016-04-18T07:58:41Z ASau quit (Ping timeout: 244 seconds) 2016-04-18T08:01:32Z DavidGuru joined #sbcl 2016-04-18T08:09:30Z whiteline joined #sbcl 2016-04-18T08:25:42Z Cthulhux` quit (Ping timeout: 276 seconds) 2016-04-18T08:27:07Z Cthulhux joined #sbcl 2016-04-18T08:30:07Z gingerale joined #sbcl 2016-04-18T08:32:51Z Hertz is now known as metahertz 2016-04-18T08:37:26Z DavidGuru quit (Ping timeout: 244 seconds) 2016-04-18T08:37:59Z DavidGuru joined #sbcl 2016-04-18T09:15:59Z metahertz is now known as Hrentz 2016-04-18T09:17:00Z DeadTrickster joined #sbcl 2016-04-18T09:25:49Z zRecursi` left #sbcl 2016-04-18T09:31:11Z dougk_ joined #sbcl 2016-04-18T09:33:14Z scymtym_ quit (Ping timeout: 244 seconds) 2016-04-18T09:40:21Z scymtym quit (Ping timeout: 250 seconds) 2016-04-18T09:42:18Z Xof quit (Remote host closed the connection) 2016-04-18T09:43:42Z DGASAU` is now known as DGASAU 2016-04-18T09:48:21Z Xof joined #sbcl 2016-04-18T09:54:32Z DavidGuru1 joined #sbcl 2016-04-18T09:55:24Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-18T09:55:25Z DavidGuru1 is now known as DavidGuru 2016-04-18T09:56:54Z stassats joined #sbcl 2016-04-18T10:15:32Z DavidGuru quit (Remote host closed the connection) 2016-04-18T10:25:51Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-18T10:59:00Z Hrentz quit (Ping timeout: 244 seconds) 2016-04-18T11:00:19Z minion quit (Disconnected by services) 2016-04-18T11:01:04Z minion joined #sbcl 2016-04-18T11:03:07Z reb``` joined #sbcl 2016-04-18T11:04:33Z White__Flame joined #sbcl 2016-04-18T11:04:34Z scymtym joined #sbcl 2016-04-18T11:04:35Z les` joined #sbcl 2016-04-18T11:06:00Z dougk quit (Ping timeout: 260 seconds) 2016-04-18T11:06:08Z les quit (Ping timeout: 260 seconds) 2016-04-18T11:06:11Z pchrist quit (Ping timeout: 260 seconds) 2016-04-18T11:06:14Z White_Flame quit (Ping timeout: 260 seconds) 2016-04-18T11:06:18Z reb quit (Ping timeout: 260 seconds) 2016-04-18T11:12:23Z pchrist joined #sbcl 2016-04-18T11:19:05Z dougk joined #sbcl 2016-04-18T11:23:48Z sjl quit (Ping timeout: 244 seconds) 2016-04-18T11:25:06Z mood quit (Ping timeout: 276 seconds) 2016-04-18T11:29:05Z mood joined #sbcl 2016-04-18T11:37:49Z attila_lendvai joined #sbcl 2016-04-18T12:03:31Z sjl joined #sbcl 2016-04-18T12:22:34Z dougk_ joined #sbcl 2016-04-18T12:29:35Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-18T12:46:03Z stassats quit (Ping timeout: 264 seconds) 2016-04-18T12:46:04Z hitecnologys joined #sbcl 2016-04-18T12:46:29Z stassats joined #sbcl 2016-04-18T12:51:10Z stassats quit (Ping timeout: 268 seconds) 2016-04-18T12:51:47Z stassats joined #sbcl 2016-04-18T12:52:55Z DavidGuru joined #sbcl 2016-04-18T12:55:44Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-18T12:58:23Z stassats quit (Ping timeout: 250 seconds) 2016-04-18T13:01:30Z stassats joined #sbcl 2016-04-18T13:02:46Z DavidGuru joined #sbcl 2016-04-18T13:03:25Z dougk_ joined #sbcl 2016-04-18T13:09:07Z karswell` quit (Read error: Connection reset by peer) 2016-04-18T13:09:24Z karswell` joined #sbcl 2016-04-18T13:49:31Z dougk_ quit (Ping timeout: 250 seconds) 2016-04-18T13:50:17Z eudoxia joined #sbcl 2016-04-18T13:57:37Z karswell` quit (Read error: Connection reset by peer) 2016-04-18T14:00:41Z psilord1 joined #sbcl 2016-04-18T14:47:05Z eudoxia quit (Quit: Leaving) 2016-04-18T14:48:23Z DeadTrickster quit (Ping timeout: 250 seconds) 2016-04-18T14:54:11Z DeadTrickster joined #sbcl 2016-04-18T15:00:39Z slyrus joined #sbcl 2016-04-18T15:10:39Z luis quit (Ping timeout: 276 seconds) 2016-04-18T15:11:47Z luis joined #sbcl 2016-04-18T15:14:51Z jdz quit (Ping timeout: 264 seconds) 2016-04-18T15:23:40Z dougk_ joined #sbcl 2016-04-18T15:40:44Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-18T15:42:50Z stassats: run-program.lisp is a real mess 2016-04-18T15:43:47Z dougk_ joined #sbcl 2016-04-18T15:55:17Z Xof: ok! I am now at the point in arm thread support that I have to define some new instructions 2016-04-18T15:56:11Z stassats: always a joy 2016-04-18T15:57:58Z Xof: yes 2016-04-18T15:58:10Z Xof: these instructions look almost but not quite like ldr/str 2016-04-18T15:58:28Z stassats: ldr/str, double the joy 2016-04-18T16:00:44Z Xof: yeah. Maybe I'll go home instead 2016-04-18T16:06:00Z stassats: testing run-program output redirection and about to commit 2016-04-18T16:06:37Z stassats: unless the testing fails 2016-04-18T16:07:12Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-18T16:09:04Z DavidGuru joined #sbcl 2016-04-18T16:10:00Z stassats: blimey, it does fail 2016-04-18T16:11:52Z DavidGuru quit (Remote host closed the connection) 2016-04-18T16:16:02Z leo_song quit (Ping timeout: 260 seconds) 2016-04-18T16:17:06Z leo_song joined #sbcl 2016-04-18T16:32:13Z euandreh_ joined #sbcl 2016-04-18T16:44:16Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-18T16:55:25Z shka joined #sbcl 2016-04-18T17:15:36Z stassats: ok, finally run-program is usable on windows 2016-04-18T17:29:33Z dougk_ joined #sbcl 2016-04-18T17:39:21Z stassats: ok, that's enough windows stuff for this release 2016-04-18T18:05:40Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-18T18:09:20Z Cthulhux quit (Changing host) 2016-04-18T18:09:20Z Cthulhux joined #sbcl 2016-04-18T18:21:05Z dougk_ joined #sbcl 2016-04-18T18:33:38Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-18T18:48:04Z euandreh_ quit (Remote host closed the connection) 2016-04-18T19:19:12Z euandreh joined #sbcl 2016-04-18T19:22:36Z euandreh quit (Quit: Leaving) 2016-04-18T19:22:58Z euandreh joined #sbcl 2016-04-18T19:26:31Z DeadTrickster joined #sbcl 2016-04-18T19:33:05Z DGASAU quit (Ping timeout: 244 seconds) 2016-04-18T19:34:49Z sjl quit (Ping timeout: 250 seconds) 2016-04-18T19:36:55Z DGASAU joined #sbcl 2016-04-18T19:56:08Z Bicyclidine joined #sbcl 2016-04-18T19:57:00Z yvm quit (Quit: Leaving) 2016-04-18T20:16:34Z dougk__ joined #sbcl 2016-04-18T20:18:15Z dougk_ quit (Ping timeout: 268 seconds) 2016-04-18T20:24:42Z dougk__ quit (Ping timeout: 250 seconds) 2016-04-18T20:29:52Z dougk_ joined #sbcl 2016-04-18T20:39:44Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-18T20:42:01Z dougk_ joined #sbcl 2016-04-18T20:49:29Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-18T20:54:02Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-18T20:54:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-18T20:58:08Z Bicyclidine joined #sbcl 2016-04-18T21:02:19Z sjl joined #sbcl 2016-04-18T21:04:15Z sjl_ joined #sbcl 2016-04-18T21:05:28Z ASau joined #sbcl 2016-04-18T21:07:44Z attila_lendvai joined #sbcl 2016-04-18T21:07:44Z attila_lendvai quit (Changing host) 2016-04-18T21:07:44Z attila_lendvai joined #sbcl 2016-04-18T21:08:12Z sjl quit (Ping timeout: 268 seconds) 2016-04-18T21:08:59Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-18T21:13:52Z sjl joined #sbcl 2016-04-18T21:15:39Z sjl_ quit (Ping timeout: 260 seconds) 2016-04-18T21:16:14Z dougk_ joined #sbcl 2016-04-18T21:18:34Z sjl quit (Ping timeout: 260 seconds) 2016-04-18T21:19:17Z sjl joined #sbcl 2016-04-18T21:19:46Z karswell` joined #sbcl 2016-04-18T21:20:29Z Bicyclidine joined #sbcl 2016-04-18T21:23:17Z sjl_ joined #sbcl 2016-04-18T21:24:41Z sjl quit (Ping timeout: 244 seconds) 2016-04-18T21:24:51Z Bicyclidine quit (Ping timeout: 246 seconds) 2016-04-18T21:24:51Z karswell` is now known as karswell 2016-04-18T21:25:45Z yvm joined #sbcl 2016-04-18T21:40:27Z sjl_ is now known as sjl 2016-04-18T21:42:05Z Bicyclidine joined #sbcl 2016-04-18T21:45:50Z sjl_ joined #sbcl 2016-04-18T21:46:34Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-18T21:48:54Z sjl quit (Ping timeout: 268 seconds) 2016-04-18T21:52:32Z shka quit (Ping timeout: 276 seconds) 2016-04-18T21:56:58Z psilord1 quit (Quit: Leaving.) 2016-04-18T22:00:57Z sjl joined #sbcl 2016-04-18T22:03:05Z sjl_ quit (Ping timeout: 268 seconds) 2016-04-18T22:08:13Z Bicyclidine joined #sbcl 2016-04-18T22:08:22Z gingerale quit (Remote host closed the connection) 2016-04-18T22:09:05Z euandreh quit (Ping timeout: 250 seconds) 2016-04-18T22:11:26Z Bicyclidine quit (Client Quit) 2016-04-18T22:12:02Z dougk_ quit (Ping timeout: 276 seconds) 2016-04-18T22:17:42Z akkad_ is now known as akkad 2016-04-18T22:17:56Z akkad is now known as akkad` 2016-04-18T22:21:55Z euandreh_ joined #sbcl 2016-04-18T22:28:57Z White__Flame is now known as White_Flame 2016-04-18T22:52:23Z euandreh_ quit (Quit: Leaving) 2016-04-18T22:52:46Z euandreh_ joined #sbcl 2016-04-18T23:09:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-18T23:11:01Z DeadTrickster quit (Ping timeout: 252 seconds) 2016-04-18T23:21:04Z euandreh_ quit (Ping timeout: 260 seconds) 2016-04-18T23:42:45Z dougk_ joined #sbcl 2016-04-18T23:56:17Z dougk_ quit (Ping timeout: 260 seconds) 2016-04-19T00:21:02Z dougk_ joined #sbcl 2016-04-19T01:58:23Z dougk_ quit (Remote host closed the connection) 2016-04-19T02:35:30Z euandreh joined #sbcl 2016-04-19T02:45:02Z stassats quit (Ping timeout: 276 seconds) 2016-04-19T02:47:03Z DavidGuru joined #sbcl 2016-04-19T02:52:39Z Hrentz joined #sbcl 2016-04-19T03:17:35Z Xof quit (Ping timeout: 268 seconds) 2016-04-19T03:25:13Z DavidGuru quit (Remote host closed the connection) 2016-04-19T03:29:08Z DavidGuru joined #sbcl 2016-04-19T03:34:14Z luis quit (Ping timeout: 260 seconds) 2016-04-19T03:34:58Z luis joined #sbcl 2016-04-19T03:39:34Z DavidGuru quit (Ping timeout: 240 seconds) 2016-04-19T03:40:41Z DavidGuru joined #sbcl 2016-04-19T03:44:09Z DavidGuru1 joined #sbcl 2016-04-19T03:44:55Z DavidGuru quit (Ping timeout: 252 seconds) 2016-04-19T03:44:56Z DavidGuru1 is now known as DavidGuru 2016-04-19T03:46:19Z nicdev quit (Remote host closed the connection) 2016-04-19T03:46:49Z nicdev joined #sbcl 2016-04-19T03:54:14Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-19T03:54:55Z DavidGuru joined #sbcl 2016-04-19T03:59:01Z myrkraverk joined #sbcl 2016-04-19T04:04:12Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-19T04:15:35Z DavidGuru joined #sbcl 2016-04-19T04:51:37Z shka joined #sbcl 2016-04-19T05:16:39Z kanru joined #sbcl 2016-04-19T05:34:29Z shka quit (Ping timeout: 268 seconds) 2016-04-19T05:39:42Z yvm quit (Ping timeout: 276 seconds) 2016-04-19T05:44:03Z yvm joined #sbcl 2016-04-19T05:44:55Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-19T05:44:56Z DavidGuru1 joined #sbcl 2016-04-19T05:47:21Z DavidGuru1 is now known as DavidGuru 2016-04-19T06:13:07Z salva quit (Ping timeout: 260 seconds) 2016-04-19T06:22:41Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-19T06:22:42Z nzambe joined #sbcl 2016-04-19T06:22:43Z nzambe quit (Changing host) 2016-04-19T06:22:44Z nzambe joined #sbcl 2016-04-19T06:31:17Z salva joined #sbcl 2016-04-19T06:58:43Z DavidGuru1 joined #sbcl 2016-04-19T07:00:50Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-19T07:00:51Z DavidGuru1 is now known as DavidGuru 2016-04-19T07:13:48Z gingerale joined #sbcl 2016-04-19T07:23:45Z DavidGuru1 joined #sbcl 2016-04-19T07:28:15Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-19T07:28:16Z DavidGuru1 is now known as DavidGuru 2016-04-19T07:41:29Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-19T07:41:40Z DavidGuru joined #sbcl 2016-04-19T07:59:39Z ASau quit (Ping timeout: 260 seconds) 2016-04-19T08:32:14Z DeadTrickster joined #sbcl 2016-04-19T09:03:31Z attila_lendvai joined #sbcl 2016-04-19T09:03:43Z attila_lendvai quit (Changing host) 2016-04-19T09:03:43Z attila_lendvai joined #sbcl 2016-04-19T09:10:47Z euandreh quit (Ping timeout: 250 seconds) 2016-04-19T09:16:38Z jdz joined #sbcl 2016-04-19T09:36:52Z Xof joined #sbcl 2016-04-19T09:53:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-19T09:58:32Z attila_lendvai joined #sbcl 2016-04-19T10:40:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-19T10:56:47Z DavidGuru1 joined #sbcl 2016-04-19T10:56:48Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-19T10:56:49Z DavidGuru1 is now known as DavidGuru 2016-04-19T11:01:26Z stassats joined #sbcl 2016-04-19T11:01:27Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-19T11:07:19Z Hrentz quit (Quit: Leaving) 2016-04-19T11:22:39Z scymtym_ joined #sbcl 2016-04-19T11:31:21Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-19T11:49:29Z stassats quit (Ping timeout: 260 seconds) 2016-04-19T11:51:03Z stassats joined #sbcl 2016-04-19T12:05:53Z slyrus quit (Read error: Connection reset by peer) 2016-04-19T12:07:23Z slyrus_ joined #sbcl 2016-04-19T12:07:43Z slyrus_ is now known as slyrus 2016-04-19T12:17:41Z slyrus quit (Ping timeout: 276 seconds) 2016-04-19T12:22:38Z jsrjenkins joined #sbcl 2016-04-19T12:23:13Z slyrus joined #sbcl 2016-04-19T12:35:39Z jsrjenkins quit (Remote host closed the connection) 2016-04-19T12:42:51Z slyrus quit (Ping timeout: 276 seconds) 2016-04-19T12:46:02Z slyrus joined #sbcl 2016-04-19T12:57:28Z slyrus quit (Ping timeout: 250 seconds) 2016-04-19T13:01:44Z slyrus joined #sbcl 2016-04-19T13:04:44Z slyrus quit (Read error: Connection reset by peer) 2016-04-19T13:11:48Z slyrus joined #sbcl 2016-04-19T13:36:09Z Bike quit (Ping timeout: 276 seconds) 2016-04-19T13:36:28Z Bike joined #sbcl 2016-04-19T13:41:14Z slyrus quit (Ping timeout: 250 seconds) 2016-04-19T13:42:02Z attila_lendvai joined #sbcl 2016-04-19T13:44:42Z slyrus joined #sbcl 2016-04-19T13:49:42Z DavidGuru joined #sbcl 2016-04-19T13:54:21Z chris2 quit (Ping timeout: 276 seconds) 2016-04-19T13:55:11Z slyrus quit (Ping timeout: 276 seconds) 2016-04-19T13:56:28Z chris2 joined #sbcl 2016-04-19T14:10:06Z euandreh joined #sbcl 2016-04-19T14:41:07Z MetaHertz joined #sbcl 2016-04-19T14:50:15Z DeadTrickster joined #sbcl 2016-04-19T15:15:03Z DavidGuru quit (Ping timeout: 240 seconds) 2016-04-19T15:58:50Z DmHertz joined #sbcl 2016-04-19T16:02:15Z MetaHertz quit (Ping timeout: 268 seconds) 2016-04-19T16:05:59Z fiddlerwoaroof quit (Ping timeout: 250 seconds) 2016-04-19T16:13:07Z fiddlerwoaroof joined #sbcl 2016-04-19T16:17:03Z DmHertz quit (Ping timeout: 268 seconds) 2016-04-19T16:44:04Z Bicyclidine joined #sbcl 2016-04-19T16:47:03Z shka joined #sbcl 2016-04-19T17:48:55Z DGASAU quit (Read error: Connection reset by peer) 2016-04-19T18:56:02Z DGASAU joined #sbcl 2016-04-19T18:57:39Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-19T18:57:56Z Bicyclidine joined #sbcl 2016-04-19T19:09:24Z dougk_ joined #sbcl 2016-04-19T19:10:29Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-19T19:10:54Z DGASAU quit (Read error: Connection reset by peer) 2016-04-19T19:11:22Z DGASAU joined #sbcl 2016-04-19T19:12:11Z dougk quit (Ping timeout: 268 seconds) 2016-04-19T19:12:18Z Bicyclidine joined #sbcl 2016-04-19T19:26:33Z DeadTrickster quit (Ping timeout: 250 seconds) 2016-04-19T19:48:45Z prxq joined #sbcl 2016-04-19T20:12:50Z DGASAU quit (Ping timeout: 276 seconds) 2016-04-19T20:15:59Z DGASAU joined #sbcl 2016-04-19T20:21:17Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-19T20:24:25Z Bicyclidine joined #sbcl 2016-04-19T20:30:53Z DeadTrickster joined #sbcl 2016-04-19T20:32:25Z shka quit (Ping timeout: 250 seconds) 2016-04-19T20:48:00Z prxq quit (Quit: good night) 2016-04-19T20:52:21Z euandreh quit (Ping timeout: 250 seconds) 2016-04-19T21:07:17Z gingerale quit (Remote host closed the connection) 2016-04-19T21:24:11Z DGASAU` joined #sbcl 2016-04-19T21:26:09Z DGASAU quit (Ping timeout: 246 seconds) 2016-04-19T21:27:12Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-19T22:23:37Z scymtym_ quit (Ping timeout: 252 seconds) 2016-04-19T22:46:49Z gko quit (Ping timeout: 250 seconds) 2016-04-19T22:46:54Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-19T23:04:57Z gko joined #sbcl 2016-04-19T23:06:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-19T23:53:36Z akkad` is now known as Akkad 2016-04-20T01:41:56Z karswell quit (Ping timeout: 244 seconds) 2016-04-20T02:27:24Z stassats quit (Ping timeout: 260 seconds) 2016-04-20T02:56:03Z DavidGuru joined #sbcl 2016-04-20T03:01:29Z MetaHertz joined #sbcl 2016-04-20T03:14:43Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-20T03:14:51Z DavidGuru joined #sbcl 2016-04-20T04:03:59Z karswell joined #sbcl 2016-04-20T05:23:45Z DGASAU` is now known as DGASAU 2016-04-20T06:07:41Z Shinmera joined #sbcl 2016-04-20T06:22:01Z DavidGuru1 joined #sbcl 2016-04-20T06:22:11Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-20T06:22:12Z DavidGuru1 is now known as DavidGuru 2016-04-20T06:34:57Z salva quit (Read error: Connection reset by peer) 2016-04-20T07:03:48Z salva joined #sbcl 2016-04-20T07:16:51Z p_l quit (Ping timeout: 250 seconds) 2016-04-20T07:23:43Z sigjuice quit (Ping timeout: 252 seconds) 2016-04-20T07:25:18Z sigjuice joined #sbcl 2016-04-20T07:25:21Z p_l joined #sbcl 2016-04-20T08:04:11Z DeadTrickster joined #sbcl 2016-04-20T08:24:39Z attila_lendvai joined #sbcl 2016-04-20T08:24:39Z attila_lendvai quit (Changing host) 2016-04-20T08:24:39Z attila_lendvai joined #sbcl 2016-04-20T09:23:36Z DGASAU quit (Read error: Connection reset by peer) 2016-04-20T09:23:58Z DGASAU joined #sbcl 2016-04-20T10:31:24Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-20T11:29:55Z MetaHertz quit (Ping timeout: 250 seconds) 2016-04-20T12:12:32Z stassats joined #sbcl 2016-04-20T12:37:08Z rszeno joined #sbcl 2016-04-20T13:04:42Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-20T13:07:48Z DeadTrickster joined #sbcl 2016-04-20T14:57:22Z DeadTrickster_ joined #sbcl 2016-04-20T15:10:09Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-20T15:11:23Z ASau joined #sbcl 2016-04-20T15:20:10Z DeadTrickster joined #sbcl 2016-04-20T15:35:41Z DeadTrickster quit (Ping timeout: 276 seconds) 2016-04-20T16:07:32Z ASau quit (Ping timeout: 276 seconds) 2016-04-20T16:26:25Z ASau joined #sbcl 2016-04-20T16:31:29Z gingerale joined #sbcl 2016-04-20T16:41:29Z euandreh joined #sbcl 2016-04-20T17:06:44Z shka joined #sbcl 2016-04-20T17:11:10Z hydan joined #sbcl 2016-04-20T18:56:31Z DeadTrickster joined #sbcl 2016-04-20T19:08:58Z prxq joined #sbcl 2016-04-20T19:38:55Z DmHertz joined #sbcl 2016-04-20T19:39:19Z DmHertz quit (Read error: Connection reset by peer) 2016-04-20T20:41:09Z gingerale quit (Remote host closed the connection) 2016-04-20T20:41:31Z xristos joined #sbcl 2016-04-20T20:44:57Z shka quit (Ping timeout: 250 seconds) 2016-04-20T20:45:08Z gnome1 joined #sbcl 2016-04-20T20:46:34Z gnome1: I was asking on #lisp, but better ask here as well. is there any SBCL-specific optimization for (defun recursive ... (cons something (recursive))? 2016-04-20T20:49:07Z stassats: no 2016-04-20T21:59:57Z Bicyclidine joined #sbcl 2016-04-20T22:20:23Z rszeno quit (Ping timeout: 244 seconds) 2016-04-20T22:28:04Z Bicyclidine quit (Quit: bussed em v) 2016-04-20T23:43:22Z DeadTrickster quit (Ping timeout: 260 seconds) 2016-04-21T00:09:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-21T00:24:08Z stassats quit (Ping timeout: 276 seconds) 2016-04-21T00:36:16Z ASau quit (Ping timeout: 244 seconds) 2016-04-21T00:37:44Z leo_song quit (Ping timeout: 252 seconds) 2016-04-21T00:38:29Z leo_song joined #sbcl 2016-04-21T00:58:02Z stassats joined #sbcl 2016-04-21T01:02:57Z stassats quit (Ping timeout: 276 seconds) 2016-04-21T01:05:36Z edgar-rft quit (Quit: edgar-rft) 2016-04-21T01:21:15Z prxq_ joined #sbcl 2016-04-21T01:24:57Z prxq quit (Ping timeout: 250 seconds) 2016-04-21T01:35:22Z DavidGuru joined #sbcl 2016-04-21T02:07:18Z scymtym quit (Remote host closed the connection) 2016-04-21T02:07:36Z scymtym joined #sbcl 2016-04-21T02:44:37Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-21T02:45:21Z DavidGuru joined #sbcl 2016-04-21T02:49:01Z sjl quit (Read error: Connection reset by peer) 2016-04-21T02:50:19Z sjl joined #sbcl 2016-04-21T03:00:35Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-21T03:00:45Z DavidGuru1 joined #sbcl 2016-04-21T03:03:08Z DavidGuru1 is now known as DavidGuru 2016-04-21T05:12:05Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-21T05:23:07Z edgar-rft joined #sbcl 2016-04-21T05:27:24Z DavidGuru joined #sbcl 2016-04-21T05:56:46Z shka joined #sbcl 2016-04-21T06:19:57Z shka quit (Ping timeout: 268 seconds) 2016-04-21T06:24:00Z salva quit (Ping timeout: 246 seconds) 2016-04-21T06:32:03Z DavidGuru1 joined #sbcl 2016-04-21T06:33:14Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-21T06:33:14Z DavidGuru1 is now known as DavidGuru 2016-04-21T06:35:15Z salva joined #sbcl 2016-04-21T06:44:54Z Bike quit (Quit: slep) 2016-04-21T07:00:54Z DavidGuru1 joined #sbcl 2016-04-21T07:01:27Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-21T07:01:28Z DavidGuru1 is now known as DavidGuru 2016-04-21T07:03:54Z DavidGuru quit (Remote host closed the connection) 2016-04-21T07:05:28Z DavidGuru joined #sbcl 2016-04-21T07:07:07Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-21T07:07:24Z DavidGuru joined #sbcl 2016-04-21T07:08:12Z ASau joined #sbcl 2016-04-21T07:13:36Z edgar-rft quit (Quit: edgar-rft) 2016-04-21T07:30:02Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-21T07:34:36Z DavidGuru joined #sbcl 2016-04-21T07:35:24Z ASau quit (Ping timeout: 246 seconds) 2016-04-21T07:52:31Z prxq_ is now known as prxq 2016-04-21T08:13:25Z DavidGuru quit (Ping timeout: 268 seconds) 2016-04-21T08:18:17Z prxq quit (Remote host closed the connection) 2016-04-21T08:27:49Z euandreh quit (Ping timeout: 250 seconds) 2016-04-21T08:35:00Z DavidGuru joined #sbcl 2016-04-21T08:56:05Z edgar-rft joined #sbcl 2016-04-21T08:58:42Z dustinm` quit (Ping timeout: 260 seconds) 2016-04-21T09:05:21Z dustinm` joined #sbcl 2016-04-21T09:12:32Z DavidGuru quit (Quit: DavidGuru) 2016-04-21T09:20:45Z Xof quit (Ping timeout: 246 seconds) 2016-04-21T09:21:10Z DeadTrickster joined #sbcl 2016-04-21T10:12:04Z Xof joined #sbcl 2016-04-21T10:18:19Z sjl quit (Read error: Connection reset by peer) 2016-04-21T10:19:00Z sjl joined #sbcl 2016-04-21T10:22:36Z carvite quit (Ping timeout: 276 seconds) 2016-04-21T10:23:47Z carvite joined #sbcl 2016-04-21T10:31:15Z edgar-rft quit (Quit: edgar-rft) 2016-04-21T10:58:59Z karswell` joined #sbcl 2016-04-21T10:59:12Z karswell quit (Ping timeout: 276 seconds) 2016-04-21T11:01:22Z attila_lendvai joined #sbcl 2016-04-21T11:05:28Z sjl quit (Ping timeout: 268 seconds) 2016-04-21T11:12:45Z DeadTrickster quit (Ping timeout: 246 seconds) 2016-04-21T11:22:38Z stassats joined #sbcl 2016-04-21T11:26:45Z stassats quit (Ping timeout: 246 seconds) 2016-04-21T11:28:23Z stassats joined #sbcl 2016-04-21T11:32:51Z stassats quit (Ping timeout: 250 seconds) 2016-04-21T11:33:27Z stassats joined #sbcl 2016-04-21T11:56:18Z sjl joined #sbcl 2016-04-21T14:44:33Z DGASAU quit (Ping timeout: 240 seconds) 2016-04-21T14:50:46Z psilord1 joined #sbcl 2016-04-21T14:56:24Z Bike joined #sbcl 2016-04-21T15:21:29Z DGASAU joined #sbcl 2016-04-21T15:27:40Z euandreh joined #sbcl 2016-04-21T15:34:42Z gingerale joined #sbcl 2016-04-21T15:42:28Z DGASAU quit (Ping timeout: 252 seconds) 2016-04-21T15:47:40Z DGASAU joined #sbcl 2016-04-21T15:56:24Z DeadTrickster joined #sbcl 2016-04-21T16:46:46Z Bicyclidine joined #sbcl 2016-04-21T16:48:39Z euandreh quit (Ping timeout: 260 seconds) 2016-04-21T16:59:37Z gingerale- joined #sbcl 2016-04-21T17:00:41Z sigjuice quit (Ping timeout: 268 seconds) 2016-04-21T17:02:28Z gingerale quit (Ping timeout: 268 seconds) 2016-04-21T17:02:33Z sigjuice joined #sbcl 2016-04-21T17:04:01Z karswell` quit (Ping timeout: 268 seconds) 2016-04-21T17:04:04Z chris2 quit (Ping timeout: 268 seconds) 2016-04-21T17:08:25Z euandreh joined #sbcl 2016-04-21T17:08:49Z sjl quit (Ping timeout: 252 seconds) 2016-04-21T17:12:44Z shka joined #sbcl 2016-04-21T17:14:14Z stassats` joined #sbcl 2016-04-21T17:14:53Z pchrist_ joined #sbcl 2016-04-21T17:16:46Z psilord2 joined #sbcl 2016-04-21T17:19:16Z psilord1 quit (*.net *.split) 2016-04-21T17:19:17Z stassats quit (*.net *.split) 2016-04-21T17:19:23Z xristos quit (*.net *.split) 2016-04-21T17:19:24Z nzambe quit (*.net *.split) 2016-04-21T17:19:24Z yvm quit (*.net *.split) 2016-04-21T17:19:27Z pchrist quit (*.net *.split) 2016-04-21T17:21:53Z yvm joined #sbcl 2016-04-21T17:23:21Z gingerale- quit (Read error: Connection reset by peer) 2016-04-21T17:24:35Z gingerale joined #sbcl 2016-04-21T17:24:56Z xristos joined #sbcl 2016-04-21T17:25:59Z euandreh quit (Ping timeout: 260 seconds) 2016-04-21T17:26:04Z xristos is now known as Guest97518 2016-04-21T17:31:51Z chris2 joined #sbcl 2016-04-21T17:35:39Z Bicyclidine quit (Ping timeout: 244 seconds) 2016-04-21T17:36:12Z Bicyclidine joined #sbcl 2016-04-21T17:45:07Z sjl joined #sbcl 2016-04-21T17:45:34Z DeadTrickster quit (Ping timeout: 240 seconds) 2016-04-21T17:59:07Z myrkraverk quit (Remote host closed the connection) 2016-04-21T18:01:08Z nzambe joined #sbcl 2016-04-21T18:06:13Z myrkraverk joined #sbcl 2016-04-21T18:20:04Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-04-21T18:22:15Z Bicyclidine joined #sbcl 2016-04-21T18:28:29Z stassats` quit (Ping timeout: 250 seconds) 2016-04-21T18:29:08Z stassats joined #sbcl 2016-04-21T18:33:40Z stassats quit (Ping timeout: 250 seconds) 2016-04-21T18:35:10Z stassats joined #sbcl 2016-04-21T18:39:51Z stassats quit (Ping timeout: 276 seconds) 2016-04-21T18:40:10Z stassats joined #sbcl 2016-04-21T18:41:15Z euandreh joined #sbcl 2016-04-21T18:54:14Z edgar-rft joined #sbcl 2016-04-21T19:00:18Z euandreh quit (Ping timeout: 268 seconds) 2016-04-21T19:31:08Z DGASAU quit (Read error: Connection reset by peer) 2016-04-21T19:33:43Z DGASAU joined #sbcl 2016-04-21T19:42:23Z shka quit (Quit: Konversation terminated!) 2016-04-21T19:45:16Z linoge joined #sbcl 2016-04-21T19:46:58Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-04-21T19:49:28Z Akkad quit (Ping timeout: 244 seconds) 2016-04-21T19:49:33Z linoge: Hi there, I'm trying to (rename-file x "¿ASDF?"), keeps saying I'm using wild characters. 2016-04-21T19:50:10Z stassats: ? is a wild character 2016-04-21T19:50:18Z stassats: you need to escape it 2016-04-21T19:50:38Z linoge: That's a problem, the string isn't exactly a constant, I get it from HTML titles :O 2016-04-21T19:50:43Z stassats: you can use (sb-ext:parse-native-namestring "¿ASDF?") for help 2016-04-21T19:50:58Z linoge: Thank you very much, will check : ) 2016-04-21T19:51:15Z linoge: The manual has information on this right? 2016-04-21T19:52:06Z stassats: no idea 2016-04-21T19:52:12Z stassats: who reads manuals 2016-04-21T19:54:17Z DeadTrickster joined #sbcl 2016-04-21T19:56:01Z linoge quit (Ping timeout: 250 seconds) 2016-04-21T20:03:43Z gingerale quit (Remote host closed the connection) 2016-04-21T20:10:29Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-21T20:12:14Z Bicyclidine joined #sbcl 2016-04-21T20:23:45Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-21T20:26:46Z prxq joined #sbcl 2016-04-21T20:38:34Z scymtym_ joined #sbcl 2016-04-21T20:50:32Z Bicyclidine joined #sbcl 2016-04-21T20:59:16Z Bicyclidine quit (Ping timeout: 252 seconds) 2016-04-21T21:02:34Z akkad joined #sbcl 2016-04-21T21:14:43Z ASau joined #sbcl 2016-04-21T21:22:58Z Guest97518 is now known as xristos 2016-04-21T21:23:02Z xristos quit (Changing host) 2016-04-21T21:23:02Z xristos joined #sbcl 2016-04-21T21:27:26Z prxq quit (Read error: Connection reset by peer) 2016-04-21T21:37:23Z scymtym_ quit (Read error: Connection reset by peer) 2016-04-21T21:50:54Z euandreh joined #sbcl 2016-04-21T22:01:27Z psilord2 quit (Quit: Leaving.) 2016-04-21T22:14:08Z euandreh quit (Ping timeout: 244 seconds) 2016-04-21T22:33:42Z karswell` joined #sbcl 2016-04-21T23:20:18Z karswell` is now known as karswell 2016-04-21T23:41:11Z hydan quit (Remote host closed the connection) 2016-04-22T00:10:06Z DeadTrickster quit (Ping timeout: 246 seconds) 2016-04-22T00:25:39Z sjl quit (Ping timeout: 276 seconds) 2016-04-22T00:37:04Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-22T01:16:31Z stassats quit (Ping timeout: 244 seconds) 2016-04-22T02:51:11Z loke quit (Remote host closed the connection) 2016-04-22T02:54:54Z loke joined #sbcl 2016-04-22T03:03:17Z gko quit (Ping timeout: 250 seconds) 2016-04-22T03:33:18Z gko joined #sbcl 2016-04-22T03:33:18Z gko quit (Excess Flood) 2016-04-22T03:34:09Z gko joined #sbcl 2016-04-22T04:01:20Z hitecnologys quit (Ping timeout: 250 seconds) 2016-04-22T04:04:48Z hitecnologys joined #sbcl 2016-04-22T04:09:08Z DavidGuru joined #sbcl 2016-04-22T04:21:31Z sjl joined #sbcl 2016-04-22T04:21:39Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-22T04:25:57Z sjl quit (Ping timeout: 260 seconds) 2016-04-22T05:17:38Z shka joined #sbcl 2016-04-22T05:20:24Z shka quit (Client Quit) 2016-04-22T05:22:10Z DavidGuru joined #sbcl 2016-04-22T05:40:57Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-22T06:00:08Z gko quit (Ping timeout: 268 seconds) 2016-04-22T06:10:08Z gko joined #sbcl 2016-04-22T06:16:27Z DavidGuru joined #sbcl 2016-04-22T06:44:39Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-22T06:45:20Z DavidGuru joined #sbcl 2016-04-22T07:11:24Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-22T07:20:40Z kanru quit (Remote host closed the connection) 2016-04-22T07:35:40Z DavidGuru joined #sbcl 2016-04-22T07:36:46Z sjl joined #sbcl 2016-04-22T07:54:13Z sjl quit (Ping timeout: 268 seconds) 2016-04-22T08:10:49Z Bike quit (Quit: leaving) 2016-04-22T08:15:04Z DavidGuru quit (Ping timeout: 240 seconds) 2016-04-22T08:16:27Z attila_lendvai joined #sbcl 2016-04-22T08:25:00Z DeadTrickster joined #sbcl 2016-04-22T08:35:22Z sjl joined #sbcl 2016-04-22T08:50:20Z gko quit (Ping timeout: 268 seconds) 2016-04-22T08:54:39Z gko joined #sbcl 2016-04-22T08:59:55Z ASau quit (Ping timeout: 250 seconds) 2016-04-22T09:00:12Z gko quit (Ping timeout: 268 seconds) 2016-04-22T09:01:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-22T09:16:41Z gko joined #sbcl 2016-04-22T09:16:58Z DavidGuru joined #sbcl 2016-04-22T09:30:37Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-22T09:50:23Z igajsin joined #sbcl 2016-04-22T09:59:42Z igajsin left #sbcl 2016-04-22T09:59:54Z stassats joined #sbcl 2016-04-22T10:03:14Z vydd joined #sbcl 2016-04-22T10:25:28Z stassats: dougk_: i had some ideas about LDB optimization, having a function ash-right-into-fixnum, but the problem is transforming into it 2016-04-22T10:25:44Z stassats: it needs to happen after everything else failed to transform stuff 2016-04-22T10:26:24Z stassats: so, i wanted to add another optimization stage, and then somehow to recognize the pattern of (logand (ash y -x)) 2016-04-22T10:43:07Z DavidGuru joined #sbcl 2016-04-22T10:47:19Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-22T12:09:48Z guicho joined #sbcl 2016-04-22T12:12:04Z DeadTrickster quit (Ping timeout: 240 seconds) 2016-04-22T12:30:08Z attila_lendvai joined #sbcl 2016-04-22T12:50:52Z stassats quit (Ping timeout: 250 seconds) 2016-04-22T12:51:28Z stassats joined #sbcl 2016-04-22T12:56:09Z stassats quit (Ping timeout: 260 seconds) 2016-04-22T12:57:01Z stassats joined #sbcl 2016-04-22T13:00:16Z joshe joined #sbcl 2016-04-22T13:01:13Z stassats quit (Ping timeout: 250 seconds) 2016-04-22T13:02:27Z stassats joined #sbcl 2016-04-22T13:39:57Z nzambe joined #sbcl 2016-04-22T13:42:51Z DavidGuru joined #sbcl 2016-04-22T13:47:09Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-22T14:36:56Z DeadTrickster joined #sbcl 2016-04-22T14:37:11Z DeadTrickster_ quit (Read error: No route to host) 2016-04-22T14:47:40Z Bike joined #sbcl 2016-04-22T15:37:48Z Posterdati quit (Ping timeout: 244 seconds) 2016-04-22T15:39:44Z vydd quit (Ping timeout: 276 seconds) 2016-04-22T15:49:41Z gingerale joined #sbcl 2016-04-22T15:51:06Z guicho quit (Quit: さようなら) 2016-04-22T15:51:26Z Posterdati joined #sbcl 2016-04-22T17:03:32Z stassats: trying to optimize (ceiling word 64), because (+ word 63) overflows 2016-04-22T17:03:39Z stassats: and ash doesn't get inlined 2016-04-22T17:03:45Z stassats: could use RCR 2016-04-22T17:04:08Z stassats: but always using it is not a good idea, another candidate for a new optimization pass with pattern matching 2016-04-22T17:16:35Z fiddlerwoaroof quit (Ping timeout: 276 seconds) 2016-04-22T17:18:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-22T17:18:57Z fiddlerwoaroof joined #sbcl 2016-04-22T17:47:47Z sjl quit (Ping timeout: 276 seconds) 2016-04-22T17:51:54Z gargaml joined #sbcl 2016-04-22T17:59:54Z stassats: made (nreverse (vector double-float)) not cons 2016-04-22T18:01:00Z stassats: using %vector-raw-bits on word-sized vectors 2016-04-22T18:02:02Z stassats: also gets faster for fixnums 2016-04-22T18:03:38Z stassats: not handling (complex double-float) 2016-04-22T18:11:39Z DGASAU quit (Ping timeout: 276 seconds) 2016-04-22T18:21:27Z stassats: that and using bswap is left for later 2016-04-22T18:21:42Z stassats: fast string reversal would be a good idea 2016-04-22T18:22:59Z DGASAU joined #sbcl 2016-04-22T18:27:31Z stassats: using bswap is ten times faster then the unoptimized version on simple-base-string 2016-04-22T18:38:47Z sjl joined #sbcl 2016-04-22T18:40:09Z karswell` joined #sbcl 2016-04-22T18:40:39Z karswell quit (Ping timeout: 246 seconds) 2016-04-22T18:45:25Z karswell` is now known as karswell 2016-04-22T19:16:47Z DeadTrickster_ joined #sbcl 2016-04-22T19:41:19Z attila_lendvai joined #sbcl 2016-04-22T19:41:19Z attila_lendvai quit (Changing host) 2016-04-22T19:41:19Z attila_lendvai joined #sbcl 2016-04-22T19:48:08Z prxq joined #sbcl 2016-04-22T20:20:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-22T20:30:10Z karswell quit (Read error: Connection reset by peer) 2016-04-22T20:30:22Z karswell joined #sbcl 2016-04-22T20:53:19Z attila_lendvai joined #sbcl 2016-04-22T20:53:19Z attila_lendvai quit (Changing host) 2016-04-22T20:53:19Z attila_lendvai joined #sbcl 2016-04-22T20:57:59Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-22T21:19:46Z gargaml quit (Quit: WeeChat 1.4) 2016-04-22T21:26:19Z prxq quit (Remote host closed the connection) 2016-04-22T21:27:33Z flavioc_ joined #sbcl 2016-04-22T21:59:34Z DeadTrickster_ quit (Ping timeout: 240 seconds) 2016-04-22T22:08:50Z gingerale quit (Remote host closed the connection) 2016-04-22T23:10:03Z rszeno joined #sbcl 2016-04-22T23:51:52Z Bike quit (Ping timeout: 252 seconds) 2016-04-23T00:16:53Z Bike joined #sbcl 2016-04-23T01:20:42Z stassats quit (Ping timeout: 268 seconds) 2016-04-23T01:34:33Z flavioc_ quit (Ping timeout: 244 seconds) 2016-04-23T07:57:28Z Bike quit (Quit: BYE) 2016-04-23T09:10:57Z DeadTrickster_ joined #sbcl 2016-04-23T09:19:49Z gingerale joined #sbcl 2016-04-23T09:21:39Z DeadTrickster_ quit (Ping timeout: 276 seconds) 2016-04-23T09:59:45Z myrkraverk quit (Remote host closed the connection) 2016-04-23T10:25:38Z edgar-rft quit (Quit: edgar-rft) 2016-04-23T10:28:20Z flavioc_ joined #sbcl 2016-04-23T11:07:56Z pobivan joined #sbcl 2016-04-23T12:41:07Z myrkraverk joined #sbcl 2016-04-23T14:08:25Z eudoxia joined #sbcl 2016-04-23T15:38:55Z Bike joined #sbcl 2016-04-23T15:52:54Z edgar-rft joined #sbcl 2016-04-23T17:05:26Z fiddlerwoaroof quit (Ping timeout: 268 seconds) 2016-04-23T17:10:40Z stassats joined #sbcl 2016-04-23T17:16:24Z salv0 joined #sbcl 2016-04-23T17:27:32Z eudoxia quit (Quit: Leaving) 2016-04-23T18:20:04Z attila_lendvai joined #sbcl 2016-04-23T18:38:00Z karswell` joined #sbcl 2016-04-23T18:38:15Z karswell quit (Read error: Connection reset by peer) 2016-04-23T18:54:33Z stassats quit (Ping timeout: 240 seconds) 2016-04-23T18:55:40Z stassats joined #sbcl 2016-04-23T19:00:20Z stassats quit (Ping timeout: 276 seconds) 2016-04-23T19:00:40Z stassats joined #sbcl 2016-04-23T19:02:28Z karswell` is now known as karswell 2016-04-23T19:50:18Z prxq joined #sbcl 2016-04-23T20:04:31Z edgar-rft quit (Quit: edgar-rft) 2016-04-23T20:24:02Z DeadTrickster_ joined #sbcl 2016-04-23T20:28:56Z stassats quit (Ping timeout: 268 seconds) 2016-04-23T20:29:14Z stassats joined #sbcl 2016-04-23T20:33:48Z stassats quit (Ping timeout: 244 seconds) 2016-04-23T20:34:15Z stassats joined #sbcl 2016-04-23T20:38:57Z stassats quit (Ping timeout: 276 seconds) 2016-04-23T20:39:48Z stassats joined #sbcl 2016-04-23T20:44:27Z stassats quit (Ping timeout: 260 seconds) 2016-04-23T20:47:19Z stassats joined #sbcl 2016-04-23T21:47:15Z eudoxia joined #sbcl 2016-04-23T21:50:37Z pobivan quit (Quit: pobivan) 2016-04-23T22:01:39Z gingerale quit (Remote host closed the connection) 2016-04-23T22:04:09Z eudoxia quit (Quit: Leaving) 2016-04-23T22:13:28Z flavioc_ quit (Quit: Lost terminal) 2016-04-23T22:33:54Z prxq quit (Remote host closed the connection) 2016-04-23T22:36:02Z gnome1 left #sbcl 2016-04-23T22:40:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-23T22:46:19Z DeadTrickster_ quit (Ping timeout: 252 seconds) 2016-04-23T23:30:05Z stassats quit (Ping timeout: 276 seconds) 2016-04-24T00:11:07Z rszeno quit (Remote host closed the connection) 2016-04-24T00:27:15Z edgar-rft joined #sbcl 2016-04-24T00:28:30Z karswell quit (Read error: Connection reset by peer) 2016-04-24T00:28:46Z karswell joined #sbcl 2016-04-24T01:49:57Z guicho joined #sbcl 2016-04-24T02:36:03Z betheynyx joined #sbcl 2016-04-24T03:37:37Z DavidGuru joined #sbcl 2016-04-24T04:00:29Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-24T04:27:39Z edgar-rft quit (Quit: edgar-rft) 2016-04-24T04:34:31Z DavidGuru joined #sbcl 2016-04-24T04:36:11Z DavidGuru1 joined #sbcl 2016-04-24T04:39:11Z DavidGuru quit (Ping timeout: 268 seconds) 2016-04-24T04:39:11Z DavidGuru1 is now known as DavidGuru 2016-04-24T05:03:45Z chu quit (Ping timeout: 244 seconds) 2016-04-24T05:05:44Z chu joined #sbcl 2016-04-24T06:01:58Z pobivan joined #sbcl 2016-04-24T06:29:32Z salva quit (Ping timeout: 260 seconds) 2016-04-24T06:43:31Z DeadTrickster_ joined #sbcl 2016-04-24T06:43:47Z karswell quit (Read error: Connection reset by peer) 2016-04-24T06:44:03Z karswell joined #sbcl 2016-04-24T06:46:33Z karswell quit (Remote host closed the connection) 2016-04-24T06:46:48Z karswell joined #sbcl 2016-04-24T06:59:38Z salva joined #sbcl 2016-04-24T07:09:39Z DavidGuru quit (Ping timeout: 268 seconds) 2016-04-24T07:14:11Z DeadTrickster_ quit (Ping timeout: 276 seconds) 2016-04-24T07:26:49Z gingerale joined #sbcl 2016-04-24T08:19:41Z Malatesa joined #sbcl 2016-04-24T09:17:07Z edgar-rft joined #sbcl 2016-04-24T09:32:13Z DeadTrickster_ joined #sbcl 2016-04-24T09:35:18Z shka joined #sbcl 2016-04-24T09:53:41Z salv0 quit (Remote host closed the connection) 2016-04-24T10:13:54Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-04-24T10:44:10Z Carisius joined #sbcl 2016-04-24T10:58:15Z stassats joined #sbcl 2016-04-24T11:24:58Z DavidGuru joined #sbcl 2016-04-24T11:26:52Z DavidGuru quit (Remote host closed the connection) 2016-04-24T11:27:09Z DavidGuru joined #sbcl 2016-04-24T11:35:12Z Bike quit (Quit: maw) 2016-04-24T11:42:00Z sjl__ joined #sbcl 2016-04-24T11:44:04Z sjl quit (Ping timeout: 240 seconds) 2016-04-24T12:01:58Z specbot quit (Remote host closed the connection) 2016-04-24T12:01:58Z minion quit (Remote host closed the connection) 2016-04-24T12:06:28Z specbot joined #sbcl 2016-04-24T12:07:01Z minion joined #sbcl 2016-04-24T12:07:47Z shka quit (Remote host closed the connection) 2016-04-24T12:08:09Z shka joined #sbcl 2016-04-24T12:10:09Z attila_lendvai joined #sbcl 2016-04-24T12:10:29Z shka quit (Remote host closed the connection) 2016-04-24T12:11:34Z Posterdati quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2016-04-24T12:11:42Z shka joined #sbcl 2016-04-24T12:14:00Z Posterdati joined #sbcl 2016-04-24T12:14:28Z shka quit (Remote host closed the connection) 2016-04-24T12:14:53Z shka joined #sbcl 2016-04-24T12:19:06Z sjl__ is now known as sjl 2016-04-24T12:39:15Z edgar-rft quit (Quit: edgar-rft) 2016-04-24T12:59:20Z Carisius quit (Remote host closed the connection) 2016-04-24T14:13:40Z betheynyx quit (Quit: ZNC 1.6.1+deb1 - http://znc.in) 2016-04-24T14:17:25Z betheynyx joined #sbcl 2016-04-24T15:25:34Z guicho quit (Remote host closed the connection) 2016-04-24T15:27:53Z Bike joined #sbcl 2016-04-24T15:33:49Z ASau joined #sbcl 2016-04-24T15:40:34Z karswell quit (Read error: Connection reset by peer) 2016-04-24T15:40:49Z karswell joined #sbcl 2016-04-24T15:56:00Z shka quit (Quit: Konversation terminated!) 2016-04-24T16:03:46Z shka joined #sbcl 2016-04-24T16:35:43Z DavidGuru quit (Quit: DavidGuru) 2016-04-24T17:27:22Z myrkraverk quit (Remote host closed the connection) 2016-04-24T17:49:35Z Malatesa left #sbcl 2016-04-24T17:52:14Z myrkraverk joined #sbcl 2016-04-24T18:04:50Z angavrilov_ quit (Remote host closed the connection) 2016-04-24T19:02:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-24T19:06:27Z edgar-rft joined #sbcl 2016-04-24T20:13:34Z shka quit (Ping timeout: 240 seconds) 2016-04-24T20:47:15Z karswell quit (Remote host closed the connection) 2016-04-24T21:00:39Z pobivan quit (Quit: pobivan) 2016-04-24T21:19:03Z flavioc_ joined #sbcl 2016-04-24T21:37:27Z gingerale quit (Remote host closed the connection) 2016-04-24T21:46:42Z attila_lendvai joined #sbcl 2016-04-24T22:08:56Z attila_lendvai quit (Disconnected by services) 2016-04-24T22:08:56Z attila_lendvai1 joined #sbcl 2016-04-24T22:08:56Z attila_lendvai1 quit (Changing host) 2016-04-24T22:08:56Z attila_lendvai1 joined #sbcl 2016-04-24T22:13:44Z attila_lendvai1 quit (Ping timeout: 260 seconds) 2016-04-25T00:14:07Z flavioc_ quit (Ping timeout: 260 seconds) 2016-04-25T00:16:48Z stassats quit (Ping timeout: 246 seconds) 2016-04-25T01:06:20Z karswell joined #sbcl 2016-04-25T01:13:16Z aeth quit (Ping timeout: 244 seconds) 2016-04-25T01:15:07Z aeth joined #sbcl 2016-04-25T01:35:34Z DavidGuru joined #sbcl 2016-04-25T02:07:24Z sigjuice quit (Ping timeout: 246 seconds) 2016-04-25T02:09:08Z sigjuice joined #sbcl 2016-04-25T02:10:27Z samskulls joined #sbcl 2016-04-25T02:24:12Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-25T02:29:26Z DavidGuru joined #sbcl 2016-04-25T03:45:38Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-25T04:35:26Z DavidGuru joined #sbcl 2016-04-25T04:53:54Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-25T05:14:35Z DavidGuru joined #sbcl 2016-04-25T05:29:43Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-25T05:29:55Z DavidGuru joined #sbcl 2016-04-25T05:33:49Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-25T05:33:55Z DavidGuru1 joined #sbcl 2016-04-25T05:34:16Z pobivan joined #sbcl 2016-04-25T05:36:19Z DavidGuru1 is now known as DavidGuru 2016-04-25T05:39:32Z scymtym quit (Ping timeout: 268 seconds) 2016-04-25T05:40:24Z myrkraverk quit (Remote host closed the connection) 2016-04-25T05:42:26Z myrkraverk joined #sbcl 2016-04-25T06:10:34Z shka joined #sbcl 2016-04-25T06:17:22Z MetaHertz__ joined #sbcl 2016-04-25T06:20:37Z salva quit (Read error: Connection reset by peer) 2016-04-25T06:22:33Z DavidGuru quit (Ping timeout: 246 seconds) 2016-04-25T06:23:44Z salva joined #sbcl 2016-04-25T06:25:47Z shka quit (Ping timeout: 268 seconds) 2016-04-25T06:26:24Z DavidGuru joined #sbcl 2016-04-25T06:31:41Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-25T06:34:02Z DavidGuru joined #sbcl 2016-04-25T06:47:09Z DavidGuru1 joined #sbcl 2016-04-25T06:49:24Z samskulls quit (Ping timeout: 260 seconds) 2016-04-25T06:51:41Z DavidGuru1 quit (Ping timeout: 268 seconds) 2016-04-25T06:51:50Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-25T06:52:30Z DavidGuru joined #sbcl 2016-04-25T07:10:14Z DavidGuru1 joined #sbcl 2016-04-25T07:13:39Z DavidGuru quit (Ping timeout: 246 seconds) 2016-04-25T07:13:48Z DavidGuru joined #sbcl 2016-04-25T07:14:25Z DavidGuru1 quit (Ping timeout: 244 seconds) 2016-04-25T07:27:55Z angavrilov joined #sbcl 2016-04-25T07:35:15Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-25T07:36:50Z DavidGuru joined #sbcl 2016-04-25T07:39:38Z DavidGuru1 joined #sbcl 2016-04-25T07:39:38Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-25T07:39:42Z DavidGuru1 is now known as DavidGuru 2016-04-25T08:02:40Z igajsin joined #sbcl 2016-04-25T08:03:17Z igajsin left #sbcl 2016-04-25T08:16:51Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-25T08:18:44Z edgar-rft quit (Quit: edgar-rft) 2016-04-25T08:20:34Z gko quit (Ping timeout: 240 seconds) 2016-04-25T08:31:21Z DavidGuru joined #sbcl 2016-04-25T08:34:12Z gko joined #sbcl 2016-04-25T08:34:41Z DavidGuru1 joined #sbcl 2016-04-25T08:35:33Z DavidGuru quit (Ping timeout: 240 seconds) 2016-04-25T08:35:34Z DavidGuru1 is now known as DavidGuru 2016-04-25T08:47:12Z DavidGuru1 joined #sbcl 2016-04-25T08:47:46Z DavidGuru quit (Remote host closed the connection) 2016-04-25T08:47:47Z DavidGuru1 is now known as DavidGuru 2016-04-25T08:52:44Z ASau quit (Ping timeout: 276 seconds) 2016-04-25T08:55:01Z gko quit (Ping timeout: 268 seconds) 2016-04-25T08:57:14Z gko joined #sbcl 2016-04-25T09:08:14Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-25T09:21:01Z attila_lendvai joined #sbcl 2016-04-25T09:27:29Z sjl quit (Ping timeout: 260 seconds) 2016-04-25T09:37:50Z stassats joined #sbcl 2016-04-25T10:25:14Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-25T10:32:43Z MetaHertz__ quit (Quit: Leaving) 2016-04-25T10:33:19Z MetaHertz__ joined #sbcl 2016-04-25T10:36:38Z sjl joined #sbcl 2016-04-25T11:15:30Z MetaHertz__ quit (Ping timeout: 246 seconds) 2016-04-25T11:48:46Z sjl quit (Ping timeout: 244 seconds) 2016-04-25T11:52:39Z sjl joined #sbcl 2016-04-25T11:58:12Z hitecnologys quit (Ping timeout: 260 seconds) 2016-04-25T12:10:42Z attila_lendvai joined #sbcl 2016-04-25T12:16:53Z hitecnologys joined #sbcl 2016-04-25T12:31:49Z stassats quit (Ping timeout: 260 seconds) 2016-04-25T12:32:52Z stassats joined #sbcl 2016-04-25T12:42:39Z sjl quit (Ping timeout: 246 seconds) 2016-04-25T12:59:50Z Bike quit (Ping timeout: 268 seconds) 2016-04-25T13:00:05Z Bike joined #sbcl 2016-04-25T13:02:41Z sjl joined #sbcl 2016-04-25T13:31:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-25T13:32:39Z attila_lendvai joined #sbcl 2016-04-25T13:44:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-25T14:13:10Z gingerale joined #sbcl 2016-04-25T14:20:15Z scymtym joined #sbcl 2016-04-25T14:25:13Z hlavaty joined #sbcl 2016-04-25T14:28:08Z sjl quit (Ping timeout: 276 seconds) 2016-04-25T14:30:31Z sjl joined #sbcl 2016-04-25T14:46:23Z hlavaty quit (Quit: ERC (IRC client for Emacs 24.5.2)) 2016-04-25T15:35:21Z karswell quit (Read error: Connection reset by peer) 2016-04-25T15:35:35Z karswell joined #sbcl 2016-04-25T15:44:10Z dougk_ quit (Remote host closed the connection) 2016-04-25T15:46:08Z jdz quit (Ping timeout: 276 seconds) 2016-04-25T15:51:45Z jdz joined #sbcl 2016-04-25T16:01:27Z karswell quit (Read error: Connection reset by peer) 2016-04-25T16:09:30Z sjl quit (Ping timeout: 246 seconds) 2016-04-25T16:55:15Z shka joined #sbcl 2016-04-25T17:00:30Z sjl joined #sbcl 2016-04-25T17:08:14Z attila_lendvai joined #sbcl 2016-04-25T17:08:14Z attila_lendvai quit (Changing host) 2016-04-25T17:08:14Z attila_lendvai joined #sbcl 2016-04-25T17:22:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-25T17:29:50Z stassats: huh, (typep x '(or bignum double-float)) has calls to genric-< 2016-04-25T17:35:54Z stassats: it fails the type= check for *backend-type-predicates* 2016-04-25T17:36:09Z stassats: and then source-transform-union-typep crumbles on it 2016-04-25T17:36:52Z stassats: thought it already handles LIST, bignum should be added 2016-04-25T18:49:09Z dougk_ joined #sbcl 2016-04-25T18:57:21Z shka is now known as everyone 2016-04-25T18:57:42Z everyone is now known as shka 2016-04-25T19:15:27Z flavioc_ joined #sbcl 2016-04-25T20:03:43Z Bicyclidine joined #sbcl 2016-04-25T21:00:33Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-25T21:34:28Z edgar-rft joined #sbcl 2016-04-25T21:35:03Z pobivan quit (Quit: pobivan) 2016-04-25T21:40:10Z stassats: SB-KERNEL:FDEFN stuff in disassemble is now always split to two lines, a bit annoying 2016-04-25T21:40:48Z angavrilov quit (Remote host closed the connection) 2016-04-25T21:41:54Z shka quit (Ping timeout: 260 seconds) 2016-04-25T21:46:52Z stassats: set *print-right-margin* to a fitting value, better 2016-04-25T21:56:54Z attila_lendvai joined #sbcl 2016-04-25T22:02:18Z les` quit (Ping timeout: 246 seconds) 2016-04-25T22:04:44Z les joined #sbcl 2016-04-25T22:14:34Z nzambe quit (Ping timeout: 260 seconds) 2016-04-25T22:28:52Z dougk_: stassats: i could revert that change. I don't much like it either in retrospect 2016-04-25T22:29:32Z stassats: the line splitting or some other aspect? 2016-04-25T22:29:58Z dougk_: the line splitting. But I guess "write-string" had the beneficial effect of never writing the package name, which is what avoided line splitting 2016-04-25T22:30:28Z dougk_: i could put back 'write-string' but I do prefer 'fdefn' instead of 'fdefinition' since there is no class named the latter 2016-04-25T22:30:37Z stassats: larger *print-right-margin* solves other problems as well 2016-04-25T22:30:43Z stassats: so, i don't care 2016-04-25T22:30:47Z dougk_: yah, but I don't like the package prefixing now 2016-04-25T22:30:56Z dougk_: i thought I would 2016-04-25T22:31:20Z stassats: you'd have to have a different printer for the disassembler then 2016-04-25T22:32:05Z stassats: or, rename fdefn to fdefinition? 2016-04-25T22:32:53Z dougk_: not rename the object itself. Just (write-string "fdefn") so that at least the string we write matches the object type, sans package marker 2016-04-25T22:32:54Z stassats: or, print functions as #'function in the disassembler? who cares for the fdefn/function details? 2016-04-25T22:33:22Z stassats: but it's not used only in the disassembler, so not having a package prefix is not great 2016-04-25T22:33:36Z stassats: used not only in the disassembler 2016-04-25T22:33:46Z dougk_: you're saying you prefer that aspect of the change? It never had a package prefix before. 2016-04-25T22:34:04Z dougk_: we don't print sb-kernel:code-component etc 2016-04-25T22:34:26Z dougk_: or do we? now I can't remember 2016-04-25T22:34:26Z stassats: fdefinition is from CL, so it rarely would have been printed anyway 2016-04-25T22:34:39Z dougk_: true, that was a sneaky trick then. 2016-04-25T22:34:52Z stassats: # 2016-04-25T22:35:06Z dougk_: using a public symbol that isn't the real name just to get no package marker printed? very sneaky. 2016-04-25T22:35:33Z stassats: don't think it was intentional 2016-04-25T23:22:34Z DGASAU quit (Ping timeout: 250 seconds) 2016-04-25T23:23:04Z DGASAU joined #sbcl 2016-04-25T23:23:53Z pobivan joined #sbcl 2016-04-25T23:26:07Z gingerale quit (Remote host closed the connection) 2016-04-25T23:28:35Z pobivan quit (Ping timeout: 250 seconds) 2016-04-25T23:36:51Z DGASAU quit (Ping timeout: 268 seconds) 2016-04-25T23:38:59Z DGASAU joined #sbcl 2016-04-25T23:58:43Z flavioc_ quit (Ping timeout: 252 seconds) 2016-04-26T00:44:48Z stassats quit (Ping timeout: 276 seconds) 2016-04-26T00:46:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-26T00:55:10Z sjl quit (Ping timeout: 268 seconds) 2016-04-26T02:09:11Z DavidGuru joined #sbcl 2016-04-26T02:19:14Z DavidGuru1 joined #sbcl 2016-04-26T02:19:15Z DavidGuru1 quit (Client Quit) 2016-04-26T02:20:04Z DavidGuru quit (Ping timeout: 252 seconds) 2016-04-26T02:30:09Z DavidGuru joined #sbcl 2016-04-26T02:35:28Z MetaHertz__ joined #sbcl 2016-04-26T03:06:42Z DmHertz__ joined #sbcl 2016-04-26T03:09:36Z MetaHertz__ quit (Ping timeout: 268 seconds) 2016-04-26T04:07:35Z karswell joined #sbcl 2016-04-26T04:52:18Z sjl joined #sbcl 2016-04-26T04:57:04Z sjl quit (Ping timeout: 260 seconds) 2016-04-26T05:05:46Z DavidGuru1 joined #sbcl 2016-04-26T05:06:45Z DavidGuru quit (Ping timeout: 244 seconds) 2016-04-26T05:06:46Z DavidGuru1 is now known as DavidGuru 2016-04-26T05:12:11Z DavidGuru1 joined #sbcl 2016-04-26T05:12:24Z DavidGuru quit (Remote host closed the connection) 2016-04-26T05:12:24Z DavidGuru1 is now known as DavidGuru 2016-04-26T05:15:39Z DavidGuru1 joined #sbcl 2016-04-26T05:15:50Z DavidGuru quit (Remote host closed the connection) 2016-04-26T05:17:09Z brucem quit (Changing host) 2016-04-26T05:17:09Z brucem joined #sbcl 2016-04-26T05:18:27Z DavidGuru joined #sbcl 2016-04-26T05:19:27Z DavidGuru1 quit (Remote host closed the connection) 2016-04-26T05:22:49Z Eschatologist joined #sbcl 2016-04-26T05:36:37Z pobivan joined #sbcl 2016-04-26T05:52:22Z DavidGuru quit (Ping timeout: 252 seconds) 2016-04-26T05:55:27Z DGASAU quit (Read error: Connection reset by peer) 2016-04-26T05:55:54Z DGASAU joined #sbcl 2016-04-26T06:01:10Z DavidGuru joined #sbcl 2016-04-26T06:27:58Z DavidGuru1 joined #sbcl 2016-04-26T06:28:50Z Bike quit (Quit: sicken) 2016-04-26T06:29:27Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-26T06:29:28Z DavidGuru1 is now known as DavidGuru 2016-04-26T06:35:28Z Eschatologist quit (Quit: Eschatologist) 2016-04-26T06:37:34Z myrkraverk quit (Remote host closed the connection) 2016-04-26T06:38:15Z myrkraverk joined #sbcl 2016-04-26T06:41:14Z igajsin joined #sbcl 2016-04-26T06:57:09Z igajsin left #sbcl 2016-04-26T07:41:34Z attila_lendvai joined #sbcl 2016-04-26T07:41:34Z attila_lendvai quit (Changing host) 2016-04-26T07:41:34Z attila_lendvai joined #sbcl 2016-04-26T07:48:36Z angavrilov joined #sbcl 2016-04-26T07:48:56Z attila_lendvai quit (Quit: Leaving.) 2016-04-26T07:49:08Z attila_lendvai joined #sbcl 2016-04-26T07:51:59Z myrkraverk quit (Remote host closed the connection) 2016-04-26T07:53:55Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-26T07:54:47Z DavidGuru joined #sbcl 2016-04-26T07:59:55Z myrkraverk joined #sbcl 2016-04-26T08:02:57Z scymtym quit (Remote host closed the connection) 2016-04-26T08:17:34Z DavidGuru1 joined #sbcl 2016-04-26T08:18:41Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-26T08:18:42Z DavidGuru1 is now known as DavidGuru 2016-04-26T08:30:53Z DavidGuru quit (Ping timeout: 268 seconds) 2016-04-26T08:31:49Z scymtym joined #sbcl 2016-04-26T08:34:30Z sjl joined #sbcl 2016-04-26T08:35:00Z DavidGuru joined #sbcl 2016-04-26T08:39:18Z DavidGuru quit (Ping timeout: 246 seconds) 2016-04-26T08:39:59Z DavidGuru joined #sbcl 2016-04-26T08:50:21Z sjl quit (Ping timeout: 276 seconds) 2016-04-26T09:20:35Z DmHertz__ quit (Ping timeout: 250 seconds) 2016-04-26T09:21:58Z MetaHertz__ joined #sbcl 2016-04-26T10:02:23Z sjl joined #sbcl 2016-04-26T10:20:03Z DavidGuru quit (Quit: DavidGuru) 2016-04-26T10:57:59Z edgar-rft quit (Quit: edgar-rft) 2016-04-26T11:03:47Z loke quit (Ping timeout: 276 seconds) 2016-04-26T11:03:50Z stassats joined #sbcl 2016-04-26T11:08:04Z stassats quit (Ping timeout: 252 seconds) 2016-04-26T11:10:04Z stassats joined #sbcl 2016-04-26T11:15:43Z loke joined #sbcl 2016-04-26T11:40:57Z MetaHertz__ quit (Ping timeout: 260 seconds) 2016-04-26T12:05:15Z sjl quit (Ping timeout: 244 seconds) 2016-04-26T12:31:53Z attila_lendvai quit (Remote host closed the connection) 2016-04-26T12:32:04Z attila_lendvai joined #sbcl 2016-04-26T12:37:49Z sjl joined #sbcl 2016-04-26T13:26:11Z whiteline quit (Read error: Connection reset by peer) 2016-04-26T13:27:53Z DavidGuru joined #sbcl 2016-04-26T13:30:08Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-26T13:35:55Z whiteline joined #sbcl 2016-04-26T13:55:02Z barbone joined #sbcl 2016-04-26T14:18:26Z sjl quit (Quit: WeeChat 1.3) 2016-04-26T14:21:04Z ASau joined #sbcl 2016-04-26T14:25:36Z nzambe joined #sbcl 2016-04-26T14:26:20Z sjl joined #sbcl 2016-04-26T14:32:34Z Bike joined #sbcl 2016-04-26T14:46:29Z DavidGuru joined #sbcl 2016-04-26T14:50:50Z barbone quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2016-04-26T15:13:45Z DavidGuru quit (Ping timeout: 246 seconds) 2016-04-26T15:23:08Z DavidGuru joined #sbcl 2016-04-26T15:31:54Z DavidGuru quit (Quit: DavidGuru) 2016-04-26T15:40:29Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-26T15:50:16Z attila_lendvai joined #sbcl 2016-04-26T16:00:42Z ccl-logbot joined #sbcl 2016-04-26T16:00:42Z 2016-04-26T16:00:42Z names: ccl-logbot attila_lendvai Bike nzambe ASau whiteline loke scymtym myrkraverk angavrilov DGASAU pobivan karswell les dougk_ jdz hitecnologys gko salva sigjuice aeth betheynyx Posterdati minion specbot chu joshe akkad chris2 xristos yvm pchrist_ carvite Xof dustinm` leo_song p_l Shinmera nicdev luis mood White_Flame reb``` Cthulhux mordocai antoszka Ober dim irsol jackc-_ drmeister |3b| pootler_ jasom fitzsim brucem PuercoPop ferada dsp- pkhuong Blkt 2016-04-26T16:00:42Z names: fe[nl]ix foom abbe jackdaniel jsnell flip214 _iwc Intensity christoph_debian 2016-04-26T16:01:17Z stassats joined #sbcl 2016-04-26T16:25:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-26T16:27:36Z attila_lendvai joined #sbcl 2016-04-26T16:30:13Z attila_lendvai quit (Read error: Connection reset by peer) 2016-04-26T16:32:35Z attila_lendvai joined #sbcl 2016-04-26T16:35:49Z MetaHertz__ joined #sbcl 2016-04-26T16:42:28Z MetaHertz__ quit (Quit: Leaving) 2016-04-26T16:45:33Z shka joined #sbcl 2016-04-26T16:46:38Z Bicyclidine joined #sbcl 2016-04-26T16:47:51Z sjl joined #sbcl 2016-04-26T17:15:20Z karswell` joined #sbcl 2016-04-26T17:16:14Z karswell quit (Read error: Connection reset by peer) 2016-04-26T17:23:38Z benkard joined #sbcl 2016-04-26T17:35:53Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-26T17:42:38Z Bicyclidine joined #sbcl 2016-04-26T17:56:09Z Bicyclidine quit (Ping timeout: 246 seconds) 2016-04-26T17:57:27Z eudoxia joined #sbcl 2016-04-26T18:08:04Z Bicyclidine joined #sbcl 2016-04-26T18:09:29Z eudoxia quit (Quit: Leaving) 2016-04-26T18:17:20Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-26T18:28:19Z Bicyclidine joined #sbcl 2016-04-26T18:35:37Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-26T18:47:52Z Xach joined #sbcl 2016-04-26T18:48:42Z Xach: attila_lendvai: some trouble with hu.dwim.util and the latest sbcl 2016-04-26T18:48:49Z Xach: Lock on package SB-PCL violated when interning GET-INSTANCE-HASH-CODE while in package HU.DWIM.UTIL. 2016-04-26T18:49:01Z Xach: Breaks a bunch! 2016-04-26T18:49:04Z attila_lendvai: Xach: thanks, looking 2016-04-26T18:57:37Z Bicyclidine joined #sbcl 2016-04-26T19:05:34Z attila_lendvai: Xach: fix pushed, thanks! 2016-04-26T19:06:14Z attila_lendvai: (I've disabled the loading of the whole compact-class experiment, it's not used anywhere) 2016-04-26T19:12:02Z Xach: works, thanks 2016-04-26T19:23:10Z flavioc_ joined #sbcl 2016-04-26T19:28:11Z DeadTrickster joined #sbcl 2016-04-26T19:29:29Z gingerale joined #sbcl 2016-04-26T19:30:06Z sjl quit (Ping timeout: 268 seconds) 2016-04-26T19:41:58Z aeth: What does "1 form interpreted" mean in TIME and how did I end up with it? 2016-04-26T19:42:21Z aeth: Well, I guess it means that I'm doing something too dynamic for the compiler to understand. 2016-04-26T19:47:02Z Bicyclidine: calls to eval 2016-04-26T19:50:29Z aeth: Strange. I don't call eval (I set *read-eval* to nil at one point, but that's the only instance of the string "eval") 2016-04-26T19:50:47Z aeth: Is there something that implicitly evals, like #'apply or something? 2016-04-26T19:51:06Z aeth: I do use apply in one place, but I commented it out and I still got "1 form interpreted" 2016-04-26T19:51:24Z pkhuong: the REPL might eval. so can FFI 2016-04-26T19:51:28Z pkhuong: apply does not. 2016-04-26T19:53:04Z aeth: Ah, I use the FFI indirectly three times in this code, to compile OpenGL shaders. 2016-04-26T19:53:16Z aeth: That's probably where it is, somewhere. 2016-04-26T19:53:23Z Bicyclidine: parts of clos, coerce, describe-object for some reason 2016-04-26T19:54:06Z stassats: you can trace eval 2016-04-26T19:58:21Z barbone joined #sbcl 2016-04-26T20:07:39Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-04-26T20:08:54Z Bicyclidine joined #sbcl 2016-04-26T20:13:53Z benkard quit (Quit: Textual IRC Client: www.textualapp.com) 2016-04-26T20:15:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-26T20:16:37Z pobivan quit (Quit: pobivan) 2016-04-26T20:19:50Z edgar-rft joined #sbcl 2016-04-26T20:31:50Z scymtym_ joined #sbcl 2016-04-26T20:37:39Z whiteline quit (Quit: Leaving) 2016-04-26T20:37:49Z whiteline_ joined #sbcl 2016-04-26T20:37:58Z whiteline_ is now known as whiteline 2016-04-26T21:07:41Z dougk_ quit (Remote host closed the connection) 2016-04-26T21:30:07Z shka quit (Ping timeout: 252 seconds) 2016-04-26T21:39:09Z Bicyclidine quit (Quit: despoil) 2016-04-26T21:49:20Z angavrilov quit (Remote host closed the connection) 2016-04-26T21:55:35Z gingerale quit (Remote host closed the connection) 2016-04-26T22:02:25Z barbone quit (Ping timeout: 268 seconds) 2016-04-26T22:02:42Z Posterdati quit (Ping timeout: 276 seconds) 2016-04-26T22:11:03Z scymtym_ quit (Ping timeout: 250 seconds) 2016-04-26T22:15:06Z Posterdati joined #sbcl 2016-04-26T22:15:11Z barbone joined #sbcl 2016-04-26T22:25:31Z Xach left #sbcl 2016-04-26T22:45:10Z flavioc_ quit (Remote host closed the connection) 2016-04-26T22:54:08Z sjl joined #sbcl 2016-04-26T23:42:26Z specbot quit (Disconnected by services) 2016-04-26T23:43:12Z specbot joined #sbcl 2016-04-27T00:20:42Z karswell` is now known as karswell 2016-04-27T01:18:33Z stassats quit (Ping timeout: 276 seconds) 2016-04-27T01:40:54Z sjl__ joined #sbcl 2016-04-27T01:43:19Z sjl quit (Ping timeout: 250 seconds) 2016-04-27T02:37:41Z karswell quit (Remote host closed the connection) 2016-04-27T02:37:51Z karswell` joined #sbcl 2016-04-27T03:07:37Z MetaHertz__ joined #sbcl 2016-04-27T03:08:04Z akkad quit (Ping timeout: 240 seconds) 2016-04-27T03:08:34Z Intensity quit (Ping timeout: 240 seconds) 2016-04-27T03:23:14Z sjl__ quit (Read error: Connection reset by peer) 2016-04-27T03:27:35Z sjl__ joined #sbcl 2016-04-27T03:40:43Z akkad joined #sbcl 2016-04-27T03:58:00Z sjl joined #sbcl 2016-04-27T03:58:02Z sjl__ quit (Ping timeout: 260 seconds) 2016-04-27T04:02:29Z Intensity joined #sbcl 2016-04-27T04:02:45Z sjl__ joined #sbcl 2016-04-27T04:04:09Z sjl quit (Ping timeout: 250 seconds) 2016-04-27T04:07:33Z Intensity quit (Ping timeout: 240 seconds) 2016-04-27T04:07:41Z hitecnologys quit (Ping timeout: 250 seconds) 2016-04-27T04:08:47Z hitecnologys joined #sbcl 2016-04-27T04:15:30Z hitecnologys quit (Ping timeout: 268 seconds) 2016-04-27T04:22:49Z Intensity joined #sbcl 2016-04-27T04:33:30Z loke quit (Ping timeout: 246 seconds) 2016-04-27T04:43:59Z flip214 quit (Ping timeout: 244 seconds) 2016-04-27T04:44:05Z flip214 joined #sbcl 2016-04-27T04:45:31Z ksl joined #sbcl 2016-04-27T04:45:41Z loke joined #sbcl 2016-04-27T05:17:36Z sjl__ quit (Ping timeout: 246 seconds) 2016-04-27T05:25:25Z edgar-rft quit (Quit: edgar-rft) 2016-04-27T05:30:14Z ksl_ joined #sbcl 2016-04-27T05:31:30Z ksl quit (Ping timeout: 244 seconds) 2016-04-27T05:34:02Z shka joined #sbcl 2016-04-27T06:04:12Z ksl joined #sbcl 2016-04-27T06:06:04Z ksl_ quit (Ping timeout: 240 seconds) 2016-04-27T06:12:41Z ksl_ joined #sbcl 2016-04-27T06:16:28Z ksl quit (Ping timeout: 252 seconds) 2016-04-27T06:18:14Z shka quit (Quit: Konversation terminated!) 2016-04-27T06:36:26Z hitecnologys joined #sbcl 2016-04-27T06:49:57Z ksl_ quit (Quit: AndroidIrc Disconnecting) 2016-04-27T07:15:01Z edgar-rft joined #sbcl 2016-04-27T08:48:20Z angavrilov joined #sbcl 2016-04-27T08:57:04Z ASau quit (Ping timeout: 252 seconds) 2016-04-27T09:00:37Z edgar-rft quit (Quit: edgar-rft) 2016-04-27T09:16:27Z attila_lendvai joined #sbcl 2016-04-27T09:16:27Z attila_lendvai quit (Changing host) 2016-04-27T09:16:27Z attila_lendvai joined #sbcl 2016-04-27T09:30:54Z DeadTrickster: what's the point of having deadlines for condition-wait? any doc hints? 2016-04-27T09:39:03Z sjl__ joined #sbcl 2016-04-27T09:49:15Z DavidGuru joined #sbcl 2016-04-27T10:10:03Z scymtym: DeadTrickster: i think deadlines are designed to uniformly (without individual :timeout arguments) restrict all blocking operations in a given dynamic contour. not sure how complete/correct the implementation is 2016-04-27T10:12:28Z DeadTrickster: scymtym, I'm thinking about rewriting all this to monotonic clocks. thoughts? 2016-04-27T10:21:24Z scymtym: DeadTrickster: that may make sense. i haven't thought about it much. i know that there is at least one known issue related to clock-non-monotonicity 2016-04-27T10:26:54Z DavidGuru quit (Quit: DavidGuru) 2016-04-27T10:40:32Z DeadTrickster: scymtym, what's the issue? 2016-04-27T10:43:58Z scymtym: lp 1028026 2016-04-27T10:43:58Z specbot: https://bugs.launchpad.net/bugs/1028026 2016-04-27T10:44:01Z scymtym: DeadTrickster: ^ 2016-04-27T10:44:46Z scymtym: looking at it again, it seems only tangentially related to deadlines 2016-04-27T10:45:02Z scymtym: but may be interesting context for your plans anyway 2016-04-27T10:49:06Z sjl__ is now known as sjl 2016-04-27T10:55:48Z MetaHertz__ quit (Quit: Leaving) 2016-04-27T10:57:02Z DeadTrickster: scymtym, I'm mostly bothered by condition-wait here because realtime clock is obviously shitty for relative time intervals. i.e. call condition-wait with timeout of 60 seconds then fast-forward your system clocks to 30 s and your actual waiting timeout now is 30 sec 2016-04-27T10:58:05Z DeadTrickster: not sure why it's designed this way. monotonic clocks available on bsd, linux and windows 2016-04-27T10:59:17Z DGASAU quit (Ping timeout: 250 seconds) 2016-04-27T11:04:22Z jdz: they were not a while ago 2016-04-27T11:08:28Z DGASAU joined #sbcl 2016-04-27T12:06:14Z sjl quit (Ping timeout: 244 seconds) 2016-04-27T12:36:43Z sjl joined #sbcl 2016-04-27T13:10:57Z stassats joined #sbcl 2016-04-27T14:14:27Z flip214 quit (Ping timeout: 276 seconds) 2016-04-27T14:15:09Z flip214 joined #sbcl 2016-04-27T14:15:09Z flip214 quit (Changing host) 2016-04-27T14:15:09Z flip214 joined #sbcl 2016-04-27T14:25:00Z dougk_ joined #sbcl 2016-04-27T14:47:11Z edgar-rft joined #sbcl 2016-04-27T15:41:14Z sjl quit (Ping timeout: 268 seconds) 2016-04-27T15:48:02Z gingerale joined #sbcl 2016-04-27T16:06:57Z pkhuong: it's also not clear that monotonic clocks is always the best call. also beware the classic non-monotonic monotonic clock on linux. oh yeah, and we have different codepaths for futex VS no futex. 2016-04-27T16:29:12Z shka joined #sbcl 2016-04-27T16:29:34Z sjl joined #sbcl 2016-04-27T16:50:50Z attila_lendvai quit (Quit: Leaving.) 2016-04-27T16:52:17Z Bicyclidine joined #sbcl 2016-04-27T16:55:02Z attila_lendvai joined #sbcl 2016-04-27T16:55:16Z eudoxia joined #sbcl 2016-04-27T16:55:56Z eudoxia quit (Client Quit) 2016-04-27T16:58:26Z sjl quit (Ping timeout: 276 seconds) 2016-04-27T17:30:04Z edgar-rft quit (Quit: edgar-rft) 2016-04-27T17:31:20Z eudoxia joined #sbcl 2016-04-27T18:14:46Z eudoxia quit (Quit: Leaving) 2016-04-27T18:53:01Z Bicyclidine quit (Ping timeout: 268 seconds) 2016-04-27T18:59:28Z Bicyclidine joined #sbcl 2016-04-27T19:18:55Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-27T19:21:00Z Bicyclidine joined #sbcl 2016-04-27T19:49:45Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-27T19:56:39Z Bicyclidine joined #sbcl 2016-04-27T20:04:33Z Bicyclidine quit (Ping timeout: 268 seconds) 2016-04-27T20:06:02Z Bicyclidine joined #sbcl 2016-04-27T20:11:02Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-27T20:17:16Z Bicyclidine joined #sbcl 2016-04-27T20:27:57Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-27T20:29:40Z Bicyclidine joined #sbcl 2016-04-27T20:37:03Z gingerale quit (Remote host closed the connection) 2016-04-27T20:52:38Z Bicyclidine quit (Quit: leaving) 2016-04-27T21:22:03Z angavrilov quit (Ping timeout: 250 seconds) 2016-04-27T21:52:32Z stassats quit (Ping timeout: 260 seconds) 2016-04-27T21:53:13Z stassats joined #sbcl 2016-04-27T21:59:39Z stassats quit (Ping timeout: 246 seconds) 2016-04-27T22:02:11Z stassats joined #sbcl 2016-04-27T22:24:59Z shka quit (Ping timeout: 260 seconds) 2016-04-27T22:33:36Z sjl joined #sbcl 2016-04-27T23:29:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-27T23:45:20Z stassats quit (Ping timeout: 276 seconds) 2016-04-27T23:48:31Z specbot quit (Ping timeout: 250 seconds) 2016-04-27T23:48:41Z Shinmera- joined #sbcl 2016-04-27T23:49:03Z Shinmera quit (Remote host closed the connection) 2016-04-27T23:49:04Z Cthulhux quit (Ping timeout: 264 seconds) 2016-04-27T23:49:18Z specbot joined #sbcl 2016-04-27T23:51:29Z Cthulhux joined #sbcl 2016-04-27T23:59:45Z edgar-rft joined #sbcl 2016-04-28T00:20:03Z Intensity quit (Ping timeout: 240 seconds) 2016-04-28T00:21:05Z akkad quit (Ping timeout: 268 seconds) 2016-04-28T00:28:34Z Intensity joined #sbcl 2016-04-28T00:32:39Z akkad joined #sbcl 2016-04-28T01:38:34Z sjl quit (Ping timeout: 240 seconds) 2016-04-28T03:18:39Z Fare joined #sbcl 2016-04-28T03:18:49Z Fare: can sbcl be built with clang on osx ? 2016-04-28T03:23:24Z xristos: yes 2016-04-28T03:23:58Z Fare: is there something special to do it? 2016-04-28T03:24:23Z xristos: not that i know of 2016-04-28T03:24:44Z Fare: I'm trying to use bazel, and the final linking step with sbcl.o complains about: ld: in bazel-out/local-fastbuild/bin/external/lisp__sbcl/liblibsbcl.a(sbcl.o), sectionForAddress(0x1AF25) address not in any section for architecture x86_64 2016-04-28T03:25:08Z Fare: (bazel does create a sbcl.o) 2016-04-28T03:25:41Z xristos: never used bazel myself 2016-04-28T03:27:04Z Fare: it works great, on linux x64 2016-04-28T03:27:23Z Fare: czak is trying to make it work on osx 2016-04-28T03:27:50Z Fare: he's *almost* but not quite there — having trouble with this final linking step 2016-04-28T03:39:34Z xristos: i'd double check the compiler/linker flags (maybe he's using -m32) 2016-04-28T03:53:25Z MetaHertz__ joined #sbcl 2016-04-28T04:33:03Z Fare: thank 2016-04-28T04:33:04Z Fare: s 2016-04-28T05:46:33Z shka joined #sbcl 2016-04-28T05:47:02Z Fare left #sbcl 2016-04-28T06:03:20Z Shinmera- is now known as Shinmera 2016-04-28T06:21:50Z salva quit (Ping timeout: 268 seconds) 2016-04-28T06:26:46Z salva joined #sbcl 2016-04-28T06:32:42Z shka quit (Ping timeout: 276 seconds) 2016-04-28T08:00:25Z gingerale joined #sbcl 2016-04-28T08:25:12Z attila_lendvai joined #sbcl 2016-04-28T08:25:12Z attila_lendvai quit (Changing host) 2016-04-28T08:25:12Z attila_lendvai joined #sbcl 2016-04-28T08:25:32Z angavrilov joined #sbcl 2016-04-28T08:33:17Z myrkraverk quit (Remote host closed the connection) 2016-04-28T08:33:55Z myrkraverk joined #sbcl 2016-04-28T08:49:53Z DmHertz__ joined #sbcl 2016-04-28T08:53:17Z MetaHertz__ quit (Ping timeout: 276 seconds) 2016-04-28T10:08:50Z sjl joined #sbcl 2016-04-28T10:13:04Z sjl quit (Ping timeout: 240 seconds) 2016-04-28T10:17:24Z barbone quit (Read error: Connection reset by peer) 2016-04-28T10:18:01Z scymtym quit (Ping timeout: 268 seconds) 2016-04-28T10:18:21Z Posterdati quit (Read error: Connection reset by peer) 2016-04-28T10:22:11Z scymtym joined #sbcl 2016-04-28T10:28:30Z scymtym quit (Ping timeout: 268 seconds) 2016-04-28T10:31:29Z Posterdati joined #sbcl 2016-04-28T10:32:19Z barbone joined #sbcl 2016-04-28T10:34:53Z sjl joined #sbcl 2016-04-28T10:53:08Z hzp joined #sbcl 2016-04-28T11:11:57Z stassats joined #sbcl 2016-04-28T11:26:45Z scymtym joined #sbcl 2016-04-28T12:01:00Z sjl quit (Ping timeout: 268 seconds) 2016-04-28T12:18:16Z DmHertz__ quit (Ping timeout: 252 seconds) 2016-04-28T12:23:59Z sjl joined #sbcl 2016-04-28T12:51:55Z stassats quit (Ping timeout: 250 seconds) 2016-04-28T12:53:29Z stassats joined #sbcl 2016-04-28T13:45:27Z xristos: how does sbcl lay out (simple-array (simple-array (unsigned-byte 32) 1) 1) in memory? is is possible for foreign code to iterate over the pointers to the ub32 arrays in the enclosing array? 2016-04-28T13:53:02Z Xof: it is possible but non-trivial; the outer array will be an array of pointers to lisp objects 2016-04-28T13:53:29Z xristos: yes 2016-04-28T13:53:40Z Xof: you might find it easier to manage a (simple-array (unsigned-byte 32) (* *)), where you would want to grab the underlying data vector, but there is only one data vector for the whole array 2016-04-28T13:53:55Z Xof: of course, if your rows/columns are of variable size, that doesn't work 2016-04-28T13:54:28Z xristos: they're variably sized 2016-04-28T13:54:48Z xristos: i've implemented it with untyped pointers and sap-ref-32/64 2016-04-28T13:55:38Z xristos: but it's a lot slower than using aref with (simple-array (simple-array (unsigned-byte 32) 1) 1) 2016-04-28T13:55:52Z xristos: and i can't give a pointer to foreign code in the 2nd case 2016-04-28T13:56:39Z xristos: so ideally i'd use aref on the lisp side since the compiler generates fast code 2016-04-28T13:56:51Z xristos: and also be able to pass a pointer to the foreign side and access both arrays there 2016-04-28T13:58:01Z stassats: sap-ref and aref should be the same 2016-04-28T13:59:27Z xristos: i'm seeing a 50% performance hit going through sap-ref (enclosing array holds 64bit pointers to the ub32 arrays) 2016-04-28T13:59:39Z xristos: maybe i'm missing declarations 2016-04-28T14:00:24Z xristos: but also there is translation between a sap/raw 64bit pointer value for every access 2016-04-28T14:01:25Z xristos: e.g. (int-sap (sap-ref-64 *enclosing-array-sap* (* idx 8))) 2016-04-28T14:01:34Z xristos: that will give me a sap to a ub32 array 2016-04-28T14:02:59Z xristos: if i manage the arrays lisp-side, it's simply (aref (aref *enclosing-array* idx) ..) 2016-04-28T14:03:12Z xristos: and the compiler creates faster code 2016-04-28T14:04:05Z stassats: try sap-ref-sap, for starters 2016-04-28T14:04:12Z stassats: then, don't let the SAP escape 2016-04-28T14:05:52Z xristos: thanks 2016-04-28T14:30:49Z edgar-rft quit (Quit: edgar-rft) 2016-04-28T14:46:33Z Bicyclidine joined #sbcl 2016-04-28T15:11:41Z karswell` is now known as karswell 2016-04-28T15:20:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-28T16:02:57Z MetaHertz__ joined #sbcl 2016-04-28T16:20:46Z edgar-rft joined #sbcl 2016-04-28T16:27:47Z karswell quit (Read error: Connection reset by peer) 2016-04-28T16:28:03Z karswell joined #sbcl 2016-04-28T16:54:22Z sjl: is there something special I have to do to turn on compiler optimization notes? 2016-04-28T16:55:11Z sjl: I have (defun foo (a b) (declare (optimize (speed 3) (safety 0))) (+ a b)) 2016-04-28T16:55:37Z sjl: and it just compiles it with no warnings about optimizing the + away from generic-+ 2016-04-28T16:56:41Z stassats: are you sure you are using sbcl? 2016-04-28T16:59:40Z jsnell: are you pasting that into the repl, or putting it in a file and compiling? 2016-04-28T16:59:50Z sjl: stassats: yes 2016-04-28T17:00:21Z sjl: jsnell: I was putting it into a repl 2016-04-28T17:02:43Z jsnell: I expect you'll get the optimization note with compile-file 2016-04-28T17:03:05Z sjl: yeah compile-file spits them out 2016-04-28T17:04:54Z jsnell: eval muffles the compiler notes 2016-04-28T17:11:25Z edgar-rft quit (Quit: edgar-rft) 2016-04-28T17:16:41Z ASau joined #sbcl 2016-04-28T17:18:29Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-28T17:29:30Z Bicyclidine joined #sbcl 2016-04-28T17:49:14Z shka joined #sbcl 2016-04-28T17:52:22Z Cthulhux quit (Changing host) 2016-04-28T17:52:22Z Cthulhux joined #sbcl 2016-04-28T18:21:49Z MetaHertz__ quit (Ping timeout: 252 seconds) 2016-04-28T18:42:55Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-04-28T18:44:52Z Bicyclidine joined #sbcl 2016-04-28T18:56:38Z scymtym quit (Ping timeout: 268 seconds) 2016-04-28T19:02:14Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-04-28T19:05:53Z joshe quit (Ping timeout: 268 seconds) 2016-04-28T19:20:11Z Bicyclidine joined #sbcl 2016-04-28T19:25:33Z Bicyclidine quit (Ping timeout: 246 seconds) 2016-04-28T19:36:06Z sjl quit (Ping timeout: 268 seconds) 2016-04-28T19:40:49Z scymtym joined #sbcl 2016-04-28T19:52:48Z attila_lendvai joined #sbcl 2016-04-28T19:52:48Z attila_lendvai quit (Changing host) 2016-04-28T19:52:48Z attila_lendvai joined #sbcl 2016-04-28T20:00:00Z shka quit (Ping timeout: 276 seconds) 2016-04-28T20:03:13Z joshe joined #sbcl 2016-04-28T20:08:53Z sjl joined #sbcl 2016-04-28T21:00:11Z gingerale quit (Remote host closed the connection) 2016-04-28T22:01:17Z angavrilov quit (Remote host closed the connection) 2016-04-28T22:02:47Z specbot quit (Disconnected by services) 2016-04-28T22:03:33Z specbot joined #sbcl 2016-04-28T22:08:03Z ferada quit (Ping timeout: 276 seconds) 2016-04-28T22:08:11Z ferada joined #sbcl 2016-04-28T23:16:50Z christoph_debian quit (Ping timeout: 244 seconds) 2016-04-28T23:23:15Z christoph_debian joined #sbcl 2016-04-29T00:13:59Z edgar-rft joined #sbcl 2016-04-29T00:26:34Z sjl quit (Ping timeout: 240 seconds) 2016-04-29T00:52:02Z stassats quit (Ping timeout: 276 seconds) 2016-04-29T01:50:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-29T02:42:55Z karswell quit (Read error: Connection reset by peer) 2016-04-29T02:43:13Z karswell joined #sbcl 2016-04-29T02:51:27Z karswell quit (Read error: Connection reset by peer) 2016-04-29T02:51:49Z karswell joined #sbcl 2016-04-29T02:55:11Z loke quit (Ping timeout: 250 seconds) 2016-04-29T02:56:42Z MetaHertz_ joined #sbcl 2016-04-29T03:08:30Z loke joined #sbcl 2016-04-29T04:10:06Z hitecnologys quit (Ping timeout: 276 seconds) 2016-04-29T05:04:27Z shka joined #sbcl 2016-04-29T05:11:08Z DavidGuru joined #sbcl 2016-04-29T05:16:46Z DavidGuru1 joined #sbcl 2016-04-29T05:19:31Z DavidGuru quit (Ping timeout: 244 seconds) 2016-04-29T05:19:32Z DavidGuru1 is now known as DavidGuru 2016-04-29T05:32:38Z DavidGuru1 joined #sbcl 2016-04-29T05:35:44Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-29T05:35:44Z DavidGuru1 is now known as DavidGuru 2016-04-29T05:49:25Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-29T05:50:07Z DavidGuru joined #sbcl 2016-04-29T05:55:34Z shka quit (Ping timeout: 260 seconds) 2016-04-29T05:55:45Z gingerale joined #sbcl 2016-04-29T05:58:11Z scymtym quit (Ping timeout: 276 seconds) 2016-04-29T06:03:19Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-29T06:35:55Z DavidGuru joined #sbcl 2016-04-29T06:51:26Z gingerale quit (Remote host closed the connection) 2016-04-29T07:20:58Z hitecnologys joined #sbcl 2016-04-29T07:23:06Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-29T07:23:22Z DavidGuru joined #sbcl 2016-04-29T07:40:35Z flip214 quit (Ping timeout: 244 seconds) 2016-04-29T07:49:38Z scymtym joined #sbcl 2016-04-29T07:52:31Z ASau quit (Ping timeout: 250 seconds) 2016-04-29T08:13:01Z DavidGuru1 joined #sbcl 2016-04-29T08:14:02Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-29T08:14:03Z DavidGuru1 is now known as DavidGuru 2016-04-29T08:18:31Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-29T08:18:55Z DavidGuru joined #sbcl 2016-04-29T08:23:06Z angavrilov joined #sbcl 2016-04-29T08:25:03Z DavidGuru1 joined #sbcl 2016-04-29T08:26:19Z DavidGuru quit (Ping timeout: 268 seconds) 2016-04-29T08:26:19Z DavidGuru1 is now known as DavidGuru 2016-04-29T08:32:04Z DavidGuru quit (Read error: Connection reset by peer) 2016-04-29T08:44:27Z DavidGuru joined #sbcl 2016-04-29T08:45:42Z Bike quit (Quit: leaving) 2016-04-29T08:45:49Z barbone quit (Ping timeout: 250 seconds) 2016-04-29T08:46:03Z Posterdati quit (Ping timeout: 268 seconds) 2016-04-29T08:49:13Z DavidGuru quit (Ping timeout: 250 seconds) 2016-04-29T08:50:10Z DavidGuru joined #sbcl 2016-04-29T08:51:11Z flip214 joined #sbcl 2016-04-29T08:51:11Z flip214 quit (Changing host) 2016-04-29T08:51:11Z flip214 joined #sbcl 2016-04-29T08:54:59Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-29T08:57:16Z DavidGuru joined #sbcl 2016-04-29T09:00:09Z DavidGuru1 joined #sbcl 2016-04-29T09:01:41Z DavidGuru quit (Ping timeout: 244 seconds) 2016-04-29T09:01:42Z DavidGuru1 is now known as DavidGuru 2016-04-29T09:15:31Z DavidGuru1 joined #sbcl 2016-04-29T09:16:54Z DavidGuru quit (Ping timeout: 276 seconds) 2016-04-29T09:16:54Z DavidGuru1 is now known as DavidGuru 2016-04-29T09:33:32Z Posterdati joined #sbcl 2016-04-29T09:37:05Z sjl joined #sbcl 2016-04-29T09:44:03Z DavidGuru quit (Quit: DavidGuru) 2016-04-29T09:50:34Z Posterdati quit (Ping timeout: 240 seconds) 2016-04-29T09:56:20Z DGASAU quit (Read error: Connection reset by peer) 2016-04-29T09:56:46Z DGASAU joined #sbcl 2016-04-29T10:04:43Z Posterdati joined #sbcl 2016-04-29T10:06:56Z attila_lendvai joined #sbcl 2016-04-29T10:16:47Z DGASAU quit (Read error: Connection reset by peer) 2016-04-29T10:18:46Z DGASAU joined #sbcl 2016-04-29T10:51:32Z MetaHertz_ quit (Ping timeout: 260 seconds) 2016-04-29T10:57:53Z DavidGuru joined #sbcl 2016-04-29T11:04:44Z DavidGuru quit (Ping timeout: 260 seconds) 2016-04-29T11:13:31Z barbone joined #sbcl 2016-04-29T11:51:23Z karswell` joined #sbcl 2016-04-29T11:52:01Z karswell quit (Remote host closed the connection) 2016-04-29T12:27:41Z prxq joined #sbcl 2016-04-29T12:31:42Z prxq quit (Remote host closed the connection) 2016-04-29T13:07:23Z scymtym_ joined #sbcl 2016-04-29T13:08:08Z scymtym quit (Ping timeout: 268 seconds) 2016-04-29T13:17:00Z stassats joined #sbcl 2016-04-29T13:21:27Z stassats quit (Ping timeout: 246 seconds) 2016-04-29T13:22:20Z stassats joined #sbcl 2016-04-29T13:25:07Z edgar-rft quit (Quit: edgar-rft) 2016-04-29T13:26:44Z stassats quit (Ping timeout: 244 seconds) 2016-04-29T13:27:22Z stassats joined #sbcl 2016-04-29T13:31:44Z stassats quit (Ping timeout: 260 seconds) 2016-04-29T13:32:52Z stassats joined #sbcl 2016-04-29T13:37:04Z stassats quit (Ping timeout: 240 seconds) 2016-04-29T13:38:15Z stassats joined #sbcl 2016-04-29T13:55:10Z karswell` quit (Remote host closed the connection) 2016-04-29T14:16:39Z fiddlerwoaroof joined #sbcl 2016-04-29T14:33:11Z myrkraverk quit (*.net *.split) 2016-04-29T14:33:12Z Shinmera quit (*.net *.split) 2016-04-29T14:33:14Z chris2 quit (*.net *.split) 2016-04-29T14:33:15Z xristos quit (*.net *.split) 2016-04-29T14:36:47Z xristos joined #sbcl 2016-04-29T14:37:10Z myrkraverk joined #sbcl 2016-04-29T14:37:10Z Shinmera joined #sbcl 2016-04-29T14:37:10Z chris2 joined #sbcl 2016-04-29T14:37:11Z xristos quit (Changing host) 2016-04-29T14:37:12Z xristos joined #sbcl 2016-04-29T14:42:33Z Bike joined #sbcl 2016-04-29T15:03:01Z barbone quit (Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/) 2016-04-29T15:51:37Z flavioc_ joined #sbcl 2016-04-29T15:58:34Z prxq joined #sbcl 2016-04-29T16:15:03Z barbone joined #sbcl 2016-04-29T16:26:05Z barbone quit (Ping timeout: 276 seconds) 2016-04-29T16:40:45Z karswell` joined #sbcl 2016-04-29T16:44:32Z shka joined #sbcl 2016-04-29T16:46:14Z karswell` is now known as karswell 2016-04-29T17:15:21Z gingerale joined #sbcl 2016-04-29T18:49:31Z myrkraverk quit (Remote host closed the connection) 2016-04-29T18:57:04Z scymtym_ quit (Ping timeout: 240 seconds) 2016-04-29T19:05:48Z flavioc_ quit (Ping timeout: 276 seconds) 2016-04-29T19:37:50Z DGASAU quit (Ping timeout: 276 seconds) 2016-04-29T19:41:00Z DGASAU joined #sbcl 2016-04-29T20:02:46Z flavioc_ joined #sbcl 2016-04-29T20:03:44Z sjl quit (Ping timeout: 260 seconds) 2016-04-29T20:14:54Z myrkraverk joined #sbcl 2016-04-29T20:21:47Z flavioc_ quit (Remote host closed the connection) 2016-04-29T20:31:27Z shka quit (Ping timeout: 244 seconds) 2016-04-29T20:43:23Z sjl joined #sbcl 2016-04-29T20:52:52Z scymtym joined #sbcl 2016-04-29T21:37:18Z angavrilov quit (Remote host closed the connection) 2016-04-29T21:41:10Z gingerale quit (Remote host closed the connection) 2016-04-29T21:42:36Z prxq quit (Quit: good night) 2016-04-29T22:45:50Z betheynyx quit (Max SendQ exceeded) 2016-04-29T22:59:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-30T00:01:06Z betheynyx joined #sbcl 2016-04-30T00:03:13Z rszeno joined #sbcl 2016-04-30T00:33:24Z sjl quit (Ping timeout: 276 seconds) 2016-04-30T00:41:02Z stassats quit (Ping timeout: 260 seconds) 2016-04-30T00:50:41Z edgar-rft joined #sbcl 2016-04-30T02:11:14Z gabriel_laddel joined #sbcl 2016-04-30T02:39:03Z betheynyx quit (Max SendQ exceeded) 2016-04-30T02:50:27Z gabriel_laddel quit (Ping timeout: 250 seconds) 2016-04-30T03:17:05Z rszeno quit (Quit: Leaving.) 2016-04-30T03:18:03Z betheynyx joined #sbcl 2016-04-30T06:22:04Z salva quit (Ping timeout: 240 seconds) 2016-04-30T06:42:19Z salva joined #sbcl 2016-04-30T07:05:36Z betheynyx quit (Max SendQ exceeded) 2016-04-30T07:38:30Z shka joined #sbcl 2016-04-30T07:48:10Z angavrilov joined #sbcl 2016-04-30T07:57:33Z gingerale joined #sbcl 2016-04-30T08:40:24Z angular_mike joined #sbcl 2016-04-30T08:42:32Z angular_mike: I'm used to being able to navigate between previous commands in my REPL using arrow -keys. Is there a way to do that in SBLC? 2016-04-30T08:44:18Z PuercoPop: angular_mike: there is in slime M-p. You can use rlwrap to get that behaviour from SBCL, but in general you should use slime 2016-04-30T08:45:42Z angular_mike: PuercoPop: any examples? 2016-04-30T08:46:14Z PuercoPop: angular_mike: of pressing M-p in the Slime REPL? 2016-04-30T08:46:25Z angular_mike: yes 2016-04-30T08:46:55Z angular_mike: wait, is slime a different REPL? 2016-04-30T08:47:48Z PuercoPop: https://common-lisp.net/project/slime/ 2016-04-30T08:48:01Z PuercoPop: it has an enhanced REPL, yes 2016-04-30T08:50:30Z angular_mike: so, nothing like that in the default sblc repl? 2016-04-30T08:53:11Z betheynyx joined #sbcl 2016-04-30T08:54:14Z PuercoPop: angular_mike: Like I mentioned before, You can use rlwrap. after installing rlwrap, type rlwrap sbcl in your shell and you'll be able to get to the previous input with the arrows. But it would still be a lot worse than slime. 2016-04-30T08:59:37Z angular_mike: PuercoPop: got it working thatnks. Slime is just for emacs, right? I'm more into vim 2016-04-30T09:03:16Z PuercoPop: angular_mike: The discussion is more appropriate for #lisp, but yeah Slime is for emacs. Some lispers happily use slimv 2016-04-30T09:03:38Z angular_mike: kkk, thanks 2016-04-30T09:07:03Z attila_lendvai joined #sbcl 2016-04-30T10:41:04Z scymtym quit (Ping timeout: 260 seconds) 2016-04-30T10:49:39Z Carisius joined #sbcl 2016-04-30T11:31:31Z scymtym joined #sbcl 2016-04-30T11:33:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-30T11:33:51Z attila_lendvai joined #sbcl 2016-04-30T11:37:54Z scymtym_ joined #sbcl 2016-04-30T11:47:44Z sjl joined #sbcl 2016-04-30T11:56:02Z shka quit (Quit: Konversation terminated!) 2016-04-30T11:58:09Z Shinmera- joined #sbcl 2016-04-30T11:59:51Z shka joined #sbcl 2016-04-30T12:01:49Z betheynyx quit (Max SendQ exceeded) 2016-04-30T12:06:28Z Shinmera quit (*.net *.split) 2016-04-30T12:06:29Z chris2 quit (*.net *.split) 2016-04-30T12:09:26Z Shinmera- is now known as Shinmera 2016-04-30T12:14:01Z chris2 joined #sbcl 2016-04-30T12:28:07Z shka quit (Remote host closed the connection) 2016-04-30T12:29:06Z shka joined #sbcl 2016-04-30T12:29:34Z shka quit (Remote host closed the connection) 2016-04-30T12:39:03Z shka joined #sbcl 2016-04-30T12:39:23Z shka quit (Remote host closed the connection) 2016-04-30T12:40:43Z shka joined #sbcl 2016-04-30T12:40:51Z shka quit (Read error: Connection reset by peer) 2016-04-30T12:42:52Z shka joined #sbcl 2016-04-30T12:58:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-30T13:14:21Z betheynyx joined #sbcl 2016-04-30T13:18:19Z scymtym_: when improving bivalent streams, i (and our tests) missed the cases of bivalent streams wrapped in concatenated, two-way, etc. streams. i think this fixes the issue: http://paste.lisp.org/display/315063. any comments? 2016-04-30T13:24:15Z rudolfochrist joined #sbcl 2016-04-30T13:39:50Z fiveop joined #sbcl 2016-04-30T14:43:40Z edgar-rft quit (Quit: edgar-rft) 2016-04-30T15:08:22Z benkard joined #sbcl 2016-04-30T15:55:46Z Carisius quit (Remote host closed the connection) 2016-04-30T15:59:33Z rudolfochrist quit (Ping timeout: 250 seconds) 2016-04-30T16:10:09Z betheynyx quit (Max SendQ exceeded) 2016-04-30T16:22:50Z stassats joined #sbcl 2016-04-30T16:27:12Z stassats quit (Ping timeout: 260 seconds) 2016-04-30T16:27:45Z stassats joined #sbcl 2016-04-30T16:32:06Z stassats quit (Ping timeout: 246 seconds) 2016-04-30T16:32:47Z stassats joined #sbcl 2016-04-30T16:46:35Z gabriel_laddel joined #sbcl 2016-04-30T16:46:38Z scymtym quit (Ping timeout: 276 seconds) 2016-04-30T16:48:40Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-04-30T17:44:14Z attila_lendvai joined #sbcl 2016-04-30T17:44:14Z attila_lendvai quit (Changing host) 2016-04-30T17:44:14Z attila_lendvai joined #sbcl 2016-04-30T17:54:08Z betheynyx joined #sbcl 2016-04-30T18:09:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-04-30T18:10:08Z attila_lendvai joined #sbcl 2016-04-30T18:10:08Z attila_lendvai quit (Changing host) 2016-04-30T18:10:08Z attila_lendvai joined #sbcl 2016-04-30T19:32:30Z angavrilov quit (Remote host closed the connection) 2016-04-30T19:57:53Z betheynyx quit (Max SendQ exceeded) 2016-04-30T20:31:04Z shka quit (Ping timeout: 240 seconds) 2016-04-30T20:38:23Z scymtym joined #sbcl 2016-04-30T20:43:35Z sjl__ joined #sbcl 2016-04-30T20:44:14Z sjl quit (Disconnected by services) 2016-04-30T20:44:18Z sjl__ is now known as sjl 2016-04-30T20:56:19Z gingerale quit (Remote host closed the connection) 2016-04-30T21:44:52Z rszeno joined #sbcl 2016-04-30T22:04:27Z betheynyx joined #sbcl 2016-04-30T22:36:20Z gabriel_laddel quit (Remote host closed the connection) 2016-04-30T23:27:57Z stassats quit (Quit: ZNC 1.6.2+deb1 - http://znc.in) 2016-04-30T23:50:54Z attila_lendvai quit (Ping timeout: 260 seconds)