mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 07:30:55 -08:00
Export AUTOLOAD
This commit is contained in:
parent
b133c36590
commit
7fb2b943d0
2 changed files with 8 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue