diff options
author | dos-reis <gdr@axiomatics.org> | 2007-09-17 22:50:50 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-09-17 22:50:50 +0000 |
commit | 1ee7a0030053e2447302d8157b9d3356a54e9b3a (patch) | |
tree | fbe8a48a8467342746b72cdfb4af0596b7934753 /src/interp/util.lisp.pamphlet | |
parent | 2e464d0c7c161931e8767b6019d93c92d7fd9586 (diff) | |
download | open-axiom-1ee7a0030053e2447302d8157b9d3356a54e9b3a.tar.gz |
Fix SF/1792002
* util.lisp.pamphlet (build-interpsys): Lose parse-files,
comp-files and browse-files parameters. Don't set AutoLoad
properties for those files anymore.
(parse-functions): Remove definition.
(comp-functions): Likewise.
(browse-functions): Likewise.
(|tr|): Don't call |oldCompilerAutoloadOnceTrigger| and
|browserAutloadOnceTrigger| anymore.
* daase.lisp.pamphlet (make-databases): Don't call
|oldCompilerAutoloadOnceTrigger| anymore.
* compiler.boot.pamphlet (compileSpad2Cmd): Don't call
oldParserAutoloadOnceTrigger anymore.
* bootlex.lisp (|oldParserAutoloadOnceTrigger|): Remove.
* Makefile.pamphlet (OBJS): Include $(OPOBJS), $(OCOBJS) and
$(BROBJS).
(OPOBJS): Objects are not in autoload directory anymore.
(OCOBJS): Likewise.
(BROBJS): Likewise.
(makeint.lisp): Remove explicit dependency on $(OCOBJS), $(OPOBJS)
and $(BROBJS). Don't call build-interpsys with those arguments
anymore.
* Makefile.in: Regenerate.
Diffstat (limited to 'src/interp/util.lisp.pamphlet')
-rw-r--r-- | src/interp/util.lisp.pamphlet | 111 |
1 files changed, 1 insertions, 110 deletions
diff --git a/src/interp/util.lisp.pamphlet b/src/interp/util.lisp.pamphlet index da707ab2..51564c35 100644 --- a/src/interp/util.lisp.pamphlet +++ b/src/interp/util.lisp.pamphlet @@ -101,7 +101,7 @@ it loads all of the named files, resets a few global state variables, loads the databases, sets up autoload triggers and clears out hash tables. After this function is called the image is clean and can be saved. <<build-interpsys>>= -(defun build-interpsys (load-files parse-files comp-files browse-files +(defun build-interpsys (load-files translate-files nagbr-files asauto-files spad) (initroot spad) #+:AKCL @@ -120,9 +120,6 @@ After this function is called the image is clean and can be saved. #+:CCL (resethashtables) (setq *load-verbose* nil) - (|setBootAutloadProperties| comp-functions comp-files) - (|setBootAutloadProperties| parse-functions parse-files) - (|setBootAutloadProperties| browse-functions browse-files) (|setBootAutloadProperties| translate-functions translate-files) (|setNAGBootAutloadProperties| nagbr-functions nagbr-files) (|setBootAutloadProperties| asauto-functions asauto-files) @@ -357,107 +354,6 @@ the chapter name. @ -\subsubsection{parse-functions} - -This is the {\bf boot parser} subsystem. It is only needed by -developers who translate boot code to Common Lisp. -<<parse-functions>>= -(setq parse-functions - '( -;; loadparser - |oldParserAutoloadOnceTrigger| - |PARSE-Expression| - boot-parse-1 - BOOT - SPAD - init-boot/spad-reader)) - -@ - -\subsubsection{comp-functions} - -This is the {\bf spad compiler} subsystem. It is only needed by -developers who write or modify algebra code. -<<comp-functions>>= -(setq comp-functions - '( -;; loadcompiler - |oldCompilerAutoloadOnceTrigger| - |compileSpad2Cmd| - |convertSpadToAsFile| - |compilerDoit| - |compilerDoitWithScreenedLisplib| - |mkCategory| - |cons5| - |sublisV|)) - -@ - -\subsubsection{browse-functions} - -This is the {\bf browser} subsystem. It will get autoloaded only -if you use the browse function of the {\bf hypertex} system. -<<browse-functions>>= -(setq browse-functions - '( -;; loadbrowse - |browserAutoloadOnceTrigger| - |parentsOf| ;interop.boot - |getParentsFor| ;old compiler - |folks| ;for astran - |extendLocalLibdb| ;)lib needs this - |oSearch| - |aokSearch| - |kSearch| - |aSearch| - |genSearch| - |docSearch| - |abSearch| - |detailedSearch| - |ancestorsOf| - |aPage| - |dbGetOrigin| - |dbGetParams| - |dbGetKindString| - |dbGetOrigin| - |dbComments| - |grepConstruct| - |buildLibdb| - |bcDefiniteIntegrate| - |bcDifferentiate| - |bcDraw| - |bcExpand| - |bcIndefiniteIntegrate| - |bcLimit| - |bcMatrix| - |bcProduct| - |bcSeries| - |bcSolve| - |bcSum| - |cSearch| - |conPage| - |dbName| - |dbPart| - |extendLocalLibdb| - |form2HtString| - |htGloss| - |htGreekSearch| - |htHistory| - |htSystemCommands| - |htSystemVariables| - |htTextSearch| - |htTutorialSearch| - |htUserVariables| - |htsv| - |oPage| - |oPageFrom| - |spadSys| - |spadType| - |syscomPage| - |unescapeStringsInForm|)) - -@ - \subsubsection{translate-functions} This is a little used subsystem to generate {\bf ALDOR} code @@ -1590,9 +1486,6 @@ function assumes that \\ can only appear as first character of name. (in-package "BOOT") -<<parse-functions>> -<<comp-functions>> -<<browse-functions>> <<translate-functions>> <<asauto-functions>> <<debug-functions>> @@ -1667,8 +1560,6 @@ function assumes that \\ can only appear as first character of name. (in-package "BOOT") (defun |tr| (fn) - (|oldCompilerAutoloadOnceTrigger|) - (|browserAutoloadOnceTrigger|) (|spad2AsTranslatorAutoloadOnceTrigger|) (|convertSpadFile| fn) ) |