aboutsummaryrefslogtreecommitdiff
path: root/src/lib.lisp
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-03-01 11:39:08 -0600
committerColin Okay <okay@toyful.space>2022-03-01 11:39:08 -0600
commitff8a6b5bb611fa5094de230e38c7f35188726e79 (patch)
tree2bd498affd42c04d8c7f078cb41f31cde8c43565 /src/lib.lisp
parentc028a38f6b2c72c9be9c98d6f0dd1b376d58779c (diff)
bugfix; forgot to update the --explain function to use --id
Diffstat (limited to 'src/lib.lisp')
-rw-r--r--src/lib.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.lisp b/src/lib.lisp
index f9d81aa..2f25ac7 100644
--- a/src/lib.lisp
+++ b/src/lib.lisp
@@ -165,8 +165,8 @@ the directories that appear in the value of that variable."
(progn ,@body)
(format t "Could not find the oneliner specified by ~a~%" ,nvar)))))
-(defun print-item-explanation (number)
- (with-cached-result (ol number)
+(defun print-item-explanation (number &optional idp)
+ (with-cached-result (ol number idp)
(when (getf ol :explanation)
(princ #\newline)
(princ (getf ol :explanation)))))