X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=d6a10de1dd69e4c1d86fa3811450ddc696584ba3;hb=28ffbb681a9e3af53d604e65eb68684e411e2be6;hp=f71ee39101910e5d8780d7f7ffc570e1a368b18a;hpb=e741d288978f9a65554235ecb3115db8eef60b54;p=lml.git diff --git a/package.lisp b/package.lisp index f71ee39..d6a10de 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: package.lisp,v 1.1 2002/09/30 10:26:43 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,39 +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 - - ;; files.cl + #:*html-output* + + ;; 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 ))