On Wed, Nov 11, 2009 at 1:12 PM, Stephen C. Gilardi <squee...@mac.com>wrote:

> Before:
>
>  (:refer-clojure :exclude [read])
>  (:require (clojure.contrib [graph :as graph] [fcase :as fcase])
>            [clojure.contrib.stream-utils :as su])
>  (:use [clojure.contrib def except server-socket]
>        clojure.contrib.lazy-xml
>        [clojure.contrib.java-utils :only [as-str]]
>        [clojure.stacktrace :only (root-cause)]
>        [clojure.walk :only [postwalk]])
>
>
> After:
>
>  (:uses [clojure.core :exclude [read])
>         [clojure.contrib.graph]
>         [clojure.contrib.fcase]
>         [clojure.contrib.stream-utils :as su]
>         [clojure.contrib.def :refer-all true]
>         [clojure.contrib.except :refer-all true]
>         [clojure.contrib.server-socket :refer-all true]
>         [clojure.contrib.lazy-xml :refer-all true]
>         [clojure.contrib.java-utils :only [as-str]]
>         [clojure.stacktrace :only [root-cause]]
>         [clojure.walk :only [postwalk]])
>
> (Over time I would expect many ":refer-all true" options to become more
> selective references once this change makes referencing in everything
> slightly more difficult.)
>
> I'd appreciate hearing ideas and critiques.
>

+1

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to