commit c74271c2cabda17fd71566e4baca4de06957196e parent ebb561c88d5570a0226b863c5227e0eb2f119282 Author: ChanderG <[email protected]> Date: Thu, 27 Nov 2025 11:51:16 +0530 use filesystem-utils via nickname Diffstat:
| M | grep.lisp | | | 8 | ++++---- |
| M | package.lisp | | | 3 | ++- |
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/grep.lisp b/grep.lisp @@ -5,10 +5,10 @@ ;; Main entrypoint for the grep functionality (defun grep-launcher (str dir) - (map-directory (lambda (x) (queue-file x str)) - dir - :type ':file - :recursive t)) + (fsu:map-directory (lambda (x) (queue-file x str)) + dir + :type ':file + :recursive t)) (defun main () (let* ((args (uiop:command-line-arguments)) diff --git a/package.lisp b/package.lisp @@ -1,3 +1,4 @@ (defpackage cl-grep - (:use :cl :org.shirakumo.filesystem-utils) + (:use :cl) + (:local-nicknames (:fsu :org.shirakumo.filesystem-utils)) (:export #:main))