() Ian Price
() Sun, 30 Oct 2011 00:09:21 +0100
Anyone got any hints on where I should be looking?
See ‘process-connection-type’ (info "(elisp) Asynchronous Processes").
Ian Price writes:
> l...@gnu.org (Ludovic Courtès) writes:
>
>> Could you see if you can find a way to reproduce the problem?
> Actually, this turns out to be an issue with geiser not guile. Sorry
> about that.
Well, it's not fair to just blame geiser, it's the same if I run guile
in M-x shell,
l...@gnu.org (Ludovic Courtès) writes:
> Could you see if you can find a way to reproduce the problem?
Actually, this turns out to be an issue with geiser not guile. Sorry
about that.
--
Ian Price
"Programming is like pinball. The reward for doing it well is
the opportunity to do it again" - fr
Hi,
"Pavel V. Kaygorodov" skribis:
> My library has many (~80) symbols to export and I facing with strange
> problem when adding a new symbols to the export list -- some other
> symbols becomes "undefined" for a program using my library. Does
> guile-2 limit the number of exported symbols for l
Hi,
Ian Price skribis:
> Although, and I don't think this is related to your issue, when
> trying out the (list sym0 ...) from the repl, I did get an error
>
> scheme@(guile−user)> (list sym0 sym1 ... sym100 sym101)
> ;;; :3:0: warning: possibly unbound variable `sy'
> ;;; :3:0: warning: possibl
"Pavel V. Kaygorodov" writes:
> Does guile-2 limit the number of exported symbols for libraries?
I decided to generate a file with ~100 definitions.
; manysyms.scm
(define-module (manysyms)
#:export (sym0 sym1 ... sym101))
(define sym0 'sym0)
(define sym1 'sym1)
...
(define sym101 'sym101)
Hi!
My library has many (~80) symbols to export and I facing with strange problem
when adding a new symbols to the export list -- some other symbols becomes
"undefined" for a program using my library.
Does guile-2 limit the number of exported symbols for libraries?
WBR,
Pavel.