Skip to content

Commit

Permalink
Merge pull request weavejester#7 from hugoduncan/feature/add-deprecat…
Browse files Browse the repository at this point in the history
…ed-to-var-metadata

Add :deprecated to the list of metadata extracted for each var
  • Loading branch information
weavejester committed Jan 28, 2012
2 parents 3e067d1 + a832543 commit 5f7a56f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/codox/reader.clj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
(for [var (sorted-public-vars namespace)
:when (not (skip-public? var))]
(-> (meta var)
(select-keys [:name :file :line :arglists :doc :macro :added])
(select-keys
[:name :file :line :arglists :doc :macro :added :deprecated])
(update-in [:doc] correct-indent))))

(defn- read-ns [namespace]
Expand Down

0 comments on commit 5f7a56f

Please sign in to comment.