[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
ex
- Subject: ex
- From: usher@vax.ox.ac.uk
- Date: 26 May 93 17:18:54 BST
Sorry if my fist try now gets through.
I am trying to find how to export everything from a package. If a package is
made at the top level
(defpackage "TEST")
this now has all the function of the top level lisp. If instead it is set to
use a different package
(defpackage "TEST" (:use "TEST-1"))
It now only has the functions being exported from TEST-1. I would like it also
to have all the lisp functions as well. sort of
(export 'all)
(defpackage "TEST" (:USE "TEST-1" "CL-USER"))
many thanks for any help
Tom Usherwood