contrib: call provide uniformly
Various contrib modules called provide with varying syntax from "module" through 'module to '#:module. The last one is picked: (provide '#:module)
This commit is contained in:
parent
221c58b51b
commit
7feed6c6f4
8 changed files with 11 additions and 9 deletions
|
|
@ -135,7 +135,7 @@
|
||||||
(install-bytecodes-compiler)
|
(install-bytecodes-compiler)
|
||||||
)
|
)
|
||||||
|
|
||||||
(provide 'BYTECMP)
|
(provide '#:BYTECMP)
|
||||||
|
|
||||||
#-ecl-min
|
#-ecl-min
|
||||||
(package-lock "COMMON-LISP" t)
|
(package-lock "COMMON-LISP" t)
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
;;;; ASDF system definition facility.
|
;;;; ASDF system definition facility.
|
||||||
;;;;
|
;;;;
|
||||||
|
|
||||||
(asdf:defsystem "deflate"
|
(asdf:defsystem '#:deflate
|
||||||
:description "Deflate Decompression Library"
|
:description "Deflate Decompression Library"
|
||||||
:author "Pierre R. Mai <pmai@pmsf.de>"
|
:author "Pierre R. Mai <pmai@pmsf.de>"
|
||||||
:components ((:file "deflate")))
|
:components ((:file "deflate")))
|
||||||
|
|
|
||||||
|
|
@ -788,3 +788,5 @@ match."
|
||||||
:element-type '(unsigned-byte 8))
|
:element-type '(unsigned-byte 8))
|
||||||
(inflate-gzip-stream input output)))
|
(inflate-gzip-stream input output)))
|
||||||
(probe-file output-file))
|
(probe-file output-file))
|
||||||
|
|
||||||
|
(provide '#:deflate)
|
||||||
|
|
|
||||||
|
|
@ -263,4 +263,4 @@
|
||||||
(with-open-file (s stream :direction :input :element-type '(unsigned-byte 8))
|
(with-open-file (s stream :direction :input :element-type '(unsigned-byte 8))
|
||||||
(map-cdb function s))))
|
(map-cdb function s))))
|
||||||
|
|
||||||
(provide :ecl-cdb)
|
(provide '#:ecl-cdb)
|
||||||
|
|
|
||||||
|
|
@ -264,3 +264,5 @@
|
||||||
(when o (close o :abort (null ok?))))))
|
(when o (close o :abort (null ok?))))))
|
||||||
(close stream))
|
(close stream))
|
||||||
(values url))
|
(values url))
|
||||||
|
|
||||||
|
(provide '#:ecl-curl)
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,4 @@
|
||||||
(format t "~%;;; Unable to load / install quicklisp. Error message follows:~%~A"
|
(format t "~%;;; Unable to load / install quicklisp. Error message follows:~%~A"
|
||||||
c)))
|
c)))
|
||||||
|
|
||||||
(provide "ecl-quicklisp")
|
(provide '#:ecl-quicklisp)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -229,4 +229,4 @@ T if SERVE-EVENT did something and NIL if not."
|
||||||
((null sval) res)
|
((null sval) res)
|
||||||
(setq res t)))
|
(setq res t)))
|
||||||
|
|
||||||
(provide 'serve-event)
|
(provide '#:serve-event)
|
||||||
|
|
|
||||||
|
|
@ -1710,5 +1710,5 @@ GET-NAME-SERVICE-ERRNO")
|
||||||
;; Add sockopts here as you need them...
|
;; Add sockopts here as you need them...
|
||||||
|
|
||||||
;; Finished loading
|
;; Finished loading
|
||||||
(provide 'sockets)
|
(provide '#:sockets)
|
||||||
(provide 'sb-bsd-sockets)
|
(provide '#:sb-bsd-sockets)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue