Skip to content

Instantly share code, notes, and snippets.

@t9md
Created April 3, 2010 20:04
Show Gist options
  • Save t9md/354815 to your computer and use it in GitHub Desktop.
Save t9md/354815 to your computer and use it in GitHub Desktop.
(defun autoload-if-found (function file &optional docstring interactive type)
"set autoload if. FILE has found."
(and (locate-library file)
(autoload function file docstring interactive type)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment