Subscribe

2012-10-23 Thread Axel Svensson
Hello Axel Svensson svenssona...@gmail.com :-) You are now subscribed -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Meta key in PicoLisp program

2012-10-23 Thread Thorsten Jolitz
Hi List, how would I write a - Meta/Alt key - AltGr key in a PicoLisp program? E.g. if I want to write AltV (M-V or M-S-v in Emacs) CtrlALTV (C-M-V or C-M-S-v in Emacs) instead of something like this (CtrlV): ,--- | (^V (insChar (key))) `--- --

bug in daemon?

2012-10-23 Thread Axel Svensson
Hi! I noticed the 'daemon function does a fine job distinguishing builtin C functions from lisp functions. However, it redefines the function to evaluate all arguments, rather than letting the function decide for itself. Here is an example transcript: : (setq a 3) - 3 : (while (gt0 (dec 'a))

Re: Meta key in PicoLisp program

2012-10-23 Thread Alexander Burger
Hi Thorsten, AltV (M-V or M-S-v in Emacs) CtrlALTV (C-M-V or C-M-S-v in Emacs) instead of something like this (CtrlV): Unfortunately, this is not directly possible. Alt/Meta key combinations have no representation in ASCII or UTF-8. Instead, they are generated as events by the runtime