From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: doco error key indexing Date: Sat, 10 May 2003 11:17:43 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87u1c3siq0.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1052529483 29930 80.91.224.249 (10 May 2003 01:18:03 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 10 May 2003 01:18:03 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat May 10 03:18:02 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19EIzy-0007mc-00 for ; Sat, 10 May 2003 03:18:02 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19EJ0c-000885-04 for guile-devel@m.gmane.org; Fri, 09 May 2003 21:18:42 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19EJ08-0007wL-00 for guile-devel@gnu.org; Fri, 09 May 2003 21:18:12 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19EJ06-0007w5-00 for guile-devel@gnu.org; Fri, 09 May 2003 21:18:11 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19EJ00-0007ir-00 for guile-devel@gnu.org; Fri, 09 May 2003 21:18:04 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h4A1I1Pc017772 for ; Sat, 10 May 2003 11:18:01 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h4A1I1Qg002403 for ; Sat, 10 May 2003 11:18:01 +1000 (EST) Original-Received: from localhost (ppp60.dyn228.pacific.net.au [203.143.228.60]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h4A1HwYa021148 for ; Sat, 10 May 2003 11:18:00 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19EIzg-0005Zz-00; Sat, 10 May 2003 11:17:44 +1000 Original-To: guile-devel@gnu.org User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2314 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2314 --=-=-= FYI, I made this change * scheme-control.texi (Handling Errors): Index entries for error keys. --=-=-= Content-Disposition: attachment; filename=scheme-control.texi.error-index.diff --- scheme-control.texi.~1.7.~ 2003-05-09 16:27:52.000000000 +1000 +++ scheme-control.texi 2003-05-10 11:13:52.000000000 +1000 @@ -894,40 +894,50 @@ @itemize @bullet @item +@cindex @code{error-signal} @code{error-signal}: thrown after receiving an unhandled fatal signal such as SIGSEGV, SIGBUS, SIGFPE etc. The @var{rest} argument in the throw contains the coded signal number (at present this is not the same as the usual Unix signal number). @item +@cindex @code{system-error} @code{system-error}: thrown after the operating system indicates an error condition. The @var{rest} argument in the throw contains the errno value. @item +@cindex @code{numerical-overflow} @code{numerical-overflow}: numerical overflow. @item +@cindex @code{out-of-range} @code{out-of-range}: the arguments to a procedure do not fall within the accepted domain. @item +@cindex @code{wrong-type-arg} @code{wrong-type-arg}: an argument to a procedure has the wrong type. @item +@cindex @code{wrong-number-of-args} @code{wrong-number-of-args}: a procedure was called with the wrong number of arguments. @item +@cindex @code{memory-allocation-error} @code{memory-allocation-error}: memory allocation error. @item +@cindex @code{stack-overflow} @code{stack-overflow}: stack overflow error. @item +@cindex @code{regex-error} @code{regex-error}: errors generated by the regular expression library. @item +@cindex @code{misc-error} @code{misc-error}: other errors. @end itemize --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--