aboutsummaryrefslogtreecommitdiff
path: root/src/interp/util.lisp.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/util.lisp.pamphlet')
-rw-r--r--src/interp/util.lisp.pamphlet111
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) )