Skip to content

Instantly share code, notes, and snippets.

@ajorgensen
Created November 13, 2013 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajorgensen/7456046 to your computer and use it in GitHub Desktop.
Save ajorgensen/7456046 to your computer and use it in GitHub Desktop.
(defmacro defdeprecated [old new]
`(defmacro ~old
[sym# & body#]
(println ~(format "Warning, %s is deprecated; use %s."
old
(resolve new)))
`(~'~new ~sym# ~@body#)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment