Commit f332d2f
committed
fix: drop s library dependency
The function `s-equals-p` from the s library was referenced in the code but the dependency had not
been declared.
Since the referenced function is nothing but a wrapper around `string-equal` (see below), this
commit refactors the code to call `string-equal` directly and drop the dependency altogether.
(defun s-equals? (s1 s2)
"Is S1 equal to S2?
This is a simple wrapper around the built-in `string-equal'."
(declare (pure t) (side-effect-free t))
(string-equal s1 s2))1 parent 4f51b3c commit f332d2f
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
743 | 743 | | |
744 | 744 | | |
745 | 745 | | |
746 | | - | |
| 746 | + | |
747 | 747 | | |
748 | 748 | | |
749 | 749 | | |
| |||
0 commit comments