~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/lsp/util.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-05-17 02:46:26 UTC
  • Revision ID: james.westby@ubuntu.com-20060517024626-lljr08ftv9g9vefl
Tags: upstream-0.9h-20060510
ImportĀ upstreamĀ versionĀ 0.9h-20060510

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(in-package "COMPILER")
 
2
(defvar file-list
 
3
  '( "defmacro.lsp" "evalmacros.lsp" "top.lsp"
 
4
        "module.lsp" "predlib.lsp" "setf.lsp"
 
5
        "arraylib.lsp" "assert.lsp" "defstruct.lsp"
 
6
        "describe.lsp" "iolib.lsp" "listlib.lsp"
 
7
        "mislib.lsp" "numlib.lsp" "packlib.lsp"
 
8
        "seq.lsp" "seqlib.lsp" "trace.lsp" 
 
9
        "thread.lsp" "loop.lsp"))
 
10
 
 
11
(load "../cmp/make-declare.lsp")
 
12
 
 
13
(dolist (file file-list)
 
14
        (sys::proclaim-file file "/tmp/try.lsp"))
 
15