(if (file-exists? (package-set-pathname "../runtime/runtime"))
(begin
- (if (not (name->package '(CROSS-REFERENCE)))
+ (if (not (name->package '(cross-reference)))
(load "make"))
- (cref/generate-constructors "cref" 'ALL)))
\ No newline at end of file
+ (cref/generate-constructors "cref" 'all)))
\ No newline at end of file
(with-loader-base-uri (system-library-uri "sf/")
(lambda ()
(load-package-set "sf")
- ((package/reference (find-package '(SCODE-OPTIMIZER))
- 'USUAL-INTEGRATIONS/CACHE!))))
+ ((package/reference (find-package '(scode-optimizer))
+ 'usual-integrations/cache!))))
(add-subsystem-identification! "SF" '(4 41))
\ No newline at end of file
|#
-(fluid-let ((sf/default-syntax-table (->environment '(RUNTIME)))
- (sf/top-level-definitions
- '(ACCESS?
- ASSIGNMENT?
- COMBINATION?
- CONDITIONAL?
- DECLARATION?
- DELAY?
- DISJUNCTION?
- OPEN-BLOCK?
- PROCEDURE?
- QUOTATION?
- SEQUENCE?
- THE-ENVIRONMENT?
- VARIABLE?)))
+(fluid-let ((sf/default-syntax-table (->environment '(runtime)))
+ (sf/top-level-definitions
+ '(access?
+ assignment?
+ combination?
+ conditional?
+ declaration?
+ delay?
+ disjunction?
+ open-block?
+ procedure?
+ quotation?
+ sequence?
+ the-environment?
+ variable?)))
(sf-conditionally "object")
(sf-directory "."))
-(load-option 'CREF)
-(cref/generate-constructors "sf" 'ALL)
\ No newline at end of file
+(load-option 'cref)
+(cref/generate-constructors "sf" 'all)
\ No newline at end of file
|#
-(load-option 'CREF)
+(load-option 'cref)
(with-working-directory-pathname (directory-pathname (current-load-pathname))
(lambda ()
(compile-file "class")
(compile-file "recslot")
(compile-file "slot")
(compile-file "tvector")
- (cref/generate-constructors "sos" 'ALL)))
\ No newline at end of file
+ (cref/generate-constructors "sos" 'all)))
\ No newline at end of file
;;;; SSP compilation
-(load-option 'CREF)
+(load-option 'cref)
(with-working-directory-pathname (directory-pathname (current-load-pathname))
(lambda ()
(for-each compile-file
"mod-lisp"
"xhtml-expander"
"xmlrpc"))
- (cref/generate-constructors "ssp" 'ALL)))
\ No newline at end of file
+ (cref/generate-constructors "ssp" 'all)))
\ No newline at end of file
;;;; Parser language: compilation
-(load-option 'CREF)
+(load-option 'cref)
(with-working-directory-pathname (directory-pathname (current-load-pathname))
(lambda ()
(for-each compile-file
'("matcher"
"parser"
"shared"))
- (cref/generate-constructors "parser" 'ALL)))
\ No newline at end of file
+ (cref/generate-constructors "parser" 'all)))
\ No newline at end of file
;;;; XDOC compilation
-(load-option 'CREF)
+(load-option 'cref)
(with-working-directory-pathname (directory-pathname (current-load-pathname))
(lambda ()
(for-each compile-file
'("db"
"xdoc"))
- (cref/generate-constructors "xdoc" 'ALL)))
\ No newline at end of file
+ (cref/generate-constructors "xdoc" 'all)))
\ No newline at end of file
|#
-(load-option 'CREF)
-(load-option '*PARSER)
-(load-option 'SOS)
+(load-option 'cref)
+(load-option '*parser)
+(load-option 'sos)
-(if (not (environment-bound? system-global-environment 'XML-PARSER-MACROS))
+(if (not (environment-bound? system-global-environment 'xml-parser-macros))
(environment-define system-global-environment
- 'XML-PARSER-MACROS
+ 'xml-parser-macros
(make-parser-macros #f)))
(with-working-directory-pathname (directory-pathname (current-load-pathname))
"rdf-struct"
"rdf-nt"
"turtle"))))
- (cref/generate-constructors "xml" 'ALL)))
\ No newline at end of file
+ (cref/generate-constructors "xml" 'all)))
\ No newline at end of file
|#
-(load-option 'REGULAR-EXPRESSION)
-(load-option 'SOS)
+(load-option 'regular-expression)
+(load-option 'sos)
(with-loader-base-uri (system-library-uri "xml/")
(lambda ()
(load-package-set "xml")))