2016-06-17T00:16:04Z ASau quit (Ping timeout: 252 seconds) 2016-06-17T00:24:33Z DeadTrickster joined #sbcl 2016-06-17T01:23:41Z edgar-rft quit (Quit: edgar-rft) 2016-06-17T01:32:40Z dougk__ joined #sbcl 2016-06-17T01:33:14Z dougk__: (let ((*print-base* 3)) (makunbound '*print-base*)) is an error, but (progv '(*print-base*) nil (boundp '*print-base*)) => NIL. Is that deliberate ? 2016-06-17T02:38:48Z irsol quit (Ping timeout: 244 seconds) 2016-06-17T02:51:58Z clop joined #sbcl 2016-06-17T02:52:29Z clop quit (Client Quit) 2016-06-17T02:52:53Z clop joined #sbcl 2016-06-17T02:58:32Z irsol joined #sbcl 2016-06-17T03:02:44Z clop quit (Quit: This computer has gone to sleep) 2016-06-17T03:06:12Z DeadTrickster quit (Quit: Leaving) 2016-06-17T03:06:32Z DeadTrickster joined #sbcl 2016-06-17T03:42:34Z leo_song quit (Excess Flood) 2016-06-17T03:42:53Z leo_song joined #sbcl 2016-06-17T04:09:46Z shka joined #sbcl 2016-06-17T04:28:20Z minion quit (Disconnected by services) 2016-06-17T04:28:23Z minion joined #sbcl 2016-06-17T04:31:26Z DougNYC quit 2016-06-17T05:22:58Z dougk___ joined #sbcl 2016-06-17T05:26:02Z dougk__ quit (Ping timeout: 272 seconds) 2016-06-17T06:11:24Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-06-17T06:15:19Z DeadTrickster quit (Ping timeout: 250 seconds) 2016-06-17T06:55:56Z DavidGuru joined #sbcl 2016-06-17T07:05:19Z angavrilov joined #sbcl 2016-06-17T07:35:34Z attila_lendvai joined #sbcl 2016-06-17T07:35:34Z attila_lendvai quit (Changing host) 2016-06-17T07:35:34Z attila_lendvai joined #sbcl 2016-06-17T07:43:24Z scymtym joined #sbcl 2016-06-17T08:10:25Z dougk___ quit (Ping timeout: 260 seconds) 2016-06-17T09:12:08Z edgar-rft joined #sbcl 2016-06-17T09:13:36Z scymtym_ joined #sbcl 2016-06-17T09:15:45Z scymtym quit (Ping timeout: 260 seconds) 2016-06-17T09:54:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-17T10:05:27Z scymtym_ quit (Ping timeout: 246 seconds) 2016-06-17T10:20:18Z attila_lendvai joined #sbcl 2016-06-17T10:20:18Z attila_lendvai quit (Changing host) 2016-06-17T10:20:18Z attila_lendvai joined #sbcl 2016-06-17T10:40:19Z stassats joined #sbcl 2016-06-17T10:44:52Z stassats quit (Ping timeout: 264 seconds) 2016-06-17T10:45:42Z stassats joined #sbcl 2016-06-17T11:19:41Z scymtym joined #sbcl 2016-06-17T11:43:16Z DGASAU quit (Read error: Connection reset by peer) 2016-06-17T11:43:47Z DGASAU joined #sbcl 2016-06-17T11:56:52Z clop joined #sbcl 2016-06-17T12:06:09Z edgar-rft quit (Quit: edgar-rft) 2016-06-17T12:23:37Z clop quit (Quit: This computer has gone to sleep) 2016-06-17T12:25:49Z eudoxia joined #sbcl 2016-06-17T12:32:38Z shka quit (Ping timeout: 244 seconds) 2016-06-17T12:34:24Z clop joined #sbcl 2016-06-17T12:36:56Z dougk__ joined #sbcl 2016-06-17T12:44:03Z dougk__ quit (Ping timeout: 240 seconds) 2016-06-17T12:54:44Z clop quit (Quit: This computer has gone to sleep) 2016-06-17T13:02:33Z DavidGuru quit (Remote host closed the connection) 2016-06-17T13:13:01Z clop joined #sbcl 2016-06-17T13:19:16Z abruanese quit (Ping timeout: 252 seconds) 2016-06-17T13:31:58Z edgar-rft joined #sbcl 2016-06-17T13:49:29Z nzambe joined #sbcl 2016-06-17T13:53:39Z dougk__ joined #sbcl 2016-06-17T13:58:01Z stassats: (let ((list (make-list 79))) (union list list)) => (NIL NIL NIL NIL NIL NIL NIL .. NIL) 2016-06-17T13:58:09Z stassats: (let ((list (make-list 80))) (union list list)) => (NIL) 2016-06-17T13:58:41Z stassats: making the 80 case the same would make things faster 2016-06-17T14:02:25Z clop quit (Quit: This computer has gone to sleep) 2016-06-17T14:04:03Z jdz: why is not the first result just (nil)? 2016-06-17T14:04:15Z stassats: because it's different 2016-06-17T14:05:14Z jdz: i'm confused, apparently 2016-06-17T14:05:43Z jdz: but both list contain only nil 2016-06-17T14:05:58Z stassats: the code is different, not the lists 2016-06-17T14:07:17Z jdz: i'd expect (union '(a a) '(a a)) to return (a) 2016-06-17T14:07:41Z stassats: you'd be wrong 2016-06-17T14:07:47Z jdz: well, obviously 2016-06-17T14:08:05Z stassats: (a) would be a right answer, but your expectation would be wrong 2016-06-17T14:11:23Z jdz: well, '(a a) is not a set 2016-06-17T14:11:39Z jdz: and the CLHS says "For all possible ordered pairs consisting of one element from list-1 and one element from list-2" 2016-06-17T14:11:54Z jdz: that explains things, time to alter my expectations 2016-06-17T14:12:39Z stassats: it actually says "If either list-1 or list-2 has duplicate entries within it, the redundant entries might or might not appear in the result." 2016-06-17T14:13:17Z dougk__ quit (Ping timeout: 250 seconds) 2016-06-17T14:13:23Z jdz: right, i did not read that far yet 2016-06-17T14:16:29Z jdz: i can see how my expectation would actually surprise myself in case where key function is provided (different entries returning same key values) 2016-06-17T14:17:19Z stassats: just don't use multisets then 2016-06-17T14:18:16Z jdz: right 2016-06-17T14:18:31Z jdz: sorry for the distraction 2016-06-17T14:25:31Z stassats: now test-not confuses me 2016-06-17T14:25:52Z stassats: (list (nunion '(1 2 3) '(3 2) :test-not #'=) (nunion '(3 2) '(1 2 3) :test-not #'=)) => ((3 2) (1 2 3)) on CCL 2016-06-17T14:26:01Z stassats: ((3 2) (3 2)) on SBCL 2016-06-17T14:28:05Z stassats: most implementations actually return ((3 2) (1 2 3)) 2016-06-17T14:28:47Z stassats: does that make 1 a duplicate then? 2016-06-17T14:29:59Z stassats: ok, i guess i'm no longer confused 2016-06-17T15:07:13Z dougk__ joined #sbcl 2016-06-17T15:30:10Z irsol quit (Ping timeout: 252 seconds) 2016-06-17T15:31:38Z irsol joined #sbcl 2016-06-17T15:42:02Z DavidGuru joined #sbcl 2016-06-17T15:45:34Z stassats: ugh, deriving the type of NUNION makes it unused and produce a warning about discarding a destructed result 2016-06-17T15:52:57Z dougk__ quit (Ping timeout: 249 seconds) 2016-06-17T16:09:27Z scymtym_ joined #sbcl 2016-06-17T16:11:05Z scymtym quit (Ping timeout: 260 seconds) 2016-06-17T16:23:02Z dougk__ joined #sbcl 2016-06-17T16:40:04Z karswell quit (Remote host closed the connection) 2016-06-17T16:40:20Z karswell joined #sbcl 2016-06-17T17:01:50Z dougk__ quit (Ping timeout: 250 seconds) 2016-06-17T17:31:53Z DeadTrickster joined #sbcl 2016-06-17T17:39:03Z dougk__ joined #sbcl 2016-06-17T17:42:01Z DavidGuru quit (Quit: DavidGuru) 2016-06-17T18:00:33Z eudoxia quit (Quit: Leaving) 2016-06-17T18:09:52Z dougk__ quit (Ping timeout: 250 seconds) 2016-06-17T18:16:38Z dougk__ joined #sbcl 2016-06-17T18:21:08Z dougk__ quit (Ping timeout: 250 seconds) 2016-06-17T18:40:52Z stassats: corrupt fasl file: FOP code #x6E 2016-06-17T18:40:58Z stassats: when building contribs on arm64 2016-06-17T18:41:00Z stassats: strange 2016-06-17T18:44:30Z aeth quit (Ping timeout: 260 seconds) 2016-06-17T18:46:18Z aeth joined #sbcl 2016-06-17T18:46:26Z stassats: loading def-to-lisp 2016-06-17T18:46:37Z stassats: from sb-grovel, it's actually from may 22 2016-06-17T18:46:47Z stassats: ok, how come it didn't get deleted? 2016-06-17T18:47:56Z stassats: ok, i was looking at the wrong screen window, there is indeed dont_clean_sbcl_contrib set 2016-06-17T19:15:44Z scymtym_ quit (Ping timeout: 250 seconds) 2016-06-17T19:48:02Z shka joined #sbcl 2016-06-17T19:50:19Z dougk__ joined #sbcl 2016-06-17T20:04:42Z dougk__ quit (Ping timeout: 250 seconds) 2016-06-17T20:05:44Z dougk_ quit (Remote host closed the connection) 2016-06-17T20:31:57Z trinque joined #sbcl 2016-06-17T20:35:01Z scymtym joined #sbcl 2016-06-17T20:43:48Z shka quit (Ping timeout: 244 seconds) 2016-06-17T20:54:34Z slyrus quit (Remote host closed the connection) 2016-06-17T21:06:22Z eudoxia joined #sbcl 2016-06-17T21:58:09Z DougNYC joined #sbcl 2016-06-17T22:03:09Z eudoxia_ joined #sbcl 2016-06-17T22:06:34Z eudoxia quit (Ping timeout: 240 seconds) 2016-06-17T22:14:16Z DeadTrickster quit (Ping timeout: 250 seconds) 2016-06-17T22:17:45Z DeadTrickster joined #sbcl 2016-06-17T22:51:14Z angavrilov quit (Remote host closed the connection) 2016-06-17T22:51:38Z eudoxia_ quit (Remote host closed the connection) 2016-06-17T23:15:39Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-06-17T23:39:51Z whiteline quit (Remote host closed the connection) 2016-06-17T23:41:26Z whiteline joined #sbcl 2016-06-17T23:45:03Z eudoxia joined #sbcl