diff --git a/eksd.asd b/eksd.asd old mode 100755 new mode 100644 index f760999..51156a6 --- a/eksd.asd +++ b/eksd.asd @@ -5,7 +5,7 @@ :homepage "https://hak.xwx.moe/jadedctrl/eksd" :description "For reading files into hex— `xxd`-like with text-tables." :depends-on () - :components ((:file "eksd"))) + :components ((:file "src/eksd"))) (defsystem "eksd.unix" :version "0.11" @@ -14,4 +14,4 @@ :homepage "https://hak.xwx.moe/jadedctrl/eksd" :description "UNIX terminal front-tend to eksd. `xxd` twin." :depends-on (:eksd :unix-opts :cl-strings) - :components ((:file "eksd-unix"))) + :components ((:file "src/unix"))) diff --git a/eksd.lisp b/src/eksd.lisp similarity index 100% rename from eksd.lisp rename to src/eksd.lisp diff --git a/eksd-unix.lisp b/src/unix.lisp similarity index 100% rename from eksd-unix.lisp rename to src/unix.lisp