From 73f2b875f614e2a00def7ae30b27054d8ea27bec Mon Sep 17 00:00:00 2001
From: Tim McCormack <cortex@brainonfire.net>
Date: Wed, 14 Nov 2012 23:02:14 -0500
Subject: [PATCH] CLJ-904: Note about *read-eval* on docstrings for reader fns.

---
 src/clj/clojure/core.clj |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj
index 985532a..8bbee1d 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -3376,7 +3376,7 @@
 (defn read
   "Reads the next object from stream, which must be an instance of
   java.io.PushbackReader or some derivee.  stream defaults to the
-  current value of *in* ."
+  current value of *in*. See *read-eval* for security implications."
   {:added "1.0"
    :static true}
   ([]
@@ -3398,7 +3398,8 @@
     (.readLine ^java.io.BufferedReader *in*)))
 
 (defn read-string
-  "Reads one object from the string s"
+  "Reads one object from the string s. See *read-eval* for security
+implications."
   {:added "1.0"
    :static true}
   [s] (clojure.lang.RT/readString s))
-- 
1.7.4.1

