Eliminate PACKAGE/SYSTEM-LOADER and ADD-IDENTIFICATION!. Remove
authorChris Hanson <org/chris-hanson/cph>
Mon, 13 Dec 2004 03:22:21 +0000 (03:22 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 13 Dec 2004 03:22:21 +0000 (03:22 +0000)
optional argument from LOAD-PACKAGE-SET.  Change optional argument of
PACKAGE-SET-PATHNAME to be required argument.

18 files changed:
v7/src/6001/make.scm
v7/src/compiler/base/make.scm
v7/src/cref/make.scm
v7/src/edwin/make.scm
v7/src/pcsample/load.scm
v7/src/runtime/make.scm
v7/src/runtime/packag.scm
v7/src/runtime/runtime.pkg
v7/src/runtime/system.scm
v7/src/sicp/sbuild.scm
v7/src/sos/load.scm
v7/src/ssp/load.scm
v7/src/star-parser/load.scm
v7/src/swat/scheme/load.scm
v7/src/wabbit/load.scm
v7/src/win32/make.scm
v7/src/xdoc/load.scm
v7/src/xml/load.scm

index 2e89186d446e40ae6023f8879aa4b45b9a26677a..9935c374a6c9b091c59bbc1cd376f3fd1267461d 100644 (file)
@@ -1,8 +1,9 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 15.36 2003/02/14 18:28:00 cph Exp $
+$Id: make.scm,v 15.37 2004/12/13 03:22:21 cph Exp $
 
-Copyright (c) 1991-1999, 2001, 2002 Massachusetts Institute of Technology
+Copyright 1991,1992,1993,1995,1996,1998 Massachusetts Institute of Technology
+Copyright 1999,2001,2002,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -38,7 +39,7 @@ USA.
        (if (and (eq? 'UNIX microcode-id/operating-system)
                (string-ci=? "HP-UX" microcode-id/operating-system-variant))
           (load "floppy" (->environment '(EDWIN))))))))
-(add-identification! "6.001" 15 31)
+(add-subsystem-identification! "6.001" '(15 31))
 
 ;;; Customize the runtime system:
 (set! repl:allow-restart-notifications? #f)
index d810cbe4251f65cf79fcca2ed4cabb189c978b14..04d242f49118beaad7b065fe0ea11867db4752f5 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 4.123 2004/07/05 03:59:36 cph Exp $
+$Id: make.scm,v 4.124 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1991,1992,1993,1994,1997,1998 Massachusetts Institute of Technology
 Copyright 1999,2001,2002,2003,2004 Massachusetts Institute of Technology
@@ -30,12 +30,12 @@ USA.
 
 (lambda (architecture-name)
   architecture-name
+  (load-option 'COMPRESS)
+  (load-option 'RB-TREE)
   ((access with-directory-rewriting-rule
           (->environment '(RUNTIME COMPILER-INFO)))
    (working-directory-pathname)
    (pathname-as-directory "compiler")
    (lambda ()
-     (load-option 'COMPRESS)
-     (load-option 'RB-TREE)
      (load-package-set "compiler")))
-  (add-identification! "LIAR" 4 117))
\ No newline at end of file
+  (add-subsystem-identification! "LIAR" '(4 117)))
index a1d442feff06d87a0d1cf07edfbbc92f66b3ab29..f433dc37b798430bfd2f073c6e651acf709e3a5c 100644 (file)
@@ -1,8 +1,10 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 1.27 2003/02/14 18:28:10 cph Exp $
+$Id: make.scm,v 1.28 2004/12/13 03:22:21 cph Exp $
 
-Copyright (c) 1988-2002 Massachusetts Institute of Technology
+Copyright 1988,1989,1990,1991,1993,1994 Massachusetts Institute of Technology
+Copyright 1995,1996,1998,1999,2000,2001 Massachusetts Institute of Technology
+Copyright 2002,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -27,14 +29,13 @@ USA.
 
 (declare (usual-integrations))
 
-(with-working-directory-pathname
-    (directory-pathname (current-load-pathname))
+(load-option 'RB-TREE)
+(with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
     ((access with-directory-rewriting-rule
             (->environment '(RUNTIME COMPILER-INFO)))
      (working-directory-pathname)
      (pathname-as-directory "cref")
      (lambda ()
-       (load-option 'RB-TREE)
        (load-package-set "cref")))))
-(add-identification! "CREF" 2 3)
\ No newline at end of file
+(add-subsystem-identification! "CREF" '(2 3))
\ No newline at end of file
index e40ea22bedfc97b3eb0d2a839515a7c5fa327704..5679d0c08e17af475892c6b59a73089d0e3fc956 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 3.120 2004/02/16 05:43:45 cph Exp $
+$Id: make.scm,v 3.121 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1989,1990,1991,1992,1993,1994 Massachusetts Institute of Technology
 Copyright 1995,2000,2001,2002,2003,2004 Massachusetts Institute of Technology
@@ -28,8 +28,7 @@ USA.
 
 (declare (usual-integrations))
 
-(with-working-directory-pathname
-    (directory-pathname (current-load-pathname))
+(with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
     ((access with-directory-rewriting-rule
             (->environment '(RUNTIME COMPILER-INFO)))
@@ -40,4 +39,4 @@ USA.
        (load-package-set "edwin"
         `((alternate-package-loader
            . ,(load "edwin.bld" system-global-environment))))))))
-(add-identification! "Edwin" 3 116)
\ No newline at end of file
+(add-subsystem-identification! "Edwin" '(3 116))
\ No newline at end of file
index 2eef8639b62f9a378e110d6a16c54cd8cbd12d84..dec304666b32151f39f85e53b1d65545481e92a2 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.8 2003/02/14 18:28:31 cph Exp $
+$Id: load.scm,v 1.9 2004/12/13 03:22:21 cph Exp $
 
-Copyright (c) 1995-1999, 2001 Massachusetts Institute of Technology
+Copyright 1995,1998,2001,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -27,8 +27,8 @@ USA.
 
 (declare (usual-integrations))
 \f
-(package/system-loader "pcs" '() 'QUERY)
-(add-identification! "PC Sampler" 1 0)
+(load-package-set "pcs")
+(add-subsystem-identification! "PC Sampler" '(1 0))
 
 (let ()
   (define (package-initialize package-name
index 13ac03dcc27b2eb2c194132c8abe9e15b137e13e..c3ba4b37410e519587a7922c6c0cdab7dc823f0e 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 14.96 2004/11/17 05:24:19 cph Exp $
+$Id: make.scm,v 14.97 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1988,1989,1990,1991,1992,1993 Massachusetts Institute of Technology
 Copyright 1994,1995,1996,1997,1998,2000 Massachusetts Institute of Technology
@@ -337,7 +337,6 @@ USA.
   (export 'PACKAGE/NAME)
   (export 'PACKAGE/PARENT)
   (export 'PACKAGE/REFERENCE)
-  (export 'PACKAGE/SYSTEM-LOADER)
   (export 'PACKAGE?)
   (export 'SYSTEM-GLOBAL-PACKAGE))
 (package/add-child! system-global-package 'PACKAGE environment-for-package)
index 5346c182025eec4f61377a549bdac96322f5e8ed..117f8668bd9bb81b6a61fca296f574c4f2f40226 100644 (file)
@@ -1,9 +1,10 @@
 #| -*-Scheme-*-
 
-$Id: packag.scm,v 14.44 2003/03/13 18:13:52 cph Exp $
+$Id: packag.scm,v 14.45 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1988,1989,1991,1992,1993,1994 Massachusetts Institute of Technology
 Copyright 1995,1996,1998,2001,2002,2003 Massachusetts Institute of Technology
+Copyright 2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -164,57 +165,52 @@ USA.
 \f
 (define system-loader/enable-query? #f)
 
-(define (load-package-set filename #!optional options load-interpreted?)
-  (let ((pathname (package-set-pathname filename))
-       (options
-        (cons (cons 'OS-TYPE microcode-id/operating-system)
-              (if (default-object? options) '() options))))
-    (with-working-directory-pathname (directory-pathname pathname)
-      (lambda ()
-       (let ((file (fasload pathname)))
-         (if (not (package-file? file))
-             (error "Malformed package-description file:" pathname))
-         (construct-packages-from-file file)
-         (fluid-let
-             ((load/default-types
-               (if (if (or (default-object? load-interpreted?)
-                           (eq? load-interpreted? 'QUERY))
-                       (and system-loader/enable-query?
-                            (prompt-for-confirmation "Load interpreted"))
-                       load-interpreted?)
-                   (list (assoc "bin" load/default-types)
-                         (assoc "scm" load/default-types))
-                   load/default-types)))
-           (let ((alternate-loader
-                  (lookup-option 'ALTERNATE-PACKAGE-LOADER options))
-                 (load-component
-                  (lambda (component environment)
-                    (let ((value
-                           (filename->compiled-object filename component)))
-                      (if value
-                          (begin
-                            (purify (load/purification-root value))
-                            (scode-eval value environment))
-                          (load component environment 'DEFAULT #t))))))
-             (if alternate-loader
-                 (alternate-loader load-component options)
-                 (begin
-                   (load-packages-from-file file options load-component)
-                   (initialize-packages-from-file file)))))))))
+(define (load-package-set filename #!optional options)
+  (let ((os-type microcode-id/operating-system))
+    (let ((pathname (package-set-pathname filename os-type))
+         (options
+          (cons (cons 'OS-TYPE os-type)
+                (if (default-object? options) '() options))))
+      (with-working-directory-pathname (directory-pathname pathname)
+       (lambda ()
+         (let ((file (fasload pathname)))
+           (if (not (package-file? file))
+               (error "Malformed package-description file:" pathname))
+           (construct-packages-from-file file)
+           (fluid-let
+               ((load/default-types
+                 (if (and system-loader/enable-query?
+                          (prompt-for-confirmation "Load interpreted"))
+                     (list (assoc "bin" load/default-types)
+                           (assoc "scm" load/default-types))
+                     load/default-types)))
+             (let ((alternate-loader
+                    (lookup-option 'ALTERNATE-PACKAGE-LOADER options))
+                   (load-component
+                    (lambda (component environment)
+                      (let ((value
+                             (filename->compiled-object filename component)))
+                        (if value
+                            (begin
+                              (purify (load/purification-root value))
+                              (scode-eval value environment))
+                            (load component environment 'DEFAULT #t))))))
+               (if alternate-loader
+                   (alternate-loader load-component options)
+                   (begin
+                     (load-packages-from-file file options load-component)
+                     (initialize-packages-from-file file))))))))))
   ;; Make sure that everything we just loaded is purified.  If the
   ;; program runs before it gets purified, some of its run-time state
   ;; can end up being purified also.
   (flush-purification-queue!))
 
-(define (package-set-pathname pathname #!optional os-type)
+(define (package-set-pathname pathname os-type)
   (make-pathname (pathname-host pathname)
                 (pathname-device pathname)
                 (pathname-directory pathname)
                 (string-append (pathname-name pathname)
-                               (case (if (or (default-object? os-type)
-                                             (not os-type))
-                                         microcode-id/operating-system
-                                         os-type)
+                               (case os-type
                                  ((NT) "-w32")
                                  ((OS/2) "-os2")
                                  ((UNIX) "-unx")
@@ -239,8 +235,6 @@ USA.
                 (write-string ";Initialized " port)
                 (write name port)
                 value))))))
-
-(define package/system-loader load-package-set)
 \f
 (define-integrable (make-package-file tag version descriptions loads)
   (vector tag version descriptions loads))
index 8f0db7af1a4d37a5f3a7dda347e4b7db8f7e9429..bedc9969b4c89695b3c83d65dd2346380d5eed0b 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: runtime.pkg,v 14.521 2004/11/26 05:04:42 cph Exp $
+$Id: runtime.pkg,v 14.522 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1988,1989,1990,1991,1992,1993 Massachusetts Institute of Technology
 Copyright 1994,1995,1996,1997,1998,1999 Massachusetts Institute of Technology
@@ -51,7 +51,6 @@ USA.
          package/name
          package/parent
          package/reference
-         package/system-loader
          package?
          system-global-package)
   (export (runtime environment)
@@ -3928,7 +3927,6 @@ USA.
   (files "system")
   (parent (runtime))
   (export ()
-         add-identification!
          add-subsystem-identification!
          get-subsystem-identification-string
          get-subsystem-names
index 3087ad3f8c54c4f4b103537974803bd979ac0f57..4fe63fa4edb9a888abf946eda549c2f0fcc357cd 100644 (file)
@@ -1,8 +1,9 @@
 #| -*-Scheme-*-
 
-$Id: system.scm,v 14.15 2003/02/14 18:28:34 cph Exp $
+$Id: system.scm,v 14.16 2004/12/13 03:22:21 cph Exp $
 
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright 1986,1987,1988,1989,1991,1998 Massachusetts Institute of Technology
+Copyright 2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -34,20 +35,19 @@ USA.
                                 'ADD-SUBSYSTEM-IDENTIFICATION!))
   (let ((version
         (let loop ((version version))
-          (append-map
-           (lambda (version)
-             (cond ((exact-nonnegative-integer? version)
-                    (list version))
-                   ((string? version)
-                    (if (string-null? version)
-                        '()
-                        (list version)))
-                   ((list? version)
-                    (loop version))
-                   (else
-                    (error "Illegal subsystem version:"
-                           version))))
-           version))))
+          (append-map (lambda (version)
+                        (cond ((exact-nonnegative-integer? version)
+                               (list version))
+                              ((string? version)
+                               (if (string-null? version)
+                                   '()
+                                   (list version)))
+                              ((list? version)
+                               (loop version))
+                              (else
+                               (error "Illegal subsystem version:"
+                                      version))))
+                      version))))
     (let ((entry (find-entry name)))
       (if entry
          (begin
@@ -61,7 +61,7 @@ USA.
 
 (define (remove-subsystem-identification! name)
   (let loop ((previous #f) (entries subsystem-identifications))
-    (if (not (null? entries))
+    (if (pair? entries)
        (if (match-entry? name (car entries))
            (begin
              (if previous
@@ -100,19 +100,19 @@ USA.
                    (string-append name " " s)))))))
 \f
 (define (version-string version)
-  (if (null? version)
-      ""
+  (if (pair? version)
       (let loop ((version version))
        (let ((s
               (if (string? (car version))
                   (car version)
                   (number->string (car version)))))
-         (if (null? (cdr version))
-             s
-             (string-append s "." (loop (cdr version))))))))
+         (if (pair? (cdr version))
+             (string-append s "." (loop (cdr version)))
+             s)))
+      ""))
 
 (define (find-entry name)
-  (list-search-positive subsystem-identifications
+  (find-matching-item subsystem-identifications
     (lambda (entry)
       (match-entry? name entry))))
 
@@ -123,9 +123,4 @@ USA.
                    (or (string-find-next-char s #\space)
                        (string-length s)))))
 
-(define subsystem-identifications '())
-
-;;; Upwards compatibility.
-
-(define (add-identification! name version modification)
-  (add-subsystem-identification! name (list version modification)))
\ No newline at end of file
+(define subsystem-identifications '())
\ No newline at end of file
index 628297a34ebdeeca2f393f562889600ffafe4332..2d18c18773431154115a13a2c27d5ecdc0438550 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: sbuild.scm,v 1.7 2003/02/14 18:28:35 cph Exp $
+$Id: sbuild.scm,v 1.8 2004/12/13 03:22:21 cph Exp $
 
-Copyright (c) 1987-1999 Massachusetts Institute of Technology
+Copyright 1990,1991,1998,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -30,6 +30,6 @@ USA.
 (for-each (lambda (filename)
            (load filename system-global-environment))
          '("compat" "graphics" "strmac" "stream" "genenv" "studen"))
-(add-identification! "Student (6.001)" 14 3)
+(add-subsystem-identification! "Student (6.001)" '(14 3))
 
 "Student environment loaded."
\ No newline at end of file
index e98c543e67016a6dcfa9e88c18714cdc9afb63d0..4038a7ee9185c85e78ebcae11fbacb5726157f53 100644 (file)
@@ -1,8 +1,9 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.15 2003/04/25 03:48:28 cph Exp $
+$Id: load.scm,v 1.16 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1997,1998,1999,2001,2002,2003 Massachusetts Institute of Technology
+Copyright 2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -26,4 +27,4 @@ USA.
 (with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
     (load-package-set "sos")))
-(add-identification! "SOS" 1 8)
\ No newline at end of file
+(add-subsystem-identification! "SOS" '(1 8))
\ No newline at end of file
index 34fb0b26529796e307c36c3d18feabe242c251f3..7547dbb4d845fcdd3a12abbbec4b11266f445929 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.5 2004/11/24 20:20:41 cph Exp $
+$Id: load.scm,v 1.6 2004/12/13 03:22:21 cph Exp $
 
 Copyright 2003,2004 Massachusetts Institute of Technology
 
@@ -30,5 +30,5 @@ USA.
 (load-option 'mime-codec)
 (with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
-    (package/system-loader "ssp" '() 'query)))
+    (load-package-set "ssp")))
 (add-subsystem-identification! "SSP" '(0 4))
\ No newline at end of file
index 0e5db6cc152199f582e3a9141b509fe4d337c1e3..3a5c1115a5c522b5a5b3870ccdf233b906c9d710 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.16 2003/04/25 03:53:58 cph Exp $
+$Id: load.scm,v 1.17 2004/12/13 03:22:21 cph Exp $
 
-Copyright 2001,2002,2003 Massachusetts Institute of Technology
+Copyright 2001,2002,2003,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -25,5 +25,5 @@ USA.
 
 (with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
-    (package/system-loader "parser" '() 'QUERY)))
+    (load-package-set "parser")))
 (add-subsystem-identification! "*Parser" '(0 12))
\ No newline at end of file
index e1c542c86c091c486b0dee2046f586388346420c..2416f56a5be4a63805184b0ef6a514035820bd89 100644 (file)
@@ -1,6 +1,5 @@
 #|
-(with-working-directory-pathname
-    (directory-pathname (current-load-pathname))
+(with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
     ;; Dynamically load the microcode.  Order important.
     (load "dynload/scxl")
@@ -13,8 +12,8 @@
      (working-directory-pathname)
      (pathname-as-directory "lib/swat")
      (lambda ()
-       (package/system-loader "swat" '() 'QUERY)))
-    (add-identification! "SWAT" 1 0)))
+       (load-package-set "swat")))
+    (add-subsystem-identification! "SWAT" '(1 0))))
 |#
 
 
index 8cba154592eb32d7ceb2a047ca5281c6f5cd40c0..ac6343e1d4528dc671f5bb6836257df67583212a 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.5 2003/02/14 18:28:35 cph Exp $
+$Id: load.scm,v 1.6 2004/12/13 03:22:21 cph Exp $
 
-Copyright (c) 1994-1999 Massachusetts Institute of Technology
+Copyright 1994,1995,1998,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -31,8 +31,8 @@ USA.
        (display "\n; Package already loaded under some other alias")
        'ok)
       (else
-       (package/system-loader "wabbit" '() 'QUERY)
-       (add-identification! "Wabbit Hunting / Headhunting GC" 1 0)
+       (load-package-set "wabbit")
+       (add-subsystem-identification! "Wabbit Hunting / Headhunting GC" '(1 0))
 
        (let ()
         (define (package-initialize package-name
@@ -81,4 +81,3 @@ USA.
         (package-initialize '(gc-wabbits)))))
 
 ;;; fini
-
index a495387c8c97b1953f7826e2c5783b231b26b34a..cefeaae40a378f46d973418ac3634e235a5777f4 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 1.15 2004/01/16 20:43:16 cph Exp $
+$Id: make.scm,v 1.16 2004/12/13 03:22:21 cph Exp $
 
 Copyright 1993,1998,2001,2002,2003,2004 Massachusetts Institute of Technology
 
@@ -35,4 +35,4 @@ USA.
      (pathname-as-directory "win32")
      (lambda ()
        (load-package-set "win32")))))
-(add-identification! "Win32" 1 8)
\ No newline at end of file
+(add-subsystem-identification! "Win32" '(1 8))
\ No newline at end of file
index 6d26171fad1e454c308145cbd60940dbc99039d8..9f7ce6efcc12c50a64325b97af84bef6285c5ff1 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.2 2004/11/02 03:57:41 cph Exp $
+$Id: load.scm,v 1.3 2004/12/13 03:22:21 cph Exp $
 
 Copyright 2004 Massachusetts Institute of Technology
 
@@ -45,5 +45,5 @@ USA.
     (export 'xml-comment 'comment)))
 (with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
-    (package/system-loader "xdoc" '() 'query)))
+    (load-package-set "xdoc")))
 (add-subsystem-identification! "XDOC" '(0 3))
\ No newline at end of file
index 95d5cf2b56e3016a911088ad1a51218905cbc54b..0e2c9304b4867a84311a16d569e379cba98bb39e 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: load.scm,v 1.14 2004/07/24 03:45:34 cph Exp $
+$Id: load.scm,v 1.15 2004/12/13 03:22:21 cph Exp $
 
 Copyright 2001,2002,2003,2004 Massachusetts Institute of Technology
 
@@ -27,5 +27,5 @@ USA.
 (load-option 'SOS)
 (with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
-    (package/system-loader "xml" '() 'QUERY)))
+    (load-package-set "xml")))
 (add-subsystem-identification! "XML" '(0 7))
\ No newline at end of file