changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: init explain

changeset 579: c45929da6f75
parent 578: 6432d0ee2750
child 580: 571685ae64f1
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 04 Aug 2024 21:14:51 -0400
files: lisp/lib/doc/doc.asd lisp/lib/doc/explain.lisp
description: init explain
     1.1--- a/lisp/lib/doc/doc.asd	Sun Aug 04 21:12:30 2024 -0400
     1.2+++ b/lisp/lib/doc/doc.asd	Sun Aug 04 21:14:51 2024 -0400
     1.3@@ -10,7 +10,8 @@
     1.4                (:file "package")
     1.5                (:file "system")
     1.6                (:file "dist")
     1.7-               (:file "reprex")               
     1.8+               (:file "reprex")
     1.9+               (:file "explain")
    1.10                (:file "image"))
    1.11   :in-order-to ((test-op (test-op :doc/tests))))
    1.12 
     2.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2+++ b/lisp/lib/doc/explain.lisp	Sun Aug 04 21:14:51 2024 -0400
     2.3@@ -0,0 +1,8 @@
     2.4+;;; explain.lisp --- Lisp Explanations
     2.5+
     2.6+;; EXPLAIN
     2.7+
     2.8+;;; Code:
     2.9+(in-package :doc)
    2.10+
    2.11+(defgeneric explain (self &key &allow-other-keys))