attila_lendvai has quit [Ping timeout: 268 seconds]
comatory_ has quit [Ping timeout: 252 seconds]
attila_lendvai has joined #commonlisp
comatory_ has joined #commonlisp
eddof13 has joined #commonlisp
spacedout has quit [Remote host closed the connection]
thomaslewis has joined #commonlisp
pranavats has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lisp123 has quit [Remote host closed the connection]
son0p has quit [Ping timeout: 268 seconds]
eddof13 has joined #commonlisp
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
Cymew has quit [Ping timeout: 268 seconds]
dlowe has joined #commonlisp
amb007 has joined #commonlisp
karlosz has joined #commonlisp
ec has joined #commonlisp
amb007 has quit [Ping timeout: 268 seconds]
ec has quit [Client Quit]
ec has joined #commonlisp
justDeez is now known as justache
AmateurLisper has joined #commonlisp
avocadoist has quit [Ping timeout: 252 seconds]
AmateurLisper has quit [Read error: Connection reset by peer]
avocadoist has joined #commonlisp
igemnace has quit [Remote host closed the connection]
amb007 has joined #commonlisp
AmateurLisper has joined #commonlisp
amb007 has quit [Ping timeout: 268 seconds]
Devon has joined #commonlisp
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
amb007 has joined #commonlisp
amb007 has quit [Ping timeout: 260 seconds]
karlosz has quit [Quit: karlosz]
karlosz has joined #commonlisp
perrierjouet has joined #commonlisp
thomaslewis has joined #commonlisp
pjb has quit [Ping timeout: 268 seconds]
karlosz has quit [Client Quit]
thomaslewis has left #commonlisp [#commonlisp]
frgo_ has quit [Ping timeout: 252 seconds]
amb007 has joined #commonlisp
ttree has joined #commonlisp
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
amb007 has quit [Ping timeout: 260 seconds]
notzmv has quit [Ping timeout: 268 seconds]
Volt_ has joined #commonlisp
attila_lendvai has quit [Ping timeout: 260 seconds]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
masinter has joined #commonlisp
attila_lendvai has joined #commonlisp
Noisytoot has quit [Ping timeout: 260 seconds]
tane has joined #commonlisp
tane has quit [Changing host]
tane has joined #commonlisp
Noisytoot has joined #commonlisp
orestarod has joined #commonlisp
Volt_ has quit [Ping timeout: 268 seconds]
Volt_ has joined #commonlisp
pjb has joined #commonlisp
attila_lendvai has quit [Ping timeout: 252 seconds]
attila_lendvai has joined #commonlisp
avocadoist has quit [Ping timeout: 260 seconds]
avocadoist has joined #commonlisp
ns12 has quit [Quit: bye]
ns12 has joined #commonlisp
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
thomaslewis has joined #commonlisp
morganw has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
avocadoist has quit [Remote host closed the connection]
karlosz has joined #commonlisp
totoro has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in]
qhong_ is now known as qhong
Lord_of_Life_ has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 252 seconds]
totoro has joined #commonlisp
totoro has joined #commonlisp
totoro has quit [Changing host]
Lord_of_Life_ is now known as Lord_of_Life
eddof13 has joined #commonlisp
causal has quit [Quit: WeeChat 3.6]
morganw has quit [Read error: Connection reset by peer]
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
tyson2 has quit [Remote host closed the connection]
azimut has joined #commonlisp
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
random-jellyfish has joined #commonlisp
triffid has quit [Remote host closed the connection]
totoro has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in]
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
totoro has joined #commonlisp
comatory_ has quit [Ping timeout: 260 seconds]
masinter has quit [Ping timeout: 255 seconds]
notzmv has joined #commonlisp
masinter has joined #commonlisp
comatory_ has joined #commonlisp
morganw has joined #commonlisp
jeosol has joined #commonlisp
orestarod has quit [Ping timeout: 268 seconds]
comatory_ has quit [Ping timeout: 260 seconds]
comatory_ has joined #commonlisp
Guest49 has joined #commonlisp
orestarod has joined #commonlisp
<mathrick>
there's no way to declare an argument ignored directly in the lambda list, is there. I have to use (DECLARE (IGNORE FOO)), right?
tane has quit [Quit: Leaving]
<_death>
correct
Volt_ has quit [Ping timeout: 268 seconds]
<pjb>
mathrick: (compile nil '(lambda (ignored &aux (not-really ignored)) 42)) #| --> #<Anonymous Function #x3020076FBC5F> ; t ; nil |# sbcl produces a Note: Removing unused variable NOT-REALLY but the other implementations don't say anything.
<pjb>
mathrick: another way to do it would be: (defvar *ignored*) (compile nil '(lambda (*ignored*) 42)) ; because a dynamic variables could always be used elsewhere.
<mathrick>
right, it will still produce the same warnings just having IGNORED in the lambda list would, so that doesn't buy me much
<pjb>
There, even sbcl doesn't say anything.
<mathrick>
but in this particular case, &KEY &ALLOW-OTHER-KEYS was the easiest way out
Volt_ has joined #commonlisp
<mathrick>
well, the DEFVAR thing is dirty, I was talking about &AUX :)
<pjb>
So of course, if you change the problem statement…
<pjb>
key parameters are very different.
random-jellyfish has quit [Quit: Client closed]
random-jellyfish has joined #commonlisp
cage has quit [Quit: rcirc on GNU Emacs 27.1]
remexre has quit [Remote host closed the connection]
remexre has joined #commonlisp
pjb has quit [Ping timeout: 268 seconds]
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
Guest5623 has quit [Quit: WeeChat 3.6]
waleee has joined #commonlisp
remexre has quit [Ping timeout: 248 seconds]
remexre has joined #commonlisp
remexre has quit [Remote host closed the connection]
remexre has joined #commonlisp
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
remexre has quit [Remote host closed the connection]
remexre has joined #commonlisp
remexre has quit [Remote host closed the connection]
remexre has joined #commonlisp
remexre has quit [Remote host closed the connection]
remexre has joined #commonlisp
zyni-moe has joined #commonlisp
Volt_ has quit [Ping timeout: 252 seconds]
remexre has quit [Remote host closed the connection]
Volt_ has joined #commonlisp
remexre has joined #commonlisp
remexre has quit [Remote host closed the connection]
remexre has joined #commonlisp
_cymew_ has quit [Ping timeout: 268 seconds]
random-jellyfish has quit [Quit: Client closed]
tyson2 has joined #commonlisp
comatory_ has quit [Ping timeout: 268 seconds]
zyni-moe has quit [Quit: died]
zyni-moe has joined #commonlisp
comatory_ has joined #commonlisp
zyni-moe has quit [Client Quit]
anticomputer has quit [Remote host closed the connection]
pve has quit [Quit: leaving]
anticomputer has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
mariari has quit [Ping timeout: 268 seconds]
tane has joined #commonlisp
tane has quit [Changing host]
tane has joined #commonlisp
mariari has joined #commonlisp
anticomputer has quit [Ping timeout: 268 seconds]
notzmv has quit [Ping timeout: 268 seconds]
anticomputer has joined #commonlisp
shka has quit [Ping timeout: 260 seconds]
ec has quit [Ping timeout: 268 seconds]
azimut_ has joined #commonlisp
azimut has quit [Ping timeout: 268 seconds]
ec has joined #commonlisp
pok has quit [Ping timeout: 255 seconds]
tane has quit [Quit: Leaving]
sjl has quit [Quit: WeeChat 3.6]
dlowe has quit [Ping timeout: 244 seconds]
masinter has quit [Remote host closed the connection]
masinter has joined #commonlisp
weitosh has joined #commonlisp
azimut_ has quit [Ping timeout: 268 seconds]
anticomputer_ has joined #commonlisp
dlowe has joined #commonlisp
azimut has joined #commonlisp
anticomputer has quit [Remote host closed the connection]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karlosz has quit [Quit: Client closed]
azimut_ has joined #commonlisp
ober has joined #commonlisp
azimut has quit [Ping timeout: 268 seconds]
* ober
hunts for an alternative to jonathan
epony has quit [Quit: QUIT]
random-nick has quit [Ping timeout: 260 seconds]
<ober>
shasht it is.
<jcowan>
I think it's called fafnir nowadays
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
masinter has quit [Read error: Connection reset by peer]
thomaslewis has joined #commonlisp
thomaslewis has left #commonlisp [#commonlisp]
<yitzi>
Ha!!!
<yitzi>
jcowan: Nice one.
* jcowan
blushes
anticomputer_ has quit [Remote host closed the connection]
thomaslewis has joined #commonlisp
anticomputer has joined #commonlisp
eddof13 has joined #commonlisp
eddof13 has quit [Client Quit]
thomaslewis has left #commonlisp [#commonlisp]
orestarod has quit [Ping timeout: 268 seconds]
epony has joined #commonlisp
morganw has quit [Remote host closed the connection]