yewscion has quit [Read error: Connection reset by peer]
yewscion has joined #commonlisp
NotThatRPG has joined #commonlisp
perrierjouet has quit [Quit: WeeChat 4.0.2]
perrierjouet has joined #commonlisp
NotThatRPG has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
habamax has joined #commonlisp
rainthree has joined #commonlisp
triffid has quit [Remote host closed the connection]
triffid has joined #commonlisp
triffid has quit [Remote host closed the connection]
rainthree has quit [Ping timeout: 245 seconds]
triffid has joined #commonlisp
masinter has quit [Ping timeout: 264 seconds]
masinter has joined #commonlisp
tibfulv has quit [Read error: Connection reset by peer]
tibfulv has joined #commonlisp
triffid has quit [Remote host closed the connection]
triffid has joined #commonlisp
Cymew has joined #commonlisp
rainthree has joined #commonlisp
kenran has joined #commonlisp
rainthree has quit [Ping timeout: 246 seconds]
seok has quit [Quit: Client closed]
seok has joined #commonlisp
habamax has quit [Ping timeout: 245 seconds]
rtypo has quit [Ping timeout: 264 seconds]
igemnace has joined #commonlisp
habamax has joined #commonlisp
yewscion has quit [Remote host closed the connection]
bendersteed has joined #commonlisp
Harriet has joined #commonlisp
LW has joined #commonlisp
Krystof has joined #commonlisp
shka has joined #commonlisp
habamax has quit [Remote host closed the connection]
Lord_of_Life has joined #commonlisp
rainthree has joined #commonlisp
pve has joined #commonlisp
msavoritias has joined #commonlisp
attila_lendvai has joined #commonlisp
rainthree has quit [Read error: Connection reset by peer]
rainthree has joined #commonlisp
dino_tutter has joined #commonlisp
jrx has joined #commonlisp
rendar has joined #commonlisp
rendar has joined #commonlisp
attila_lendvai has quit [Read error: Connection reset by peer]
attila_lendvai has joined #commonlisp
habamax has joined #commonlisp
attila_lendvai has quit [Quit: Leaving]
Lord_of_Life_ has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 246 seconds]
Lord_of_Life_ is now known as Lord_of_Life
LW has quit [Quit: WeeChat 3.8]
attila_lendvai has joined #commonlisp
jrx has quit [Quit: ERC (IRC client for Emacs 27.2)]
attila_lendvai has quit [Read error: Connection reset by peer]
Brucio-61 has quit [Ping timeout: 245 seconds]
even4void has joined #commonlisp
Brucio-61 has joined #commonlisp
triffid has quit [Remote host closed the connection]
triffid has joined #commonlisp
edgar-rft has quit [Quit: Leaving]
perrierjouet has quit [Quit: WeeChat 4.0.2]
perrierjouet1 has joined #commonlisp
beach` has joined #commonlisp
beach has quit [Ping timeout: 240 seconds]
beach` is now known as beach
seanw has quit [Remote host closed the connection]
Equill has joined #commonlisp
seanw has joined #commonlisp
random-nick has joined #commonlisp
semarie has quit [Remote host closed the connection]
semarie has joined #commonlisp
perrierjouet1 has quit [Quit: WeeChat 4.0.2]
perrierjouet has joined #commonlisp
MajorBiscuit has joined #commonlisp
kenran has quit [Remote host closed the connection]
seok has quit [Quit: Client closed]
seok has joined #commonlisp
ronald has quit [Ping timeout: 244 seconds]
jmd_ has quit [Ping timeout: 246 seconds]
jryans has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 244 seconds]
tevo has quit [Ping timeout: 244 seconds]
GnarledHorn has quit [Remote host closed the connection]
MajorBiscuit has joined #commonlisp
GnarledHorn has joined #commonlisp
tevo has joined #commonlisp
NotThatRPG has joined #commonlisp
mi6x3m has joined #commonlisp
<mi6x3m>
hey, is there a way to "load" something without changing the package to it?
<mi6x3m>
if it contains a "use-package" inside
<mi6x3m>
sorry, "in-package"
<beach>
Do you want the in-package to not take effect?
<mi6x3m>
yes
azimut has joined #commonlisp
<beach>
That's a pretty strange thing to want to do.
<mi6x3m>
i want it to take effect for the defined package
<mi6x3m>
but not to override the loading context
<mi6x3m>
so, in-package "foo", load "boo.lisp" should stay in foo
<mi6x3m>
although boo does in-package #:boo
<semarie>
keep *package* content somewhere, and call (in-package previous-package) ?
<mi6x3m>
I could yeah
<mi6x3m>
yeah let me do it like that
<mi6x3m>
brb
mi6x3m has quit [Quit: Leaving]
<beach>
semarie: You mean modify boo.lisp?
lucasta has joined #commonlisp
lucasta has quit [Remote host closed the connection]
lucasta has joined #commonlisp
<bike>
LOAD rebinds *package*, so you'll stay in foo without anything special
<beach>
bike: I think what was meant was for the code in the file to be loaded with a different current package than what the in-package form says.
seok has quit [Quit: Client closed]
seok has joined #commonlisp
<beach>
<beach> Do you want the in-package to not take effect?
<beach>
<mi6x3m> yes
<bike>
well, i'm not sure. "not to override the loading context" sounds like not changing *package* outside of the loader to me. but it's pretty hard to decode this
tevo has quit [Ping timeout: 264 seconds]
tevo has joined #commonlisp
<beach>
Indeed.
<doulos05>
I'm still working on trying to get that binary distribution for Linux, I'm currently getting an error about a missing file.
<doulos05>
It's a ttf file bundled in cl-dejavu, used by McCLIM. It's looking in the absolute path on the Github runner that's building the binary.
<semarie>
beach: no, around LOAD. but if LOAD rebinds *package* as bike said, it shouldn't be needed.
tevo has quit [Ping timeout: 250 seconds]
<semarie>
and now, I am seeing "load binds *readtable* and *package* to the values they held before loading the file." in the spec.
tevo has joined #commonlisp
<beach>
I am still interpreting the request as wanting the contents of the file to be loaded with a different package being current than the one indicated in IN-PACKAGE.
<beach>
Otherwise, because of *PACKAGE* being rebound, I don't see the reason for the request.
habamax has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.1)]
<doulos05>
Ok, just looking through the api provided by Quicklisp, I think ql:bundle-systems would solve the problem. But I don't see how to get a list of my system's dependencies.
<doulos05>
I'd like to run something like (ql:bundle-systems (system-depends-on :my-system-name) :to #"~/ext_libs")