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: texi spaces after defun names Date: Thu, 01 May 2003 10:16:50 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87d6j3cyh9.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1051748319 23012 80.91.224.249 (1 May 2003 00:18:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 1 May 2003 00:18:39 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu May 01 02:18:37 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 19B1mX-0005z2-00 for ; Thu, 01 May 2003 02:18:37 +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 19B1mj-0001rb-04 for guile-devel@m.gmane.org; Wed, 30 Apr 2003 20:18:49 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19B1lu-0000jR-00 for guile-devel@gnu.org; Wed, 30 Apr 2003 20:17:58 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19B1lg-00005d-00 for guile-devel@gnu.org; Wed, 30 Apr 2003 20:17:50 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19B1lD-0007td-00 for guile-devel@gnu.org; Wed, 30 Apr 2003 20:17:15 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h410H9I4021694 for ; Thu, 1 May 2003 10:17:10 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h410H98D019320 for ; Thu, 1 May 2003 10:17:09 +1000 (EST) Original-Received: from localhost (ppp98.dyn228.pacific.net.au [203.143.228.98]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h410H6YZ021388 for ; Thu, 1 May 2003 10:17:07 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19B1kp-0000cn-00; Thu, 01 May 2003 10:16:51 +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:2241 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2241 --=-=-= The following stops some warnings from makeinfo (4.3). A space after the function name is normal of course. * data-rep.texi, gh.texi: Add spaces after some @defun names. --=-=-= Content-Disposition: attachment; filename=data-rep.texi.defun-spaces.diff CVS_RSH not defined /usr/bin/cvs -d :pserver:anoncvs@subversions.gnu.org:/cvsroot/guile diff -r1.9 -u data-rep.texi Index: data-rep.texi =================================================================== RCS file: /cvsroot/guile/guile/guile-core/doc/ref/data-rep.texi,v retrieving revision 1.9 diff -u -u -r1.9 data-rep.texi --- data-rep.texi 26 Apr 2003 15:09:18 -0000 1.9 +++ data-rep.texi 1 May 2003 00:14:29 -0000 @@ -1489,7 +1489,7 @@ use the mechanism described above for new code, and change old code not to use deprecated features. -@deftypefun long scm_make_smob_type_mfpe(const char *name, size_t size, SCM (*mark) (SCM), size_t (*free) (SCM), int (*print) (SCM, SCM, scm_print_state*), SCM (*equalp) (SCM, SCM)) +@deftypefun long scm_make_smob_type_mfpe (const char *name, size_t size, SCM (*mark) (SCM), size_t (*free) (SCM), int (*print) (SCM, SCM, scm_print_state*), SCM (*equalp) (SCM, SCM)) This function invokes @code{scm_make_smob_type} on its first two arguments to add a new smob type named @var{name}, with instance size @var{size} to the system. It also registers the @var{mark}, @var{free}, @var{print}, @var{equalp} smob @@ -1537,9 +1537,9 @@ @code{SCM_NEWSMOB3} variants will allocate double cells and thus use twice as much memory as smobs created by @code{SCM_NEWSMOB}.} -@deftypefn Macro void SCM_NEWSMOB(SCM value, scm_t_bits tag, void *data) -@deftypefnx Macro void SCM_NEWSMOB2(SCM value, scm_t_bits tag, void *data1, void *data2) -@deftypefnx Macro void SCM_NEWSMOB3(SCM value, scm_t_bits tag, void *data1, void *data2, void *data3) +@deftypefn Macro void SCM_NEWSMOB (SCM value, scm_t_bits tag, void *data) +@deftypefnx Macro void SCM_NEWSMOB2 (SCM value, scm_t_bits tag, void *data1, void *data2) +@deftypefnx Macro void SCM_NEWSMOB3 (SCM value, scm_t_bits tag, void *data1, void *data2, void *data3) Make @var{value} contain a smob instance of the type with tag @var{tag} and smob data @var{data} (or @var{data1}, @var{data2}, and @var{data3}). @var{value} must be previously declared as C type @code{SCM}. @@ -1549,9 +1549,9 @@ create a smob instance and return it, there is also a slightly specialized macro for this situation: -@deftypefn Macro fn_returns SCM_RETURN_NEWSMOB(scm_t_bits tag, void *data) -@deftypefnx Macro fn_returns SCM_RETURN_NEWSMOB2(scm_t_bits tag, void *data1, void *data2) -@deftypefnx Macro fn_returns SCM_RETURN_NEWSMOB3(scm_t_bits tag, void *data1, void *data2, void *data3) +@deftypefn Macro fn_returns SCM_RETURN_NEWSMOB (scm_t_bits tag, void *data) +@deftypefnx Macro fn_returns SCM_RETURN_NEWSMOB2 (scm_t_bits tag, void *data1, void *data2) +@deftypefnx Macro fn_returns SCM_RETURN_NEWSMOB3 (scm_t_bits tag, void *data1, void *data2, void *data3) This macro expands to a block of code that creates a smob instance of the type with tag @var{tag} and smob data @var{data} (or @var{data1}, @var{data2}, and @var{data3}), and causes the surrounding function to --=-=-= Content-Disposition: attachment; filename=gh.texi.defun-spaces.diff --- gh.texi.~1.5.~ 2002-08-09 08:43:32.000000000 +1000 +++ gh.texi 2003-04-05 16:47:18.000000000 +1000 @@ -620,12 +620,12 @@ These correspond to the Scheme @code{(caadar ls)} procedures etc @dots{} @end deftypefun -@deftypefun SCM gh_set_car_x(SCM @var{pair}, SCM @var{value}) +@deftypefun SCM gh_set_car_x (SCM @var{pair}, SCM @var{value}) Modifies the CAR of @var{pair} to be @var{value}. This is equivalent to the Scheme procedure @code{(set-car! ...)}. @end deftypefun -@deftypefun SCM gh_set_cdr_x(SCM @var{pair}, SCM @var{value}) +@deftypefun SCM gh_set_cdr_x (SCM @var{pair}, SCM @var{value}) Modifies the CDR of @var{pair} to be @var{value}. This is equivalent to the Scheme procedure @code{(set-cdr! ...)}. @end deftypefun --=-=-= 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 --=-=-=--