diff options
Diffstat (limited to 'packages.lisp')
-rw-r--r-- | packages.lisp | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/packages.lisp b/packages.lisp index bf843b6..c52da45 100644 --- a/packages.lisp +++ b/packages.lisp @@ -32,35 +32,35 @@ (defpackage :cl-who (:use :cl) (:nicknames :who) - #+(or :clasp :sbcl) (:shadow :defconstant) + #+(or :clasp :sbcl) (:shadow #:defconstant) #+:sb-package-locks (:lock t) - (:export :*attribute-quote-char* - :*empty-attribute-syntax* - :*escape-char-p* - :*prologue* - :*downcase-tokens-p* - :*html-no-indent-tags* - :*html-empty-tags* - :*html-empty-tag-aware-p* - :conc - :convert-attributes - :convert-tag-to-string-list - :esc - :escape-char - :escape-char-all - :escape-char-iso-8859-1 - :escape-char-minimal - :escape-char-minimal-plus-quotes - :escape-string - :escape-string-all - :escape-string-iso-8859-1 - :escape-string-minimal - :escape-string-minimal-plus-quotes - :fmt - :htm - :html-mode - :str - :with-html-output - :with-html-output-to-string)) + (:export #:*attribute-quote-char* + #:*empty-attribute-syntax* + #:*escape-char-p* + #:*prologue* + #:*downcase-tokens-p* + #:*html-no-indent-tags* + #:*html-empty-tags* + #:*html-empty-tag-aware-p* + #:conc + #:convert-attributes + #:convert-tag-to-string-list + #:esc + #:escape-char + #:escape-char-all + #:escape-char-iso-8859-1 + #:escape-char-minimal + #:escape-char-minimal-plus-quotes + #:escape-string + #:escape-string-all + #:escape-string-iso-8859-1 + #:escape-string-minimal + #:escape-string-minimal-plus-quotes + #:fmt + #:htm + #:html-mode + #:str + #:with-html-output + #:with-html-output-to-string)) (pushnew :cl-who *features*) |