<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Thanks a lot, it works well.<br>
<br>
Greetings,<br>
<br>
Nicolas<br>
<br>
Ico Doornekamp a &eacute;crit&nbsp;:
<blockquote cite="mid:20080805184753.GP3653@pruts.nl" type="cite">
  <pre wrap="">
* On 2008-08-05 Nicolas Montgermont <a class="moz-txt-link-rfc2396E" href="mailto:nicolas_montgermont@yahoo.fr">&lt;nicolas_montgermont@yahoo.fr&gt;</a> wrote  :

  </pre>
  <blockquote type="cite">
    <pre wrap="">Hi Claude adn list,

Back again with my spelling function written in lua. I've got a problem 
in the terminal sometimes (pretty often in fact) :

error: lua: error in dispatcher:
[string "lspell"]:13: echo fhdkq | /sw/bin/ispell -a | grep \\*: Too 
many open files

when using my object "lspell.pd_lua", feeding the inlet with [symbol 
fhdkq( for example.
When this error appears the object is not working. This error occurs in 
groups : appearing for 5-20 seconds and disappearing for 10 - 60 seconds.
What exactly is this error?
    </pre>
  </blockquote>
  <pre wrap=""><!---->
You are not closing the pipe explicitly, and this causes a big pile of
open file descriptors. Because the file descriptor is no longer
referenced as it leaves the scope of your function, the garbage
collector eventually comes along and collects the fd, closing the pipe
on the fly.

The proper solution is to close the pipe when you're done, using
p:close()

  </pre>
</blockquote>
<br>
<div class="moz-signature">-- <br>
<a class="moz-txt-link-freetext" href="http://nim.on.free.fr">http://nim.on.free.fr</a></div>
</body>
</html>