X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=d35299880993a55f7852b1f7ea220634f826ed61;hb=c61966ea4ea1f60f5d093c6112543fabed399b97;hp=120d39bfcd20dfbec01cfff8c83b20ae85da9a9b;hpb=123adbaf1fb442ffff615c56e118bfd374f02b9f;p=kmrcl.git diff --git a/package.lisp b/package.lisp index 120d39b..d352998 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.24 2003/05/02 22:30:26 kevin Exp $ +;;;; $Id: package.lisp,v 1.42 2003/06/18 01:00:52 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,13 +16,11 @@ ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL. ;;;; ************************************************************************* -(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0))) - -(in-package :cl-user) +(in-package #:cl-user) (defpackage #:kmrcl - (:nicknames :kl) - (:use :common-lisp) + (:nicknames #:kl) + (:use #:cl) (:export #:ensure-integer #:mklist @@ -36,24 +34,54 @@ #:until #:while #:for + + ;; strings.lisp #:mapappend #:mapcar-append-string #:mapcar2-append-string + #:position-char + #:position-not-char #:delimited-string-to-list + #:string-delimited-string-to-list #:list-to-delimited-string + #:prefixed-fixnum-string + #:integer-string + #:fast-string-search + #:string-to-list-skip-delimiter + #:string-starts-with + #:count-string-char + #:count-string-char-if + #:hexchar + #:escape-uri-field + #:non-alphanumericp + #:random-string + #:first-char + #:last-char + #:flatten + + ;; io.lisp #:indent-spaces + #:indent-html-spaces + #:print-n-chars + #:print-n-strings #:print-list #:print-rows #:file-subst #:stream-subst + + ;; lists.lisp #:remove-tree-if #:find-tree #:with-each-file-line #:with-each-stream-line #:remove-keyword #:remove-keywords + #:append-sublists + #:nsubseq + ;; math.lisp + #:ensure-integer ;; macros.lisp #:time-iterations @@ -95,6 +123,8 @@ #:substitute-chars-strings #:add-sql-quotes #:escape-backslashes + #:concat-separated-strings + #:print-separated-strings ;; symbols.lisp #:ensure-keyword @@ -107,9 +137,10 @@ ;; From attrib-class.lisp #:attributes-class #:slot-attribute - + #:slot-attributes + #:generalized-equal - + ;; From buffered input #:make-fields-buffer @@ -136,12 +167,14 @@ #:*standard-xhtml-header* #:*standard-xml-header* #:user-agent-ie-p + #:decode-uri-query-string ;; From xml-utils #:wrap-with-xml #:xml-tag-contents #:positions-xml-tag-contents #:xml-cdata + #:write-xml-cdata ;; From console *console-msgs* @@ -150,6 +183,15 @@ cmsg-add cmsg-remove fixme + + ;; assoc + #:alist-elem-p + #:alistp + #:get-alist + #:update-alist + #:alist-plist + #:plist-alist + #:get-plist ))