Merge pull request #294 from rlph/master

Added flymake-lua recipe and updated lua-mode recipe
This commit is contained in:
Dimitri Fontaine 2011-07-13 09:40:21 -07:00
commit 0788d8b62b
2 changed files with 10 additions and 5 deletions

7
recipes/flymake-lua.el Normal file
View File

@ -0,0 +1,7 @@
(:name flymake-lua
:website "https://github.com/sroccaserra/emacs/blob/master/flymake-lua.el"
:description "Flymake support for Lua."
:type http
:url "https://raw.github.com/sroccaserra/emacs/master/flymake-lua.el"
:post-init (lambda ()
(add-hook 'lua-mode-hook 'flymake-lua-load)))

View File

@ -1,7 +1,5 @@
(:name lua-mode
:website "https://github.com/immerrr/lua-mode"
:description "A major mode for editing Lua scripts."
:type git
:url "https://github.com/rrthomas/lua-mode.git"
:features lua-mode
:post-init (lambda ()
(add-to-list 'auto-mode-alist '("\\.lua\\'" . lua-mode))
(autoload 'lua-mode "lua-mode" "Lua editing mode." t)))
:url "https://github.com/immerrr/lua-mode")