Export AUTOLOAD

This commit is contained in:
jjgarcia 2003-08-06 08:57:51 +00:00
parent b133c36590
commit 7fb2b943d0
2 changed files with 8 additions and 7 deletions

View file

@ -1524,6 +1524,9 @@ ECLS 0.9b
C and a port of the code in CMUCL. The last one is selected with
the flag --with-cmuformat.
- ECL extension AUTOLOAD implemented. An example
(autoload "sys:cmp" 'compile 'compile-file 'disassemble)
* ANSI compatibility:
- DIRECTORY now understands :WILD, :UP, :WILD-INFERIORS, and, as an

View file

@ -205,11 +205,6 @@ symbol, in which case the print-name of that symbol is used. If PACKAGE is
NIL, then all packages are searched."
(sys::apropos-doc string package))
;;; Import functions which are useful for user interaction
(in-package "CL-USER")
(import '(sys::help sys::help* #-boehm-gc sys::room sys::gc))
;;; Pretty-print-formats.
;;;
;;; The number N as the property of a symbol SYMBOL indicates that,
@ -219,8 +214,6 @@ NIL, then all packages are searched."
;;; (At boot we don't have setf yet)
(in-package "SYSTEM")
(mapc #'(lambda (x) (put-sysprop (first x) 'sys::pretty-print-format (second x)))
'((block 1)
(case 1)
@ -283,3 +276,8 @@ NIL, then all packages are searched."
#+clos (symbol-macrolet 2)
#+clos (with-accessors 2)
#+clos (with-slots 2)))
;;; Import functions which are useful for user interaction
(in-package "CL-USER")
(import '(sys::help sys::help* #-boehm-gc sys::room sys::gc))