hholzgra                Wed May 16 10:52:54 2001 EDT

  Modified files:              
    /phpdoc     print.dsl.in html-common.dsl 
  Log:
  be more clever about <void/> and <varargs/> tags
  
  
Index: phpdoc/print.dsl.in
diff -u phpdoc/print.dsl.in:1.14 phpdoc/print.dsl.in:1.15
--- phpdoc/print.dsl.in:1.14    Tue Feb  6 16:03:49 2001
+++ phpdoc/print.dsl.in Wed May 16 10:52:54 2001
@@ -7,7 +7,7 @@
 
 <!--
 
-  $Id: print.dsl.in,v 1.14 2001/02/07 00:03:49 jimw Exp $
+  $Id: print.dsl.in,v 1.15 2001/05/16 17:52:54 hholzgra Exp $
 
   This file contains printout-specific stylesheet customization.
 
@@ -297,6 +297,12 @@
                                )
                )
 
+(element (funcprototype void)
+ (make sequence ( literal " ()" )))
+ 
+ (element (funcprototype varargs)
+   (make sequence ( literal " (...)" )))
+   
 (element function
   (cond
    ;; function names should be plain in FUNCDEF
Index: phpdoc/html-common.dsl
diff -u phpdoc/html-common.dsl:1.8 phpdoc/html-common.dsl:1.9
--- phpdoc/html-common.dsl:1.8  Wed Mar  7 18:45:53 2001
+++ phpdoc/html-common.dsl      Wed May 16 10:52:54 2001
@@ -1,6 +1,6 @@
 ;; -*- Scheme -*-
 ;;
-;; $Id: html-common.dsl,v 1.8 2001/03/08 02:45:53 ssb Exp $
+;; $Id: html-common.dsl,v 1.9 2001/05/16 17:52:54 hholzgra Exp $
 ;;
 
 ;; Returns the depth of the auto-generated TOC (table of contents) that
@@ -139,6 +139,13 @@
        )
     )
   )
+
+
+(element (funcprototype void)
+ (make sequence ( literal " ()" )))
+
+(element (funcprototype varargs)
+ (make sequence ( literal " (...)" )))
 
 
 (element function


Reply via email to