[Ecls-list] [Patch] serve-event port
Karsten Poeck
Karsten.Poeck at gmail.com
Sun Oct 7 10:51:10 UTC 2007
Hello,
don't think it is so different in sbcl; see the following transscript
* (lisp-implementation-version)
"1.0.10.15"
* (lisp-implementation-type)
"SBCL"
* (lisp-implementation-version)
#<PACKAGE "bar">
* (defpackage "bar" (:use :cl) (:export "foo"))
#<PACKAGE "bar">
* (in-package "bar")
#<PACKAGE "bar">
* (defun foo ()(print "yap"))
FOO
* (in-package :cl-user)
#<PACKAGE "COMMON-LISP-USER">
* (bar:foo)
debugger invoked on a SB-INT:SIMPLE-READER-PACKAGE-ERROR:
SB-INT:SIMPLE-READER-PACKAGE-ERROR on #<SYNONYM-STREAM :SYMBOL
package "BAR" not found
Type HELP for debugger help, or (SB-EXT:QUIT) to exit from SBCL.
* (do-external-symbols (s (find-package "bar"))(print s))
|bar|:|foo|
Please note that altough |bar|:|foo| is exporthed only |bar|::foo is
defined.
* (|bar|::foo)
"yap"
"yap"
salu2
Karsten
More information about the ecl-devel
mailing list