Remove redundant variable from pylookup recipe

It is now redundant because "default-directory" is set to the package
dir automatically.
This commit is contained in:
Ryan C. Thompson 2012-02-14 11:15:48 -08:00
parent 5f132828a4
commit 79e4c0f3f5

View File

@ -3,8 +3,7 @@
:type git
:url "https://github.com/tsgates/pylookup.git"
:post-init (lambda ()
(setq pylookup-dir (expand-file-name "pylookup" el-get-dir)
pylookup-program (expand-file-name "pylookup.py" pylookup-dir)
pylookup-db-file (expand-file-name "pylookup.db" pylookup-dir))
(setq pylookup-program (expand-file-name "pylookup.py")
pylookup-db-file (expand-file-name "pylookup.db"))
(autoload 'pylookup-lookup "pylookup" "Lookup SEARCH-TERM in the Python HTML indexes." t)
(autoload 'pylookup-update "pylookup" "Run pylookup-update and create the database at `pylookup-db-file'." t)))