From 931f6f900633bf6355c33342bcb1624038e80487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Mon, 23 Mar 2026 08:48:26 -0600 Subject: [PATCH] fix: fix elisp shadowing clojure.core warnings --- publisher/src/net/deertopia/publisher/elisp.clj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/publisher/src/net/deertopia/publisher/elisp.clj b/publisher/src/net/deertopia/publisher/elisp.clj index 59345e3..a9367da 100644 --- a/publisher/src/net/deertopia/publisher/elisp.clj +++ b/publisher/src/net/deertopia/publisher/elisp.clj @@ -1,9 +1,9 @@ (ns net.deertopia.publisher.elisp - (:require - [clojure.core.match :refer [match]] - [clojure.java.io :as io] - [clojure.spec.alpha :as s] - [instaparse.core :as ip])) + (:require [clojure.core.match :refer [match]] + [clojure.java.io :as io] + [clojure.spec.alpha :as s] + [instaparse.core :as ip]) + (:refer-clojure :exclude [print read read-string])) (ip/defparser read* (io/resource "net/deertopia/publisher/elisp/grammar"))