Skip to content

Commit 2a6a227

Browse files
authored
Merge pull request #199 from k-okada/fix_documentation
current make-document outputs class if that is requried, so we ignore require when running this function
2 parents 0630e03 + 3435445 commit 2a6a227

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/llib/documentation.l

+1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@
201201
(setf (symbol-function 'defclass-org) (symbol-function 'defclass)))
202202
(unless (fboundp 'defun-org)
203203
(setf (symbol-function 'defun-org) (symbol-function 'defun)))
204+
(defmacro require (&rest args) (format *error-output* ";; skip require ~A ..." args))
204205
(defmacro defclass (cls &key super slots documentation (doc documentation))
205206
`(progn
206207
(defclass-org ,cls :super ,super :slots ,slots :doc ,doc)

0 commit comments

Comments
 (0)