branch: elpa/lua-mode
commit afdf074017b740774b519a74a4966aaaeb85ba0e
Author: Reuben Thomas <[email protected]>
Commit: Reuben Thomas <[email protected]>
Make defcustom declaration formats consistent.
---
lua-mode.el | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/lua-mode.el b/lua-mode.el
index 6fee9b9..487b260 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -137,25 +137,22 @@ Should be a list of strings."
(defcustom lua-prompt-regexp "[^\n]*\\(>[\t ]+\\)+$"
"Regexp which matches the Lua program's prompt."
- :group 'lua
:type 'regexp
- )
+ :group 'lua)
(defcustom lua-traceback-line-re
"^\\(?:[\t ]*\\|.*>[\t ]+\\)\\([^\n\t ]+\\):\\([0-9]+\\):"
"Regular expression that describes tracebacks and errors."
- :group 'lua
:type 'regexp
- )
+ :group 'lua)
(defcustom lua-jump-on-traceback t
"*Jump to innermost traceback location in *lua* buffer. When this
variable is non-nil and a traceback occurs when running Lua code in a
subprocess, jump immediately to the source code of the innermost
traceback location."
- :group 'lua
:type 'boolean
- )
+ :group 'lua)
(defvar lua-mode-hook nil
"Hooks called when Lua mode fires up.")
@@ -168,8 +165,8 @@ traceback location."
(defcustom lua-indent-level 3
"Amount by which Lua subexpressions are indented."
- :group 'lua
- :type 'integer)
+ :type 'integer
+ :group 'lua)
(defvar lua-mode-menu (make-sparse-keymap "Lua")
"Keymap for lua-mode's menu.")