mksybr has quit [Remote host closed the connection]
jack_rabbit has joined #lisp
osieln has quit [Quit: leaving]
phoe has joined #lisp
Lycurgus has joined #lisp
Kundry_Wag has joined #lisp
nowhere_man has joined #lisp
msb has quit [Quit: ENOENT]
Kundry_Wag has quit [Ping timeout: 250 seconds]
Oladon has joined #lisp
anewuser has joined #lisp
Selwyn has quit [Remote host closed the connection]
rumbler31 has joined #lisp
rumbler31 has quit [Ping timeout: 246 seconds]
keep_learning has joined #lisp
Kundry_Wag has joined #lisp
hectorhonn has joined #lisp
<hectorhonn>
morning everyone
Kundry_Wag has quit [Ping timeout: 244 seconds]
smokeink has joined #lisp
<notzmv>
morning hectorhonn
c4droid has joined #lisp
<c4droid>
Good morning. :)
smokeink has quit [Remote host closed the connection]
smokeink has joined #lisp
smokeink has quit [Remote host closed the connection]
c4droid has left #lisp [#lisp]
c4droid has joined #lisp
c4droid has left #lisp [#lisp]
didi has joined #lisp
verisimilitude has quit [Remote host closed the connection]
verisimilitude has joined #lisp
pierpal has quit [Read error: Connection reset by peer]
pierpal has joined #lisp
pierpal has quit [Ping timeout: 240 seconds]
slightlycyborg has quit [Ping timeout: 240 seconds]
Oladon has quit [Quit: Leaving.]
pierpal has joined #lisp
dale has quit [Quit: dale]
pierpal has quit [Read error: Connection reset by peer]
pierpal has joined #lisp
Kundry_Wag has joined #lisp
pierpal has quit [Read error: Connection reset by peer]
Kundry_Wag has quit [Ping timeout: 245 seconds]
space_otter has joined #lisp
makomo has quit [Ping timeout: 250 seconds]
pierpal has joined #lisp
Lycurgus has quit [Quit: Exeunt]
pierpal has quit [Ping timeout: 250 seconds]
pierpal has joined #lisp
Kundry_Wag has joined #lisp
jack_rabbit has quit [Ping timeout: 240 seconds]
esrse has joined #lisp
pierpal has quit [Read error: Connection reset by peer]
robotoad has joined #lisp
Kundry_Wag has quit [Ping timeout: 268 seconds]
undiscovered has quit [Remote host closed the connection]
Essadon has quit [Quit: Qutting]
pierpal has joined #lisp
anewuser has quit [Ping timeout: 240 seconds]
akoana has left #lisp ["Leaving"]
dddddd has quit [Remote host closed the connection]
iovec has quit [Quit: Connection closed for inactivity]
pierpal has quit [Ping timeout: 268 seconds]
shifty has joined #lisp
krwq has joined #lisp
Kundry_Wag has joined #lisp
dale has joined #lisp
Kundry_Wag has quit [Ping timeout: 246 seconds]
Lord_of_Life has quit [Ping timeout: 272 seconds]
Lord_of_Life_ has joined #lisp
Lord_of_Life_ is now known as Lord_of_Life
pierpal has joined #lisp
shifty has quit [Ping timeout: 246 seconds]
orivej has quit [Ping timeout: 244 seconds]
pierpal has quit [Read error: Connection reset by peer]
pierpal has joined #lisp
actuallybatman has quit [Read error: Connection reset by peer]
<beach>
Good morning everyone!
pierpal has quit [Read error: Connection reset by peer]
pierpal has joined #lisp
zhlyg has joined #lisp
Kundry_Wag has joined #lisp
Kundry_Wag has quit [Ping timeout: 250 seconds]
xrash has quit [Ping timeout: 246 seconds]
Khisanth has quit [Ping timeout: 240 seconds]
Bike has quit [Quit: Lost terminal]
Kundry_Wag has joined #lisp
gravicappa has joined #lisp
sauvin has joined #lisp
Kundry_Wag has quit [Ping timeout: 268 seconds]
Khisanth has joined #lisp
Oladon has joined #lisp
sabrac has joined #lisp
<sabrac>
anyone have intermittant getaddrinfo errors with ccl and bordeaux threads? I have not seen it triggered in sbcl on the same code (dao-class-threads test in postmodern-tests)
<Bike>
i don't know how you would coherently parse it if you could have optional arguments after the key arguments, anyway.
varjag has quit [Quit: ERC (IRC client for Emacs 26.1)]
<vms14>
The problem is that if a caller doesn't supply values for all the optional parameters, then those parameters will eat up the keywords and values intended for the keyword parameters.
<vms14>
Thanks so much
<vms14>
well, this explains why I must to put the keyword arguments before the optional ones, but not why it fails
hiroaki has joined #lisp
<vms14>
I'll just avoid to mix &key and optional since there is no reason to use them toghether
<vms14>
together*
<vms14>
ty for the fast answer
Lycurgus has quit [Quit: Exeunt]
<vms14>
I like to test things and try to understand why they happen
<vms14>
if (eq(key, CAR(parms))) { parms = CDR(parms); while (CONS_P(parms)) { if (eq(opt, CAR(parms))) { write_format(standard_error, "Lambda list marker &OPTIONAL not allowed here.\n"); exit(1);
<vms14>
(open "\*\") xD how dumb I am scaping the quotes and thinking it's reading
<pjb>
It is reading.
<pjb>
Also, (string= "\*" "*") #| --> t |#
frodef has quit [Ping timeout: 240 seconds]
<jasom>
drmeister: Don't worry for all 3 lisp implementations I tried various tricks on, several years ago, I was able to come up with a file for which cl:directory would return a pathname that OPEN could not then open. I didn't try ECL, so never filed a bug :(
akoana has joined #lisp
<jasom>
The two characters that were involved were backslash and asterisk; one implementation would let you escape asterisks, but when you did a directory would not return a doubly-escaped backslash (so e.g. a file named '\*' would return a pathname that would open '*') and the other one was cl:directory not quoting '*' characters in pathnames, so a file named '*' would end up as a wild pathname.