aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/fcase.clj
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2008-12-23 16:34:03 +0000
committerStuart Sierra <mail@stuartsierra.com>2008-12-23 16:34:03 +0000
commitb6fce0ce57fe3794057a52bcd1f24be00a24384e (patch)
tree51d99f32d8a588a53ba77e2fb6bb7b8a8d57e09e /src/clojure/contrib/fcase.clj
parent597c8abc97cd1a059b03c49a999db7908a5011a2 (diff)
fcase.clj: added note that clojure.core/condp now supplants fcase
Diffstat (limited to 'src/clojure/contrib/fcase.clj')
-rw-r--r--src/clojure/contrib/fcase.clj6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/clojure/contrib/fcase.clj b/src/clojure/contrib/fcase.clj
index f0ab088d..7c1aff51 100644
--- a/src/clojure/contrib/fcase.clj
+++ b/src/clojure/contrib/fcase.clj
@@ -1,6 +1,6 @@
;;; fcase.clj -- simple variants of "case" for Clojure
-;; by Stuart Sierra <mail@stuartsierra.com>
+;; by Stuart Sierra, http://stuartsierra.com/
;; April 7, 2008
;; Copyright (c) Stuart Sierra, 2008. All rights reserved. The use
@@ -18,6 +18,10 @@
;; test for regular expressions and class membership.
+;; Note (December 23, 2008): This library has been supplanted by the
+;; inclusion of "condp" in clojure.core as of Clojure SVN rev. 1180.
+
+
(ns clojure.contrib.fcase)