X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=c753d83b2ed4d0999c578a18596a8c26d3c3d197;hb=61fd445f75948f980c31c6ca6dcc36f0263aafbb;hp=e3150c1eb1504ee2ed1da21f11cf86a396026b89;hpb=cc8e2c2612822e5bf40c68f04e492ac0597b362a;p=lml.git diff --git a/package.lisp b/package.lisp index e3150c1..c753d83 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: package.lisp,v 1.2 2002/11/12 04:39:39 kevin Exp $ +;;;; $Id: package.lisp,v 1.7 2003/06/07 22:46:04 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,40 +16,45 @@ ;;;; (http://www.gnu.org/licenses/gpl.html) ;;;; ************************************************************************* -(in-package :cl-user) +(in-package #:cl-user) (defpackage #:lisp-markup-language (:use #:common-lisp) (:nicknames #:lml) (:export - ;; lml.cl + ;; base.lisp + #:*print-spaces* #:reset-indent #:with #:print-page #:page + #:lml-format #:lml-print + #:lml-princ + #:lml-write-char + #:lml-write-string #:lml-print-date - #:*html-stream* + #:*html-output* - ;; files.cl + ;; files.lisp #:with-dir #:process-dir #:lml-load #:include-file - ;; stdsite.cl + ;; stdsite.lisp #:print-std-page #:std-page #:std-body #:std-head #:titled-pre-section - ;; downloads.cl + ;; downloads.lisp #:std-dl-page #:full-dl-page - ;; utils.cl + ;; utils.lisp #:lml-quit #:lml-cwd ))