summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2021-05-16 11:06:50 -0500
committerColin Okay <okay@toyful.space>2021-05-16 11:06:50 -0500
commit0ea0b0e129929ded7c8542c541c1d1bdd614e2de (patch)
tree2efebbc0e3357b88859e0c8ebd1883a903aac8f4
parent029ee104eebf293779f3dc82a857290c52b8a082 (diff)
comparing content with equal instead of string-equal
-rw-r--r--flexo.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/flexo.lisp b/flexo.lisp
index e3beb1e..73bee51 100644
--- a/flexo.lisp
+++ b/flexo.lisp
@@ -209,7 +209,7 @@ artifact tables have changed."
paranscript. "))
(defmethod content-equivlanet-p ((a template-generated-text) (b template-generated-text))
- (string-equal (generated-text a) (generated-text b)))
+ (equal (generated-text a) (generated-text b)))
(defclass spinneret-page (template-generated-text) ()