Update TEXINFO-ENVIRONMENT-REGEXP to include "@copying".
authorChris Hanson <org/chris-hanson/cph>
Thu, 14 Oct 2004 17:28:46 +0000 (17:28 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 14 Oct 2004 17:28:46 +0000 (17:28 +0000)
v7/src/edwin/tximod.scm

index 22ed561b8d12d9cb679502973d50d260bb1c2f93..e5efade7ab427f9e144a4fbf57fec9c02fc5b3da 100644 (file)
@@ -1,8 +1,9 @@
 #| -*-Scheme-*-
 
-$Id: tximod.scm,v 1.28 2003/02/14 18:28:13 cph Exp $
+$Id: tximod.scm,v 1.29 2004/10/14 17:28:46 cph Exp $
 
-Copyright 1987-2001 Massachusetts Institute of Technology
+Copyright 1987,1989,1990,1991,1992,1994 Massachusetts Institute of Technology
+Copyright 1996,2000,2001,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -219,11 +220,34 @@ The default is not to surround any existing words with the braces."
                                    (re-match-end 1))
                     (insert-newline)))
              (insert-string "@end ")))))))
-
+\f
 (define texinfo-environment-regexp
   (string-append
-   "^@\\(f?table\\|enumerate\\|itemize"
-   "\\|ifhtml\\|ifinfo\\|iftex\\|ifset\\|ifclear\\|format"
-   "\\|example\\|quotation\\|lisp\\|smallexample\\|smalllisp\\|display"
-   "\\|flushleft\\|flushright\\|ignore\\|group\\|tex\\|html\\|cartouche"
-   "\\|menu\\|titlepage\\|end\\|def[a-z]*[a-wyz]\\>\\)"))
\ No newline at end of file
+   "^@"
+   (regexp-group "cartouche"
+                "copying"
+                "def[a-z]*[a-wyz]\\>"
+                "display"
+                "end"
+                "enumerate"
+                "example"
+                "f?table"
+                "flushleft"
+                "flushright"
+                "format"
+                "group"
+                "html"
+                "ifclear"
+                "ifhtml"
+                "ifinfo"
+                "ifset"
+                "iftex"
+                "ignore"
+                "itemize"
+                "lisp"
+                "menu"
+                "quotation"
+                "smallexample"
+                "smalllisp"
+                "tex"
+                "titlepage")))
\ No newline at end of file