beneroth changed the topic of #picolisp to: PicoLisp language | The scalpel of software development | Channel Log: https://libera.irclog.whitequark.org/picolisp | Check www.picolisp.com for more information
aw- has joined #picolisp
TeddyDD has quit [Ping timeout: 256 seconds]
beneroth has quit [Ping timeout: 240 seconds]
Guest80 has joined #picolisp
Guest80 has quit [Client Quit]
schulze has quit [Ping timeout: 260 seconds]
razzy has quit [Quit: Lost terminal]
schulze has joined #picolisp
rob_w has joined #picolisp
razzy has joined #picolisp
Hunar has joined #picolisp
<Hunar> Hello :)   .. how to update an html canvas every frame? I modified https://picolisp.com/wiki/?canvasDrawing a little to move the red square on the screen, but it only moves when I click on the canvas or my mouse cursor exits the boundary
<Regenaxer> I'm out and cannot look now, but it is the numeric timeout argument to drawCanvas
<Hunar> Thanks :)  I'll check it out
<Hunar> number 40 worked, I got it from pilbox's canvas example
<Hunar> AAh Dly means delay :)   now it's clear
Hunar has quit [Quit: Client closed]
TeddyDD has joined #picolisp
<Regenaxer> ret
aw- has quit [Quit: Leaving.]
razzy has quit [Ping timeout: 256 seconds]
razzy has joined #picolisp
razzy has quit [Ping timeout: 268 seconds]
razzy has joined #picolisp
rob_w has quit [Quit: Leaving]
razzy has quit [Quit: leaving]
razzy has joined #picolisp
razzy has quit [Quit: Lost terminal]
razzy has joined #picolisp
razzy has quit [Quit: Lost terminal]
Hunar has joined #picolisp
<Hunar> It's very late sorry :( .. I'm having a weird bug ..    I just compiled the latest pil21 on both my pc and termux, the issue is only happening in termux. when I open    pil +)   then enter (symbols
<Hunar>   sorry didn't complete the mesage and hit enter
Hunar has quit [Client Quit]
Hunar has joined #picolisp
Hunar has quit [Client Quit]
Hunar has joined #picolisp
<Hunar> open    pil +     then enter (symbols '(simul pico)) then (setq a 1)   it crashes with segfault ... this doesnt happen on pc , doesnt happen when using pil without +, doesnt happend when using (symbols 'simul 'pico) .. and only happens when the symbol has a lowercase letter in the name, so (setq A 1) is fine but (setq Aa 1) creates segfault
Hunar has quit [Client Quit]
<Regenaxer> Strange
<Regenaxer> (symbols '(simul pico)) without 'simul' loaded?
<Regenaxer> Let't talk next time
Hunar has joined #picolisp
<Hunar> yeah, the simul is not loaded, it may happen with any name but i didn't test .. we will talk tomorrow :)
Hunar has quit [Client Quit]
<Regenaxer> But then it should
<Regenaxer> : (symbols '(simul pico))
<Regenaxer> !? (symbols '(simul pico))
<Regenaxer> simul -- Bad symbol namespace
<Regenaxer> Just for the records: I use here Termux too. I suspect "pil +" starts old pil64 which is still in Termux packages
<Regenaxer> Pil64 did not check for non-existing namespaces
razzy has joined #picolisp
Hunar has joined #picolisp
<Hunar> Yesterday I downloaded the old picolisp from termux packages, I think it was conflicting somehow, i deleted it now its normal again :)
Hunar has quit [Client Quit]
<Regenaxer> 👍👍
<Regenaxer> Yes, of course it conflicts if you call it globally as "pil +", instead of locally as "pil21/pil +" or "../pil21/pil +" etc.