/usr/share/common-lisp/source/lml2/package.lisp is in cl-lml2 1.6.6-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: package.lisp
;;;; Purpose: Package file for Lisp Markup Language 2
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: June 2003
;;;;
;;;; $Id$
;;;;
;;;; This file, part of LML2, is Copyright (c) 2000-2003 by Kevin Rosenberg.
;;;; Rights of modification and redistribution are in the LICENSE file.
;;;;
;;;; *************************************************************************
(in-package #:cl-user)
(defpackage #:lisp-markup-language-2
(:use #:common-lisp #:kmrcl)
(:nicknames #:lml2)
(:export
;; data.lisp
#:*html-stream*
;; base.lisp
#:html-file-page
#:dtd-prologue
#:lml-format
#:lml-print
#:lml-princ
#:lml-write-char
#:lml-write-string
#:lml-print-date
#:alink
#:alink-c
;; htmlgen.lisp
#:html #:html-print #:html-print-subst #:html-print-list #:html-print-list-subst
#:html-stream #:*html-stream*
;; files.lisp
#:with-dir
#:process-dir
#:lml-load
#:insert-file
;; stdsite.lisp
#:print-std-page
#:std-page
#:std-body
#:std-head
#:titled-pre-section
;; downloads.lisp
#:std-dl-page
#:full-dl-page
;; utils.lisp
#:lml-quit
#:lml-cwd
;; apache-dir
#:write-html-apache-directory
))
|