Skip to content

Commit

Permalink
fix: Simplify logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Oct 6, 2024
1 parent 72c2334 commit 01147bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 1 addition & 4 deletions flx.asd
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
:version "0.1.0"
:author "Jen-Chieh Shen"
:license "MIT"
:components ((:module "src"
:components
((:file "main" :depends-on ("package"))
(:file "package"))))
:components ((:file "flx"))
:description "Rewrite emacs-flx in Common Lisp")
4 changes: 4 additions & 0 deletions src/main.lisp → flx.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
(defpackage flx
(:use cl)
(:export score))

(in-package :flx)

(defvar word-separators '(#\Space #\- #\_ #\: #\. #\/ #\\)
Expand Down
3 changes: 0 additions & 3 deletions src/package.lisp

This file was deleted.

0 comments on commit 01147bd

Please sign in to comment.