On Sun, Jan 05, 2025 at 06:50:17AM +0100, Alexander Burger wrote:
> In some other project I used this:
> 
>    (de getPw ()
>       (pack
>          (make
>             (until (sub? (setq C (key)) "^J^M")
>                ...

This was out of context, originally not a separate function but inline
in the other code.

More correct would be to 'use' C locally:

   (de getPw ()
      (pack
         (make
            (use C
               (until (sub? (setq C (key)) "^J^M")
                  ...

☺/ A!ex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Reply via email to