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: char-ready?, peek-char docstring footnotes Date: Tue, 08 Jul 2003 07:58:35 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87smpingms.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1057615686 15346 80.91.224.249 (7 Jul 2003 22:08:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 7 Jul 2003 22:08:06 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Jul 08 00:08:04 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 19Ze9U-0003z6-00 for ; Tue, 08 Jul 2003 00:08:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Ze9e-0002jI-NK for guile-devel@m.gmane.org; Mon, 07 Jul 2003 18:08:14 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19Ze4C-0000Cr-Vt for guile-devel@gnu.org; Mon, 07 Jul 2003 18:02:36 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19Ze2g-0008Le-4C for guile-devel@gnu.org; Mon, 07 Jul 2003 18:01:03 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19Ze0W-0007JI-Q2 for guile-devel@gnu.org; Mon, 07 Jul 2003 17:58:49 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h67LwiZY001954 for ; Tue, 8 Jul 2003 07:58:44 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h67LwiQg011522 for ; Tue, 8 Jul 2003 07:58:44 +1000 (EST) Original-Received: from localhost (ppp112.dyn228.pacific.net.au [203.143.228.112]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h67Lwhnh005864 for ; Tue, 8 Jul 2003 07:58:43 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19Ze0J-0000bt-00; Tue, 08 Jul 2003 07:58:35 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never 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:2597 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2597 --=-=-= FYI, * ports.c (scm_char_ready_p, scm_peek_char): In docstrings, don't use @footnote since it doesn't go though to guile-procedures.txt. --=-=-= Content-Disposition: attachment; filename=ports.c.footnote.diff --- ports.c.~1.178.~ 2003-06-12 10:58:53.000000000 +1000 +++ ports.c 2003-07-06 10:12:23.000000000 +1000 @@ -229,14 +229,15 @@ "@code{#t} then the next @code{read-char} operation on\n" "@var{port} is guaranteed not to hang. If @var{port} is a file\n" "port at end of file then @code{char-ready?} returns @code{#t}.\n" - "@footnote{@code{char-ready?} exists to make it possible for a\n" + "\n" + "@code{char-ready?} exists to make it possible for a\n" "program to accept characters from interactive ports without\n" "getting stuck waiting for input. Any input editors associated\n" "with such ports must make sure that characters whose existence\n" "has been asserted by @code{char-ready?} cannot be rubbed out.\n" "If @code{char-ready?} were to return @code{#f} at end of file,\n" "a port at end of file would be indistinguishable from an\n" - "interactive port that has no ready characters.}") + "interactive port that has no ready characters.") #define FUNC_NAME s_scm_char_ready_p { scm_t_port *pt; @@ -1187,7 +1188,9 @@ "Return the next character available from @var{port},\n" "@emph{without} updating @var{port} to point to the following\n" "character. If no more characters are available, the\n" - "end-of-file object is returned.@footnote{The value returned by\n" + "end-of-file object is returned.\n" + "\n" + "The value returned by\n" "a call to @code{peek-char} is the same as the value that would\n" "have been returned by a call to @code{read-char} on the same\n" "port. The only difference is that the very next call to\n" @@ -1195,7 +1198,7 @@ "return the value returned by the preceding call to\n" "@code{peek-char}. In particular, a call to @code{peek-char} on\n" "an interactive port will hang waiting for input whenever a call\n" - "to @code{read-char} would have hung.}") + "to @code{read-char} would have hung.") #define FUNC_NAME s_scm_peek_char { int c, column; --=-=-= 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 --=-=-=--