From e6bb0f67f5c16543ca84e3114e21ad4706bc78f0 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 30 Jan 2021 16:25:20 +0100 Subject: extension-targets: Use `string=` instead of `equal` Just learned that `string=` exists, and that seems to describe the intent better than `equal`. --- l/src/main.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'l/src/main.lisp') diff --git a/l/src/main.lisp b/l/src/main.lisp index 1113373..0689107 100644 --- a/l/src/main.lisp +++ b/l/src/main.lisp @@ -88,8 +88,8 @@ (defun extension-targets (targets) (labels ((extensionp (target) - (equal (json-obj-get target "type") - "background_page"))) + (string= (json-obj-get target "type") + "background_page"))) (filter #'extensionp targets))) -- cgit v1.2.3