[Python-checkins] python/dist/src/Doc/tools py2texi.el,1.1,1.2

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 27 Jun 2002 11:38:10 -0700


Update of /cvsroot/python/python/dist/src/Doc/tools
In directory usw-pr-cvs1:/tmp/cvs-serv2183

Modified Files:
	py2texi.el 
Log Message:
Added support for some of the more recently defined macros and
environments.


Index: py2texi.el
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tools/py2texi.el,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** py2texi.el	3 May 2002 04:50:51 -0000	1.1
--- py2texi.el	27 Jun 2002 18:38:06 -0000	1.2
***************
*** 75,78 ****
--- 75,82 ----
  	    "\n@table @code\n@item \\1\n@obindex \\1\n")
       "@end table")
+     ("cmemberdesc" 3
+      (progn (setq findex t)
+ 	    "\n@table @code\n@item \\1 \\2 \\3\n@findex \\3\n")
+      "@end table")
      ("csimplemacrodesc" 1
       (progn (setq cindex t)
***************
*** 197,200 ****
--- 201,207 ----
      ("cdata" 1 "@code{\\1}")
      ("centerline" 1 "@center \\1")
+     ("cfuncline" 3
+      (progn (setq findex t)
+ 	    "\n@item \\1 \\2(\\3)\n@findex \\2\n"))
      ("cfunction" 1 "@code{\\1}")
      ("chapter" 1 (format "@node \\1\n@%s \\1\n"
***************
*** 204,207 ****
--- 211,217 ----
      ("citetitle" 1 "@ref{Top,,,\\1}")
      ("class" 1 "@code{\\1}")
+     ("cmemberline" 3
+      (progn (setq findex t)
+ 	    "\n@item \\1 \\2 \\3\n@findex \\3\n"))
      ("code" 1 "@code{\\1}")
      ("command" 1 "@command{\\1}")
***************
*** 209,212 ****
--- 219,223 ----
      ("copyright" 1 "@copyright{}")
      ("Cpp" 0 "C++")
+     ("csimplemacro" 1 "@code{\\1}")
      ("ctype" 1 "@code{\\1}")
      ("dataline" 1 (progn (setq findex t) "@item \\1\n@findex \\1\n"))
***************
*** 298,301 ****
--- 309,313 ----
      ("POSIX" 0 "POSIX")
      ("production" 2 "@item \\1 \\2")
+     ("productioncont" 1 "@item \\1")
      ("program" 1 "@command{\\1}")
      ("programopt" 1 "@option{\\1}")
***************
*** 349,352 ****
--- 361,366 ----
      ("textasciicircum" 0 "^")
      ("textbackslash" 0 "@backslash{}")
+     ("textgreater" 0 ">")
+     ("textless" 0 "<")
      ("textrm" 1 "\\1")
      ("texttt" 1 "@code{\\1}")